From ccaba9df74f89baae82ffa5a861284e3f54dc11f Mon Sep 17 00:00:00 2001 From: Jan Starke Date: Thu, 2 May 2024 09:34:20 +0200 Subject: [PATCH] add test case for extended timestamp --- tests/data/extended_timestamp.zip | Bin 0 -> 297 bytes tests/zip_extended_timestamp.rs | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 tests/data/extended_timestamp.zip create mode 100644 tests/zip_extended_timestamp.rs diff --git a/tests/data/extended_timestamp.zip b/tests/data/extended_timestamp.zip new file mode 100644 index 0000000000000000000000000000000000000000..aa93eb62afa3520fefa674de59f49693032803b1 GIT binary patch literal 297 zcmWIWW@Zs#fB;2?xMM~<>Oc+%a{zH}W^QUpWkG6UK|xMta$-qlex80=UW#6RVsU1% zUVcGpUP^v)X>Mv>iC#%+MM(hAFfOoJXT29ifEiGNgF%L&B()f*tfC||gp+|;(9t+e z9*9dTxEUB(UNAE-fQbNaMkYOG+zx`7xug-qf;kVQOO6?r%@Qz83|ks~foz03SRwAf Ta04qFNDC7XwgBmV5QhN(bWS#E literal 0 HcmV?d00001 diff --git a/tests/zip_extended_timestamp.rs b/tests/zip_extended_timestamp.rs new file mode 100644 index 00000000..9fecbacd --- /dev/null +++ b/tests/zip_extended_timestamp.rs @@ -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); + }, + } + } +}