mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Improve tests coverage (#161)
* improve tests coverage * update base64 crate
This commit is contained in:
parent
9bf0908f41
commit
fc7553b8bc
21 changed files with 137 additions and 51 deletions
|
@ -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"))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue