-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfmt_test.c
58 lines (49 loc) · 1.47 KB
/
fmt_test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// BadWolf: Minimalist and privacy-oriented WebKitGTK+ browser
// SPDX-FileCopyrightText: 2019-2022 Badwolf Authors <https://hacktivis.me/projects/badwolf>
// SPDX-License-Identifier: BSD-3-Clause
#include "fmt.h"
#include <glib.h>
#include <inttypes.h> // PRIu64
#include <stdint.h> // UINT64_C
static void
fmt_context_id_test(void)
{
struct
{
const char *expect;
uint64_t context_id;
} cases[] = {
//
{"A: ", UINT64_C(0)},
{"B: ", UINT64_C(1)},
{"Y: ", UINT64_C(24)},
{"Z: ", UINT64_C(25)},
{"AA: ", UINT64_C(26)},
{"AB: ", UINT64_C(27)},
{"AZ: ", UINT64_C(51)},
{"BA: ", UINT64_C(52)},
{"BB: ", UINT64_C(53)},
{"QKWW: ", UINT64_C(4294967296)}, // 2^32
{"JFHI: ", UINT64_C(9223372036854775808)}, // 2^63
{"TLPO: ", UINT64_C(18446744073709551614)}, // 2^64 -2
{"TLPP: ", UINT64_C(18446744073709551615)}, // 2^64 -1 (aka UINT64_MAX)
};
for(size_t i = 0; i < sizeof(cases) / sizeof(cases[0]); i++)
{
g_info("fmt_context_id(%" PRIu64 ")", cases[i].context_id);
/* flawfinder: ignore. bound checks are done */
char got[BADWOLF_CTX_SIZ] = {0, 0, 0, 0, 0, 0, 0};
fmt_context_id(cases[i].context_id, got);
if(strncmp(got, cases[i].expect, BADWOLF_CTX_SIZ) != 0)
{
g_error("expected: \"%s\", got: \"%s\"", cases[i].expect, got);
}
}
}
int
main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
g_test_add_func("/fmt_context_id/test", fmt_context_id_test);
return g_test_run();
}