mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 12:57:50 +00:00
d91b6b7137
Have added some null tests to modules that don't already have them.
133 lines
3.4 KiB
Rust
133 lines
3.4 KiB
Rust
use ansi_term::Color;
|
|
use remove_dir_all::remove_dir_all;
|
|
use std::process::Command;
|
|
use std::{io, str};
|
|
|
|
use crate::common::{self, TestCommand};
|
|
|
|
#[test]
|
|
fn show_nothing_on_empty_dir() -> io::Result<()> {
|
|
let repo_dir = tempfile::tempdir()?;
|
|
|
|
let output = common::render_module("git_commit")
|
|
.arg("--path")
|
|
.arg(repo_dir.path())
|
|
.output()?;
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = "";
|
|
assert_eq!(expected, actual);
|
|
repo_dir.close()
|
|
}
|
|
|
|
#[test]
|
|
fn test_render_commit_hash() -> io::Result<()> {
|
|
let repo_dir = common::create_fixture_repo()?;
|
|
|
|
let mut git_output = Command::new("git")
|
|
.args(&["rev-parse", "HEAD"])
|
|
.current_dir(repo_dir.as_path())
|
|
.output()?
|
|
.stdout;
|
|
git_output.truncate(7);
|
|
let expected_hash = str::from_utf8(&git_output).unwrap();
|
|
|
|
let output = common::render_module("git_commit")
|
|
.use_config(toml::toml! {
|
|
[git_commit]
|
|
only_detached = false
|
|
})
|
|
.arg("--path")
|
|
.arg(&repo_dir)
|
|
.output()?;
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
let expected = Color::Green
|
|
.bold()
|
|
.paint(format!("({}) ", expected_hash))
|
|
.to_string();
|
|
|
|
assert_eq!(expected, actual);
|
|
remove_dir_all(repo_dir)
|
|
}
|
|
|
|
#[test]
|
|
fn test_render_commit_hash_len_override() -> io::Result<()> {
|
|
let repo_dir = common::create_fixture_repo()?;
|
|
|
|
let mut git_output = Command::new("git")
|
|
.args(&["rev-parse", "HEAD"])
|
|
.current_dir(repo_dir.as_path())
|
|
.output()?
|
|
.stdout;
|
|
git_output.truncate(14);
|
|
let expected_hash = str::from_utf8(&git_output).unwrap();
|
|
|
|
let output = common::render_module("git_commit")
|
|
.use_config(toml::toml! {
|
|
[git_commit]
|
|
only_detached = false
|
|
commit_hash_length = 14
|
|
})
|
|
.arg("--path")
|
|
.arg(&repo_dir)
|
|
.output()?;
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
let expected = Color::Green
|
|
.bold()
|
|
.paint(format!("({}) ", expected_hash))
|
|
.to_string();
|
|
|
|
assert_eq!(expected, actual);
|
|
remove_dir_all(repo_dir)
|
|
}
|
|
|
|
#[test]
|
|
fn test_render_commit_hash_only_detached_on_branch() -> io::Result<()> {
|
|
let repo_dir = common::create_fixture_repo()?;
|
|
|
|
let output = common::render_module("git_commit")
|
|
.arg("--path")
|
|
.arg(&repo_dir)
|
|
.output()?;
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert_eq!("", actual);
|
|
remove_dir_all(repo_dir)
|
|
}
|
|
|
|
#[test]
|
|
fn test_render_commit_hash_only_detached_on_detached() -> io::Result<()> {
|
|
let repo_dir = common::create_fixture_repo()?;
|
|
|
|
Command::new("git")
|
|
.args(&["checkout", "@~1"])
|
|
.current_dir(repo_dir.as_path())
|
|
.output()?;
|
|
|
|
let mut git_output = Command::new("git")
|
|
.args(&["rev-parse", "HEAD"])
|
|
.current_dir(repo_dir.as_path())
|
|
.output()?
|
|
.stdout;
|
|
git_output.truncate(7);
|
|
let expected_hash = str::from_utf8(&git_output).unwrap();
|
|
|
|
let output = common::render_module("git_commit")
|
|
.arg("--path")
|
|
.arg(&repo_dir)
|
|
.output()?;
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
let expected = Color::Green
|
|
.bold()
|
|
.paint(format!("({}) ", expected_hash))
|
|
.to_string();
|
|
|
|
assert_eq!(expected, actual);
|
|
remove_dir_all(repo_dir)
|
|
}
|