mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-13 04:27:47 -05:00
test: config: add test_uint32() utility function
This commit is contained in:
parent
a3dc0d287d
commit
193c696d03
1 changed files with 37 additions and 0 deletions
|
|
@ -182,6 +182,43 @@ test_uint16(struct context *ctx, bool (*parse_fun)(struct context *ctx),
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_uint32(struct context *ctx, bool (*parse_fun)(struct context *ctx),
|
||||
const char *key, const uint32_t *conf_ptr)
|
||||
{
|
||||
ctx->key = key;
|
||||
|
||||
static const struct {
|
||||
const char *option_string;
|
||||
uint32_t value;
|
||||
bool invalid;
|
||||
} input[] = {
|
||||
{"0", 0}, {"65536", 65536}, {"4294967295", 4294967295},
|
||||
{"4294967296", 0, true}, {"abc", 0, true}, {"true", 0, true},
|
||||
};
|
||||
|
||||
for (size_t i = 0; i < ALEN(input); i++) {
|
||||
ctx->value = input[i].option_string;
|
||||
|
||||
if (input[i].invalid) {
|
||||
if (parse_fun(ctx)) {
|
||||
BUG("[%s].%s=%s: did not fail to parse as expected",
|
||||
ctx->section, ctx->key, ctx->value);
|
||||
}
|
||||
} else {
|
||||
if (!parse_fun(ctx)) {
|
||||
BUG("[%s].%s=%s: failed to parse",
|
||||
ctx->section, ctx->key, ctx->value);
|
||||
}
|
||||
if (*conf_ptr != input[i].value) {
|
||||
BUG("[%s].%s=%s: set value (%hu) not the expected one (%hu)",
|
||||
ctx->section, ctx->key, ctx->value,
|
||||
*conf_ptr, input[i].value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_pt_or_px(struct context *ctx, bool (*parse_fun)(struct context *ctx),
|
||||
const char *key, const struct pt_or_px *conf_ptr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue