#![expect(clippy::unwrap_used)]
use wiremock::matchers::{method, path};
use wiremock::{Mock, ResponseTemplate};
use crate::cli::ProductAction;
use crate::test_helpers::{capture_stdout, extract_json, setup_test_env};
use crate::types::{OutputFormat, ProductListType};
#[tokio::test]
async fn product_list_returns_products() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("GET"))
.and(path("/rest/product_accessible"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({"ids": [1, 2]})))
.mount(&mock)
.await;
Mock::given(method("GET"))
.and(path("/rest/product"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
"products": [{
"id": 1,
"name": "TestProduct",
"description": "A test product"
}]
})))
.mount(&mock)
.await;
let action = ProductAction::List {
r#type: ProductListType::Accessible,
};
let (result, output) =
capture_stdout(super::execute(&action, None, OutputFormat::Json, None)).await;
assert!(result.is_ok());
let parsed = extract_json(&output);
assert_eq!(parsed[0]["name"], "TestProduct");
}
#[tokio::test]
async fn product_list_http_500_returns_error() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("GET"))
.and(path("/rest/product_accessible"))
.respond_with(ResponseTemplate::new(500).set_body_string("Internal Server Error"))
.mount(&mock)
.await;
let action = ProductAction::List {
r#type: ProductListType::Accessible,
};
let result = super::execute(&action, None, OutputFormat::Json, None).await;
assert!(result.is_err());
let err = result.unwrap_err().to_string();
assert!(
err.contains("500") || err.contains("Internal Server Error"),
"expected HTTP 500 error, got: {err}"
);
}
#[tokio::test]
async fn product_view_returns_detail() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("GET"))
.and(path("/rest/product"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
"products": [{
"id": 1,
"name": "Firefox",
"description": "Web browser",
"is_active": true,
"components": [],
"versions": [],
"milestones": []
}]
})))
.mount(&mock)
.await;
let action = ProductAction::View {
name: "Firefox".to_string(),
};
let (result, output) =
capture_stdout(super::execute(&action, None, OutputFormat::Json, None)).await;
assert!(result.is_ok());
let parsed = extract_json(&output);
assert_eq!(parsed["name"], "Firefox");
assert_eq!(parsed["description"], "Web browser");
}
#[tokio::test]
async fn product_create_returns_id() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("POST"))
.and(path("/rest/product"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({"id": 5})))
.mount(&mock)
.await;
let action = ProductAction::Create {
name: "NewProduct".to_string(),
description: "New product".to_string(),
version: "1.0".to_string(),
is_open: true,
};
let (result, output) =
capture_stdout(super::execute(&action, None, OutputFormat::Json, None)).await;
assert!(result.is_ok());
let parsed = extract_json(&output);
assert_eq!(parsed["id"], 5);
}
#[tokio::test]
async fn product_update_succeeds() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("PUT"))
.and(path("/rest/product/Firefox"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
"products": [{"id": 1, "changes": {}}]
})))
.mount(&mock)
.await;
let action = ProductAction::Update {
name: "Firefox".to_string(),
description: Some("Updated".to_string()),
default_milestone: None,
is_open: None,
};
let (result, output) =
capture_stdout(super::execute(&action, None, OutputFormat::Json, None)).await;
assert!(result.is_ok());
let parsed = extract_json(&output);
assert_eq!(parsed["action"], "updated");
}