zip-rs-wasm/tests/xz.rs
2024-06-22 11:12:53 +08:00

19 lines
550 B
Rust

#![cfg(feature = "xz")]
use std::io::{self, Read};
use zip::ZipArchive;
#[test]
fn decompress_xz() -> io::Result<()> {
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("data/xz.zip"));
let mut archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file");
let mut file = archive.by_name("hello.txt")?;
assert_eq!("hello.txt", file.name());
let mut content = Vec::new();
file.read_to_end(&mut content)?;
assert_eq!("Hello world\n", String::from_utf8(content).unwrap());
Ok(())
}