ae47ebb6d94d45a4c8c9a47257e7983c88dc950b
[trust_router.git] / common / tests / name_test.c
1 /*
2  * Copyright (c) 2017, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <assert.h>
38
39 #include <trust_router/tr_name.h>
40
41 /* returns 1 on success */
42 int test_wildcard_prefix_match(const char *s, const char *wcs, int expect);
43
44 int test_wildcards(void);
45
46 int test_wildcards(void)
47 {
48   /* various non-wildcard matches with mismatch in different places */
49   assert(test_wildcard_prefix_match("test", "test", 1));
50   assert(test_wildcard_prefix_match("test", "nest", 0));
51   assert(test_wildcard_prefix_match("test", "text", 0));
52   assert(test_wildcard_prefix_match("test", "tess", 0));
53   assert(test_wildcard_prefix_match("test", "tes", 0));
54   assert(test_wildcard_prefix_match("tes", "test", 0));
55   assert(test_wildcard_prefix_match("test", "tex", 0));
56   assert(test_wildcard_prefix_match("tex", "test", 0));
57
58   /* wildcard matches */
59   assert(test_wildcard_prefix_match("test", "*test", 1));
60   assert(test_wildcard_prefix_match("test", "*est", 1));
61   assert(test_wildcard_prefix_match("test", "*st", 1));
62   assert(test_wildcard_prefix_match("test", "*t", 1));
63   assert(test_wildcard_prefix_match("test", "*", 1));
64   assert(test_wildcard_prefix_match("test", "*text", 0));
65   assert(test_wildcard_prefix_match("test", "*ext", 0));
66   assert(test_wildcard_prefix_match("test", "*tests", 0));
67   assert(test_wildcard_prefix_match("test", "tes*", 0));
68   assert(test_wildcard_prefix_match("test", "test*", 0));
69   assert(test_wildcard_prefix_match("*", "*", 1));
70   assert(test_wildcard_prefix_match(" *", " *", 1));
71   assert(test_wildcard_prefix_match(" x", " *", 0));
72   assert(test_wildcard_prefix_match("*", "* ", 0));
73   assert(test_wildcard_prefix_match("test*", "*", 1));
74   assert(test_wildcard_prefix_match("test*", "**", 1));
75   assert(test_wildcard_prefix_match("testx", "**", 0));
76   return 1;
77
78 }
79
80 int test_wildcard_prefix_match(const char *s, const char *wcs, int expect)
81 {
82   TR_NAME *str=tr_new_name(s);
83   TR_NAME *wc_str=tr_new_name(wcs);
84
85   assert(str);
86   assert(wc_str);
87
88   assert(expect==tr_name_prefix_wildcard_match(str, wc_str));
89
90   tr_free_name(str);
91   tr_free_name(wc_str);
92   return 1;
93 }
94
95 int main(void)
96 {
97   assert(test_wildcards());
98
99   printf("Success.\n");
100   return 0;
101 }