2019-03-02 21:46:04 +00:00
|
|
|
const std = @import("../std.zig");
|
2019-02-08 23:18:47 +00:00
|
|
|
const testing = std.testing;
|
|
|
|
const mem = std.mem;
|
|
|
|
const fmt = std.fmt;
|
2018-01-16 11:20:20 +00:00
|
|
|
|
|
|
|
// Hash using the specified hasher `H` asserting `expected == H(input)`.
|
2018-01-25 09:10:11 +00:00
|
|
|
pub fn assertEqualHash(comptime Hasher: var, comptime expected: []const u8, input: []const u8) void {
|
2018-01-16 11:20:20 +00:00
|
|
|
var h: [expected.len / 2]u8 = undefined;
|
|
|
|
Hasher.hash(input, h[0..]);
|
|
|
|
|
2019-11-27 08:30:39 +00:00
|
|
|
assertEqual(expected, &h);
|
2018-01-16 11:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assert `expected` == `input` where `input` is a bytestring.
|
2018-01-25 09:10:11 +00:00
|
|
|
pub fn assertEqual(comptime expected: []const u8, input: []const u8) void {
|
2018-01-16 11:20:20 +00:00
|
|
|
var expected_bytes: [expected.len / 2]u8 = undefined;
|
|
|
|
for (expected_bytes) |*r, i| {
|
2018-05-30 21:09:11 +01:00
|
|
|
r.* = fmt.parseInt(u8, expected[2 * i .. 2 * i + 2], 16) catch unreachable;
|
2018-01-16 11:20:20 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:30:39 +00:00
|
|
|
testing.expectEqualSlices(u8, &expected_bytes, input);
|
2018-01-16 11:20:20 +00:00
|
|
|
}
|