tinty 0.31.0

Change the theme of your terminal, text editor and anything else with one command!
//! Integration tests for the `info` subcommand.
//!
//! Covers: displaying scheme info for current/named schemes, `--all` flag,
//! base16 and base24 systems, custom-schemes flag, and error handling for
//! missing repos and invalid scheme names.
//!
//! Requires network access on first run (repos are cached in `tmp/repos/`).

mod utils;

use crate::utils::{setup, write_to_file, ARTIFACTS_DIR, CURRENT_SCHEME_FILE_NAME, REPO_NAME};
use anyhow::{ensure, Result};

#[test]
fn test_cli_info_subcommand_with_setup() -> Result<()> {
    // -------
    // Arrange
    // -------
    let (_, data_path, command_vec, _temp_dir) =
        setup("test_cli_info_subcommand_with_setup", "info")?;
    let scheme_name = "base16-oceanicnext";
    let current_scheme_path = data_path.join(ARTIFACTS_DIR).join(CURRENT_SCHEME_FILE_NAME);
    write_to_file(&current_scheme_path, scheme_name)?;

    // ---
    // Act
    // ---
    let (stdout, _) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stdout.contains("System: base16\nSlug: oceanicnext\nName: OceanicNext"),
        "stdout does not contain expected scheme metadata.\nGot: {stdout}"
    );

    // A single scheme's info output should contain palette colors and metadata
    let line_count = stdout.lines().count();
    ensure!(
        line_count >= 20,
        "Expected at least 20 lines of info output, got {line_count}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_all_with_setup() -> Result<()> {
    // -------
    // Arrange
    // -------
    let (_, data_path, command_vec, _temp_dir) =
        setup("test_cli_info_subcommand_all_with_setup", "info --all")?;
    // ---
    // Act
    // ---
    let (stdout, _) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stdout.contains("System: base16\nSlug: oceanicnext\nName: OceanicNext"),
        "stdout does not contain expected scheme metadata.\nGot first 200 chars: {}",
        &stdout[..stdout.len().min(200)]
    );
    // Each scheme produces at least 16 lines (one per palette color), and there are 250+ schemes.
    let line_count = stdout.lines().count();
    ensure!(
        line_count > 4000,
        "Expected info --all to produce at least 4000 lines, got {line_count}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_with_setup_for_base16() -> Result<()> {
    // -------
    // Arrange
    // -------
    let scheme_name = "base16-oceanicnext";
    let (_, data_path, command_vec, _temp_dir) = setup(
        "test_cli_info_subcommand_with_setup_for_base16",
        format!("info {scheme_name}").as_str(),
    )?;

    // ---
    // Act
    // ---
    let (stdout, _) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stdout.contains("| Color       | Name   | Hex     | ANSI     |"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("Name: OceanicNext"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("System: base16"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("Slug: oceanicnext"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains(" | base00 | #1B2B34 | 0 "),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_with_setup_for_base24() -> Result<()> {
    // -------
    // Arrange
    // -------
    let scheme_name = "base24-ayu-dark";
    let (_, data_path, command_vec, _temp_dir) = setup(
        "test_cli_info_subcommand_with_setup_for_base24",
        format!("info {scheme_name}").as_str(),
    )?;

    // ---
    // Act
    // ---
    let (stdout, _) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stdout.contains("| Color       | Name   | Hex     | ANSI |"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("Name: Ayu Dark"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("System: base24"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains("Slug: ayu-dark"),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );
    ensure!(
        stdout.contains(" | base12 | #f26d78 | 9 "),
        "stdout does not contain expected info output.\nGot: {stdout}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_without_setup() -> Result<()> {
    // -------
    // Arrange
    // -------
    let (config_path, data_path, command_vec, _temp_dir) =
        setup("test_cli_info_subcommand_without_setup", "info")?;
    write_to_file(&config_path, "")?;

    // ---
    // Act
    // ---
    let (_, stderr) = utils::run_command(&command_vec, &data_path, false)?;

    // ------
    // Assert
    // ------
    ensure!(
        stderr.contains("Scheme repo path does not exist:"),
        "Expected stderr to contain 'Scheme repo path does not exist'.\nGot: {stderr}"
    );
    ensure!(
        stderr.contains("Run `tinty install` and try again"),
        "Expected stderr to contain 'Run `tinty install` and try again'.\nGot: {stderr}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_without_setup_with_custom_schemes_flag() -> Result<()> {
    // -------
    // Arrange
    // -------
    let test_name = "test_info_list_subcommand_without_setup_with_custom_schemes_flag";
    let (_, data_path, command_vec, _temp_dir) = setup(test_name, "list --custom-schemes")?;
    let expected_output = format!(
        "You don't have any local custom schemes at: {}/custom-schemes",
        data_path.display(),
    );

    // ---
    // Act
    // ---
    let (_, stderr) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stderr.contains(&expected_output),
        "Expected stderr to contain: {expected_output}\nGot: {stderr}"
    );

    Ok(())
}

#[test]
fn test_cli_info_subcommand_with_setup_invalid_scheme_name() -> Result<()> {
    // -------
    // Arrange
    // -------
    let scheme_name = "mocha";
    let (_, data_path, command_vec, _temp_dir) = setup(
        "test_cli_info_subcommand_with_setup_invalid_scheme_name",
        format!("info {scheme_name}").as_str(),
    )?;

    // ---
    // Act
    // ---
    let (_, stderr) = utils::run_command(&command_vec, &data_path, true)?;

    // ------
    // Assert
    // ------
    ensure!(
        stderr.contains(
            format!(
                r#"Invalid scheme system: "{scheme_name}" from scheme name "{scheme_name}"
Make sure to add the system prefix to the theme name. Eg: base16-oceanicnext
Run `{REPO_NAME} list` to get a list of scheme names"#,
            )
            .as_str()
        ),
        "Expected stderr to contain expected error message.\nGot: {stderr}"
    );

    Ok(())
}