mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
|
use ansi_term::Color;
|
||
|
use std::io;
|
||
|
|
||
|
use crate::common;
|
||
|
|
||
|
#[test]
|
||
|
fn char_module_success_status() -> io::Result<()> {
|
||
|
let expected = format!("{} ", Color::Green.bold().paint("➜"));
|
||
|
|
||
|
// Status code 0
|
||
|
let output = common::render_module("char").arg("--status=0").output()?;
|
||
|
let actual = String::from_utf8(output.stdout).unwrap();
|
||
|
assert_eq!(expected, actual);
|
||
|
|
||
|
// No status code
|
||
|
let output = common::render_module("char").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("➜"));
|
||
|
|
||
|
// Error status code 1
|
||
|
let output = common::render_module("char").arg("--status=1").output()?;
|
||
|
let actual = String::from_utf8(output.stdout).unwrap();
|
||
|
assert_eq!(expected, actual);
|
||
|
|
||
|
// Random non-zero status code
|
||
|
let output = common::render_module("char")
|
||
|
.arg("--status=54321")
|
||
|
.output()?;
|
||
|
let actual = String::from_utf8(output.stdout).unwrap();
|
||
|
assert_eq!(expected, actual);
|
||
|
|
||
|
// Negative status code!?
|
||
|
let output = common::render_module("char")
|
||
|
.arg("--status=-5000")
|
||
|
.output()?;
|
||
|
let actual = String::from_utf8(output.stdout).unwrap();
|
||
|
assert_eq!(expected, actual);
|
||
|
|
||
|
Ok(())
|
||
|
}
|