add test case for extended timestamp

This commit is contained in:
Jan Starke 2024-05-02 09:34:20 +02:00
parent 09331a935e
commit ccaba9df74
No known key found for this signature in database
GPG key ID: 65EDA2E0B82D5EA8
2 changed files with 19 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,19 @@
use std::io;
use zip::ZipArchive;
#[test]
fn test_extended_timestamp() {
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("../tests/data/extended_timestamp.zip"));
let mut archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file");
for field in archive.by_name("test.txt").unwrap().extra_data_fields() {
match field {
zip::ExtraField::ExtendedTimestamp(ts) => {
assert!(ts.ac_time().is_none());
assert!(ts.cr_time().is_none());
assert_eq!(*ts.mod_time().unwrap(), 1714635025);
},
}
}
}