1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-02 16:40:51 +00:00
starship/src/modules/sudo.rs
David Knaack 2d4b183fce
refactor: replace module_config_derive with serde (#3786)
* refactor: replace module_config_derive with serde

Changes include:
* Removing `starship_module_config_derive` and replacing it with `serde::Deserialize`
* Removing `RootModuleConfig::load_config`. While potentially useful, it was only used in tests. And it would require something like `serde::DeserializeSeed` which is not derived by serde.
* Merging `RootModuleConfig` into `ModuleConfig`
* Implementing a `ValueDeserializer` that holds a reference to a `toml::Value` in `serde_utils.rs`
* Deserialization errors (invalid type) are now logged and include the current key and the struct names
* Unknown keys are now considered an error. "Did you mean?"-messages are still possible

* fix typo

Co-authored-by: Matan Kushner <hello@matchai.dev>

Co-authored-by: Matan Kushner <hello@matchai.dev>
2022-03-26 10:42:19 +01:00

114 lines
2.9 KiB
Rust

use std::env;
use super::{Context, Module, ModuleConfig};
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);
}
}