Relaxed size checks to not error for empty ZIP files in other test
cases, and only validate that the number of entries is 0 for our test
case, moving it to the edge cases suite instead.
Previous EoCD detection performance improvement changes in
https://github.com/0x5eal/luau-unzip/commit/b710e296 inadvertently fixed
some bugs to do with max size ZIP reads, which caused a regression in
the `invalid_cde_number_of_files_allocation_greater_offset.zip` test,
which used to error as expected due to out-of-bounds buffer reads. This
commit fixes this by improving size validations present in the methods
`ZipReader:parseEocdRecord` and `ZipReader:parseCentralDirectory`.
This was caught in the new test case for max length comments, where the
comment would partially get cut off due us to using the wrong size units
in `ZipReader:findEocdPosition`.
Simplies logic to just use nearest parent as the base instead of
traversing downwards. This reduces some redundancy, however fixes a bug
with repeated components in the constructed path and also improves
performance by skipping a loop altogether.
Also fixes recursive extraction tests failing `pandoc_soft_links.zip`.
* Added `ZipEntry:getSafePath` which returns the path of the entry if it
was safe, or nil
* Added `ZipEntry:sanitizePath` which converts a potentially unsafe path
to a safe one, although it can change the meaning of the paths
* Updated path utility with functions `isSafe` and `sanitize`
* Path utility now always uses `/` as a path separator, converting `\\`
to `/` when needed
* Included tests for path utility
* Added new extraction option: `followSymlinks`
* Added method for querying whether an entry is a symlink using
`ZipEntry:isSymlink`
* Include tests for symlinks
Fixed a bug in the directory tree builder where for directories there
would be two entries, where one would have a trailing slash, and the
other wouldn't.
The directory without the trailing slash would get linked to its
children in the entries lookup table, while the one with the trailing
slash would exist as a "ghost directory" with no children.
The fix involved sorting the entries to first handle directories, and
linking to the existing parent directory entries for children.
Adds support for ZIP files with the `0x08` bit of the general purpose
bitflags set, i.e, those which do not include file sizes and crc
checksums in the local file header
* Implements a decompression step for extraction, currently supporting
`DEFLATE` and `STORED`
* Moved testing file to `examples/`
* Added validation step to `ZipReader:extract` with options to
optionally skip it (matches checksum and uncompressed size)