test: Add unit test for UTF8 extra-field handling

This commit is contained in:
Chris Hennick 2024-06-02 17:46:55 -07:00
parent d547930a3f
commit 847e537e86
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
3 changed files with 8 additions and 0 deletions

Binary file not shown.

View file

@ -1788,4 +1788,12 @@ mod test {
assert!(tempdir.path().join("bar").is_symlink());
Ok(())
}
#[test]
fn test_utf8_extra_field() {
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("../tests/data/chinese.zip"));
let mut reader = ZipArchive::new(Cursor::new(v)).unwrap();
reader.by_name("七个房间.txt").unwrap();
}
}

BIN
tests/data/chinese.zip Normal file

Binary file not shown.