mirror of
https://github.com/openharmony/third_party_rust_bytes.git
synced 2026-07-19 17:05:29 -04:00
7ed78cef47
The panic happens when `inner.bytes()` returns a slice smaller than the limit.
14 lines
349 B
Rust
14 lines
349 B
Rust
extern crate bytes;
|
|
|
|
use bytes::Buf;
|
|
use std::io::Cursor;
|
|
|
|
#[test]
|
|
fn long_take() {
|
|
// Tests that take with a size greater than the buffer length will not
|
|
// overrun the buffer. Regression test for #138.
|
|
let buf = Cursor::new(b"hello world").take(100);
|
|
assert_eq!(11, buf.remaining());
|
|
assert_eq!(b"hello world", buf.bytes());
|
|
}
|