test: Add unit test for UTF8 extra-field handling
This commit is contained in:
parent
d547930a3f
commit
847e537e86
3 changed files with 8 additions and 0 deletions
BIN
fuzz/corpus/fuzz_read/chinese.zip
Normal file
BIN
fuzz/corpus/fuzz_read/chinese.zip
Normal file
Binary file not shown.
|
@ -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
BIN
tests/data/chinese.zip
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue