mod utils;
use crate::utils::{setup, write_to_file};
use anyhow::{ensure, Result};
#[test]
fn test_cli_install_subcommand_non_unique_config_item_name() -> Result<()> {
let (config_path, data_path, command_vec, _temp_dir) = 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, &data_path, true)?;
ensure!(
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, data_path, command_vec, _temp_dir) = 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, &data_path, true)?;
ensure!(
stderr.contains(expected_output),
"stdout does not contain the expected output"
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_without_setup() -> Result<()> {
let (_, data_path, command_vec, _temp_dir) =
setup("test_cli_install_subcommand_without_setup", "install")?;
let expected_output = "tinted-shell installed";
let (stdout, _) = utils::run_command(&command_vec, &data_path, false)?;
ensure!(
stdout.contains(expected_output),
"Expected stdout to contain: {expected_output}\nGot: {stdout}"
);
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_setup() -> Result<()> {
let (_, data_path, command_vec, _temp_dir) =
setup("test_cli_install_subcommand_with_setup", "install")?;
let expected_output = "tinted-shell already installed";
utils::run_command(&command_vec, &data_path, true)?;
let (stdout, stderr) = utils::run_command(&command_vec, &data_path, true)?;
ensure!(
stdout.contains(expected_output),
"Expected stdout to contain: {expected_output}\nGot: {stdout}"
);
ensure!(stderr.is_empty(), "Expected empty stderr, got: {stderr}");
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_setup_quiet_flag() -> Result<()> {
let (_, data_path, command_vec, _temp_dir) = setup(
"test_cli_install_subcommand_with_setup_quiet_flag",
"install --quiet",
)?;
utils::run_command(&command_vec, &data_path, true)?;
let (stdout, stderr) = utils::run_command(&command_vec, &data_path, true)?;
ensure!(stdout.is_empty(), "Expected empty stdout, got: {stdout}");
ensure!(stderr.is_empty(), "Expected empty stderr, got: {stderr}");
Ok(())
}
#[test]
fn test_cli_install_subcommand_with_tag_revision() -> Result<()> {
utils::test_install_with_revision(
"test_cli_install_subcommand_with_tag_revision",
"https://github.com/tinted-theming/tinted-vim",
"tinted-vim",
"colors",
"0e4f0d222b9013cc7e537ac6cd29bf83ba19094a",
"0e4f0d222b9013cc7e537ac6cd29bf83ba19094a",
)
}
#[test]
fn test_cli_install_subcommand_with_branch_revision() -> Result<()> {
utils::test_install_with_revision(
"test_cli_install_subcommand_with_branch_revision",
"https://github.com/tinted-theming/tinted-jqp",
"tinted-jqp",
"themes",
"tinty-test-01",
"43b36ed5eadad59a5027e442330d2485b8607b34",
)
}
#[test]
fn test_cli_install_subcommand_with_commit_sha1_revision() -> Result<()> {
utils::test_install_with_revision(
"test_cli_install_subcommand_with_commit_sha1_revision",
"https://github.com/tinted-theming/tinted-jqp",
"tinted-jqp",
"themes",
"f998d17414a7218904bb5b4fdada5daa2b2d9d5e",
"f998d17414a7218904bb5b4fdada5daa2b2d9d5e",
)
}
#[test]
fn test_cli_install_subcommand_with_non_existent_revision() -> Result<()> {
let (config_path, data_path, command_vec, _temp_dir) = setup(
"test_cli_install_subcommand_with_non_existent_revision",
"install",
)?;
let commit_sha = "invalid-revision";
let config_content = format!(
r#"[[items]]
path = "https://github.com/tinted-theming/tinted-jqp"
name = "tinted-jqp"
themes-dir = "themes"
revision = "{commit_sha}"
"#
);
write_to_file(&config_path, &config_content)?;
let repo_path = data_path.join("repos/tinted-jqp");
let (_, stderr) = utils::run_command(&command_vec, &data_path, false)?;
let path_exists = repo_path.exists();
ensure!(
stderr.contains(format!("cannot resolve {commit_sha}").as_str()),
"Expected revision not found",
);
ensure!(
!path_exists,
format!("Expected repo path {} to not exist", repo_path.display())
);
Ok(())
}