Use const generics for helper traits (From, PartialEq, PartialOrd) (#284)

This commit is contained in:
Nikolay Kim 2024-01-16 19:18:17 +06:00 committed by GitHub
parent f40608633e
commit d99178519e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 216 additions and 45 deletions

View file

@ -1,6 +1,6 @@
#![deny(warnings, rust_2018_idioms)]
use ntex_bytes::Buf;
use ntex_bytes::{Buf, Bytes, BytesMut};
#[test]
fn test_fresh_cursor_vec() {
@ -20,6 +20,43 @@ fn test_fresh_cursor_vec() {
assert_eq!(buf.chunk(), b"");
}
#[test]
fn test_bytes() {
let mut buf = Bytes::from(b"hello");
assert_eq!(bytes::buf::Buf::remaining(&buf), 5);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"hello");
bytes::buf::Buf::advance(&mut buf, 2);
assert_eq!(bytes::buf::Buf::remaining(&buf), 3);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"llo");
bytes::buf::Buf::advance(&mut buf, 3);
assert_eq!(bytes::buf::Buf::remaining(&buf), 0);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"");
}
#[test]
fn test_bytes_mut() {
let mut buf = BytesMut::from(b"hello");
assert_eq!(bytes::buf::Buf::remaining(&buf), 5);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"hello");
assert_eq!(bytes::buf::BufMut::remaining_mut(&mut buf), 27);
bytes::buf::Buf::advance(&mut buf, 2);
assert_eq!(bytes::buf::Buf::remaining(&buf), 3);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"llo");
bytes::buf::Buf::advance(&mut buf, 3);
assert_eq!(bytes::buf::Buf::remaining(&buf), 0);
assert_eq!(bytes::buf::Buf::chunk(&buf), b"");
}
#[test]
fn test_get_u8() {
let mut buf = &b"\x21zomg"[..];

View file

@ -207,9 +207,15 @@ fn index() {
fn slice() {
let a = Bytes::from(&b"hello world"[..]);
let b = a.slice(..);
assert_eq!(b, b"hello world");
let b = a.slice(3..5);
assert_eq!(b, b"lo"[..]);
let b = a.slice(3..=5);
assert_eq!(b, b"lo "[..]);
let b = a.slice(0..0);
assert_eq!(b, b""[..]);
@ -460,29 +466,56 @@ fn split_off_to_at_gt_len() {
clippy::needless_borrow
)]
fn fns_defined_for_bytes() {
let mut bytes = Bytes::from(&b"hello world"[..]);
let bytes = Bytes::from(&b"hello world"[..]);
let _ = bytes.as_ptr();
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
let bytes = Bytes::from(b"hello world");
assert_eq!(bytes, "hello world");
assert_eq!(bytes, b"hello world");
assert!(bytes > "g");
assert!(bytes > b"g");
assert!(bytes > [b'g']);
assert!(bytes > &[b'g'][..]);
assert!(bytes > "g".to_string());
assert!(bytes > "g".as_bytes().to_vec());
assert!(bytes > Bytes::from("g"));
assert!("g" > bytes);
assert!("g".to_string() > bytes);
assert!("g".as_bytes().to_vec() > bytes);
assert!([b'g'] > bytes);
assert!(Bytes::from(&"g"[..]) < bytes);
assert_eq!(bytes, "hello world");
assert_eq!(bytes, "hello world".as_bytes().to_vec());
assert_eq!(bytes, "hello world".to_string());
assert_eq!(bytes, b"hello world");
assert_eq!(bytes, &"hello world"[..]);
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
assert_eq!(&bytes[..], b"hello world");
assert_eq!(bytes.as_ref(), b"hello world");
assert_eq!("hello world", bytes);
assert_eq!("hello world".as_bytes().to_vec(), bytes);
assert_eq!("hello world".to_string(), bytes);
assert_eq!(b"hello world", bytes);
assert_eq!(&"hello world"[..], bytes);
assert_eq!(
bytes,
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd']
);
assert_eq!(
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd'],
bytes,
);
let mut bytes = BytesMut::with_capacity(64);
bytes.put(LONG);
let bytes = bytes.freeze();
assert_eq!(bytes.as_ref(), LONG);
let mut bytes = Bytes::from(&b"hello world"[..]);
// Iterator
let v: Vec<u8> = (&bytes).iter().cloned().collect();
@ -521,16 +554,35 @@ fn fns_defined_for_bytes_mut() {
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
assert_eq!(BorrowMut::<[u8]>::borrow_mut(&mut bytes), b"hello world");
let mut bytes = BytesMut::from(b"hello world");
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
assert_eq!(BorrowMut::<[u8]>::borrow_mut(&mut bytes), b"hello world");
let bytes = BytesMut::from([
b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd',
]);
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
assert_eq!(bytes, "hello world");
assert_eq!(bytes, "hello world".as_bytes().to_vec());
assert_eq!(bytes, "hello world".to_string());
assert_eq!(bytes, b"hello world");
assert_eq!(bytes, &"hello world"[..]);
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
assert_eq!(
bytes,
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd']
);
assert_eq!("hello world", bytes);
assert_eq!("hello world".as_bytes().to_vec(), bytes);
assert_eq!("hello world".to_string(), bytes);
assert_eq!(b"hello world", bytes);
assert_eq!(&"hello world"[..], bytes);
assert_eq!(
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd'],
bytes
);
// Iterator
let v: Vec<u8> = (&bytes).iter().cloned().collect();
@ -584,16 +636,30 @@ fn fns_defined_for_bytes_vec() {
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
assert_eq!(BorrowMut::<[u8]>::borrow_mut(&mut bytes), b"hello world");
let mut bytes = BytesVec::copy_from_slice(b"hello world");
assert_eq!(Borrow::<[u8]>::borrow(&bytes), b"hello world");
assert_eq!(BorrowMut::<[u8]>::borrow_mut(&mut bytes), b"hello world");
assert_eq!(bytes, "hello world");
assert_eq!(bytes, "hello world".as_bytes().to_vec());
assert_eq!(bytes, "hello world".to_string());
assert_eq!(bytes, b"hello world");
assert_eq!(bytes, &"hello world"[..]);
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
assert_eq!(&bytes[..], b"hello world");
assert_eq!(
bytes,
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd']
);
assert_eq!("hello world", bytes);
assert_eq!("hello world".as_bytes().to_vec(), bytes);
assert_eq!("hello world".to_string(), bytes);
assert_eq!("hello world", bytes);
assert_eq!(b"hello world", bytes);
assert_eq!(
[b'h', b'e', b'l', b'l', b'o', b' ', b'w', b'o', b'r', b'l', b'd'],
bytes
);
// Iterator
let v: Vec<u8> = bytes.iter().cloned().collect();
@ -815,7 +881,6 @@ fn advance_vec() {
assert_eq!(a, b"d zomg wat wat"[..]);
}
#[cfg(not(target_os = "macos"))]
#[test]
#[should_panic]
fn advance_past_len() {
@ -823,7 +888,6 @@ fn advance_past_len() {
a.advance(20);
}
#[cfg(not(target_os = "macos"))]
#[test]
#[should_panic]
fn advance_past_len_vec() {