#[cfg(test)] mod tests { use crate::Cli; use crate::cli::{ Command, sonarr::{SonarrCommand, get_command_handler::SonarrGetCommand}, }; use clap::CommandFactory; use pretty_assertions::assert_eq; #[test] fn test_sonarr_get_command_from() { let command = SonarrGetCommand::SystemStatus; let result = Command::from(command.clone()); assert_eq!(result, Command::Sonarr(SonarrCommand::Get(command))); } mod cli { use clap::error::ErrorKind; use pretty_assertions::assert_eq; use super::*; #[test] fn test_all_indexer_settings_has_no_arg_requirements() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "all-indexer-settings"]); assert_ok!(&result); } #[test] fn test_system_status_has_no_arg_requirements() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "system-status"]); assert_ok!(&result); } #[test] fn test_episode_details_requires_episode_id() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "episode-details"]); assert_err!(&result); assert_eq!( result.unwrap_err().kind(), ErrorKind::MissingRequiredArgument ); } #[test] fn test_episode_details_requirements_satisfied() { let result = Cli::command().try_get_matches_from([ "managarr", "sonarr", "get", "episode-details", "--episode-id", "1", ]); assert_ok!(&result); } #[test] fn test_get_host_config_has_no_arg_requirements() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "host-config"]); assert_ok!(&result); } #[test] fn test_get_security_config_has_no_arg_requirements() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "security-config"]); assert_ok!(&result); } #[test] fn test_series_details_requires_series_id() { let result = Cli::command().try_get_matches_from(["managarr", "sonarr", "get", "series-details"]); assert_err!(&result); assert_eq!( result.unwrap_err().kind(), ErrorKind::MissingRequiredArgument ); } #[test] fn test_series_details_requirements_satisfied() { let result = Cli::command().try_get_matches_from([ "managarr", "sonarr", "get", "series-details", "--series-id", "1", ]); assert_ok!(&result); } } mod handler { use std::sync::Arc; use mockall::predicate::eq; use serde_json::json; use tokio::sync::Mutex; use crate::{ app::App, cli::{ CliCommandHandler, sonarr::get_command_handler::{SonarrGetCommand, SonarrGetCommandHandler}, }, models::{Serdeable, sonarr_models::SonarrSerdeable}, network::{MockNetworkTrait, NetworkEvent, sonarr_network::SonarrEvent}, }; #[tokio::test] async fn test_handle_get_all_indexer_settings_command() { let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::( SonarrEvent::GetAllIndexerSettings.into(), )) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_all_indexer_settings_command = SonarrGetCommand::AllIndexerSettings; let result = SonarrGetCommandHandler::with( &app_arc, get_all_indexer_settings_command, &mut mock_network, ) .handle() .await; assert_ok!(&result); } #[tokio::test] async fn test_handle_get_episode_details_command() { let expected_episode_id = 1; let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::( SonarrEvent::GetEpisodeDetails(expected_episode_id).into(), )) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_episode_details_command = SonarrGetCommand::EpisodeDetails { episode_id: 1 }; let result = SonarrGetCommandHandler::with(&app_arc, get_episode_details_command, &mut mock_network) .handle() .await; assert_ok!(&result); } #[tokio::test] async fn test_handle_get_host_config_command() { let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::(SonarrEvent::GetHostConfig.into())) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_host_config_command = SonarrGetCommand::HostConfig; let result = SonarrGetCommandHandler::with(&app_arc, get_host_config_command, &mut mock_network) .handle() .await; assert_ok!(&result); } #[tokio::test] async fn test_handle_get_security_config_command() { let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::(SonarrEvent::GetSecurityConfig.into())) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_security_config_command = SonarrGetCommand::SecurityConfig; let result = SonarrGetCommandHandler::with(&app_arc, get_security_config_command, &mut mock_network) .handle() .await; assert_ok!(&result); } #[tokio::test] async fn test_handle_get_series_details_command() { let expected_series_id = 1; let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::( SonarrEvent::GetSeriesDetails(expected_series_id).into(), )) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_series_details_command = SonarrGetCommand::SeriesDetails { series_id: 1 }; let result = SonarrGetCommandHandler::with(&app_arc, get_series_details_command, &mut mock_network) .handle() .await; assert_ok!(&result); } #[tokio::test] async fn test_handle_get_system_status_command() { let mut mock_network = MockNetworkTrait::new(); mock_network .expect_handle_network_event() .with(eq::(SonarrEvent::GetStatus.into())) .times(1) .returning(|_| { Ok(Serdeable::Sonarr(SonarrSerdeable::Value( json!({"testResponse": "response"}), ))) }); let app_arc = Arc::new(Mutex::new(App::test_default())); let get_system_status_command = SonarrGetCommand::SystemStatus; let result = SonarrGetCommandHandler::with(&app_arc, get_system_status_command, &mut mock_network) .handle() .await; assert_ok!(&result); } } }