Commit graph

41 commits

Author SHA1 Message Date
nichmor
a3232a2119
Merge branch 'master' into fix/soft-links-should-remain-the-same 2024-07-08 17:15:38 +03:00
nichmor
06a0b4e90e misc: add test that validate the usecase 2024-06-26 15:48:31 +03:00
LoveSy
421e1dd8fb
feat: support XZ decompression 2024-06-22 11:12:53 +08:00
Chris Hennick
fce5e0a2d3
test: Add regression tests for #159 2024-06-04 09:29:33 -07:00
Chris Hennick
847e537e86
test: Add unit test for UTF8 extra-field handling 2024-06-02 17:46:55 -07:00
Chris Hennick
eb949ebdef
chore: Update unit tests 2024-05-25 15:05:02 -07:00
Danny McClanahan
011e5afe7b
add test that breaks without the fix 2024-05-24 07:39:55 -04:00
Chris Hennick
2148580a27
doc: Add some missing license information 2024-05-19 11:47:12 -07:00
Chris Hennick
6ae2cfbf52
chore(#132): Attribution for some copied test data 2024-05-17 19:19:07 -07:00
Chris Hennick
3bf0301e39
feat: Add is_symlink method 2024-05-13 19:52:14 -07:00
Chris Hennick
2ea4e5059f
fix: Extract directory contents on Unix even if the directory doesn't have write permission (https://github.com/zip-rs/zip-old/issues/423) 2024-05-10 14:27:25 -07:00
Chris Hennick
8eb5a75a87
style: Merge patches from code into non_utf8.zip 2024-05-10 09:01:17 -07:00
Chris Hennick
5d3c73a5d5
Merge branch 'master' into dev/ziped
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-09 12:19:48 -07:00
hidez8891
d5f27dfad0
Fixed writing wrong UTF-8 flag
If the UTF-8 flag (generic bit 11) is set, file names and comments must be saved in UTF-8 format. (APPENDIX D)
However, the UTF-8 flag is set even for formats that are non-UTF-8 (GB18030, SHIFT_JIS, etc.). Fix this problem.
2024-05-08 22:22:50 +09:00
Chris Hennick
2cff4ec936
test: Update reference version-needed-to-open in unit tests (cont'd) 2024-05-06 11:43:01 -07:00
Chris Hennick
3140276a33
Merge remote-tracking branch 'jans/master' into oldpr437a
# Conflicts:
#	README.md
#	src/cp437.rs
#	src/read.rs
#	src/types.rs
#	src/write.rs
2024-05-02 10:51:01 -07:00
Jan Starke
ccaba9df74
add test case for extended timestamp 2024-05-02 09:34:20 +02:00
Chris Hennick
46ff80d294
test: verify that we can read a file with a data descriptor 2024-04-23 11:09:06 -07:00
Chris Hennick
b7fe3f6e4f Add tests and update fuzzing dictionary/corpus for LZMA 2024-04-11 13:14:34 -07:00
Chris Hennick
b85dd4ba82 Replace reproducing zip with a smaller one 2024-03-09 14:46:29 -08:00
Chris Hennick
be49def529 Replace hard-coded byte array with data file 2024-03-06 12:34:51 -08:00
Chris Hennick
dc62999f85 Bug fix: include data file for new test 2024-03-03 18:03:07 -08:00
anatawa12
4812d77e5b
Merge remote-tracking branch 'zip-next/master' into deflate64-next 2023-10-13 19:58:44 +09:00
anatawa12
c82edf6ed2
test: skip deflate64 in compression tests 2023-08-04 23:14:23 +09:00
Chris Hennick
21ff795071
Additional sanity checks on ZIP64 footer 2023-05-14 08:28:52 -07:00
Chris Hennick
70db61c26e
Perform sanity checks when both ZIP32 and ZIP64 footers are found 2023-05-12 08:28:30 -07:00
Chris Hennick
fba2b971ae
Bug fix: test files were truncated 2023-05-11 20:11:44 -07:00
Chris Hennick
dc351196e2
Bug fix: don't allow writing files with certain ZIP64 magic strings in their names 2023-05-11 18:52:41 -07:00
Nick Babcock
03613cb56e Fix capacity overflow on invalid zips reads
Preemptively allocating structures with the number of reported files can
lead to trouble as an invalid zip can still have a valid central
directory end that is fed into a `with_capacity` causing it to overflow.

This commit introduces a heuristic that will use the reported number of
files as long as the number is less than the cde offset.

Benchmarks were unaffected by this change.
2022-04-25 21:01:56 -05:00
Lireer
c17df86dbf test decryption of aes encrypted files 2022-01-25 22:07:53 +01:00
Plecra
f5061c25e9
Merge pull request #178 from davide-romanini/forgive-after-comment-junk
Allow for garbage after comment data
2020-11-15 21:32:38 +00:00
Davide Romanini
5eefdf8271 add test for handling comment garbage 2020-08-19 18:53:58 +02:00
nickbabcock
ef5ce23d85 Fix overflow in directory counts of ZIP64 files 2020-08-10 21:22:49 -05:00
Jeremy Aube
d382f04e5a Change default comment to String::new() and fixed tests 2020-06-21 12:38:36 -04:00
Damien Collard
d9c3c085a8 Fix CI test with --no-default-features failing.
This fix replaces the compressed test archive with a non-compressed
one.
2019-01-31 13:39:30 +01:00
Damien Collard
b9af51e654 Add ZipFile::is_dir() and ZipFile::is_file().
The naming matches that of std::fs::Metadata.

An entry is determined to be a directory based on the presence of
a trailing path separator, i.e. '/' or '\'.

This patch adds a small test zip containing files and directories.
Their names match their type so as to make testing easy.
2019-01-27 15:57:30 +01:00
Mathijs van de Nes
602952750e Update DEFAULT_VERSION
Use a more sane 'version made by' as we can write Bzip2 files
2018-05-22 23:36:56 +02:00
Mathijs van de Nes
ab9667aa5c Properly write 'version needed' in local file header
'version made by' was used instead of version needed by accident.

Resolves #72
2018-05-22 23:36:56 +02:00
Peter Williams
f85b5cb7b8 Add a test for ZIP64 with leading junk.
I constructed this file using a hack from the Zip manpage: if the input to a
Zip compression command is streamed on standard input, the output is given in
ZIP64 format since the tool doesn't know how big the input will be. I modified
the resulting file by adding some leading junk text and editing the non-ZIP64
end-of-central-directory structure to have 0xFFFF for its "number of files"
parameters, to help the test demonstrate that the ZIP64 data are being
properly read. (0xFFFF is the value used in the non-ZIP64 structure if the
archive actually has more than 65535 files.)
2017-08-12 14:42:32 -04:00
Mathijs van de Nes
2dae0d4a5c Add regression test for #40 2017-07-05 21:36:47 +02:00
Jos van den Oever
93f676fa57 Add two simple tests. 2017-03-14 20:16:51 +01:00