mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
39598ec691
Prompt can now switch characters in addition to switching character color. Add configuration options in so that users can do either, both, or neither.
75 lines
2.1 KiB
Rust
75 lines
2.1 KiB
Rust
use ansi_term::Color;
|
|
use std::io;
|
|
|
|
use crate::common::{self, TestCommand};
|
|
|
|
#[test]
|
|
fn char_module_success_status() -> io::Result<()> {
|
|
let expected = format!("{} ", Color::Green.bold().paint("➜"));
|
|
|
|
// Status code 0
|
|
let output = common::render_module("character")
|
|
.arg("--status=0")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!(expected, actual);
|
|
|
|
// No status code
|
|
let output = common::render_module("character").output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!(expected, actual);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn char_module_failure_status() -> io::Result<()> {
|
|
let expected = format!("{} ", Color::Red.bold().paint("➜"));
|
|
|
|
let exit_values = ["1", "54321", "-5000"];
|
|
|
|
for status in exit_values.iter() {
|
|
let arg = format!("--status={}", status);
|
|
let output = common::render_module("character").arg(arg).output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!(expected, actual);
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn char_module_symbolyes_status() -> io::Result<()> {
|
|
let expected_fail = format!("{} ", Color::Red.bold().paint("✖"));
|
|
let expected_success = format!("{} ", Color::Green.bold().paint("➜"));
|
|
|
|
let exit_values = ["1", "54321", "-5000"];
|
|
|
|
// Test failure values
|
|
for status in exit_values.iter() {
|
|
let arg = format!("--status={}", status);
|
|
let output = common::render_module("character")
|
|
.use_config(toml::toml! {
|
|
[character]
|
|
use_symbol_for_status = true
|
|
})
|
|
.arg(arg)
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!(expected_fail, actual);
|
|
}
|
|
|
|
// Test success
|
|
let output = common::render_module("character")
|
|
.use_config(toml::toml! {
|
|
[character]
|
|
use_symbol_for_status = true
|
|
})
|
|
.arg("--status=0")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!(expected_success, actual);
|
|
|
|
Ok(())
|
|
}
|