mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
1042 lines
26 KiB
Rust
1042 lines
26 KiB
Rust
#![deny(warnings, rust_2018_idioms)]
|
|
use std::task::Poll;
|
|
|
|
use ntex_bytes::{Buf, BufMut, Bytes, BytesMut, BytesVec, PoolId};
|
|
|
|
const LONG: &[u8] = b"mary had a little lamb, little lamb, little lamb";
|
|
const SHORT: &[u8] = b"hello world";
|
|
|
|
fn inline_cap() -> usize {
|
|
use std::mem;
|
|
4 * mem::size_of::<usize>() - 1
|
|
}
|
|
|
|
const fn shared_vec() -> usize {
|
|
use std::mem;
|
|
3 * mem::size_of::<usize>() + 8
|
|
}
|
|
|
|
fn is_sync<T: Sync>() {}
|
|
fn is_send<T: Send>() {}
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
|
#[test]
|
|
fn test_size() {
|
|
assert_eq!(32, std::mem::size_of::<Bytes>());
|
|
assert_eq!(32, std::mem::size_of::<Option<Bytes>>());
|
|
|
|
let mut t = BytesMut::new();
|
|
t.extend_from_slice(&b"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"[..]);
|
|
|
|
let val = t.freeze();
|
|
assert!(val.is_inline());
|
|
|
|
let val = Some(val);
|
|
assert!(val.is_some());
|
|
assert_eq!(
|
|
val.as_ref().unwrap(),
|
|
&b"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"[..]
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn test_bounds() {
|
|
is_sync::<Bytes>();
|
|
is_sync::<BytesMut>();
|
|
is_send::<Bytes>();
|
|
is_send::<BytesMut>();
|
|
}
|
|
|
|
#[test]
|
|
fn from_slice() {
|
|
let a = Bytes::from(&b"abcdefgh"[..]);
|
|
assert_eq!(a, b"abcdefgh"[..]);
|
|
assert_eq!(a, &b"abcdefgh"[..]);
|
|
assert_eq!(a, Vec::from(&b"abcdefgh"[..]));
|
|
assert_eq!(b"abcdefgh"[..], a);
|
|
assert_eq!(&b"abcdefgh"[..], a);
|
|
assert_eq!(Vec::from(&b"abcdefgh"[..]), a);
|
|
|
|
let a = BytesMut::from(&b"abcdefgh"[..]);
|
|
assert_eq!(a, b"abcdefgh"[..]);
|
|
assert_eq!(a, &b"abcdefgh"[..]);
|
|
assert_eq!(a, Vec::from(&b"abcdefgh"[..]));
|
|
assert_eq!(b"abcdefgh"[..], a);
|
|
assert_eq!(&b"abcdefgh"[..], a);
|
|
assert_eq!(Vec::from(&b"abcdefgh"[..]), a);
|
|
|
|
let a = BytesVec::copy_from_slice(&b"abcdefgh"[..]);
|
|
assert_eq!(a, b"abcdefgh"[..]);
|
|
assert_eq!(a, &b"abcdefgh"[..]);
|
|
assert_eq!(b"abcdefgh"[..], a);
|
|
assert_eq!(&b"abcdefgh"[..], a);
|
|
assert_eq!(Vec::from(&b"abcdefgh"[..]), a);
|
|
|
|
let a = BytesVec::copy_from_slice_in(&b"abcdefgh"[..], PoolId::P10);
|
|
assert_eq!(a, b"abcdefgh"[..]);
|
|
assert_eq!(a, &b"abcdefgh"[..]);
|
|
assert_eq!(b"abcdefgh"[..], a);
|
|
assert_eq!(&b"abcdefgh"[..], a);
|
|
assert_eq!(Vec::from(&b"abcdefgh"[..]), a);
|
|
}
|
|
|
|
#[test]
|
|
fn fmt() {
|
|
let a = format!("{:?}", Bytes::from(&b"abcdefg"[..]));
|
|
let b = "b\"abcdefg\"";
|
|
|
|
assert_eq!(a, b);
|
|
|
|
let a = format!("{:?}", BytesMut::from(&b"abcdefg"[..]));
|
|
assert_eq!(a, b);
|
|
|
|
let a = format!("{:?}", BytesVec::copy_from_slice(&b"abcdefg"[..]));
|
|
assert_eq!(a, b);
|
|
}
|
|
|
|
#[test]
|
|
fn fmt_write() {
|
|
use std::fmt::Write;
|
|
use std::iter::FromIterator;
|
|
let s = String::from_iter((0..10).map(|_| "abcdefg"));
|
|
|
|
let mut a = BytesMut::with_capacity(64);
|
|
write!(a, "{}", &s[..64]).unwrap();
|
|
assert_eq!(a, s[..64].as_bytes());
|
|
|
|
let mut b = BytesMut::with_capacity(64);
|
|
write!(b, "{}", &s[..32]).unwrap();
|
|
write!(b, "{}", &s[32..64]).unwrap();
|
|
assert_eq!(b, s[..64].as_bytes());
|
|
|
|
let mut c = BytesMut::with_capacity(2);
|
|
write!(c, "{}", s).unwrap_err();
|
|
assert!(c.is_empty());
|
|
|
|
let mut a = BytesVec::with_capacity(64);
|
|
write!(a, "{}", &s[..64]).unwrap();
|
|
assert_eq!(a, s[..64].as_bytes());
|
|
|
|
let mut b = BytesVec::with_capacity(64);
|
|
write!(b, "{}", &s[..32]).unwrap();
|
|
write!(b, "{}", &s[32..64]).unwrap();
|
|
assert_eq!(b, s[..64].as_bytes());
|
|
|
|
let mut c = BytesVec::with_capacity(2);
|
|
write!(c, "{}", s).unwrap_err();
|
|
assert!(c.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn len() {
|
|
let a = Bytes::from(&b"abcdefg"[..]);
|
|
assert_eq!(a.len(), 7);
|
|
|
|
let a = BytesMut::from(&b"abcdefg"[..]);
|
|
assert_eq!(a.len(), 7);
|
|
|
|
let a = BytesVec::copy_from_slice(&b"abcdefg"[..]);
|
|
assert_eq!(a.len(), 7);
|
|
|
|
let a = Bytes::from(&b""[..]);
|
|
assert!(a.is_empty());
|
|
|
|
let a = BytesMut::from(&b""[..]);
|
|
assert!(a.is_empty());
|
|
|
|
let a = BytesVec::copy_from_slice(&b""[..]);
|
|
assert!(a.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn inline() {
|
|
let a = Bytes::from("abcdefg".to_string());
|
|
assert!(a.is_inline());
|
|
|
|
let a = BytesMut::from(&b"abcdefg"[..]).freeze();
|
|
assert!(a.is_inline());
|
|
|
|
let a = Bytes::from("".to_string());
|
|
assert!(a.is_empty());
|
|
|
|
let a = BytesMut::from(&b""[..]).freeze();
|
|
assert!(a.is_inline());
|
|
|
|
let mut a = BytesMut::from(vec![b'*'; 35]).freeze();
|
|
assert!(!a.is_inline());
|
|
|
|
let b = a.split_to(8);
|
|
assert!(b.is_inline());
|
|
assert!(a.is_inline());
|
|
|
|
let mut a = BytesMut::from(vec![b'*'; 35]).freeze();
|
|
let b = a.split_off(8);
|
|
assert!(b.is_inline());
|
|
assert!(a.is_inline());
|
|
|
|
let mut a = BytesMut::from(vec![b'*'; 35]).freeze();
|
|
a.truncate(8);
|
|
assert!(a.is_inline());
|
|
|
|
let mut a = BytesVec::copy_from_slice(&vec![b'*'; 35]).freeze();
|
|
let b = a.split_to(8);
|
|
assert!(b.is_inline());
|
|
}
|
|
|
|
#[test]
|
|
fn index() {
|
|
let a = Bytes::from(&b"hello world"[..]);
|
|
assert_eq!(a[0..5], *b"hello");
|
|
|
|
let a = BytesMut::from(&b"hello world"[..]);
|
|
assert_eq!(a[0..5], *b"hello");
|
|
|
|
let a = BytesVec::copy_from_slice(&b"hello world"[..]);
|
|
assert_eq!(a[0..5], *b"hello");
|
|
}
|
|
|
|
#[test]
|
|
fn slice() {
|
|
let a = Bytes::from(&b"hello world"[..]);
|
|
|
|
let b = a.slice(3..5);
|
|
assert_eq!(b, b"lo"[..]);
|
|
|
|
let b = a.slice(0..0);
|
|
assert_eq!(b, b""[..]);
|
|
|
|
let b = a.slice(3..3);
|
|
assert_eq!(b, b""[..]);
|
|
|
|
let b = a.slice(a.len()..a.len());
|
|
assert_eq!(b, b""[..]);
|
|
|
|
let b = a.slice(..5);
|
|
assert_eq!(b, b"hello"[..]);
|
|
|
|
let b = a.slice(3..);
|
|
assert_eq!(b, b"lo world"[..]);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn slice_oob_1() {
|
|
let a = Bytes::from(&b"hello world"[..]);
|
|
a.slice(5..(inline_cap() + 1));
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn slice_oob_2() {
|
|
let a = Bytes::from(&b"hello world"[..]);
|
|
a.slice((inline_cap() + 1)..(inline_cap() + 5));
|
|
}
|
|
|
|
#[test]
|
|
fn split_off() {
|
|
let mut hello = Bytes::from(&b"helloworld"[..]);
|
|
let world = hello.split_off(5);
|
|
|
|
assert_eq!(hello, &b"hello"[..]);
|
|
assert_eq!(world, &b"world"[..]);
|
|
|
|
let mut hello = BytesMut::from(&b"helloworld"[..]);
|
|
let world = hello.split_off(5);
|
|
|
|
assert_eq!(hello, &b"hello"[..]);
|
|
assert_eq!(world, &b"world"[..]);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn split_off_oob() {
|
|
let mut hello = Bytes::from(&b"helloworld"[..]);
|
|
hello.split_off(inline_cap() + 1);
|
|
}
|
|
|
|
#[test]
|
|
fn split_off_uninitialized() {
|
|
let mut bytes = BytesMut::with_capacity(1024);
|
|
let other = bytes.split_off(128);
|
|
|
|
assert_eq!(bytes.len(), 0);
|
|
assert_eq!(bytes.capacity(), 128);
|
|
|
|
assert_eq!(other.len(), 0);
|
|
assert_eq!(other.capacity(), 928);
|
|
}
|
|
|
|
#[test]
|
|
fn split_off_to_loop() {
|
|
let s = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
|
|
for i in 0..(s.len() + 1) {
|
|
{
|
|
let mut bytes = Bytes::from(&s[..]);
|
|
let off = bytes.split_off(i);
|
|
assert_eq!(i, bytes.len());
|
|
let mut sum: Vec<u8> = Vec::new();
|
|
sum.extend(bytes.iter());
|
|
sum.extend(off.iter());
|
|
assert_eq!(&s[..], &sum[..]);
|
|
}
|
|
{
|
|
let mut bytes = BytesMut::from(&s[..]);
|
|
let off = bytes.split_off(i);
|
|
assert_eq!(i, bytes.len());
|
|
let mut sum: Vec<u8> = Vec::new();
|
|
sum.extend(&bytes);
|
|
sum.extend(&off);
|
|
assert_eq!(&s[..], &sum[..]);
|
|
}
|
|
{
|
|
let mut bytes = Bytes::from(&s[..]);
|
|
let off = bytes.split_to(i);
|
|
assert_eq!(i, off.len());
|
|
let mut sum: Vec<u8> = Vec::new();
|
|
sum.extend(off.iter());
|
|
sum.extend(bytes.iter());
|
|
assert_eq!(&s[..], &sum[..]);
|
|
}
|
|
{
|
|
let mut bytes = BytesMut::from(&s[..]);
|
|
let off = bytes.split_to(i);
|
|
assert_eq!(i, off.len());
|
|
let mut sum: Vec<u8> = Vec::new();
|
|
sum.extend(&off);
|
|
sum.extend(&bytes);
|
|
assert_eq!(&s[..], &sum[..]);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn split_to_1() {
|
|
// Inline
|
|
let mut a = Bytes::from(SHORT);
|
|
let b = a.split_to(4);
|
|
|
|
assert_eq!(SHORT[4..], a);
|
|
assert_eq!(SHORT[..4], b);
|
|
|
|
// Allocated
|
|
let mut a = Bytes::from(Vec::from(LONG));
|
|
let b = a.split_to(4);
|
|
|
|
assert_eq!(LONG[4..], a);
|
|
assert_eq!(LONG[..4], b);
|
|
|
|
let mut a = Bytes::from(Vec::from(LONG));
|
|
let b = a.split_to(30);
|
|
|
|
assert_eq!(LONG[30..], a);
|
|
assert_eq!(LONG[..30], b);
|
|
|
|
// bytes mut
|
|
let mut a = BytesMut::from(Vec::from(LONG));
|
|
let b = a.split_to(4);
|
|
|
|
assert_eq!(LONG[4..], a);
|
|
assert_eq!(LONG[..4], b);
|
|
|
|
let mut a = BytesMut::from(Vec::from(LONG));
|
|
let b = a.split_to(30);
|
|
|
|
assert_eq!(LONG[30..], a);
|
|
assert_eq!(LONG[..30], b);
|
|
|
|
// bytes vec
|
|
let mut a = BytesVec::copy_from_slice(LONG);
|
|
let b = a.split_to(4);
|
|
|
|
assert_eq!(LONG[4..], a);
|
|
assert_eq!(LONG[..4], b);
|
|
|
|
let mut a = BytesVec::copy_from_slice(LONG);
|
|
let b = a.split_to(30);
|
|
|
|
assert_eq!(LONG[30..], a);
|
|
assert_eq!(LONG[..30], b);
|
|
}
|
|
|
|
#[test]
|
|
fn split_to_2() {
|
|
let mut a = Bytes::from(LONG);
|
|
assert_eq!(LONG, a);
|
|
|
|
let b = a.split_to(1);
|
|
|
|
assert_eq!(LONG[1..], a);
|
|
drop(b);
|
|
|
|
let mut a = BytesMut::from(LONG);
|
|
assert_eq!(LONG, a);
|
|
|
|
let b = a.split_to(1);
|
|
|
|
assert_eq!(LONG[1..], a);
|
|
drop(b);
|
|
|
|
let mut a = BytesVec::copy_from_slice(LONG);
|
|
assert_eq!(LONG, a);
|
|
|
|
let b = a.split_to(1);
|
|
|
|
assert_eq!(LONG[1..], a);
|
|
drop(b);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn split_to_oob() {
|
|
let mut hello = Bytes::from(&b"helloworld"[..]);
|
|
hello.split_to(inline_cap() + 1);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn split_to_oob_mut() {
|
|
let mut hello = BytesMut::from(&b"helloworld"[..]);
|
|
hello.split_to(inline_cap() + 1);
|
|
|
|
let mut hello = BytesVec::copy_from_slice(&b"helloworld"[..]);
|
|
hello.split_to(inline_cap() + 1);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn split_to_uninitialized() {
|
|
let mut bytes = BytesMut::with_capacity(1024);
|
|
let _other = bytes.split_to(128);
|
|
|
|
let mut bytes = BytesVec::with_capacity(1024);
|
|
let _other = bytes.split_to(128);
|
|
}
|
|
|
|
#[test]
|
|
fn split_off_to_at_gt_len() {
|
|
fn make_bytes() -> Bytes {
|
|
let mut bytes = BytesMut::with_capacity(100);
|
|
bytes.put_slice(&[10, 20, 30, 40]);
|
|
bytes.freeze()
|
|
}
|
|
|
|
use std::panic;
|
|
|
|
make_bytes().split_to(4);
|
|
make_bytes().split_off(4);
|
|
|
|
assert!(panic::catch_unwind(move || {
|
|
make_bytes().split_to(5);
|
|
})
|
|
.is_err());
|
|
|
|
assert!(panic::catch_unwind(move || {
|
|
make_bytes().split_off(5);
|
|
})
|
|
.is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn fns_defined_for_bytes() {
|
|
let mut bytes = Bytes::from(&b"hello world"[..]);
|
|
bytes.as_ptr();
|
|
|
|
assert!(bytes > "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!(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, &"hello world"[..]);
|
|
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
|
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
|
|
|
// Iterator
|
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.as_ref().iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let b2: Bytes = v.iter().collect();
|
|
assert_eq!(b2, bytes);
|
|
assert_eq!(&v[..], b2);
|
|
|
|
bytes.truncate(5);
|
|
assert_eq!(bytes, b"hello"[..]);
|
|
|
|
bytes.clear();
|
|
assert!(bytes.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn fns_defined_for_bytes_mut() {
|
|
let mut bytes = BytesMut::from(&b"hello world"[..]);
|
|
bytes.as_ptr();
|
|
bytes.as_mut_ptr();
|
|
|
|
assert!(bytes > "g");
|
|
assert!(bytes > "g".to_string());
|
|
assert!(bytes > "g".as_bytes().to_vec());
|
|
assert!(bytes > BytesMut::from(&"g"[..]));
|
|
assert!("g" > bytes);
|
|
assert!("g".to_string() > bytes);
|
|
assert!("g".as_bytes().to_vec() > bytes);
|
|
assert!(BytesMut::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, &"hello world"[..]);
|
|
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
|
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
|
|
|
// Iterator
|
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.as_ref().iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.clone().into_iter().collect();
|
|
|
|
let mut bytes = BytesMut::copy_from_slice(b"hello world");
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let b2: BytesMut = v.iter().collect();
|
|
assert_eq!(b2, bytes);
|
|
assert_eq!(&v[..], b2);
|
|
|
|
bytes.truncate(5);
|
|
assert_eq!(bytes, b"hello"[..]);
|
|
|
|
bytes.clear();
|
|
assert!(bytes.is_empty());
|
|
|
|
bytes.resize(10, b'1');
|
|
assert_eq!(bytes, b"1111111111"[..]);
|
|
|
|
assert_eq!(bytes.remaining(), 10);
|
|
assert_eq!(bytes.chunk(), &b"1111111111"[..]);
|
|
|
|
bytes.as_mut()[0] = b'2';
|
|
assert_eq!(bytes, b"2111111111"[..]);
|
|
|
|
let b = BytesMut::default();
|
|
assert!(b.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn fns_defined_for_bytes_vec() {
|
|
// BytesVec
|
|
let mut bytes = BytesVec::copy_from_slice(&b"hello world"[..]);
|
|
bytes.as_ptr();
|
|
bytes.as_mut_ptr();
|
|
|
|
assert!(bytes > "g");
|
|
assert!(bytes > "g".to_string());
|
|
assert!(bytes > "g".as_bytes().to_vec());
|
|
assert!(bytes > BytesVec::copy_from_slice("g"));
|
|
assert!("g" > bytes);
|
|
assert!("g".to_string() > bytes);
|
|
assert!("g".as_bytes().to_vec() > bytes);
|
|
assert!(BytesVec::copy_from_slice(&"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, &"hello world"[..]);
|
|
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
|
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
|
|
|
// Iterator
|
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.as_ref().iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.iter().cloned().collect();
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let v: Vec<u8> = bytes.into_iter().collect();
|
|
|
|
let mut bytes = BytesVec::copy_from_slice(b"hello world");
|
|
assert_eq!(&v[..], bytes);
|
|
|
|
let b2: BytesVec = v.iter().collect();
|
|
assert_eq!(b2, bytes);
|
|
assert_eq!(&v[..], b2);
|
|
|
|
bytes.truncate(5);
|
|
assert_eq!(bytes, b"hello"[..]);
|
|
|
|
bytes.clear();
|
|
assert!(bytes.is_empty());
|
|
|
|
bytes.resize(10, b'1');
|
|
assert_eq!(bytes, b"1111111111"[..]);
|
|
|
|
assert_eq!(bytes.remaining(), 10);
|
|
assert_eq!(bytes.chunk(), &b"1111111111"[..]);
|
|
|
|
bytes.as_mut()[0] = b'2';
|
|
assert_eq!(bytes, b"2111111111"[..]);
|
|
|
|
let b = BytesMut::default();
|
|
assert!(b.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_convert() {
|
|
// Vec -> Vec
|
|
let mut bytes = BytesMut::from(LONG);
|
|
bytes.reserve(64);
|
|
assert_eq!(bytes.capacity(), LONG.len() + 80);
|
|
|
|
// Arc -> Vec
|
|
let mut bytes = BytesMut::from(Vec::from(LONG));
|
|
let a = bytes.split_to(30);
|
|
|
|
bytes.reserve(128);
|
|
assert!(bytes.capacity() >= bytes.len() + 128);
|
|
|
|
drop(a);
|
|
|
|
// Vec -> Vec
|
|
let mut bytes = BytesVec::copy_from_slice(LONG);
|
|
bytes.reserve(64);
|
|
assert_eq!(bytes.capacity(), LONG.len() + 80);
|
|
}
|
|
|
|
// Without either looking at the internals of the BytesMut or doing weird stuff
|
|
// with the memory allocator, there's no good way to automatically verify from
|
|
// within the program that this actually recycles memory. Instead, just exercise
|
|
// the code path to ensure that the results are correct.
|
|
#[test]
|
|
fn reserve_vec_recycling() {
|
|
let mut bytes = BytesMut::from(Vec::with_capacity(16));
|
|
assert_eq!(bytes.capacity(), 16);
|
|
bytes.put("0123456789012345".as_bytes());
|
|
bytes.advance(10);
|
|
assert_eq!(bytes.capacity(), 6);
|
|
bytes.reserve(8);
|
|
assert_eq!(bytes.capacity(), 16);
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_recycling() {
|
|
let mut bytes = BytesVec::with_capacity(16);
|
|
assert_eq!(bytes.capacity(), 32);
|
|
bytes.put("0123456789012345".as_bytes());
|
|
bytes.advance(10);
|
|
assert_eq!(bytes.capacity(), 22);
|
|
bytes.reserve(32);
|
|
assert_eq!(bytes.capacity(), 64);
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_in_arc_unique_does_not_overallocate() {
|
|
let mut bytes = BytesMut::with_capacity(1000);
|
|
bytes.split();
|
|
|
|
// now bytes is Arc and refcount == 1
|
|
|
|
assert_eq!(1024, bytes.capacity());
|
|
bytes.reserve(2001);
|
|
assert_eq!(2016, bytes.capacity());
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_in_arc_unique_doubles() {
|
|
let mut bytes = BytesMut::with_capacity(1000);
|
|
bytes.split();
|
|
|
|
// now bytes is Arc and refcount == 1
|
|
|
|
assert_eq!(1024, bytes.capacity());
|
|
bytes.reserve(1025);
|
|
assert_eq!(1056, bytes.capacity());
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_in_arc_nonunique_does_not_overallocate() {
|
|
let mut bytes = BytesMut::with_capacity(1000);
|
|
let _copy = bytes.split();
|
|
|
|
// now bytes is Arc and refcount == 2
|
|
|
|
assert_eq!(1024, bytes.capacity());
|
|
bytes.reserve(2001);
|
|
assert_eq!(2016, bytes.capacity());
|
|
}
|
|
|
|
#[test]
|
|
fn inline_storage() {
|
|
let mut bytes = BytesMut::with_capacity(inline_cap());
|
|
let zero = [0u8; 64];
|
|
|
|
bytes.put(&zero[0..inline_cap()]);
|
|
assert_eq!(*bytes, zero[0..inline_cap()]);
|
|
}
|
|
|
|
#[test]
|
|
fn extend_mut() {
|
|
let mut bytes = BytesMut::with_capacity(0);
|
|
bytes.extend(LONG);
|
|
assert_eq!(*bytes, LONG[..]);
|
|
|
|
let mut bytes = BytesVec::with_capacity(0);
|
|
bytes.extend(LONG);
|
|
assert_eq!(*bytes, LONG[..]);
|
|
}
|
|
|
|
#[test]
|
|
fn extend_from_slice_mut() {
|
|
for &i in &[3, 34] {
|
|
let mut bytes = BytesMut::new();
|
|
bytes.extend_from_slice(&LONG[..i]);
|
|
bytes.extend_from_slice(&LONG[i..]);
|
|
assert_eq!(LONG[..], *bytes);
|
|
}
|
|
|
|
for &i in &[3, 34] {
|
|
let mut bytes = BytesVec::new();
|
|
bytes.extend_from_slice(&LONG[..i]);
|
|
bytes.extend_from_slice(&LONG[i..]);
|
|
assert_eq!(LONG[..], *bytes);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn from_static() {
|
|
let mut a = Bytes::from_static(b"ab");
|
|
let b = a.split_off(1);
|
|
|
|
assert_eq!(a, b"a"[..]);
|
|
assert_eq!(b, b"b"[..]);
|
|
}
|
|
|
|
#[test]
|
|
fn advance_inline() {
|
|
let mut a = Bytes::from(&b"hello world"[..]);
|
|
a.advance(6);
|
|
assert_eq!(a, &b"world"[..]);
|
|
}
|
|
|
|
#[test]
|
|
fn advance_static() {
|
|
let mut a = Bytes::from_static(b"hello world");
|
|
a.advance(6);
|
|
assert_eq!(a, &b"world"[..]);
|
|
}
|
|
|
|
#[test]
|
|
fn advance_vec() {
|
|
let mut a = BytesMut::from(b"hello world boooo yah world zomg wat wat".to_vec());
|
|
a.advance(16);
|
|
assert_eq!(a, b"o yah world zomg wat wat"[..]);
|
|
|
|
a.advance(4);
|
|
assert_eq!(a, b"h world zomg wat wat"[..]);
|
|
|
|
// Reserve some space.
|
|
a.reserve(1024);
|
|
assert_eq!(a, b"h world zomg wat wat"[..]);
|
|
|
|
a.advance(6);
|
|
assert_eq!(a, b"d zomg wat wat"[..]);
|
|
|
|
let mut a = BytesVec::copy_from_slice(b"hello world boooo yah world zomg wat wat");
|
|
a.advance(16);
|
|
assert_eq!(a, b"o yah world zomg wat wat"[..]);
|
|
|
|
a.advance(4);
|
|
assert_eq!(a, b"h world zomg wat wat"[..]);
|
|
|
|
// Reserve some space.
|
|
a.reserve(1024);
|
|
assert_eq!(a, b"h world zomg wat wat"[..]);
|
|
|
|
a.advance(6);
|
|
assert_eq!(a, b"d zomg wat wat"[..]);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn advance_past_len() {
|
|
let mut a = BytesMut::from(b"hello world".to_vec());
|
|
a.advance(20);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn advance_past_len_vec() {
|
|
let mut a = BytesVec::copy_from_slice(b"hello world");
|
|
a.advance(20);
|
|
}
|
|
|
|
#[test]
|
|
// Only run these tests on little endian systems. CI uses qemu for testing
|
|
// little endian... and qemu doesn't really support threading all that well.
|
|
#[cfg(target_endian = "little")]
|
|
fn stress() {
|
|
// Tests promoting a buffer from a vec -> shared in a concurrent situation
|
|
use std::sync::{Arc, Barrier};
|
|
use std::thread;
|
|
|
|
const THREADS: usize = 8;
|
|
const ITERS: usize = 1_000;
|
|
|
|
for i in 0..ITERS {
|
|
let data = [i as u8; 256];
|
|
let buf = Arc::new(Bytes::copy_from_slice(&data[..]));
|
|
|
|
let barrier = Arc::new(Barrier::new(THREADS));
|
|
let mut joins = Vec::with_capacity(THREADS);
|
|
|
|
for _ in 0..THREADS {
|
|
let c = barrier.clone();
|
|
let buf = buf.clone();
|
|
|
|
joins.push(thread::spawn(move || {
|
|
c.wait();
|
|
let buf: Bytes = (*buf).clone();
|
|
drop(buf);
|
|
}));
|
|
}
|
|
|
|
for th in joins {
|
|
th.join().unwrap();
|
|
}
|
|
|
|
assert_eq!(*buf, data[..]);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn partial_eq_bytesmut() {
|
|
let bytes = Bytes::from(&b"The quick red fox"[..]);
|
|
let bytesmut = BytesMut::from(&b"The quick red fox"[..]);
|
|
assert!(bytes == bytesmut);
|
|
assert!(bytesmut == bytes);
|
|
let bytes2 = Bytes::from(&b"Jumped over the lazy brown dog"[..]);
|
|
assert!(bytes2 != bytesmut);
|
|
assert!(bytesmut != bytes2);
|
|
}
|
|
|
|
#[test]
|
|
fn partial_eq_bytesvec() {
|
|
let bytes = Bytes::from(&b"The quick red fox"[..]);
|
|
let bytesmut = BytesVec::copy_from_slice(&b"The quick red fox"[..]);
|
|
assert!(bytes == bytesmut);
|
|
assert!(bytesmut == bytes);
|
|
let bytes2 = Bytes::from(&b"Jumped over the lazy brown dog"[..]);
|
|
assert!(bytes2 != bytesmut);
|
|
assert!(bytesmut != bytes2);
|
|
}
|
|
|
|
#[test]
|
|
fn from_iter_no_size_hint() {
|
|
use std::iter;
|
|
|
|
let mut expect = vec![];
|
|
|
|
let actual: Bytes = iter::repeat(b'x')
|
|
.scan(100, |cnt, item| {
|
|
if *cnt >= 1 {
|
|
*cnt -= 1;
|
|
expect.push(item);
|
|
Some(item)
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
.collect();
|
|
|
|
assert_eq!(&actual[..], &expect[..]);
|
|
}
|
|
|
|
fn test_slice_ref(bytes: &Bytes, start: usize, end: usize, expected: &[u8]) {
|
|
let slice = &(bytes.as_ref()[start..end]);
|
|
let sub = bytes.slice_ref(slice);
|
|
assert_eq!(&sub[..], expected);
|
|
}
|
|
|
|
#[test]
|
|
fn slice_ref_works() {
|
|
let bytes = Bytes::from(&b"012345678"[..]);
|
|
|
|
test_slice_ref(&bytes, 0, 0, b"");
|
|
test_slice_ref(&bytes, 0, 3, b"012");
|
|
test_slice_ref(&bytes, 2, 6, b"2345");
|
|
test_slice_ref(&bytes, 7, 9, b"78");
|
|
test_slice_ref(&bytes, 9, 9, b"");
|
|
}
|
|
|
|
#[test]
|
|
fn slice_ref_empty() {
|
|
let bytes = Bytes::from(&b""[..]);
|
|
let slice = &(bytes.as_ref()[0..0]);
|
|
|
|
let sub = bytes.slice_ref(slice);
|
|
assert_eq!(&sub[..], b"");
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn slice_ref_catches_not_a_subset() {
|
|
let bytes = Bytes::from(&b"012345678"[..]);
|
|
let slice = &b"012345"[0..4];
|
|
|
|
bytes.slice_ref(slice);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn slice_ref_catches_not_an_empty_subset() {
|
|
let bytes = Bytes::from(&b"012345678"[..]);
|
|
let slice = &b""[0..0];
|
|
|
|
bytes.slice_ref(slice);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn empty_slice_ref_catches_not_an_empty_subset() {
|
|
let bytes = Bytes::copy_from_slice(&b""[..]);
|
|
let slice = &b""[0..0];
|
|
|
|
bytes.slice_ref(slice);
|
|
}
|
|
|
|
#[test]
|
|
fn bytes_vec_freeze() {
|
|
let bytes = BytesVec::copy_from_slice(b"12345");
|
|
assert_eq!(bytes, &b"12345"[..]);
|
|
let b = bytes.freeze();
|
|
assert_eq!(b, &b"12345"[..]);
|
|
assert!(b.is_inline());
|
|
|
|
let bytes = BytesVec::copy_from_slice(LONG);
|
|
assert_eq!(bytes, LONG);
|
|
let b = bytes.freeze();
|
|
assert_eq!(b, LONG);
|
|
}
|
|
|
|
#[test]
|
|
fn bytes_vec() {
|
|
let mut bytes = BytesVec::copy_from_slice(LONG);
|
|
bytes.with_bytes_mut(|buf| {
|
|
assert_eq!(buf, LONG);
|
|
assert_eq!(buf.split_to(4), &LONG[..4]);
|
|
});
|
|
assert_eq!(bytes, &LONG[4..]);
|
|
|
|
bytes.with_bytes_mut(|buf| {
|
|
assert_eq!(buf.split_off(10), &LONG[14..]);
|
|
});
|
|
assert_eq!(bytes, &LONG[4..14]);
|
|
|
|
bytes.with_bytes_mut(|buf| {
|
|
*buf = BytesMut::from(b"12345".to_vec());
|
|
});
|
|
assert_eq!(bytes, &"12345"[..]);
|
|
}
|
|
|
|
#[test]
|
|
fn pool() {
|
|
// Pool
|
|
let p1 = PoolId::P1.pool_ref();
|
|
assert_eq!(p1.allocated(), 0);
|
|
let mut buf = BytesMut::with_capacity_in(1024, p1);
|
|
assert_eq!(p1.allocated(), 1056 + shared_vec());
|
|
buf.reserve(2048);
|
|
assert_eq!(p1.allocated(), 2080 + shared_vec());
|
|
drop(buf);
|
|
assert_eq!(p1.allocated(), 0);
|
|
|
|
// Default pool
|
|
let p = PoolId::DEFAULT.pool_ref();
|
|
assert_eq!(p.allocated(), 0);
|
|
let mut buf = BytesMut::with_capacity(1024);
|
|
assert_eq!(p.allocated(), 1056 + shared_vec());
|
|
buf.reserve(2048);
|
|
assert_eq!(p.allocated(), 2080 + shared_vec());
|
|
drop(buf);
|
|
assert_eq!(p.allocated(), 0);
|
|
|
|
let mut buf = BytesMut::with_capacity(1024);
|
|
assert_eq!(p.allocated(), 1056 + shared_vec());
|
|
assert_eq!(p1.allocated(), 0);
|
|
p1.move_in(&mut buf);
|
|
assert_eq!(p.allocated(), 0);
|
|
assert_eq!(p1.allocated(), 1056 + shared_vec());
|
|
|
|
let p1 = PoolId::P2.pool_ref();
|
|
let mut buf = BytesVec::with_capacity(1024);
|
|
assert_eq!(p.allocated(), 1056 + shared_vec());
|
|
assert_eq!(p1.allocated(), 0);
|
|
p1.move_vec_in(&mut buf);
|
|
assert_eq!(p.allocated(), 0);
|
|
assert_eq!(p1.allocated(), 1056 + shared_vec());
|
|
}
|
|
|
|
#[ntex::test]
|
|
async fn pool_usage() {
|
|
use ntex::{time, util};
|
|
|
|
PoolId::set_spawn_fn_all(|f| {
|
|
let _ = ntex::rt::spawn(f);
|
|
});
|
|
|
|
let p_ref = PoolId::P1.set_pool_size(10 * 1024);
|
|
let p1 = p_ref.pool();
|
|
let p2 = p_ref.pool();
|
|
|
|
assert_eq!(Poll::Ready(()), util::lazy(|cx| p1.poll_ready(cx)).await);
|
|
|
|
let buf = BytesMut::with_capacity_in(11 * 1024, p_ref);
|
|
assert_eq!(Poll::Pending, util::lazy(|cx| p1.poll_ready(cx)).await);
|
|
assert!(!p1.is_ready());
|
|
assert_eq!(Poll::Pending, util::lazy(|cx| p2.poll_ready(cx)).await);
|
|
assert!(!p2.is_ready());
|
|
time::sleep(time::Millis(50)).await;
|
|
drop(buf);
|
|
|
|
time::sleep(time::Millis(50)).await;
|
|
assert!(p1.is_ready());
|
|
assert!(p2.is_ready());
|
|
|
|
assert_eq!(Poll::Ready(()), util::lazy(|cx| p1.poll_ready(cx)).await);
|
|
assert_eq!(Poll::Ready(()), util::lazy(|cx| p2.poll_ready(cx)).await);
|
|
|
|
// pool is full
|
|
let buf = BytesMut::with_capacity_in(11 * 1024, p_ref);
|
|
assert_eq!(Poll::Pending, util::lazy(|cx| p1.poll_ready(cx)).await);
|
|
assert_eq!(Poll::Pending, util::lazy(|cx| p2.poll_ready(cx)).await);
|
|
drop(buf);
|
|
|
|
// pool has some space
|
|
let buf = BytesMut::with_capacity_in(10100, p_ref);
|
|
time::sleep(time::Millis(50)).await;
|
|
assert!(p1.is_ready());
|
|
assert!(!p2.is_ready());
|
|
|
|
// new pools should wait for next update
|
|
assert_eq!(Poll::Pending, util::lazy(|cx| p1.poll_ready(cx)).await);
|
|
drop(buf);
|
|
time::sleep(time::Millis(50)).await;
|
|
assert!(p1.is_ready());
|
|
assert!(p2.is_ready());
|
|
}
|