2019-10-05 18:25:25 +00:00
|
|
|
use ansi_term::Color;
|
|
|
|
use std::io;
|
|
|
|
|
|
|
|
use crate::common;
|
2020-04-13 19:23:49 +00:00
|
|
|
use crate::common::TestCommand;
|
2019-10-05 18:25:25 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn not_in_env() -> io::Result<()> {
|
2019-10-15 15:10:16 +00:00
|
|
|
let output = common::render_module("conda")
|
|
|
|
.env_clear()
|
|
|
|
.env("PATH", env!("PATH"))
|
2020-04-13 19:23:49 +00:00
|
|
|
.use_config("".parse().unwrap())
|
2019-10-15 15:10:16 +00:00
|
|
|
.output()?;
|
2019-10-05 18:25:25 +00:00
|
|
|
|
|
|
|
let expected = "";
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_set() -> io::Result<()> {
|
|
|
|
let output = common::render_module("conda")
|
|
|
|
.env_clear()
|
|
|
|
.env("CONDA_DEFAULT_ENV", "astronauts")
|
2020-04-13 19:23:49 +00:00
|
|
|
.use_config("".parse().unwrap())
|
2019-10-05 18:25:25 +00:00
|
|
|
.output()?;
|
|
|
|
|
|
|
|
let expected = format!("via {} ", Color::Green.bold().paint("C astronauts"));
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-12-09 17:59:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn truncate() -> io::Result<()> {
|
2020-04-13 19:23:49 +00:00
|
|
|
let output = common::render_module("conda")
|
|
|
|
.env_clear()
|
|
|
|
.use_config("".parse().unwrap())
|
|
|
|
.env("CONDA_DEFAULT_ENV", "/some/really/long/and/really/annoying/path/that/shouldnt/be/displayed/fully/conda/my_env")
|
|
|
|
.output()?;
|
2019-12-09 17:59:02 +00:00
|
|
|
|
|
|
|
let expected = format!("via {} ", Color::Green.bold().paint("C my_env"));
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
Ok(())
|
|
|
|
}
|