chiark / gitweb /
test-strv.c: added strv_append test
[elogind.git] / src / test / test-strv.c
index 07aac3a670c96795364b37a166264b8b342d74cb..535685f219be9ee5bf50070a851950a5c911915a 100644 (file)
@@ -158,6 +158,51 @@ static void test_strv_sort(void) {
         assert(streq(input_table[4], "durian"));
 }
 
+static void test_strv_merge_concat(void) {
+          _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL;
+
+         a = strv_new("without", "suffix", NULL);
+         b = strv_new("with", "suffix", NULL);
+
+         c = strv_merge_concat(a, b, "_suffix");
+
+         assert(streq(c[0], "without"));
+         assert(streq(c[1], "suffix"));
+         assert(streq(c[2], "with_suffix"));
+         assert(streq(c[3], "suffix_suffix"));
+}
+
+static void test_strv_merge(void) {
+         _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL;
+
+         a = strv_new("abc", "def", "ghi", NULL);
+         b = strv_new("jkl", "mno", "pqr", NULL);
+
+         c = strv_merge(a, b);
+
+         assert(streq(c[0], "abc"));
+         assert(streq(c[1], "def"));
+         assert(streq(c[2], "ghi"));
+         assert(streq(c[3], "jkl"));
+         assert(streq(c[4], "mno"));
+         assert(streq(c[5], "pqr"));
+
+         assert(strv_length(c) == 6);
+}
+
+static void test_strv_append(void) {
+        _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL;
+
+        a = strv_new("test", "test1", NULL);
+        b = strv_append(a, "test2");
+        c = strv_append(NULL, "test3");
+
+        assert(streq(b[0], "test"));
+        assert(streq(b[1], "test1"));
+        assert(streq(b[2], "test2"));
+        assert(streq(c[0], "test3"));
+}
+
 int main(int argc, char *argv[]) {
         test_specifier_printf();
         test_strv_find();
@@ -166,6 +211,9 @@ int main(int argc, char *argv[]) {
         test_strv_parse_nulstr();
         test_strv_overlap();
         test_strv_sort();
+        test_strv_merge();
+        test_strv_merge_concat();
+        test_strv_append();
 
         return 0;
 }