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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "../httpdunit.h"
#include "httpd.h"
/*
* Test Fixture -- runs once per test
*/
static apr_pool_t *g_pool;
static void util_setup(void)
{
if (apr_pool_create(&g_pool, NULL) != APR_SUCCESS) {
exit(1);
}
}
static void util_teardown(void)
{
apr_pool_destroy(g_pool);
}
/*
* ap_test_token()
*/
struct ap_test_token_case {
const char *list;
const char *token;
int expected;
};
const struct ap_test_token_case ap_test_token_cases[] = {
{ "one, two, three", "one", 1 },
{ "one, two, three", "two", 1 },
{ "one, two, three", "three", 1 },
{ "one,two,three", "two", 1 },
{ NULL, "token", 0 },
/* Regression test for CVE-2017-7668 */
{ "one, two, \0three", "three", 0 },
/*
* Dubious compatibility cases
*/
{ ",\x01,one,,two,/,,three,,", "one", 1 },
{ ",\x01,one,,two,/,,three,,", "two", 1 },
{ ",\x01,one,,two,/,,three,,", "three", 1 },
{ ",\x01,one,,two,/,,three,,", "\x01", 0 },
{ ",\x01,one,,two,/,,three,,", "/", 0 },
};
const size_t ap_test_token_cases_len = sizeof(ap_test_token_cases) /
sizeof(ap_test_token_cases[0]);
HTTPD_START_LOOP_TEST(find_token_correctly_parses_token_list, ap_test_token_cases_len)
{
const struct ap_test_token_case *c = &ap_test_token_cases[_i];
int result;
result = ap_find_token(g_pool, c->list, c->token);
ck_assert_int_eq(result, c->expected);
}
END_TEST
/*
* ap_escape_quotes()
*/
struct ap_escape_quotes_case {
const char *input;
const char *expected;
};
#define ESCQ "\\\""
const struct ap_escape_quotes_case ap_test_escape_quotes_cases[] = {
{ "one", "one" },
{ "o\"ne", "o"ESCQ"ne" },
{ "o"ESCQ"ne", "o"ESCQ"ne" },
{ "one\\", "one\\" },
{ "o\\ne", "o\\ne" },
{ "o\\"ESCQ"ne", "o\\\\"ESCQ"ne" }, /* 1st \ escapes 2nd, following '"' needs \ */
};
const size_t ap_test_escape_quotes_cases_len = sizeof(ap_test_escape_quotes_cases) /
sizeof(ap_test_escape_quotes_cases[0]);
HTTPD_START_LOOP_TEST(check_escape_quotes, ap_test_escape_quotes_cases_len)
{
const struct ap_escape_quotes_case *c = &ap_test_escape_quotes_cases[_i];
const char *result;
result = ap_escape_quotes(g_pool, c->input);
ck_assert_str_eq(result, c->expected);
}
END_TEST
/*
* Test Case Boilerplate
*/
HTTPD_BEGIN_TEST_CASE_WITH_FIXTURE(util, util_setup, util_teardown)
#include "test/unit/util.tests"
HTTPD_END_TEST_CASE
|