mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-02 22:00:53 +01:00
chore(tests): strip newlines and first line before comment len
This commit is contained in:
parent
bd30a000ef
commit
9f9b394207
1 changed files with 3 additions and 2 deletions
|
@ -74,9 +74,10 @@ return function(test: typeof(frktest.test))
|
|||
local unzipResult = process.spawn("unzip", { "-z", "tests/data/max_comment_size.zip" })
|
||||
assert(unzipResult.ok)
|
||||
|
||||
print(#unzipResult.stdout, #zip.comment)
|
||||
local commentData = assert(string.match(unzipResult.stdout, "\n(.*)\n"))
|
||||
|
||||
-- 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))
|
||||
check.equal(serde.hash("blake3", commentData), serde.hash("blake3", zip.comment))
|
||||
end)
|
||||
end)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue