From 5eefdf8271e5cfccbe01b84721b699742318c7c8 Mon Sep 17 00:00:00 2001 From: Davide Romanini Date: Wed, 19 Aug 2020 18:53:58 +0200 Subject: [PATCH] add test for handling comment garbage --- tests/data/comment_garbage.zip | Bin 0 -> 46 bytes tests/zip_comment_garbage.rs | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 tests/data/comment_garbage.zip create mode 100644 tests/zip_comment_garbage.rs diff --git a/tests/data/comment_garbage.zip b/tests/data/comment_garbage.zip new file mode 100644 index 0000000000000000000000000000000000000000..f6a289e817b4686757c5c421b2e7958aa08b1068 GIT binary patch literal 46 hcmWIWW@TeQ18fY%8TmyedilAzsd*&|NjZry3;>a|35Wmy literal 0 HcmV?d00001 diff --git a/tests/zip_comment_garbage.rs b/tests/zip_comment_garbage.rs new file mode 100644 index 00000000..ef4d9750 --- /dev/null +++ b/tests/zip_comment_garbage.rs @@ -0,0 +1,30 @@ +// Some zip files can contain garbage after the comment. For example, python zipfile generates +// it when opening a zip in 'a' mode: +// +// >>> from zipfile import ZipFile +// >>> with ZipFile('comment_garbage.zip', 'a') as z: +// ... z.comment = b'long comment bla bla bla' +// ... +// >>> with ZipFile('comment_garbage.zip', 'a') as z: +// ... z.comment = b'short.' +// ... +// >>> +// +// Hexdump: +// +// 00000000 50 4b 05 06 00 00 00 00 00 00 00 00 00 00 00 00 |PK..............| +// 00000010 00 00 00 00 06 00 73 68 6f 72 74 2e 6f 6d 6d 65 |......short.omme| +// 00000020 6e 74 20 62 6c 61 20 62 6c 61 20 62 6c 61 |nt bla bla bla| +// 0000002e + +use std::io; +use zip::ZipArchive; + +#[test] +fn correctly_handle_zip_with_garbage_after_comment() { + let mut v = Vec::new(); + v.extend_from_slice(include_bytes!("../tests/data/comment_garbage.zip")); + let archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file"); + + assert_eq!(archive.comment(), "short.".as_bytes()); +}