Improve tests coverage (#161)

* improve tests coverage
* update base64 crate
This commit is contained in:
Nikolay Kim 2023-01-14 20:34:53 +06:00 committed by GitHub
parent 9bf0908f41
commit fc7553b8bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 137 additions and 51 deletions

View file

@ -599,6 +599,7 @@ mod tests {
*m.get_mut(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text")
);
assert!(format!("{:?}", m).contains("HeaderMap"));
assert!(m.keys().any(|x| x == CONTENT_TYPE));
m.remove("content-type");
@ -610,9 +611,13 @@ mod tests {
let mut map = HeaderMap::new();
map.append(ACCEPT_ENCODING, HeaderValue::from_static("gzip"));
assert_eq!(
map.get_all(ACCEPT_ENCODING).collect::<Vec<_>>(),
vec![&HeaderValue::from_static("gzip"),]
);
map.append(ACCEPT_ENCODING, HeaderValue::from_static("br"));
map.append(ACCEPT_ENCODING, HeaderValue::from_static("deflate"));
assert_eq!(
map.get_all(ACCEPT_ENCODING).collect::<Vec<_>>(),
vec![
@ -621,5 +626,28 @@ mod tests {
&HeaderValue::from_static("deflate"),
]
);
assert_eq!(
map.get(ACCEPT_ENCODING),
Some(&HeaderValue::from_static("gzip"))
);
assert_eq!(
map.get_mut(ACCEPT_ENCODING),
Some(&mut HeaderValue::from_static("gzip"))
);
map.remove(ACCEPT_ENCODING);
assert_eq!(map.get(ACCEPT_ENCODING), None);
}
#[test]
fn test_from_http() {
let mut map = http::HeaderMap::new();
map.append(ACCEPT_ENCODING, http::HeaderValue::from_static("gzip"));
let map2 = HeaderMap::from(map);
assert_eq!(
map2.get(ACCEPT_ENCODING),
Some(&HeaderValue::from_static("gzip"))
);
}
}

View file

@ -792,8 +792,14 @@ mod tests {
assert!(&hdr < "upgrade2");
assert!(hdr < "upgrade2");
assert!(hdr < "upgrade2".to_string());
assert!(hdr < &b"upgrade2"[..]);
assert!(hdr < b"upgrade2"[..]);
assert!(hdr != &b"upgrade2"[..]);
assert!(hdr != b"upgrade2"[..]);
assert!("upgrade2" > hdr);
assert!("upgrade2".to_string() > hdr);
assert!(b"upgrade2"[..] > hdr);
assert!("upgrade2"[..] != hdr);
}
#[test]