2019-09-02 19:56:59 +00:00
|
|
|
use ansi_term::Color;
|
|
|
|
use std::io;
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
use crate::common::{self, TestCommand};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_changed_truncation_symbol() -> io::Result<()> {
|
|
|
|
test_truncate_length_with_config(
|
|
|
|
"1337_hello_world",
|
|
|
|
15,
|
|
|
|
"1337_hello_worl",
|
|
|
|
"%",
|
|
|
|
"truncation_symbol = \"%\"",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_no_truncation_symbol() -> io::Result<()> {
|
|
|
|
test_truncate_length_with_config(
|
|
|
|
"1337_hello_world",
|
|
|
|
15,
|
|
|
|
"1337_hello_worl",
|
|
|
|
"",
|
|
|
|
"truncation_symbol = \"\"",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multi_char_truncation_symbol() -> io::Result<()> {
|
|
|
|
test_truncate_length_with_config(
|
|
|
|
"1337_hello_world",
|
|
|
|
15,
|
|
|
|
"1337_hello_worl",
|
|
|
|
"a",
|
|
|
|
"truncation_symbol = \"apple\"",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ascii_boundary_below() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", 15, "1337_hello_worl", "…")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ascii_boundary_on() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", 16, "1337_hello_world", "")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ascii_boundary_above() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", 17, "1337_hello_world", "")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_one() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", 1, "1", "…")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_zero() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", 0, "1337_hello_world", "")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_negative() -> io::Result<()> {
|
|
|
|
test_truncate_length("1337_hello_world", -1, "1337_hello_world", "")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hindi_truncation() -> io::Result<()> {
|
|
|
|
test_truncate_length("नमस्ते", 3, "नमस्", "…")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hindi_truncation2() -> io::Result<()> {
|
|
|
|
test_truncate_length("नमस्त", 3, "नमस्", "…")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_japanese_truncation() -> io::Result<()> {
|
|
|
|
test_truncate_length("がんばってね", 4, "がんばっ", "…")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_truncate_length(
|
|
|
|
branch_name: &str,
|
|
|
|
truncate_length: i64,
|
|
|
|
expected_name: &str,
|
|
|
|
truncation_symbol: &str,
|
|
|
|
) -> io::Result<()> {
|
2019-09-04 23:13:53 +00:00
|
|
|
test_truncate_length_with_config(
|
2019-09-02 19:56:59 +00:00
|
|
|
branch_name,
|
|
|
|
truncate_length,
|
|
|
|
expected_name,
|
|
|
|
truncation_symbol,
|
|
|
|
"",
|
2019-09-04 23:13:53 +00:00
|
|
|
)
|
2019-09-02 19:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_truncate_length_with_config(
|
|
|
|
branch_name: &str,
|
|
|
|
truncate_length: i64,
|
|
|
|
expected_name: &str,
|
|
|
|
truncation_symbol: &str,
|
|
|
|
config_options: &str,
|
|
|
|
) -> io::Result<()> {
|
2019-09-07 16:25:01 +00:00
|
|
|
let repo_dir = common::create_fixture_repo()?;
|
2019-09-02 19:56:59 +00:00
|
|
|
|
|
|
|
Command::new("git")
|
|
|
|
.args(&["checkout", "-b", branch_name])
|
|
|
|
.current_dir(repo_dir.as_path())
|
|
|
|
.output()?;
|
|
|
|
|
|
|
|
let output = common::render_module("git_branch")
|
|
|
|
.use_config(
|
|
|
|
toml::from_str(&format!(
|
|
|
|
"
|
|
|
|
[git_branch]
|
|
|
|
truncation_length = {}
|
|
|
|
{}
|
|
|
|
",
|
|
|
|
truncate_length, config_options
|
|
|
|
))
|
|
|
|
.unwrap(),
|
|
|
|
)
|
|
|
|
.arg("--path")
|
|
|
|
.arg(repo_dir)
|
|
|
|
.output()?;
|
|
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
|
|
|
|
let expected = format!(
|
|
|
|
"on {} ",
|
|
|
|
Color::Purple
|
|
|
|
.bold()
|
|
|
|
.paint(format!("\u{e0a0} {}{}", expected_name, truncation_symbol)),
|
|
|
|
);
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
Ok(())
|
|
|
|
}
|