Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
9 #include "mrt2_glib2_test.h"
10 #endif /*__SYMBIAN32__*/
27 start_element_handler (GMarkupParseContext *context,
28 const gchar *element_name,
29 const gchar **attribute_names,
30 const gchar **attribute_values,
37 printf ("ELEMENT '%s'\n", element_name);
40 while (attribute_names[i] != NULL)
44 printf ("%s=\"%s\"\n",
55 end_element_handler (GMarkupParseContext *context,
56 const gchar *element_name,
62 printf ("END '%s'\n", element_name);
66 text_handler (GMarkupParseContext *context,
73 printf ("TEXT '%.*s'\n", (int)text_len, text);
78 passthrough_handler (GMarkupParseContext *context,
79 const gchar *passthrough_text,
86 printf ("PASS '%.*s'\n", (int)text_len, passthrough_text);
90 error_handler (GMarkupParseContext *context,
94 fprintf (stderr, " %s\n", error->message);
97 static const GMarkupParser parser = {
98 start_element_handler,
105 static const GMarkupParser silent_parser = {
114 test_in_chunks (const gchar *contents,
118 GMarkupParseContext *context;
121 context = g_markup_parse_context_new (&silent_parser, 0, NULL, NULL);
125 int this_chunk = MIN (length - i, chunk_size);
127 if (!g_markup_parse_context_parse (context,
132 g_markup_parse_context_free (context);
139 if (!g_markup_parse_context_end_parse (context, NULL))
141 g_markup_parse_context_free (context);
145 g_markup_parse_context_free (context);
151 test_file (const gchar *filename)
156 GMarkupParseContext *context;
159 if (!g_file_get_contents (filename,
164 fprintf (stderr, "%s\n", error->message);
165 g_error_free (error);
169 context = g_markup_parse_context_new (&parser, 0, NULL, NULL);
171 if (!g_markup_parse_context_parse (context, contents, length, NULL))
173 g_markup_parse_context_free (context);
177 if (!g_markup_parse_context_end_parse (context, NULL))
179 g_markup_parse_context_free (context);
183 g_markup_parse_context_free (context);
185 /* A byte at a time */
186 if (test_in_chunks (contents, length, 1) != 0)
190 if (test_in_chunks (contents, length, 2) != 0)
194 if (test_in_chunks (contents, length, 5) != 0)
198 if (test_in_chunks (contents, length, 12) != 0)
202 if (test_in_chunks (contents, length, 1024) != 0)
215 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
216 g_set_print_handler(mrtPrintHandler);
217 #endif /*__SYMBIAN32__*/
221 retval = test_file (argv[1]);
223 testResultXml("markup-test");
224 #endif /* EMULATOR */
229 fprintf (stderr, "Give a markup file on the command line\n");