mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
chore(tests): add case for garbage after comment
This commit is contained in:
parent
8db960d064
commit
ecdae4155e
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue