* fix: resolve clippy warning in nightly * wip: major rework of cde location * wip: rework CDE lookup * refactor: magic finder, eocd lookup retry * wip: handle empty zips * fix: satisfy tests, add documentation * chore: remove unused dependencies * feat: support both zip32 and zip64 comments * feat: add zip64 comment functions to ZipWriter * fix: first pass on maintainer comments * fix: continue searching for EOCD when the central directory is invalid * chore: satisfy clippy lints * chore: satisfy style_and_docs * feat: support both directions in MagicFinder, correctly find first CDFH * fix: more checks to EOCD parsing, move comment size error from parse to write * fix: use saturating add when checking eocd64 record_size upper bound * fix: correctly handle mid window offsets in forward mode * fix: compare maximum possible comment length against file size, not search region end * feat: handle zip64 detection as a hint * fix: detect oversized central directories when locating EOCD64 * fix: oopsie --------- Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Co-authored-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
24 lines
640 B
Rust
24 lines
640 B
Rust
use std::io::Cursor;
|
|
use zip::ZipArchive;
|
|
|
|
#[test]
|
|
fn test_prepended_garbage() {
|
|
let mut v = vec![0, 1, 2, 3];
|
|
v.extend_from_slice(include_bytes!("../tests/data/extended_timestamp.zip"));
|
|
|
|
let mut archive = ZipArchive::new(Cursor::new(v)).expect("couldn't open test zip file");
|
|
|
|
assert_eq!(2, archive.len());
|
|
|
|
for file_idx in 0..archive.len() {
|
|
let file = archive.by_index(file_idx).unwrap();
|
|
let outpath = file.enclosed_name().unwrap();
|
|
|
|
println!(
|
|
"Entry {} has name \"{}\" ({} bytes)",
|
|
file_idx,
|
|
outpath.display(),
|
|
file.size()
|
|
);
|
|
}
|
|
}
|