test: improve coverage in client builder and time types (#357)

This commit is contained in:
msga-mmm 2024-05-10 02:25:13 -05:00 committed by GitHub
parent 1b3a530fb7
commit 33c8900172
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 64 additions and 0 deletions

View file

@ -227,9 +227,24 @@ mod tests {
let m = Millis::from(Duration::from_secs(1));
assert_eq!(m.0, 1000);
let m = Millis::from(Duration::from_secs(u64::MAX));
assert_eq!(m.0, 2_147_483_648);
let m = Millis::from_secs(1);
assert_eq!(m.0, 1000);
let m = Millis(0);
assert_eq!(m.map(|m| m + Millis(1)), None);
let m = Millis(1);
assert_eq!(m.map(|m| m + Millis(1)), Some(Millis(2)));
let s = Seconds::new(10);
assert_eq!(s.0, 10);
let s = Seconds::checked_new(10);
assert_eq!(s.0, 10);
let s = Seconds::checked_new(u16::MAX as usize + 10);
assert_eq!(s.0, u16::MAX);
@ -247,5 +262,8 @@ mod tests {
assert_eq!(Seconds(0).map(|_| 1usize), None);
assert_eq!(Seconds(2).map(|_| 1usize), Some(1));
let d = Duration::from(Seconds(100));
assert_eq!(d.as_secs(), 100);
}
}