mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-09 14:51:04 +00:00
61 lines
1.7 KiB
Rust
61 lines
1.7 KiB
Rust
use ansi_term::Color;
|
|
use std::io;
|
|
|
|
use crate::common::{self, TestCommand};
|
|
|
|
#[test]
|
|
fn config_blank_duration_1s() -> io::Result<()> {
|
|
let output = common::render_module("cmd_duration")
|
|
.arg("--cmd-duration=1000000000")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("{} ", Color::RGB(80, 80, 80).bold().paint("took 1s"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn config_blank_duration_5s() -> io::Result<()> {
|
|
let output = common::render_module("cmd_duration")
|
|
.arg("--cmd-duration=5000000000")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("{} ", Color::Yellow.bold().paint("took 5s"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn config_5s_duration_3s() -> io::Result<()> {
|
|
let output = common::render_module("cmd_duration")
|
|
.use_config(toml::toml! {
|
|
[cmd_duration]
|
|
min_time = 5000
|
|
})
|
|
.arg("--cmd-duration=3000000000")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("{} ", Color::RGB(80, 80, 80).bold().paint("took 3s"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn config_5s_duration_10s() -> io::Result<()> {
|
|
let output = common::render_module("cmd_duration")
|
|
.use_config(toml::toml! {
|
|
[cmd_duration]
|
|
min_time = 5000
|
|
})
|
|
.arg("--cmd-duration=10000000000")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("{} ", Color::Yellow.bold().paint("took 10s"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|