romm-cli 0.39.0

Rust-based CLI and TUI for the ROMM API
Documentation
#![allow(deprecated)]

use assert_cmd::Command;
use httpmock::Method::GET;
use httpmock::MockServer;
use std::fs;

#[tokio::test]
async fn download_single_rom_zip_happy_path() {
    let server = MockServer::start_async().await;
    let output_dir = std::env::temp_dir().join(format!(
        "romm-cli-download-test-{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    fs::create_dir_all(&output_dir).unwrap();

    let rom_body = r#"{
        "id": 42,
        "platform_id": 1,
        "platform_slug": "nes",
        "platform_fs_slug": "nes",
        "platform_custom_name": null,
        "platform_display_name": "NES",
        "fs_name": "game.nes",
        "fs_name_no_tags": "game.nes",
        "fs_name_no_ext": "game",
        "fs_extension": ".nes",
        "fs_path": "nes/game.nes",
        "fs_size_bytes": 4,
        "name": "Test Game",
        "slug": "test-game",
        "summary": null,
        "path_cover_small": null,
        "path_cover_large": null,
        "url_cover": null,
        "has_manual": false,
        "path_manual": null,
        "url_manual": null,
        "is_unidentified": false,
        "is_identified": true,
        "files": []
    }"#;

    let _rom_mock = server
        .mock_async(|when, then| {
            when.method(GET).path("/api/roms/42");
            then.status(200)
                .header("content-type", "application/json")
                .body(rom_body);
        })
        .await;

    let rom_list_body = r#"{"items":[],"total":0,"limit":9999,"offset":0}"#;

    let _related_mock = server
        .mock_async(|when, then| {
            when.method(GET)
                .path("/api/roms")
                .query_param("search_term", "Test Game")
                .query_param("platform_ids", "1");
            then.status(200)
                .header("content-type", "application/json")
                .body(rom_list_body);
        })
        .await;

    let zip_bytes = b"fake";
    let _download_mock = server
        .mock_async(|when, then| {
            when.method(GET)
                .path("/api/roms/download")
                .query_param("rom_ids", "42");
            then.status(200)
                .header("content-type", "application/zip")
                .header("content-length", zip_bytes.len().to_string())
                .body(*zip_bytes);
        })
        .await;

    let mut cmd = Command::cargo_bin("romm-cli").expect("binary");
    cmd.env("API_BASE_URL", server.base_url())
        .env("API_USE_HTTPS", "false")
        .env("API_TOKEN", "test-token")
        .arg("download")
        .arg("42")
        .arg("--no-extras")
        .arg("-y")
        .arg("--output")
        .arg(&output_dir);

    cmd.assert()
        .success()
        .stderr(predicates::str::contains("Saved to"));

    let saved = output_dir.join("nes").join("rom_42.zip");
    assert!(saved.exists(), "expected {:?} to exist", saved);
    assert_eq!(fs::read(saved).unwrap(), zip_bytes);

    let _ = fs::remove_dir_all(output_dir);
}