diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/flate2/tests/async-reader.rs | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/flate2/tests/async-reader.rs')
-rw-r--r-- | third_party/rust/flate2/tests/async-reader.rs | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/third_party/rust/flate2/tests/async-reader.rs b/third_party/rust/flate2/tests/async-reader.rs new file mode 100644 index 0000000000..16dae65f91 --- /dev/null +++ b/third_party/rust/flate2/tests/async-reader.rs @@ -0,0 +1,96 @@ +extern crate flate2; +extern crate futures; +extern crate tokio_io; + +use flate2::read::{GzDecoder, MultiGzDecoder}; +use futures::prelude::*; +use futures::task; +use std::cmp; +use std::fs::File; +use std::io::{self, Read}; +use tokio_io::io::read_to_end; +use tokio_io::AsyncRead; + +struct BadReader<T> { + reader: T, + x: bool, +} + +impl<T> BadReader<T> { + fn new(reader: T) -> BadReader<T> { + BadReader { reader, x: true } + } +} + +impl<T: Read> Read for BadReader<T> { + fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { + if self.x { + self.x = false; + let len = cmp::min(buf.len(), 1); + self.reader.read(&mut buf[..len]) + } else { + self.x = true; + Err(io::ErrorKind::WouldBlock.into()) + } + } +} + +struct AssertAsync<T>(T); + +impl<T: Read> Read for AssertAsync<T> { + fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { + self.0.read(buf) + } +} + +impl<T: Read> AsyncRead for AssertAsync<T> {} + +struct AlwaysNotify<T>(T); + +impl<T: Future> Future for AlwaysNotify<T> { + type Item = T::Item; + type Error = T::Error; + + fn poll(&mut self) -> Poll<Self::Item, Self::Error> { + let ret = self.0.poll(); + if let Ok(Async::NotReady) = &ret { + task::current().notify(); + } + ret + } +} + +#[test] +fn test_gz_asyncread() { + let f = File::open("tests/good-file.gz").unwrap(); + + let fut = read_to_end(AssertAsync(GzDecoder::new(BadReader::new(f))), Vec::new()); + let (_, content) = AlwaysNotify(fut).wait().unwrap(); + + let mut expected = Vec::new(); + File::open("tests/good-file.txt") + .unwrap() + .read_to_end(&mut expected) + .unwrap(); + + assert_eq!(content, expected); +} + +#[test] +fn test_multi_gz_asyncread() { + let f = File::open("tests/multi.gz").unwrap(); + + let fut = read_to_end( + AssertAsync(MultiGzDecoder::new(BadReader::new(f))), + Vec::new(), + ); + let (_, content) = AlwaysNotify(fut).wait().unwrap(); + + let mut expected = Vec::new(); + File::open("tests/multi.txt") + .unwrap() + .read_to_end(&mut expected) + .unwrap(); + + assert_eq!(content, expected); +} |