From db9866719bbe4552920966552c0b9a1f57d74ca6 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 29 Apr 2023 15:05:53 -0700 Subject: [PATCH] Add unit test for duplicate file names --- src/write.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/write.rs b/src/write.rs index 581cf1f7..7b069c33 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1636,6 +1636,20 @@ mod test { assert_eq!(second_file_content, RT_TEST_TEXT); } + #[test] + fn duplicate_filenames() { + let mut writer = ZipWriter::new(io::Cursor::new(Vec::new())); + writer + .start_file("foo/bar/test", FileOptions::default()) + .unwrap(); + writer + .write("The quick brown 🦊 jumps over the lazy 🐕".as_bytes()) + .unwrap(); + writer + .start_file("foo/bar/test", FileOptions::default()) + .expect_err("Expected duplicate filename not to be allowed"); + } + #[test] fn path_to_string() { let mut path = std::path::PathBuf::new();