chore(tests): add case for garbage after comment

This commit is contained in:
Erica Marigold 2025-01-08 14:22:46 +00:00
parent 8db960d064
commit ecdae4155e
Signed by: DevComp
GPG key ID: 429EF1C337871656
2 changed files with 8 additions and 3 deletions

View file

@ -16,6 +16,13 @@ return function(test: typeof(frktest.test))
check.equal(zip.comment, "short.")
end)
test.case("Handles comment with garbage after properly", function()
local data = fs.readFile("tests/data/comment_garbage.zip")
local zip = ZipReader.load(buffer.fromstring(data))
check.equal(zip.comment, "short.")
end)
test.case("Follows symlinks correctly", function()
-- TODO: More test files with symlinks

View file

@ -14,9 +14,7 @@ local FALLIBLES = {
-- "invalid_cde_number_of_files_allocation_smaller_offset.zip",
"invalid_offset.zip",
"invalid_offset2.zip",
-- FIXME: Does not error when it should
-- "comment_garbage.zip",
"chinese.zip",
"chinese.zip", -- TODO: Support UTF8 data in file names
"non_utf8.zip", -- FIXME: Lune breaks for non utf8 data in process stdout
"pandoc_soft_links.zip", -- Soft links are tested separately in edge_cases
}