diff --git a/tests/data/utf8_filenames.zip b/tests/data/utf8_filenames.zip new file mode 100644 index 0000000..18ba8e6 Binary files /dev/null and b/tests/data/utf8_filenames.zip differ diff --git a/tests/edge_cases.luau b/tests/edge_cases.luau index 66a4d1b..681d1bf 100644 --- a/tests/edge_cases.luau +++ b/tests/edge_cases.luau @@ -44,5 +44,18 @@ return function(test: typeof(frktest.test)) -- the entire binary data in case there's a mismatch check.equal(serde.hash("blake3", bin), serde.hash("blake3", expectedBin.stdout)) end) + + test.case("Extracts files with UTF8 names", function() + local data = fs.readFile("tests/data/utf8_filenames.zip") + local zip = ZipReader.load(buffer.fromstring(data)) + + local entries = {} + for _, entry in zip:listDirectory("/") do + table.insert(entries, entry.name) + end + + check.equal(#entries, 3) + check.table.equal(entries, { "file_こんにちは.txt", "file_你好.txt", "file_안녕하세요.txt" }) + end) end) end diff --git a/tests/extract.luau b/tests/extract.luau index b6fa02a..49f4850 100644 --- a/tests/extract.luau +++ b/tests/extract.luau @@ -14,7 +14,7 @@ local FALLIBLES = { -- "invalid_cde_number_of_files_allocation_smaller_offset.zip", "invalid_offset.zip", "invalid_offset2.zip", - "chinese.zip", -- TODO: Support UTF8 data in file names + "chinese.zip", -- Contains non UTF8 data which can't parse without OS APIs "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 }