mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-12-11 21:57:52 +00:00
2d4b183fce
* 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>
69 lines
1.9 KiB
Rust
69 lines
1.9 KiB
Rust
use super::{Context, Module, ModuleConfig};
|
|
|
|
use crate::configs::singularity::SingularityConfig;
|
|
use crate::formatter::StringFormatter;
|
|
|
|
/// Creates a module with the current Singularity image
|
|
///
|
|
/// Will display the Singularity image if `$SINGULARITY_NAME` is set.
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|
let singularity_env = context.get_env("SINGULARITY_NAME")?;
|
|
|
|
let mut module = context.new_module("singularity");
|
|
let config: SingularityConfig = SingularityConfig::try_load(module.config);
|
|
|
|
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,
|
|
})
|
|
.map(|variable| match variable {
|
|
"env" => Some(Ok(&singularity_env)),
|
|
_ => None,
|
|
})
|
|
.parse(None, Some(context))
|
|
});
|
|
|
|
module.set_segments(match parsed {
|
|
Ok(segments) => segments,
|
|
Err(error) => {
|
|
log::warn!("Error in module `singularity`: \n{}", error);
|
|
return None;
|
|
}
|
|
});
|
|
|
|
Some(module)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use crate::test::ModuleRenderer;
|
|
use ansi_term::Color;
|
|
|
|
#[test]
|
|
fn no_env_set() {
|
|
let actual = ModuleRenderer::new("singularity").collect();
|
|
|
|
let expected = None;
|
|
assert_eq!(expected, actual);
|
|
}
|
|
#[test]
|
|
fn env_set() {
|
|
let actual = ModuleRenderer::new("singularity")
|
|
.env("SINGULARITY_NAME", "centos.img")
|
|
.collect();
|
|
|
|
let expected = Some(format!(
|
|
"{} ",
|
|
Color::Blue.bold().dimmed().paint("[centos.img]")
|
|
));
|
|
|
|
assert_eq!(expected, actual);
|
|
}
|
|
}
|