mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
90 lines
2.8 KiB
Zig
90 lines
2.8 KiB
Zig
const std = @import("../../std.zig");
|
|
const lzma = @import("../lzma.zig");
|
|
|
|
fn testDecompress(compressed: []const u8) ![]u8 {
|
|
const allocator = std.testing.allocator;
|
|
var stream = std.io.fixedBufferStream(compressed);
|
|
var decompressor = try lzma.decompress(allocator, stream.reader());
|
|
defer decompressor.deinit();
|
|
const reader = decompressor.reader();
|
|
return reader.readAllAlloc(allocator, std.math.maxInt(usize));
|
|
}
|
|
|
|
fn testDecompressEqual(expected: []const u8, compressed: []const u8) !void {
|
|
const allocator = std.testing.allocator;
|
|
const decomp = try testDecompress(compressed);
|
|
defer allocator.free(decomp);
|
|
try std.testing.expectEqualSlices(u8, expected, decomp);
|
|
}
|
|
|
|
fn testDecompressError(expected: anyerror, compressed: []const u8) !void {
|
|
return std.testing.expectError(expected, testDecompress(compressed));
|
|
}
|
|
|
|
test "LZMA: decompress empty world" {
|
|
try testDecompressEqual(
|
|
"",
|
|
&[_]u8{
|
|
0x5d, 0x00, 0x00, 0x80, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x83, 0xff,
|
|
0xfb, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00,
|
|
},
|
|
);
|
|
}
|
|
|
|
test "LZMA: decompress hello world" {
|
|
try testDecompressEqual(
|
|
"Hello world\n",
|
|
&[_]u8{
|
|
0x5d, 0x00, 0x00, 0x80, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x24, 0x19,
|
|
0x49, 0x98, 0x6f, 0x10, 0x19, 0xc6, 0xd7, 0x31, 0xeb, 0x36, 0x50, 0xb2, 0x98, 0x48, 0xff, 0xfe,
|
|
0xa5, 0xb0, 0x00,
|
|
},
|
|
);
|
|
}
|
|
|
|
test "LZMA: decompress huge dict" {
|
|
try testDecompressEqual(
|
|
"Hello world\n",
|
|
&[_]u8{
|
|
0x5d, 0x7f, 0x7f, 0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x24, 0x19,
|
|
0x49, 0x98, 0x6f, 0x10, 0x19, 0xc6, 0xd7, 0x31, 0xeb, 0x36, 0x50, 0xb2, 0x98, 0x48, 0xff, 0xfe,
|
|
0xa5, 0xb0, 0x00,
|
|
},
|
|
);
|
|
}
|
|
|
|
test "LZMA: unknown size with end of payload marker" {
|
|
try testDecompressEqual(
|
|
"Hello\nWorld!\n",
|
|
@embedFile("testdata/good-unknown_size-with_eopm.lzma"),
|
|
);
|
|
}
|
|
|
|
test "LZMA: known size without end of payload marker" {
|
|
try testDecompressEqual(
|
|
"Hello\nWorld!\n",
|
|
@embedFile("testdata/good-known_size-without_eopm.lzma"),
|
|
);
|
|
}
|
|
|
|
test "LZMA: known size with end of payload marker" {
|
|
try testDecompressEqual(
|
|
"Hello\nWorld!\n",
|
|
@embedFile("testdata/good-known_size-with_eopm.lzma"),
|
|
);
|
|
}
|
|
|
|
test "LZMA: too big uncompressed size in header" {
|
|
try testDecompressError(
|
|
error.CorruptInput,
|
|
@embedFile("testdata/bad-too_big_size-with_eopm.lzma"),
|
|
);
|
|
}
|
|
|
|
test "LZMA: too small uncompressed size in header" {
|
|
try testDecompressError(
|
|
error.CorruptInput,
|
|
@embedFile("testdata/bad-too_small_size-without_eopm-3.lzma"),
|
|
);
|
|
}
|