feat(cli): Support for marking a Sonarr history item as 'failed'

This commit is contained in:
2024-11-22 16:21:43 -07:00
parent 9476caa392
commit 539ad75fe6
2 changed files with 71 additions and 0 deletions
+55
View File
@@ -28,6 +28,31 @@ mod tests {
assert!(result.is_ok());
}
#[rstest]
fn test_mark_history_item_as_failed_requires_history_item_id() {
let result =
Cli::command().try_get_matches_from(["managarr", "sonarr", "mark-history-item-as-failed"]);
assert!(result.is_err());
assert_eq!(
result.unwrap_err().kind(),
ErrorKind::MissingRequiredArgument
);
}
#[rstest]
fn test_mark_history_item_as_failed_requirements_satisfied() {
let result = Cli::command().try_get_matches_from([
"managarr",
"sonarr",
"mark-history-item-as-failed",
"--history-item-id",
"1",
]);
assert!(result.is_ok());
}
#[rstest]
fn test_manual_season_search_requires_series_id() {
let result = Cli::command().try_get_matches_from([
@@ -160,6 +185,36 @@ mod tests {
assert!(result.is_ok());
}
#[tokio::test]
async fn test_mark_history_item_as_failed_command() {
let expected_history_item_id = 1;
let mut mock_network = MockNetworkTrait::new();
mock_network
.expect_handle_network_event()
.with(eq::<NetworkEvent>(
SonarrEvent::MarkHistoryItemAsFailed(expected_history_item_id).into(),
))
.times(1)
.returning(|_| {
Ok(Serdeable::Sonarr(SonarrSerdeable::Value(
json!({"testResponse": "response"}),
)))
});
let app_arc = Arc::new(Mutex::new(App::default()));
let mark_history_item_as_failed_command =
SonarrCommand::MarkHistoryItemAsFailed { history_item_id: 1 };
let result = SonarrCliHandler::with(
&app_arc,
mark_history_item_as_failed_command,
&mut mock_network,
)
.handle()
.await;
assert!(result.is_ok());
}
#[tokio::test]
async fn test_manual_episode_search_command() {
let expected_episode_id = 1;