summaryrefslogtreecommitdiff
path: root/tests/test-03.c
blob: cd146bb763dd41b5e8e4d2aaff22c6e72d2c3c7a (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#include <stdlib.h>
#include <stdio.h>

#include <json-glib/json-glib.h>

static const gchar *test_objects[] = {
  "{ }",
  "{ \"test\" : 42 }",
  "{ \"foo\" : \"bar\", \"baz\" : null }",
  "{ \"array\" : [ false, \"foo\" ], \"test\" : { \"foo\" : true } }"
};

static guint n_test_objects = G_N_ELEMENTS (test_objects);

static void print_array  (gint indent, JsonArray  *array);
static void print_value  (gint indent, JsonNode   *node);
static void print_object (gint indent, JsonObject *object);

static void
print_value (gint      indent,
             JsonNode *node)
{
  gint j;
  gchar indent_str[80];
  GValue value = { 0, };

  for (j = 0; j < indent; j++)
    indent_str[j] = ' ';

  indent_str[j] = '\0';

  json_node_get_value (node, &value);

  switch (G_VALUE_TYPE (&value))
    {
    case G_TYPE_INT:
      g_print ("%sFound integer: `%d'\n",
               indent_str,
               g_value_get_int (&value));
      break;

    case G_TYPE_STRING:
      g_print ("%sFound string: `%s'\n",
               indent_str,
               g_value_get_string (&value));
      break;

    case G_TYPE_FLOAT:
      g_print ("%sFound float: `%f'\n",
               indent_str,
               g_value_get_float (&value));
      break;

    case G_TYPE_BOOLEAN:
      g_print ("%sFound boolean: `%s'\n",
               indent_str,
               g_value_get_boolean (&value) ? "true" : "false");
      break;

    default:
      g_print ("%sUnknown value\n", indent_str);
      break;
    }

  g_value_unset (&value);
}

static void
print_array (gint       indent,
             JsonArray *array)
{
  gint array_len = json_array_get_length (array);
  gint j;
  gchar indent_str[80];

  for (j = 0; j < indent; j++)
    indent_str[j] = ' ';
  
  indent_str[j] = '\0';

  if (array_len == 0)
    {
      g_print ("%sFound empty array\n", indent_str);
      return;
    }

  for (j = 0; j < array_len; j++)
    {
      JsonNode *node = json_array_get_element (array, j);

      switch (JSON_NODE_TYPE (node))
        {
        case JSON_NODE_ARRAY:
          g_print ("%sFound array (index: %d, len: %d)\n",
                   indent_str,
                   j,
                   json_array_get_length (json_node_get_array (node)));
          print_array (indent + 1, json_node_get_array (node));
          break;
        case JSON_NODE_OBJECT:
          g_print ("%sFound object (index: %d, size: %d)\n",
                   indent_str,
                   j,
                   json_object_get_size (json_node_get_object (node)));
          print_object (indent + 1, json_node_get_object (node));
          break;
        case JSON_NODE_VALUE:
          g_print ("%sFound value (index: %d)\n", indent_str, j);
          print_value (indent + 1, node);
          break;
        case JSON_NODE_NULL:
          g_print ("%sFound null (index: %d)\n", indent_str, j);
          break;
        }
    }
}

static void
print_object (gint        indent,
              JsonObject *object)
{
  gint object_size = json_object_get_size (object);
  gint j;
  gchar indent_str[80];
  GList *members, *l;

  for (j = 0; j < indent; j++)
    indent_str[j] = ' ';
  
  indent_str[j] = '\0';

  if (object_size == 0)
    {
      g_print ("%sFound empty object\n", indent_str);
      return;
    }

  members = json_object_get_members (object);
  for (l = members; l; l = l->next)
    {
      const gchar *name = l->data;
      JsonNode *node = json_object_get_member (object, name);

      switch (JSON_NODE_TYPE (node))
        {
        case JSON_NODE_ARRAY:
          g_print ("%sFound array (member: `%s', len: %d)\n",
                   indent_str,
                   name,
                   json_array_get_length (json_node_get_array (node)));
          print_array (indent + 1, json_node_get_array (node));
          break;
        case JSON_NODE_OBJECT:
          g_print ("%sFound object (member: `%s', size: %d)\n",
                   indent_str,
                   name,
                   json_object_get_size (json_node_get_object (node)));
          print_object (indent + 1, json_node_get_object (node));
          break;
        case JSON_NODE_VALUE:
          g_print ("%sFound value (member: `%s')\n", indent_str, name);
          print_value (indent + 1, node);
          break;
        case JSON_NODE_NULL:
          g_print ("%sFound null (member: `%s')\n", indent_str, name);
          break;
        }
    }

  g_list_free (members);
}

int
main (int argc, char *argv[])
{
  JsonParser *parser;
  gint i;

  g_type_init ();

  parser = json_parser_new ();

  for (i = 0; i < n_test_objects; i++)
    {
      GError *error = NULL;
      JsonNode *node;
      JsonObject *object;

      if (!json_parser_load_from_data (parser, test_objects[i], -1, &error))
        {
          g_print ("* Error, test %d:\n"
                   "* \t%s:\n"
                   "* Message: %s\n",
                   i, test_objects[i], error->message);
          g_error_free (error);
          g_object_unref (parser);
          return EXIT_FAILURE;
        }

      node = json_parser_get_root (parser);
      g_assert (node != NULL);
      g_assert (JSON_NODE_TYPE (node) == JSON_NODE_OBJECT);

      object = json_node_get_object (node);
      g_assert (object != NULL);

      g_print ("*** Test %d ***\n", i);
      print_object (1, object);
    }

  g_object_unref (parser);

  return EXIT_SUCCESS;
}