mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
097f1b05f1
- Create `Config` struct that is added to `Context` when initialized - Read `~/.confg/starship.toml` during initialization (can be updated later to also look at `$XDG_CONFIG_HOME`) - `Context` now has a method for creating modules. This allows us to provide modules with a reference to the configuration specific to that module
68 lines
1.8 KiB
Rust
68 lines
1.8 KiB
Rust
use ansi_term::Color;
|
|
use std::io;
|
|
|
|
use crate::common;
|
|
|
|
// TODO: Add tests for if root user (UID == 0)
|
|
// Requires mocking
|
|
|
|
#[test]
|
|
fn no_env_variables() -> io::Result<()> {
|
|
let output = common::render_module("username").env_clear().output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!("", actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn logname_equals_user() -> io::Result<()> {
|
|
let output = common::render_module("username")
|
|
.env_clear()
|
|
.env("LOGNAME", "astronaut")
|
|
.env("USER", "astronaut")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!("", actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn ssh_wo_username() -> io::Result<()> {
|
|
// SSH connection w/o username
|
|
let output = common::render_module("username")
|
|
.env_clear()
|
|
.env("SSH_CONNECTION", "192.168.223.17 36673 192.168.223.229 22")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
assert_eq!("", actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn current_user_not_logname() -> io::Result<()> {
|
|
let output = common::render_module("username")
|
|
.env_clear()
|
|
.env("LOGNAME", "astronaut")
|
|
.env("USER", "cosmonaut")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("via {} ", Color::Yellow.bold().paint("cosmonaut"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn ssh_connection() -> io::Result<()> {
|
|
let output = common::render_module("username")
|
|
.env_clear()
|
|
.env("USER", "astronaut")
|
|
.env("SSH_CONNECTION", "192.168.223.17 36673 192.168.223.229 22")
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = format!("via {} ", Color::Yellow.bold().paint("astronaut"));
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|