feat(cli): Support for triggering an automatic episode search in Sonarr

This commit is contained in:
2024-11-22 18:35:38 -07:00
parent 40bb22ef7c
commit b8e4deb80f
2 changed files with 74 additions and 0 deletions
+16
View File
@@ -121,6 +121,15 @@ pub enum SonarrCommand {
#[arg(long, help = "The season number to search for", required = true)] #[arg(long, help = "The season number to search for", required = true)]
season_number: i64, season_number: i64,
}, },
#[command(about = "Trigger an automatic search for the episode with the specified ID")]
TriggerAutomaticEpisodeSearch {
#[arg(
long,
help = "The ID of the episode you want to trigger an automatic search for",
required = true
)]
episode_id: i64,
},
} }
impl From<SonarrCommand> for Command { impl From<SonarrCommand> for Command {
@@ -250,6 +259,13 @@ impl<'a, 'b> CliCommandHandler<'a, 'b, SonarrCommand> for SonarrCliHandler<'a, '
.await?; .await?;
serde_json::to_string_pretty(&resp)? serde_json::to_string_pretty(&resp)?
} }
SonarrCommand::TriggerAutomaticEpisodeSearch { episode_id } => {
let resp = self
.network
.handle_network_event(SonarrEvent::TriggerAutomaticEpisodeSearch(Some(episode_id)).into())
.await?;
serde_json::to_string_pretty(&resp)?
}
}; };
Ok(result) Ok(result)
+58
View File
@@ -269,6 +269,34 @@ mod tests {
assert!(result.is_ok()); assert!(result.is_ok());
} }
#[rstest]
fn test_trigger_automatic_episode_search_requires_episode_id() {
let result = Cli::command().try_get_matches_from([
"managarr",
"sonarr",
"trigger-automatic-episode-search",
]);
assert!(result.is_err());
assert_eq!(
result.unwrap_err().kind(),
ErrorKind::MissingRequiredArgument
);
}
#[test]
fn test_trigger_automatic_episode_search_requirements_satisfied() {
let result = Cli::command().try_get_matches_from([
"managarr",
"sonarr",
"trigger-automatic-episode-search",
"--episode-id",
"1",
]);
assert!(result.is_ok());
}
} }
mod handler { mod handler {
@@ -656,5 +684,35 @@ mod tests {
assert!(result.is_ok()); assert!(result.is_ok());
} }
#[tokio::test]
async fn test_trigger_automatic_episode_search_command() {
let expected_episode_id = 1;
let mut mock_network = MockNetworkTrait::new();
mock_network
.expect_handle_network_event()
.with(eq::<NetworkEvent>(
SonarrEvent::TriggerAutomaticEpisodeSearch(Some(expected_episode_id)).into(),
))
.times(1)
.returning(|_| {
Ok(Serdeable::Sonarr(SonarrSerdeable::Value(
json!({"testResponse": "response"}),
)))
});
let app_arc = Arc::new(Mutex::new(App::default()));
let trigger_automatic_episode_search_command =
SonarrCommand::TriggerAutomaticEpisodeSearch { episode_id: 1 };
let result = SonarrCliHandler::with(
&app_arc,
trigger_automatic_episode_search_command,
&mut mock_network,
)
.handle()
.await;
assert!(result.is_ok());
}
} }
} }