mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-17 10:35:15 +00:00
d10a83ce6b
* perf(php): evaluate version lazily * fix(php): update format string; update tests Co-authored-by: Moritz Vetter <mv@3yourmind.com>
137 lines
3.9 KiB
Rust
137 lines
3.9 KiB
Rust
use super::{Context, Module, RootModuleConfig};
|
|
|
|
use crate::configs::php::PhpConfig;
|
|
use crate::formatter::StringFormatter;
|
|
use crate::utils;
|
|
|
|
/// Creates a module with the current PHP version
|
|
///
|
|
/// Will display the PHP version if any of the following criteria are met:
|
|
/// - Current directory contains a `.php` file
|
|
/// - Current directory contains a `composer.json` or `.php-version` file
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|
let is_php_project = context
|
|
.try_begin_scan()?
|
|
.set_files(&["composer.json", ".php-version"])
|
|
.set_extensions(&["php"])
|
|
.is_match();
|
|
|
|
if !is_php_project {
|
|
return None;
|
|
}
|
|
|
|
let mut module = context.new_module("php");
|
|
let config: PhpConfig = PhpConfig::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 {
|
|
"version" => {
|
|
let php_cmd_output = utils::exec_cmd(
|
|
"php",
|
|
&[
|
|
"-nr",
|
|
"echo PHP_MAJOR_VERSION.\".\".PHP_MINOR_VERSION.\".\".PHP_RELEASE_VERSION;",
|
|
],
|
|
)?;
|
|
Some(Ok(format_php_version(&php_cmd_output.stdout)))
|
|
}
|
|
_ => None,
|
|
})
|
|
.parse(None)
|
|
});
|
|
|
|
module.set_segments(match parsed {
|
|
Ok(segments) => segments,
|
|
Err(error) => {
|
|
log::warn!("Error in module `php`:\n{}", error);
|
|
return None;
|
|
}
|
|
});
|
|
|
|
Some(module)
|
|
}
|
|
|
|
fn format_php_version(php_version: &str) -> String {
|
|
format!("v{}", php_version)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::test::ModuleRenderer;
|
|
use ansi_term::Color;
|
|
use std::fs::File;
|
|
use std::io;
|
|
|
|
#[test]
|
|
fn test_format_php_version() {
|
|
let input = "7.3.8";
|
|
assert_eq!(format_php_version(input), "v7.3.8".to_string());
|
|
}
|
|
|
|
#[test]
|
|
fn folder_without_php_files() -> io::Result<()> {
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
let actual = ModuleRenderer::new("php").path(dir.path()).collect();
|
|
|
|
let expected = None;
|
|
assert_eq!(expected, actual);
|
|
dir.close()
|
|
}
|
|
|
|
#[test]
|
|
fn folder_with_composer_file() -> io::Result<()> {
|
|
let dir = tempfile::tempdir()?;
|
|
File::create(dir.path().join("composer.json"))?.sync_all()?;
|
|
|
|
let actual = ModuleRenderer::new("php").path(dir.path()).collect();
|
|
|
|
let expected = Some(format!(
|
|
"via {}",
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8 ")
|
|
));
|
|
assert_eq!(expected, actual);
|
|
dir.close()
|
|
}
|
|
|
|
#[test]
|
|
fn folder_with_php_version() -> io::Result<()> {
|
|
let dir = tempfile::tempdir()?;
|
|
File::create(dir.path().join(".php-version"))?.sync_all()?;
|
|
|
|
let actual = ModuleRenderer::new("php").path(dir.path()).collect();
|
|
|
|
let expected = Some(format!(
|
|
"via {}",
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8 ")
|
|
));
|
|
assert_eq!(expected, actual);
|
|
dir.close()
|
|
}
|
|
|
|
#[test]
|
|
fn folder_with_php_file() -> io::Result<()> {
|
|
let dir = tempfile::tempdir()?;
|
|
File::create(dir.path().join("any.php"))?.sync_all()?;
|
|
|
|
let actual = ModuleRenderer::new("php").path(dir.path()).collect();
|
|
|
|
let expected = Some(format!(
|
|
"via {}",
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8 ")
|
|
));
|
|
assert_eq!(expected, actual);
|
|
dir.close()
|
|
}
|
|
}
|