Merge branch 'collectd-5.5'
[collectd.git] / src / daemon / utils_subst_test.c
1 /**
2  * collectd - src/daemon/utils_subst_test.c
3  * Copyright (C) 2015       Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  */
26
27 #include "testing.h"
28 #include "collectd.h"
29 #include "common.h" /* for STATIC_ARRAY_SIZE */
30 #include "utils_subst.h"
31
32 DEF_TEST(subst)
33 {
34   struct {
35     char *str;
36     int off1;
37     int off2;
38     char *rplmt;
39     char *want;
40   } cases[] = {
41     {"foo_____bar", 3, 8, " - ", "foo - bar"}, /* documentation example */
42     {"foo bar", 0, 2, "m",     "mo bar"},    /* beginning, shorten */
43     {"foo bar", 0, 1, "m",     "moo bar"},   /* beginning, same length */
44     {"foo bar", 0, 3, "milk",  "milk bar"},  /* beginning, extend */
45     {"foo bar", 3, 6, "de",    "fooder"},    /* center, shorten */
46     {"foo bar", 2, 6, "rste",  "forster"},   /* center, same length */
47     {"foo bar", 1, 3, "ish",   "fish bar"},  /* center, extend */
48     {"foo bar", 2, 7, "ul",    "foul"},      /* end, shorten */
49     {"foo bar", 3, 7, "lish",  "foolish"},   /* end, same length */
50     {"foo bar", 3, 7, "dwear", "foodwear"},  /* end, extend */
51     /* truncation (buffer is 16 chars) */
52     {"01234567890123",        8, 8,    "", "01234567890123"},
53     {"01234567890123",        8, 8,   "*", "01234567*890123"},
54     {"01234567890123",        8, 8,  "**", "01234567**89012"},
55     /* input > buffer */
56     {"012345678901234----",   0,  0,   "", "012345678901234"},
57     {"012345678901234----",  17, 18,   "", "012345678901234"},
58     {"012345678901234----",   0,  3,   "", "345678901234---"},
59     {"012345678901234----",   0,  4,   "", "45678901234----"},
60     {"012345678901234----",   0,  5,   "", "5678901234----"},
61     {"012345678901234----",   8,  8,  "#", "01234567#890123"},
62     {"012345678901234----",  12, 12, "##", "012345678901##2"},
63     {"012345678901234----",  13, 13, "##", "0123456789012##"},
64     {"012345678901234----",  14, 14, "##", "01234567890123#"},
65     {"012345678901234----",  15, 15, "##", "012345678901234"},
66     {"012345678901234----",  16, 16, "##", "012345678901234"},
67     /* error cases */
68     {NULL,       3,  4, "_",  NULL}, /* no input */
69     {"foo bar",  3, 10, "_",  NULL}, /* offset exceeds input */
70     {"foo bar", 10, 13, "_",  NULL}, /* offset exceeds input */
71     {"foo bar",  4,  3, "_",  NULL}, /* off1 > off2 */
72     {"foo bar",  3,  4, NULL, NULL}, /* no replacement */
73   };
74   size_t i;
75
76   for (i = 0; i < STATIC_ARRAY_SIZE (cases); i++) {
77     char buffer[16] = "!!!!!!!!!!!!!!!";
78
79     if (cases[i].want == NULL) {
80       OK(subst (buffer, sizeof (buffer), cases[i].str, cases[i].off1, cases[i].off2, cases[i].rplmt) == NULL);
81       continue;
82     }
83
84     OK(subst (buffer, sizeof (buffer), cases[i].str, cases[i].off1, cases[i].off2, cases[i].rplmt) == &buffer[0]);
85     EXPECT_EQ_STR(cases[i].want, buffer);
86   }
87
88   return 0;
89 }
90
91 DEF_TEST(subst_string)
92 {
93   struct {
94     char *str;          char *srch; char *rplmt; char *want;
95   } cases[] = {
96     {"Hello %{name}",    "%{name}", "world", "Hello world"},
97     {"abcccccc",         "abc",     "cab",   "ccccccab"},
98     {"(((()(())))())",   "()",      "",      ""},
99     {"food booth",       "oo",      "ee",    "feed beeth"},
100     {"foo bar",          "baz",     "qux",   "foo bar"},
101     {"foo bar",          "oo",      "oo",    "foo bar"},
102     {"sixteen chars",    "chars",   "characters", "sixteen charact"},
103   };
104   size_t i;
105
106   for (i = 0; i < STATIC_ARRAY_SIZE (cases); i++) {
107     char buffer[16];
108
109     if (cases[i].want == NULL) {
110       OK(subst_string (buffer, sizeof (buffer), cases[i].str, cases[i].srch, cases[i].rplmt) == NULL);
111       continue;
112     }
113
114     OK(subst_string (buffer, sizeof (buffer), cases[i].str, cases[i].srch, cases[i].rplmt) == buffer);
115     EXPECT_EQ_STR(cases[i].want, buffer);
116   }
117
118   return 0;
119 }
120
121 int main (void)
122 {
123   RUN_TEST(subst);
124   RUN_TEST(subst_string);
125
126   END_TEST;
127 }
128
129 /* vim: set sw=2 sts=2 et : */