File: policy_server_test.c

package info (click to toggle)
cfengine3 3.24.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,552 kB
  • sloc: ansic: 163,161; sh: 10,296; python: 2,950; makefile: 1,744; lex: 784; yacc: 633; perl: 211; pascal: 157; xml: 21; sed: 13
file content (192 lines) | stat: -rw-r--r-- 6,040 bytes parent folder | download | duplicates (5)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#include <test.h>

#include <alloc.h>
#include <policy_server.h>

// PolicyServerGet functions should always return NULL instead of empty:
bool test_empty(const char *a)
{
    if(a == NULL)
    {
        return false;
    }
    if(a[0] == '\0')
    {
        return true;
    }
    return false;
}

// assert_int_equal is not ideal for this(prints "1 != 0"), but works
#define test_never_empty(a, b, c, d)\
{\
    assert_int_equal(test_empty(a), false);\
    assert_int_equal(test_empty(b), false);\
    assert_int_equal(test_empty(c), false);\
    assert_int_equal(test_empty(d), false);\
}\

// General test of all variables (get functions)
#define test_one_case_generic(set, get, host, port, ip)\
{\
    const char *a, *b, *c, *d;\
    PolicyServerSet(set);\
    assert_string_int_equal((a = PolicyServerGet()),     get);\
    assert_string_int_equal((b = PolicyServerGetHost()), host);\
    assert_string_int_equal((c = PolicyServerGetPort()), port);\
    assert_string_int_equal((d = PolicyServerGetIP()),   ip);\
    test_never_empty(a, b, c, d);\
}\

// For testing hostnames, doesn't do any hostname->ip resolution:
#define test_no_ip_generic(set, get, host, port)\
{\
    const char *a, *b, *c;\
    PolicyServerSet(set);\
    assert_string_int_equal((a = PolicyServerGet()),     get);\
    assert_string_int_equal((b = PolicyServerGetHost()), host);\
    assert_string_int_equal((c = PolicyServerGetPort()), port);\
    test_never_empty(a, b, c, NULL);\
}\

// Abbreviation of test_one_case_generic
#define test_one_case(bootstrap, host, port, ip)\
{\
    test_one_case_generic(bootstrap, bootstrap, host, port, ip);\
}\

// For inputs where we expect everything to return NULL
#define test_null_server(input)\
{\
    test_one_case_generic(input, NULL, NULL, NULL, NULL);\
}\

// For testing hostnames, doesn't do any hostname->ip resolution:
#define test_no_ip(bootstrap, host, port)\
{\
    test_no_ip_generic(bootstrap, bootstrap, host, port);\
}\


static void test_PolicyServer_IPv4()
{
    // IPv4:
    test_one_case( /* Set & Get */ "1.2.3.4",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "1.2.3.4");

    test_one_case( /* Set & Get */ "255.255.255.255:80",
                   /* Host,port */ NULL, "80",
                   /* IP Addr   */ "255.255.255.255");

    test_one_case( /* Set & Get */ "   1.2.3.4:",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "1.2.3.4");
}

static void test_PolicyServer_IPv6()
{
    // IPv6 with square brackets:
    test_one_case( /* Set & Get */ "[ffff::dd:12:34]",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "ffff::dd:12:34");

    test_one_case( /* Set & Get */ "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:64000",
                   /* Host,port */ NULL, "64000",
                   /* IP Addr   */ "2001:0db8:85a3:0000:0000:8a2e:0370:7334");

    test_one_case( /* Set & Get */ "[ffff::dd:12:34]:",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "ffff::dd:12:34");

    test_one_case( /* Set & Get */ "[FF01:0:0:0:0:0:0:FB]:12345",
                   /* Host,port */ NULL, "12345",
                   /* IP Addr   */ "FF01:0:0:0:0:0:0:FB");

    // IPv6 without square brackets:
    test_one_case( /* Set & Get */ "ffff::dd:12:34",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "ffff::dd:12:34");

    test_one_case( /* Set & Get */ "FF01:0:0:0:0:0:0:FB",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "FF01:0:0:0:0:0:0:FB");

    test_one_case( /* Set & Get */ "::",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "::");

    // IPv4 mapped IPv6 addresses:
    test_one_case( /* Set & Get */ "::ffff:192.0.2.128",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "::ffff:192.0.2.128");

    test_one_case( /* Set & Get */ "[::ffff:192.0.2.128]",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "::ffff:192.0.2.128");

    // Other:
    test_one_case( /* Set & Get */ "ff02::1:ff00:0/104",
                   /* Host,port */ NULL, NULL,
                   /* IP Addr   */ "ff02::1:ff00:0/104");


    test_one_case( /* Set & Get */ "[ff02::1:ff00:0/104]:9",
                   /* Host,port */ NULL, "9",
                   /* IP Addr   */ "ff02::1:ff00:0/104");
}

static void test_PolicyServer_Host()
{
    // Hostnames:
    test_no_ip(    /* Set & Get */ "localhost",
                   /* Host,port */ "localhost", NULL);

    test_no_ip(    /* Set & Get */ "localhost:",
                   /* Host,port */ "localhost", NULL);

    test_no_ip(    /* Set & Get */ "localhost:80",
                   /* Host,port */ "localhost", "80");

    test_no_ip(    /* Set & Get */ "[localhost]",
                   /* Host,port */ "localhost", NULL);

    test_no_ip(    /* Set & Get */ "[localhost]:",
                   /* Host,port */ "localhost", NULL);

    test_no_ip(    /* Set & Get */ "[localhost]:59999",
                   /* Host,port */ "localhost", "59999");

    test_no_ip(    /* Set & Get */ "[www.cfengine.com]",
                   /* Host,port */ "www.cfengine.com", NULL);

    test_no_ip(    /* Set & Get */ "[www.cfengine.com]:8080",
                   /* Host,port */ "www.cfengine.com", "8080");

    test_no_ip(    /* Set & Get */ "[www.cfengine.com]:",
                   /* Host,port */ "www.cfengine.com", NULL);
}

static void test_PolicyServer_Corner()
{
    // These tests expect PolicyServerGet() to return NULL:
    test_null_server("");
    test_null_server(NULL);
    test_null_server("   ");
    test_null_server(" \n");
    test_null_server("\n");
}

int main()
{
    PRINT_TEST_BANNER();
    const UnitTest tests[] =
    {
        unit_test(test_PolicyServer_IPv4),
        unit_test(test_PolicyServer_IPv6),
        unit_test(test_PolicyServer_Host),
        unit_test(test_PolicyServer_Corner)
    };

    return run_tests(tests);
}