mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-17 10:35:15 +00:00
114 lines
2.9 KiB
Rust
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);
|
||
|
}
|
||
|
}
|