|
| 1 | +#include "unit-test.h" |
| 2 | +#include "strbuf.h" |
| 3 | +#include "strvec.h" |
| 4 | + |
| 5 | +#define check_strvec(vec, ...) \ |
| 6 | + do { \ |
| 7 | + const char *expect[] = { __VA_ARGS__ }; \ |
| 8 | + size_t expect_len = ARRAY_SIZE(expect); \ |
| 9 | + cl_assert(expect_len > 0); \ |
| 10 | + cl_assert_equal_p(expect[expect_len - 1], NULL); \ |
| 11 | + cl_assert_equal_i((vec)->nr, expect_len - 1); \ |
| 12 | + cl_assert((vec)->nr <= (vec)->alloc); \ |
| 13 | + for (size_t i = 0; i < expect_len; i++) \ |
| 14 | + cl_assert_equal_s((vec)->v[i], expect[i]); \ |
| 15 | + } while (0) |
| 16 | + |
| 17 | +void test_strvec__init(void) |
| 18 | +{ |
| 19 | + struct strvec vec = STRVEC_INIT; |
| 20 | + |
| 21 | + cl_assert_equal_p(vec.v, empty_strvec); |
| 22 | + cl_assert_equal_i(vec.nr, 0); |
| 23 | + cl_assert_equal_i(vec.alloc, 0); |
| 24 | +} |
| 25 | + |
| 26 | +void test_strvec__dynamic_init(void) |
| 27 | +{ |
| 28 | + struct strvec vec; |
| 29 | + |
| 30 | + strvec_init(&vec); |
| 31 | + cl_assert_equal_p(vec.v, empty_strvec); |
| 32 | + cl_assert_equal_i(vec.nr, 0); |
| 33 | + cl_assert_equal_i(vec.alloc, 0); |
| 34 | +} |
| 35 | + |
| 36 | +void test_strvec__clear(void) |
| 37 | +{ |
| 38 | + struct strvec vec = STRVEC_INIT; |
| 39 | + |
| 40 | + strvec_push(&vec, "foo"); |
| 41 | + strvec_clear(&vec); |
| 42 | + cl_assert_equal_p(vec.v, empty_strvec); |
| 43 | + cl_assert_equal_i(vec.nr, 0); |
| 44 | + cl_assert_equal_i(vec.alloc, 0); |
| 45 | +} |
| 46 | + |
| 47 | +void test_strvec__push(void) |
| 48 | +{ |
| 49 | + struct strvec vec = STRVEC_INIT; |
| 50 | + |
| 51 | + strvec_push(&vec, "foo"); |
| 52 | + check_strvec(&vec, "foo", NULL); |
| 53 | + |
| 54 | + strvec_push(&vec, "bar"); |
| 55 | + check_strvec(&vec, "foo", "bar", NULL); |
| 56 | + |
| 57 | + strvec_clear(&vec); |
| 58 | +} |
| 59 | + |
| 60 | +void test_strvec__pushf(void) |
| 61 | +{ |
| 62 | + struct strvec vec = STRVEC_INIT; |
| 63 | + |
| 64 | + strvec_pushf(&vec, "foo: %d", 1); |
| 65 | + check_strvec(&vec, "foo: 1", NULL); |
| 66 | + strvec_clear(&vec); |
| 67 | +} |
| 68 | + |
| 69 | +void test_strvec__pushl(void) |
| 70 | +{ |
| 71 | + struct strvec vec = STRVEC_INIT; |
| 72 | + |
| 73 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 74 | + check_strvec(&vec, "foo", "bar", "baz", NULL); |
| 75 | + strvec_clear(&vec); |
| 76 | +} |
| 77 | + |
| 78 | +void test_strvec__pushv(void) |
| 79 | +{ |
| 80 | + const char *strings[] = { |
| 81 | + "foo", "bar", "baz", NULL, |
| 82 | + }; |
| 83 | + struct strvec vec = STRVEC_INIT; |
| 84 | + |
| 85 | + strvec_pushv(&vec, strings); |
| 86 | + check_strvec(&vec, "foo", "bar", "baz", NULL); |
| 87 | + |
| 88 | + strvec_clear(&vec); |
| 89 | +} |
| 90 | + |
| 91 | +void test_strvec__replace_at_head(void) |
| 92 | +{ |
| 93 | + struct strvec vec = STRVEC_INIT; |
| 94 | + |
| 95 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 96 | + strvec_replace(&vec, 0, "replaced"); |
| 97 | + check_strvec(&vec, "replaced", "bar", "baz", NULL); |
| 98 | + strvec_clear(&vec); |
| 99 | +} |
| 100 | + |
| 101 | +void test_strvec__replace_at_tail(void) |
| 102 | +{ |
| 103 | + struct strvec vec = STRVEC_INIT; |
| 104 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 105 | + strvec_replace(&vec, 2, "replaced"); |
| 106 | + check_strvec(&vec, "foo", "bar", "replaced", NULL); |
| 107 | + strvec_clear(&vec); |
| 108 | +} |
| 109 | + |
| 110 | +void test_strvec__replace_in_between(void) |
| 111 | +{ |
| 112 | + struct strvec vec = STRVEC_INIT; |
| 113 | + |
| 114 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 115 | + strvec_replace(&vec, 1, "replaced"); |
| 116 | + check_strvec(&vec, "foo", "replaced", "baz", NULL); |
| 117 | + strvec_clear(&vec); |
| 118 | +} |
| 119 | + |
| 120 | +void test_strvec__replace_with_substring(void) |
| 121 | +{ |
| 122 | + struct strvec vec = STRVEC_INIT; |
| 123 | + |
| 124 | + strvec_pushl(&vec, "foo", NULL); |
| 125 | + strvec_replace(&vec, 0, vec.v[0] + 1); |
| 126 | + check_strvec(&vec, "oo", NULL); |
| 127 | + strvec_clear(&vec); |
| 128 | +} |
| 129 | + |
| 130 | +void test_strvec__remove_at_head(void) |
| 131 | +{ |
| 132 | + struct strvec vec = STRVEC_INIT; |
| 133 | + |
| 134 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 135 | + strvec_remove(&vec, 0); |
| 136 | + check_strvec(&vec, "bar", "baz", NULL); |
| 137 | + strvec_clear(&vec); |
| 138 | +} |
| 139 | + |
| 140 | +void test_strvec__remove_at_tail(void) |
| 141 | +{ |
| 142 | + struct strvec vec = STRVEC_INIT; |
| 143 | + |
| 144 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 145 | + strvec_remove(&vec, 2); |
| 146 | + check_strvec(&vec, "foo", "bar", NULL); |
| 147 | + strvec_clear(&vec); |
| 148 | +} |
| 149 | + |
| 150 | +void test_strvec__remove_in_between(void) |
| 151 | +{ |
| 152 | + struct strvec vec = STRVEC_INIT; |
| 153 | + |
| 154 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 155 | + strvec_remove(&vec, 1); |
| 156 | + check_strvec(&vec, "foo", "baz", NULL); |
| 157 | + strvec_clear(&vec); |
| 158 | +} |
| 159 | + |
| 160 | +void test_strvec__pop_empty_array(void) |
| 161 | +{ |
| 162 | + struct strvec vec = STRVEC_INIT; |
| 163 | + |
| 164 | + strvec_pop(&vec); |
| 165 | + check_strvec(&vec, NULL); |
| 166 | + strvec_clear(&vec); |
| 167 | +} |
| 168 | + |
| 169 | +void test_strvec__pop_non_empty_array(void) |
| 170 | +{ |
| 171 | + struct strvec vec = STRVEC_INIT; |
| 172 | + |
| 173 | + strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 174 | + strvec_pop(&vec); |
| 175 | + check_strvec(&vec, "foo", "bar", NULL); |
| 176 | + strvec_clear(&vec); |
| 177 | +} |
| 178 | + |
| 179 | +void test_strvec__split_empty_string(void) |
| 180 | +{ |
| 181 | + struct strvec vec = STRVEC_INIT; |
| 182 | + |
| 183 | + strvec_split(&vec, ""); |
| 184 | + check_strvec(&vec, NULL); |
| 185 | + strvec_clear(&vec); |
| 186 | +} |
| 187 | + |
| 188 | +void test_strvec__split_single_item(void) |
| 189 | +{ |
| 190 | + struct strvec vec = STRVEC_INIT; |
| 191 | + |
| 192 | + strvec_split(&vec, "foo"); |
| 193 | + check_strvec(&vec, "foo", NULL); |
| 194 | + strvec_clear(&vec); |
| 195 | +} |
| 196 | + |
| 197 | +void test_strvec__split_multiple_items(void) |
| 198 | +{ |
| 199 | + struct strvec vec = STRVEC_INIT; |
| 200 | + |
| 201 | + strvec_split(&vec, "foo bar baz"); |
| 202 | + check_strvec(&vec, "foo", "bar", "baz", NULL); |
| 203 | + strvec_clear(&vec); |
| 204 | +} |
| 205 | + |
| 206 | +void test_strvec__split_whitespace_only(void) |
| 207 | +{ |
| 208 | + struct strvec vec = STRVEC_INIT; |
| 209 | + |
| 210 | + strvec_split(&vec, " \t\n"); |
| 211 | + check_strvec(&vec, NULL); |
| 212 | + strvec_clear(&vec); |
| 213 | +} |
| 214 | + |
| 215 | +void test_strvec__split_multiple_consecutive_whitespaces(void) |
| 216 | +{ |
| 217 | + struct strvec vec = STRVEC_INIT; |
| 218 | + |
| 219 | + strvec_split(&vec, "foo\n\t bar"); |
| 220 | + check_strvec(&vec, "foo", "bar", NULL); |
| 221 | + strvec_clear(&vec); |
| 222 | +} |
| 223 | + |
| 224 | +void test_strvec__detach(void) |
| 225 | +{ |
| 226 | + struct strvec vec = STRVEC_INIT; |
| 227 | + const char **detached; |
| 228 | + |
| 229 | + strvec_push(&vec, "foo"); |
| 230 | + |
| 231 | + detached = strvec_detach(&vec); |
| 232 | + cl_assert_equal_s(detached[0], "foo"); |
| 233 | + cl_assert_equal_p(detached[1], NULL); |
| 234 | + |
| 235 | + cl_assert_equal_p(vec.v, empty_strvec); |
| 236 | + cl_assert_equal_i(vec.nr, 0); |
| 237 | + cl_assert_equal_i(vec.alloc, 0); |
| 238 | + |
| 239 | + free((char *) detached[0]); |
| 240 | + free(detached); |
| 241 | +} |
0 commit comments