mod utils;
use std::{process::Command, str};
use crate::utils::{setup, write_to_file};
use anyhow::Result;
#[test]
fn test_cli_install_subcommand_non_unique_config_item_name() -> Result<()> {
let (config_path, _, command_vec, cleanup) = setup(
"test_cli_install_subcommand_non_unique_config_item_name",
"install",
)?;
let config_content = r##"[[items]]
path = "https://github.com/tinted-theming/tinted-shell"
name = "non-unique-name"
themes-dir = "some-dir"
[[items]]
path = "https://github.com/tinted-theming/tinted-shell"
name = "non-unique-name"
themes-dir = "some-dir"
"##;
let expected_output = "config.toml item.name should be unique values, but \"non-unique-name\" is used for more than 1 item.name. Please change this to a unique value.";
write_to_file(&config_path, config_content)?;
let (_, stderr) = utils::run_command(command_vec).unwrap();
cleanup()?;
assert!(
stderr.contains(expected_output),
"stdout does not contain the expected output"
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_invalid_config_item_path() -> Result<()> {
let (config_path, _, command_vec, cleanup) = setup(
"test_cli_install_subcommand_invalid_config_item_path",
"install",
)?;
let config_content = r##"[[items]]
path = "/path/to/non-existant/directory"
name = "some-name"
themes-dir = "some-dir""##;
let expected_output = "One of your config.toml items has an invalid `path` value. \"/path/to/non-existant/directory\" is not a valid url and is not a path to an existing local directory";
write_to_file(&config_path, config_content)?;
let (_, stderr) = utils::run_command(command_vec).unwrap();
cleanup()?;
assert!(
stderr.contains(expected_output),
"stdout does not contain the expected output"
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_without_setup() -> Result<()> {
let (_, _, command_vec, cleanup) =
setup("test_cli_install_subcommand_without_setup", "install")?;
let expected_output = "tinted-shell installed";
let (stdout, _) = utils::run_command(command_vec).unwrap();
assert!(
stdout.contains(expected_output),
"stdout does not contain the expected output"
);
cleanup()?;
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_setup() -> Result<()> {
let (_, _, command_vec, cleanup) = setup("test_cli_install_subcommand_with_setup", "install")?;
let expected_output = "tinted-shell already installed";
utils::run_command(command_vec.clone()).unwrap();
let (stdout, stderr) = utils::run_command(command_vec).unwrap();
assert!(
stdout.contains(expected_output),
"stdout does not contain the expected output"
);
assert!(
stderr.is_empty(),
"stderr does not contain the expected output"
);
cleanup()?;
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_setup_quiet_flag() -> Result<()> {
let (_, _, command_vec, cleanup) = setup(
"test_cli_install_subcommand_with_setup_quiet_flag",
"install --quiet",
)?;
utils::run_command(command_vec.clone()).unwrap();
let (stdout, stderr) = utils::run_command(command_vec).unwrap();
assert!(
stdout.is_empty(),
"stdout does not contain the expected output"
);
assert!(
stderr.is_empty(),
"stderr does not contain the expected output"
);
cleanup()?;
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_tag_revision() -> Result<()> {
let (config_path, repo_path, command_vec, cleanup) =
setup("test_cli_install_subcommand_with_tag_revision", "install")?;
let config_content = r##"[[items]]
path = "https://github.com/tinted-theming/tinted-jqp"
name = "tinted-jqp"
themes-dir = "themes"
revision = "tinty-test-tag-01"
"##;
write_to_file(&config_path, config_content)?;
let mut repo_path = repo_path.clone();
repo_path.push("repos");
repo_path.push("tinted-jqp");
let (_, _) = utils::run_command(command_vec).unwrap();
let output = Command::new("git")
.current_dir(repo_path)
.args(vec!["rev-parse", "--verify", "HEAD"])
.output()
.expect("Failed to execute git rev-parse --verify HEAD");
let stdout = str::from_utf8(&output.stdout).expect("Not valid UTF-8");
let expected_revision = "b6c6a7803c2669022167c9cfc5efb3dc3928507d";
let has_match = stdout.lines().any(|line| line == expected_revision);
cleanup()?;
assert!(
has_match == true,
"Expected revision {} not found",
expected_revision,
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_branch_revision() -> Result<()> {
let (config_path, repo_path, command_vec, cleanup) = setup(
"test_cli_install_subcommand_with_branch_revision",
"install",
)?;
let config_content = r##"[[items]]
path = "https://github.com/tinted-theming/tinted-jqp"
name = "tinted-jqp"
themes-dir = "themes"
revision = "tinty-test-01"
"##;
write_to_file(&config_path, config_content)?;
let (_, _) = utils::run_command(command_vec).unwrap();
let mut repo_path = repo_path.clone();
repo_path.push("repos");
repo_path.push("tinted-jqp");
let output = Command::new("git")
.current_dir(repo_path)
.args(vec!["rev-parse", "--verify", "HEAD"])
.output()
.expect("Failed to execute git rev-parse --verify HEAD");
let stdout = str::from_utf8(&output.stdout).expect("Not valid UTF-8");
let expected_revision = "43b36ed5eadad59a5027e442330d2485b8607b34";
let has_match = stdout.lines().any(|line| line == expected_revision);
cleanup()?;
assert!(
has_match == true,
"Expected revision {} not found",
expected_revision,
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_commit_sha1_revision() -> Result<()> {
let (config_path, repo_path, command_vec, cleanup) = setup(
"test_cli_install_subcommand_with_commit_sha1_revision",
"install",
)?;
let config_content = r##"[[items]]
path = "https://github.com/tinted-theming/tinted-jqp"
name = "tinted-jqp"
themes-dir = "themes"
revision = "f998d17414a7218904bb5b4fdada5daa2b2d9d5e"
"##;
write_to_file(&config_path, config_content)?;
let (_, _) = utils::run_command(command_vec).unwrap();
let mut repo_path = repo_path.clone();
repo_path.push("repos");
repo_path.push("tinted-jqp");
let output = Command::new("git")
.current_dir(repo_path)
.args(vec!["rev-parse", "--verify", "HEAD"])
.output()
.expect("Failed to execute git rev-parse --verify HEAD");
let stdout = str::from_utf8(&output.stdout).expect("Not valid UTF-8");
let expected_revision = "f998d17414a7218904bb5b4fdada5daa2b2d9d5e";
let has_match = stdout.lines().any(|line| line == expected_revision);
cleanup()?;
assert!(
has_match == true,
"Expected revision {} not found",
expected_revision,
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_non_existent_revision() -> Result<()> {
let (config_path, repo_path, command_vec, cleanup) = setup(
"test_cli_install_subcommand_with_non_existent_revision",
"install",
)?;
let config_content = r##"[[items]]
path = "https://github.com/tinted-theming/tinted-jqp"
name = "tinted-jqp"
themes-dir = "themes"
revision = "invalid-revision"
"##;
write_to_file(&config_path, config_content)?;
let mut repo_path = repo_path.clone();
repo_path.push("repos");
repo_path.push("tinted-jqp");
let (_, stderr) = utils::run_command(command_vec).unwrap();
let path_exists = repo_path.exists();
cleanup()?;
assert!(
stderr.contains("cannot resolve invalid-revision"),
"Expected revision not found",
);
assert!(
!path_exists,
"Expected repo path {} to not exist",
repo_path.display(),
);
Ok(())
}