1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
crate::types::query::query_with_joins!(
ListServices,
ListServicesBuilder,
monitoring_objects,
service,
IcingaService,
IcingaServiceJoinTypes,
IcingaServiceJoins,
IcingaObjectType::Service,
"v1/objects/services"
);
#[cfg(test)]
mod test {
use super::*;
use std::{collections::BTreeMap, error::Error};
use tracing_test::traced_test;
use crate::{
api::blocking::Icinga2,
types::{
enums::object_type::IcingaObjectType,
filter::IcingaFilter,
join_types::{service::IcingaServiceJoinTypes, IcingaJoins},
metadata::IcingaMetadataType,
},
};
#[traced_test]
#[test]
fn test_services() -> Result<(), Box<dyn Error>> {
dotenv::dotenv()?;
let icinga2 = Icinga2::from_config_file(std::path::Path::new(&std::env::var(
"ICINGA_TEST_INSTANCE_CONFIG",
)?))?;
let api_endpoint = ListServices::builder()
.joins(IcingaJoins::AllJoins)
.meta([IcingaMetadataType::UsedBy, IcingaMetadataType::Location])
.build()?;
let _: ResultsWrapper<QueryResultObjectWithJoins<IcingaService, IcingaServiceJoins>> =
icinga2.rest(api_endpoint)?;
Ok(())
}
#[traced_test]
#[test]
fn test_services_partial_host_join() -> Result<(), Box<dyn Error>> {
dotenv::dotenv()?;
let icinga2 = Icinga2::from_config_file(std::path::Path::new(&std::env::var(
"ICINGA_TEST_INSTANCE_CONFIG",
)?))?;
let mut partial = BTreeMap::new();
partial.insert(IcingaServiceJoinTypes::Host, vec!["name"]);
let api_endpoint = ListServices::builder()
.joins(IcingaJoins::SpecificJoins {
full: vec![],
partial,
})
.meta([IcingaMetadataType::UsedBy, IcingaMetadataType::Location])
.build()?;
let _: ResultsWrapper<QueryResultObjectWithJoins<IcingaService, IcingaServiceJoins>> =
icinga2.rest(api_endpoint)?;
Ok(())
}
#[traced_test]
#[test]
fn test_services_filtered() -> Result<(), Box<dyn Error>> {
dotenv::dotenv()?;
let icinga2 = Icinga2::from_config_file(std::path::Path::new(&std::env::var(
"ICINGA_TEST_INSTANCE_CONFIG",
)?))?;
let api_endpoint = ListServices::builder()
.filter(IcingaFilter {
object_type: IcingaObjectType::Service,
filter: "service.state == ServiceUnknown && service.vars.serviceSeverity == filter_severity".to_string(),
filter_vars: BTreeMap::from([("filter_severity".to_string(), serde_json::json!("imminent"))]),
})
.build()?;
let _: ResultsWrapper<QueryResultObjectWithJoins<IcingaService, IcingaServiceJoins>> =
icinga2.rest(api_endpoint)?;
Ok(())
}
}