#![expect(clippy::unwrap_used)]
use wiremock::matchers::{method, path};
use wiremock::{Mock, ResponseTemplate};
use crate::cli::ComponentAction;
use crate::test_helpers::setup_test_env;
use crate::types::OutputFormat;
#[tokio::test]
async fn component_create_succeeds() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("POST"))
.and(path("/rest/component"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({"id": 42})))
.mount(&mock)
.await;
let action = ComponentAction::Create {
product: "TestProduct".to_string(),
name: "Backend".to_string(),
description: "Backend component".to_string(),
default_assignee: "dev@test.com".to_string(),
};
let mut __io_a1 = crate::test_helpers::CapturedIo::new();
let result = super::execute(
&action,
None,
OutputFormat::Json,
None,
&mut __io_a1.writers(),
)
.await;
let output = __io_a1.out_str().to_string();
assert!(result.is_ok());
let parsed = serde_json::from_str::<serde_json::Value>(output.trim()).unwrap();
assert_eq!(parsed["id"], 42);
}
#[tokio::test]
async fn component_create_http_500_returns_error() {
let mut __cap_io = crate::test_helpers::CapturedIo::new();
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("POST"))
.and(path("/rest/component"))
.respond_with(ResponseTemplate::new(500).set_body_string("Internal Server Error"))
.mount(&mock)
.await;
let action = ComponentAction::Create {
product: "TestProduct".to_string(),
name: "Backend".to_string(),
description: "Backend component".to_string(),
default_assignee: "dev@test.com".to_string(),
};
let result = super::execute(
&action,
None,
OutputFormat::Json,
None,
&mut __cap_io.writers(),
)
.await;
assert!(result.is_err());
}
#[tokio::test]
async fn component_update_succeeds() {
let (_lock, mock, _tmp) = setup_test_env().await;
Mock::given(method("PUT"))
.and(path("/rest/component/10"))
.respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({"id": 10})))
.mount(&mock)
.await;
let action = ComponentAction::Update {
id: 10,
name: Some("Updated".to_string()),
description: None,
default_assignee: None,
};
let mut __io_a2 = crate::test_helpers::CapturedIo::new();
let result = super::execute(
&action,
None,
OutputFormat::Json,
None,
&mut __io_a2.writers(),
)
.await;
let output = __io_a2.out_str().to_string();
assert!(result.is_ok());
let parsed = serde_json::from_str::<serde_json::Value>(output.trim()).unwrap();
assert_eq!(parsed["id"], 10);
assert_eq!(parsed["action"], "updated");
}