2018-01-16 03:20:20 -08:00
|
|
|
const debug = @import("../debug/index.zig");
|
|
|
|
const mem = @import("../mem.zig");
|
|
|
|
const fmt = @import("../fmt/index.zig");
|
|
|
|
|
|
|
|
// Hash using the specified hasher `H` asserting `expected == H(input)`.
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn assertEqualHash(comptime Hasher: var, comptime expected: []const u8, input: []const u8) void {
|
2018-01-16 03:20:20 -08:00
|
|
|
var h: [expected.len / 2]u8 = undefined;
|
|
|
|
Hasher.hash(input, h[0..]);
|
|
|
|
|
|
|
|
assertEqual(expected, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert `expected` == `input` where `input` is a bytestring.
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn assertEqual(comptime expected: []const u8, input: []const u8) void {
|
2018-01-16 03:20:20 -08:00
|
|
|
var expected_bytes: [expected.len / 2]u8 = undefined;
|
|
|
|
for (expected_bytes) |*r, i| {
|
2018-05-30 13:09:11 -07:00
|
|
|
r.* = fmt.parseInt(u8, expected[2 * i .. 2 * i + 2], 16) catch unreachable;
|
2018-01-16 03:20:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
debug.assert(mem.eql(u8, expected_bytes, input));
|
|
|
|
}
|