Skip to content
Snippets Groups Projects
Verified Commit cf0f922f authored by Loris Moulin's avatar Loris Moulin
Browse files

feat: added assertions on downcasted error types in resources tests

parent 61915971
Branches
No related merge requests found
......@@ -285,6 +285,13 @@ mod tests {
let got = resources_builder.build().err().unwrap();
assert_eq!(got.len(), 1);
assert!(matches!(
got.first()
.unwrap()
.downcast_ref::<FieldError<ConversionError>>()
.unwrap(),
FieldError::RequestMemory(_)
));
assert_eq!(
got.first().unwrap().to_string(),
r"request_memory: 'invalid' doesn't match regex '^\d+(.\d+)?(m|K|M|G|T|P|E|Ki|Mi|Gi|Ti|Pi|Ei)?$'"
......@@ -298,6 +305,13 @@ mod tests {
let got = resources_builder.build().err().unwrap();
assert_eq!(got.len(), 1);
assert!(matches!(
got.first()
.unwrap()
.downcast_ref::<FieldError<ConversionError>>()
.unwrap(),
FieldError::RequestCpu(_)
));
assert_eq!(
got.first().unwrap().to_string(),
r"request_cpu: 'invalid' doesn't match regex '^\d+(.\d+)?(m|K|M|G|T|P|E|Ki|Mi|Gi|Ti|Pi|Ei)?$'"
......@@ -311,6 +325,13 @@ mod tests {
let got = resources_builder.build().err().unwrap();
assert_eq!(got.len(), 1);
assert!(matches!(
got.first()
.unwrap()
.downcast_ref::<FieldError<ConversionError>>()
.unwrap(),
FieldError::LimitMemory(_)
));
assert_eq!(
got.first().unwrap().to_string(),
r"limit_memory: 'invalid' doesn't match regex '^\d+(.\d+)?(m|K|M|G|T|P|E|Ki|Mi|Gi|Ti|Pi|Ei)?$'"
......@@ -324,6 +345,13 @@ mod tests {
let got = resources_builder.build().err().unwrap();
assert_eq!(got.len(), 1);
assert!(matches!(
got.first()
.unwrap()
.downcast_ref::<FieldError<ConversionError>>()
.unwrap(),
FieldError::LimitCpu(_)
));
assert_eq!(
got.first().unwrap().to_string(),
r"limit_cpu: 'invalid' doesn't match regex '^\d+(.\d+)?(m|K|M|G|T|P|E|Ki|Mi|Gi|Ti|Pi|Ei)?$'"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment