mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Add test for \r in directory parsing
This commit is contained in:
parent
447775a5e0
commit
bbb3396d79
@ -253,6 +253,32 @@ test_parsecommon_get_next_token_success(void *arg)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_parsecommon_get_next_token_carriage_return(void *arg)
|
||||||
|
{
|
||||||
|
memarea_t *area = memarea_new();
|
||||||
|
const char *str = "uptime 1024\r";
|
||||||
|
const char *end = str + strlen(str);
|
||||||
|
const char **s = &str;
|
||||||
|
token_rule_t table = T01("uptime", K_UPTIME, GE(1), NO_OBJ);
|
||||||
|
(void)arg;
|
||||||
|
|
||||||
|
directory_token_t *token = get_next_token(area, s, end, &table);
|
||||||
|
|
||||||
|
tt_int_op(token->tp, OP_EQ, K_UPTIME);
|
||||||
|
tt_int_op(token->n_args, OP_EQ, 1);
|
||||||
|
tt_str_op(*(token->args), OP_EQ, "1024");
|
||||||
|
tt_assert(!token->object_type);
|
||||||
|
tt_int_op(token->object_size, OP_EQ, 0);
|
||||||
|
tt_assert(!token->object_body);
|
||||||
|
|
||||||
|
tt_ptr_op(*s, OP_EQ, end);
|
||||||
|
|
||||||
|
done:
|
||||||
|
memarea_drop_all(area);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_parsecommon_get_next_token_concat_args(void *arg)
|
test_parsecommon_get_next_token_concat_args(void *arg)
|
||||||
{
|
{
|
||||||
@ -571,6 +597,7 @@ test_parsecommon_get_next_token_err_bad_base64(void *arg)
|
|||||||
|
|
||||||
struct testcase_t parsecommon_tests[] = {
|
struct testcase_t parsecommon_tests[] = {
|
||||||
PARSECOMMON_TEST(tokenize_string_null),
|
PARSECOMMON_TEST(tokenize_string_null),
|
||||||
|
PARSECOMMON_TEST(get_next_token_carriage_return),
|
||||||
PARSECOMMON_TEST(tokenize_string_multiple_lines),
|
PARSECOMMON_TEST(tokenize_string_multiple_lines),
|
||||||
PARSECOMMON_TEST(tokenize_string_min_cnt),
|
PARSECOMMON_TEST(tokenize_string_min_cnt),
|
||||||
PARSECOMMON_TEST(tokenize_string_max_cnt),
|
PARSECOMMON_TEST(tokenize_string_max_cnt),
|
||||||
|
Loading…
Reference in New Issue
Block a user