From 011e5afe7be719d62d1779f1e7f6a374ae1d6f00 Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Fri, 3 May 2024 16:24:58 -0400 Subject: [PATCH] add test that breaks without the fix --- tests/data/misaligned_comment.zip | Bin 0 -> 513 bytes tests/zip_comment_garbage.rs | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 tests/data/misaligned_comment.zip diff --git a/tests/data/misaligned_comment.zip b/tests/data/misaligned_comment.zip new file mode 100644 index 0000000000000000000000000000000000000000..6f4256b5ef77ac1b86ad00dd51896da5ed27e777 GIT binary patch literal 513 ocmWIWW@TeQ18fY%8TmyedilAzsd*&|NjZryjHYmuJM=>U0QJiWhyVZp literal 0 HcmV?d00001 diff --git a/tests/zip_comment_garbage.rs b/tests/zip_comment_garbage.rs index ef4d9750..9c124617 100644 --- a/tests/zip_comment_garbage.rs +++ b/tests/zip_comment_garbage.rs @@ -28,3 +28,21 @@ fn correctly_handle_zip_with_garbage_after_comment() { assert_eq!(archive.comment(), "short.".as_bytes()); } + +/// Ensure that a file which has the signature misaligned with the window size is still +/// successfully located. +#[test] +fn correctly_handle_cde_on_window() { + let mut v = Vec::new(); + v.extend_from_slice(include_bytes!("../tests/data/misaligned_comment.zip")); + assert_eq!(v.len(), 512 + 1); + let sig: [u8; 4] = v[..4].try_into().unwrap(); + let sig = u32::from_le_bytes(sig); + + const CENTRAL_DIRECTORY_END_SIGNATURE: u32 = 0x06054b50; + assert_eq!(sig, CENTRAL_DIRECTORY_END_SIGNATURE); + + let archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip"); + + assert_eq!(archive.comment(), "short.".as_bytes()); +}