1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-02 08:30:50 +00:00
starship/src/modules/sudo.rs
Gabriel Victor 779e53cd66
feat(module): Add sudo module (#3135)
* add feature - sudo module

* add sudo module identifiers and entry point

* fix test test_sudo_not_cached

* add test test_sudo_cached

* add `allow_windows` and `binary` options

* rustfmt sudo_x_cached and rmv them on windows

* add false `allow_windows` block windows test

* add `doas` cached/not_cached tests

* better description in `starship explain`

* fix `test_doas_cached` with `-n` flag

Co-authored-by: David Knaack <davidkna@users.noreply.github.com>

* rmv `binary` alternatives and their tests

* fix symbol and update config/README

* fix all mocks to use `sudo -n true`

* fix expected output in `test_sudo_cached`

* proper checking for blocked sudo

Co-authored-by: David Knaack <davidkna@users.noreply.github.com>

* add `allow_windows = true` to non-windows tests

* allow sudo_* tests to run on windows + fix parsed

* rustfmt `blocks_windows` test

Co-authored-by: David Knaack <davidkna@users.noreply.github.com>
2021-11-15 06:46:13 +01:00

114 lines
2.9 KiB
Rust

use std::env;
use super::{Context, Module, RootModuleConfig};
use crate::configs::sudo::SudoConfig;
use crate::formatter::StringFormatter;
/// Creates a module with sudo credential cache status
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
let mut module = context.new_module("sudo");
let config = SudoConfig::try_load(module.config);
if config.disabled {
return None;
}
if !config.allow_windows && env::consts::FAMILY == "windows" {
return None;
}
let is_sudo_cached = context.exec_cmd("sudo", &["-n", "true"]).is_some();
if !is_sudo_cached {
return None;
}
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
formatter
.map_meta(|variable, _| match variable {
"symbol" => Some(config.symbol),
_ => None,
})
.map_style(|variable| match variable {
"style" => Some(Ok(config.style)),
_ => None,
})
.parse(None, Some(context))
});
module.set_segments(match parsed {
Ok(segments) => segments,
Err(error) => {
log::warn!("Error in module `sudo`:\n{}", error);
return None;
}
});
Some(module)
}
#[cfg(test)]
mod tests {
use crate::{test::ModuleRenderer, utils::CommandOutput};
use ansi_term::Color;
#[test]
fn test_sudo_not_cached() {
let actual = ModuleRenderer::new("sudo")
.cmd("sudo -n true", None)
.config(toml::toml! {
[sudo]
disabled = false
allow_windows = true
})
.collect();
let expected = None;
assert_eq!(expected, actual);
}
#[test]
fn test_sudo_cached() {
let actual = ModuleRenderer::new("sudo")
.cmd(
"sudo -n true",
Some(CommandOutput {
stdout: "".to_owned(),
stderr: "".to_owned(),
}),
)
.config(toml::toml! {
[sudo]
disabled = false
allow_windows = true
})
.collect();
let expected = Some(format!("{}", Color::Blue.bold().paint("as 🧙 ")));
assert_eq!(expected, actual);
}
#[test]
#[cfg(windows)]
fn test_allow_windows_disabled_blocks_windows() {
let actual = ModuleRenderer::new("sudo")
.cmd(
"sudo -n true",
Some(CommandOutput {
stdout: "".to_owned(),
stderr: "".to_owned(),
}),
)
.config(toml::toml! {
[sudo]
disabled = false
allow_windows = false
})
.collect();
let expected = None;
assert_eq!(expected, actual);
}
}