9static void test_decode(
const std::string& encoded,
const std::string& decoded)
11 auto buf = HexDump::decode(encoded);
12 REQUIRE(buf.size() == decoded.size());
16static void test(
const std::string& decoded,
const std::string& encoded)
18 CHECK(HexDump::encode(std::span{std::bit_cast<const uint8_t*>(decoded.data()),
21 test_decode(encoded, decoded);
29 test(
"abc",
"61 62 63");
30 test(
"0123456789",
"30 31 32 33 34 35 36 37 38 39");
31 test(
"abcdefghijklmnopqrstuvwxyz",
32 "61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70\n"
33 "71 72 73 74 75 76 77 78 79 7A");
34 test(
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
35 "30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46\n"
36 "47 48 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56\n"
37 "57 58 59 5A 61 62 63 64 65 66 67 68 69 6A 6B 6C\n"
38 "6D 6E 6F 70 71 72 73 74 75 76 77 78 79 7A");
39 test(
"111111111111111111111111111111111111111111111111111111111111111111111111111111"
40 "111111111111111111111111111111111111111111111111111111111111111111111111111111"
41 "111111111111111111111111111111111111111111111111111111111111111111111111111111"
42 "111111111111111111111111111111111111111111111",
43 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
44 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
45 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
46 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
47 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
48 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
49 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
50 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
51 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
52 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
53 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
54 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
55 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
56 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
57 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
58 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
59 "31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31\n"
60 "31 31 31 31 31 31 31");
64 test_decode(
"30 31\n32\n33 34",
"01234");
66 test_decode(
"3031323334",
"01234");
68 test_decode(
"30|31G32g33+34",
"01234");
70 test_decode(
"4A+4b4c\n4d",
"JKLM");
constexpr bool equal(InputRange1 &&range1, InputRange2 &&range2, Pred pred={}, Proj1 proj1={}, Proj2 proj2={})