2020-04-02 23:18:52 +02:00
|
|
|
#![warn(rust_2018_idioms)]
|
|
|
|
|
|
|
|
|
|
use bytes::Bytes;
|
2020-09-08 09:12:32 +02:00
|
|
|
use tokio::io::AsyncReadExt;
|
2020-12-15 23:24:38 -05:00
|
|
|
use tokio_stream::iter;
|
2020-09-08 09:12:32 +02:00
|
|
|
use tokio_util::io::StreamReader;
|
2020-04-02 23:18:52 +02:00
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
|
async fn test_stream_reader() -> std::io::Result<()> {
|
|
|
|
|
let stream = iter(vec![
|
2020-09-08 09:12:32 +02:00
|
|
|
std::io::Result::Ok(Bytes::from_static(&[])),
|
2020-04-02 23:18:52 +02:00
|
|
|
Ok(Bytes::from_static(&[0, 1, 2, 3])),
|
|
|
|
|
Ok(Bytes::from_static(&[])),
|
|
|
|
|
Ok(Bytes::from_static(&[4, 5, 6, 7])),
|
|
|
|
|
Ok(Bytes::from_static(&[])),
|
|
|
|
|
Ok(Bytes::from_static(&[8, 9, 10, 11])),
|
|
|
|
|
Ok(Bytes::from_static(&[])),
|
|
|
|
|
]);
|
|
|
|
|
|
2020-09-08 09:12:32 +02:00
|
|
|
let mut read = StreamReader::new(stream);
|
2020-04-02 23:18:52 +02:00
|
|
|
|
|
|
|
|
let mut buf = [0; 5];
|
|
|
|
|
read.read_exact(&mut buf).await?;
|
|
|
|
|
assert_eq!(buf, [0, 1, 2, 3, 4]);
|
|
|
|
|
|
|
|
|
|
assert_eq!(read.read(&mut buf).await?, 3);
|
|
|
|
|
assert_eq!(&buf[..3], [5, 6, 7]);
|
|
|
|
|
|
|
|
|
|
assert_eq!(read.read(&mut buf).await?, 4);
|
|
|
|
|
assert_eq!(&buf[..4], [8, 9, 10, 11]);
|
|
|
|
|
|
|
|
|
|
assert_eq!(read.read(&mut buf).await?, 0);
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|