chore(tests): add edge case test for max_comment_size.zip

This commit is contained in:
Erica Marigold 2025-02-23 19:19:19 +00:00
parent 73169f1b1b
commit e70b3b8055
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw
2 changed files with 13 additions and 0 deletions

View file

@ -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

View file

@ -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 } = {