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
123
124
|
/* Copyright (c) 2016-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "test-lib.h"
#include "dns-util.h"
#include "array.h"
static void test_dns_compare(void)
{
static const struct {
const char *a;
const char *b;
int res;
} tests[] =
{
{ NULL, NULL, 0 },
{ NULL, "", 1 },
{ "", NULL, -1 },
{ "", "", 0 },
{ "a", "a", 0 },
{ "a", "b", -1 },
{ "b", "a", 1 },
{ "A", "A", 0 },
{ "A", "B", -1 },
{ "B", "A", 1 },
{ "A", "a", 0 },
{ "a", "B", -1 },
{ "B", "a", 1 },
{ "test.invalid", "TeSt.InVaLid", 0 },
{ "alphabet.com", "alpha.com", 52 },
{ "com.alphabet", "com.alpha", 98 },
{ "com.com", "com.comcom", -99 },
};
test_begin("test_dns_compare");
for(size_t i = 0; i < N_ELEMENTS(tests); i++) {
test_assert_idx(dns_compare(tests[i].a, tests[i].b) == tests[i].res, i);
test_assert_idx(dns_compare_labels(tests[i].a, tests[i].b) == tests[i].res, i);
}
test_end();
}
static void test_dns_match(void)
{
static const struct {
const char *name;
const char *mask;
int res;
} tests[] =
{
{ "", "", 0 },
{ "", "*", 0 },
{ "*", "", -1 },
{ "TeSt.InVaLid", "test.invalid", 0 },
{ "contoso.com", "test.invalid", -1 },
{ "test.invalid", "test.unvalid", -1 },
{ "name.test.invalid", "*.test.invalid", 0 },
{ "real.name.test.invalid", "*.test.invalid", -1 },
{ "real.name.test.invalid", "*.*.test.invalid", 0 },
{ "name.test.invalid", "*name*.test.invalid", -1 },
{ "name.invalid", "name.*", -1 },
};
test_begin("test_dns_match");
for(size_t i = 0; i < N_ELEMENTS(tests); i++) {
test_assert_idx(dns_match_wildcard(tests[i].name, tests[i].mask) == tests[i].res, i);
}
test_end();
}
static int
arr_dns_compare(const char *const *a, const char *const *b)
{
return dns_compare_labels(*a,*b);
}
static void test_dns_sort(void)
{
const char *input[] = {
"test.invalid",
"test.com",
"test.contoso.com",
"test.alphabet.com",
"test.xxx",
};
const char *output[] = {
"test.alphabet.com",
"test.contoso.com",
"test.com",
"test.invalid",
"test.xxx",
};
test_begin("test_dns_sort");
ARRAY_TYPE(const_string) arr;
t_array_init(&arr, 8);
array_append(&arr, input, N_ELEMENTS(input));
array_sort(&arr, arr_dns_compare);
for(size_t i = 0; i < N_ELEMENTS(output); i++) {
const char *str = array_idx_elem(&arr, i);
test_assert_idx(dns_compare(str, output[i]) == 0, i);
}
test_end();
}
int main(void) {
void (*const test_functions[])(void) = {
test_dns_compare,
test_dns_match,
test_dns_sort,
NULL
};
return test_run(test_functions);
}
|