2025-03-31 00:02:39 +02:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
|
|
const msgpack = @import("msgpack");
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
const deserialise = msgpack.deserialise;
|
2025-03-31 00:02:39 +02:00
|
|
|
|
|
|
|
|
fn test_binary(bytes: []const u8, expected: []const u8) !void {
|
|
|
|
|
const alloc = std.testing.allocator;
|
|
|
|
|
|
|
|
|
|
const obj = try deserialise(alloc, bytes);
|
|
|
|
|
defer obj.deinit(alloc);
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
try std.testing.expectEqualStrings(expected, obj.binary);
|
2025-03-31 00:02:39 +02:00
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "fixbin" {
|
2025-03-31 00:02:39 +02:00
|
|
|
const bytes = [_]u8{ 0xc4, 0x03, 'A', 'B', 'C' };
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "ABC");
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "empty bin" {
|
2025-03-31 00:02:39 +02:00
|
|
|
const bytes = [_]u8{ 0xc4, 0x00 };
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "");
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "bin8" {
|
2025-03-31 00:02:39 +02:00
|
|
|
var bytes: [2 + 255]u8 = undefined;
|
|
|
|
|
|
|
|
|
|
bytes[0] = 0xc4;
|
|
|
|
|
bytes[1] = 0xff;
|
|
|
|
|
|
|
|
|
|
for (bytes[2..]) |*c| {
|
|
|
|
|
c.* = 'A';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "A" ** 255);
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "bin16 1" {
|
2025-03-31 00:02:39 +02:00
|
|
|
var bytes: [3 + 256]u8 = undefined;
|
|
|
|
|
|
|
|
|
|
bytes[0] = 0xc5;
|
|
|
|
|
bytes[1] = 0x01;
|
|
|
|
|
bytes[2] = 0x00;
|
|
|
|
|
|
|
|
|
|
for (bytes[3..]) |*c| {
|
|
|
|
|
c.* = 'A';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "A" ** 256);
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "bin16 2" {
|
2025-03-31 00:02:39 +02:00
|
|
|
var bytes: [3 + 65535]u8 = undefined;
|
|
|
|
|
|
|
|
|
|
bytes[0] = 0xc5;
|
|
|
|
|
bytes[1] = 0xff;
|
|
|
|
|
bytes[2] = 0xff;
|
|
|
|
|
|
|
|
|
|
for (bytes[3..]) |*c| {
|
|
|
|
|
c.* = 'A';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "A" ** 65535);
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 02:44:26 +02:00
|
|
|
test "bin32" {
|
2025-03-31 00:02:39 +02:00
|
|
|
var bytes: [5 + 65536]u8 = undefined;
|
|
|
|
|
|
|
|
|
|
bytes[0] = 0xc6;
|
|
|
|
|
bytes[1] = 0x00;
|
|
|
|
|
bytes[2] = 0x01;
|
|
|
|
|
bytes[3] = 0x00;
|
|
|
|
|
bytes[4] = 0x00;
|
|
|
|
|
|
|
|
|
|
for (bytes[5..]) |*c| {
|
|
|
|
|
c.* = 'A';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try test_binary(&bytes, "A" ** 65536);
|
|
|
|
|
}
|