Our own Helm Command/Resource/Executor #13
| @ -3,9 +3,7 @@ use harmony::{ | ||||
|     inventory::Inventory, | ||||
|     maestro::Maestro, | ||||
|     modules::{ | ||||
|         { | ||||
|         lamp::{LAMPConfig, LAMPScore}, | ||||
|     }, | ||||
|         monitoring::monitoring_alerting::MonitoringAlertingStackScore, | ||||
|     }, | ||||
|     topology::{K8sAnywhereTopology, Url}, | ||||
|  | ||||
| @ -370,10 +370,13 @@ mod tests { | ||||
|         let result = get_servers_for_backend(&backend, &haproxy); | ||||
| 
 | ||||
|         // Check the result
 | ||||
|         assert_eq!(result, vec![BackendServer { | ||||
|             address: "192.168.1.1".to_string(), | ||||
|             port: 80, | ||||
|         },]); | ||||
|         assert_eq!( | ||||
|             result, | ||||
|             vec![BackendServer { | ||||
|                 address: "192.168.1.1".to_string(), | ||||
|                 port: 80, | ||||
|             },] | ||||
|         ); | ||||
|     } | ||||
|     #[test] | ||||
|     fn test_get_servers_for_backend_no_linked_servers() { | ||||
| @ -430,15 +433,18 @@ mod tests { | ||||
|         // Call the function
 | ||||
|         let result = get_servers_for_backend(&backend, &haproxy); | ||||
|         // Check the result
 | ||||
|         assert_eq!(result, vec![ | ||||
|             BackendServer { | ||||
|                 address: "some-hostname.test.mcd".to_string(), | ||||
|                 port: 80, | ||||
|             }, | ||||
|             BackendServer { | ||||
|                 address: "192.168.1.2".to_string(), | ||||
|                 port: 8080, | ||||
|             }, | ||||
|         ]); | ||||
|         assert_eq!( | ||||
|             result, | ||||
|             vec![ | ||||
|                 BackendServer { | ||||
|                     address: "some-hostname.test.mcd".to_string(), | ||||
|                     port: 80, | ||||
|                 }, | ||||
|                 BackendServer { | ||||
|                     address: "192.168.1.2".to_string(), | ||||
|                     port: 8080, | ||||
|                 }, | ||||
|             ] | ||||
|         ); | ||||
|     } | ||||
| } | ||||
|  | ||||
| @ -11,8 +11,6 @@ use std::process::{Command, Output}; | ||||
| use temp_dir::{self, TempDir}; | ||||
| use temp_file::TempFile; | ||||
| 
 | ||||
| use serde::Serialize; | ||||
| 
 | ||||
| use crate::data::{Id, Version}; | ||||
| use crate::interpret::{Interpret, InterpretError, InterpretName, InterpretStatus, Outcome}; | ||||
| use crate::inventory::Inventory; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user