mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-02 22:00:53 +01:00
chore(tests): add edge case test for max_comment_size.zip
This commit is contained in:
parent
73169f1b1b
commit
e70b3b8055
2 changed files with 13 additions and 0 deletions
|
@ -66,5 +66,17 @@ return function(test: typeof(frktest.test))
|
|||
return zip:extractDirectory("/", { type = "text" })
|
||||
end)
|
||||
end)
|
||||
|
||||
test.case("Efficiently handles ZIP with max length comment", function()
|
||||
local data = fs.readFile("tests/data/max_comment_size.zip")
|
||||
local zip = ZipReader.load(buffer.fromstring(data))
|
||||
|
||||
local unzipResult = process.spawn("unzip", { "-z", "tests/data/max_comment_size.zip" })
|
||||
assert(unzipResult.ok)
|
||||
|
||||
print(#unzipResult.stdout, #zip.comment)
|
||||
-- Check that the comment is the same as the one in the ZIP file (only compare hashes)
|
||||
check.equal(serde.hash("blake3", unzipResult.stdout), serde.hash("blake3", zip.comment))
|
||||
end)
|
||||
end)
|
||||
end
|
||||
|
|
|
@ -17,6 +17,7 @@ local FALLIBLES = {
|
|||
"misaligned_comment.zip",
|
||||
"comment_garbage.zip",
|
||||
"chinese.zip", -- FIXME: Support encoding other than UTF-8 and ASCII using OS APIs after FFI
|
||||
"max_comment_size.zip", -- NOTE: We test for this in the edge cases suite
|
||||
}
|
||||
|
||||
local METHOD_NAME_TRANSFORMATIONS: { [string]: unzip.CompressionMethod } = {
|
||||
|
|
Loading…
Add table
Reference in a new issue