summaryrefslogtreecommitdiff
path: root/glib/tests/strvbuilder.c
blob: 595a6845ee1b1de43de2f4b6be0ee0e17cc93d9a (plain)
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
/*
 * Copyright © 2020 Canonical Ltd.
 * Copyright © 2021 Alexandros Theodotou
 *
 * SPDX-License-Identifier: LicenseRef-old-glib-tests
 *
 * This work is provided "as is"; redistribution and modification
 * in whole or in part, in any medium, physical or electronic is
 * permitted without restriction.
 *
 * This work is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * In no event shall the authors or contributors be liable for any
 * direct, indirect, incidental, special, exemplary, or consequential
 * damages (including, but not limited to, procurement of substitute
 * goods or services; loss of use, data, or profits; or business
 * interruption) however caused and on any theory of liability, whether
 * in contract, strict liability, or tort (including negligence or
 * otherwise) arising in any way out of the use of this software, even
 * if advised of the possibility of such damage.
 */

#include "glib.h"

static void
test_strvbuilder_empty (void)
{
  GStrvBuilder *builder;
  GStrv result;

  builder = g_strv_builder_new ();
  result = g_strv_builder_end (builder);
  g_assert_nonnull (result);
  g_assert_cmpint (g_strv_length (result), ==, 0);

  g_strfreev (result);
  g_strv_builder_unref (builder);
}

static void
test_strvbuilder_add (void)
{
  GStrvBuilder *builder;
  GStrv result;
  const gchar *expected[] = { "one", "two", "three", NULL };

  builder = g_strv_builder_new ();
  g_strv_builder_add (builder, "one");
  g_strv_builder_add (builder, "two");
  g_strv_builder_add (builder, "three");
  result = g_strv_builder_end (builder);
  g_assert_nonnull (result);
  g_assert_true (g_strv_equal ((const gchar *const *) result, expected));

  g_strfreev (result);
  g_strv_builder_unref (builder);
}

static void
test_strvbuilder_addv (void)
{
  GStrvBuilder *builder;
  GStrv result;
  const gchar *expected[] = { "one", "two", "three", NULL };

  builder = g_strv_builder_new ();
  g_strv_builder_addv (builder, expected);
  result = g_strv_builder_end (builder);
  g_assert_nonnull (result);
  g_assert_cmpstrv ((const gchar *const *) result, expected);

  g_strfreev (result);
  g_strv_builder_unref (builder);
}

static void
test_strvbuilder_add_many (void)
{
  GStrvBuilder *builder;
  GStrv result;
  const gchar *expected[] = { "one", "two", "three", NULL };

  builder = g_strv_builder_new ();
  g_strv_builder_add_many (builder, "one", "two", "three", NULL);
  result = g_strv_builder_end (builder);
  g_assert_nonnull (result);
  g_assert_cmpstrv ((const gchar *const *) result, expected);

  g_strfreev (result);
  g_strv_builder_unref (builder);
}

static void
test_strvbuilder_ref (void)
{
  GStrvBuilder *builder;

  builder = g_strv_builder_new ();
  g_strv_builder_ref (builder);
  g_strv_builder_unref (builder);
  g_strv_builder_unref (builder);
}

int
main (int argc,
      char *argv[])
{
  g_test_init (&argc, &argv, NULL);

  g_test_add_func ("/strvbuilder/empty", test_strvbuilder_empty);
  g_test_add_func ("/strvbuilder/add", test_strvbuilder_add);
  g_test_add_func ("/strvbuilder/addv", test_strvbuilder_addv);
  g_test_add_func ("/strvbuilder/add_many", test_strvbuilder_add_many);
  g_test_add_func ("/strvbuilder/ref", test_strvbuilder_ref);

  return g_test_run ();
}