os/ossrv/glib/tests/markup-test.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/tests/markup-test.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,233 @@
     1.4 +/* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
     1.5 +#undef G_DISABLE_ASSERT
     1.6 +#undef G_LOG_DOMAIN
     1.7 +
     1.8 +#include <stdio.h>
     1.9 +#include <glib.h>
    1.10 +
    1.11 +#ifdef __SYMBIAN32__
    1.12 +#include "mrt2_glib2_test.h"
    1.13 +#endif /*__SYMBIAN32__*/
    1.14 +
    1.15 +
    1.16 +static int depth = 0;
    1.17 +
    1.18 +static void
    1.19 +indent (int extra)
    1.20 +{
    1.21 +  int i = 0;
    1.22 +  while (i < depth)
    1.23 +    {
    1.24 +      fputs ("  ", stdout);
    1.25 +      ++i;
    1.26 +    }
    1.27 +}
    1.28 +
    1.29 +static void
    1.30 +start_element_handler  (GMarkupParseContext *context,
    1.31 +                        const gchar         *element_name,
    1.32 +                        const gchar        **attribute_names,
    1.33 +                        const gchar        **attribute_values,
    1.34 +                        gpointer             user_data,
    1.35 +                        GError             **error)
    1.36 +{
    1.37 +  int i;
    1.38 +  
    1.39 +  indent (0);
    1.40 +  printf ("ELEMENT '%s'\n", element_name);
    1.41 +
    1.42 +  i = 0;
    1.43 +  while (attribute_names[i] != NULL)
    1.44 +    {
    1.45 +      indent (1);
    1.46 +
    1.47 +      printf ("%s=\"%s\"\n",
    1.48 +              attribute_names[i],
    1.49 +              attribute_values[i]);
    1.50 +      
    1.51 +      ++i;
    1.52 +    }
    1.53 +  
    1.54 +  ++depth;
    1.55 +}
    1.56 +
    1.57 +static void
    1.58 +end_element_handler    (GMarkupParseContext *context,
    1.59 +                        const gchar         *element_name,
    1.60 +                        gpointer             user_data,
    1.61 +                        GError             **error)
    1.62 +{
    1.63 +  --depth;
    1.64 +  indent (0);
    1.65 +  printf ("END '%s'\n", element_name);
    1.66 +  }
    1.67 +
    1.68 +static void
    1.69 +text_handler                      (GMarkupParseContext *context,
    1.70 +                        const gchar         *text,
    1.71 +                        gsize                text_len,
    1.72 +                        gpointer             user_data,
    1.73 +                        GError             **error)
    1.74 +{
    1.75 +  indent (0);
    1.76 +  printf ("TEXT '%.*s'\n", (int)text_len, text);
    1.77 +}
    1.78 +
    1.79 +
    1.80 +static void
    1.81 +passthrough_handler    (GMarkupParseContext *context,
    1.82 +                        const gchar         *passthrough_text,
    1.83 +                        gsize                text_len,
    1.84 +                        gpointer             user_data,
    1.85 +                        GError             **error)
    1.86 +{
    1.87 +  indent (0);
    1.88 +
    1.89 +  printf ("PASS '%.*s'\n", (int)text_len, passthrough_text);
    1.90 +}
    1.91 +
    1.92 +static void
    1.93 +error_handler          (GMarkupParseContext *context,
    1.94 +                        GError              *error,
    1.95 +                        gpointer             user_data)
    1.96 +{
    1.97 +  fprintf (stderr, " %s\n", error->message);
    1.98 +}
    1.99 +
   1.100 +static const GMarkupParser parser = {
   1.101 +  start_element_handler,
   1.102 +  end_element_handler,
   1.103 +  text_handler,
   1.104 +  passthrough_handler,
   1.105 +  error_handler
   1.106 +};
   1.107 +
   1.108 +static const GMarkupParser silent_parser = {
   1.109 +  NULL,
   1.110 +  NULL,
   1.111 +  NULL,
   1.112 +  NULL,
   1.113 +  error_handler
   1.114 +};
   1.115 +
   1.116 +static int
   1.117 +test_in_chunks (const gchar *contents,
   1.118 +                gint         length,
   1.119 +                gint         chunk_size)
   1.120 +{
   1.121 +  GMarkupParseContext *context;
   1.122 +  int i = 0;
   1.123 +  
   1.124 +  context = g_markup_parse_context_new (&silent_parser, 0, NULL, NULL);
   1.125 +
   1.126 +  while (i < length)
   1.127 +    {
   1.128 +      int this_chunk = MIN (length - i, chunk_size);
   1.129 +
   1.130 +      if (!g_markup_parse_context_parse (context,
   1.131 +                                         contents + i,
   1.132 +                                         this_chunk,
   1.133 +                                         NULL))
   1.134 +        {
   1.135 +          g_markup_parse_context_free (context);
   1.136 +          return 1;
   1.137 +        }
   1.138 +
   1.139 +      i += this_chunk;
   1.140 +    }
   1.141 +      
   1.142 +  if (!g_markup_parse_context_end_parse (context, NULL))
   1.143 +    {
   1.144 +      g_markup_parse_context_free (context);
   1.145 +      return 1;
   1.146 +    }
   1.147 +
   1.148 +  g_markup_parse_context_free (context);
   1.149 +
   1.150 +  return 0;
   1.151 +}
   1.152 +
   1.153 +static int
   1.154 +test_file (const gchar *filename)
   1.155 +{
   1.156 +  gchar *contents;
   1.157 +  gsize  length;
   1.158 +  GError *error;
   1.159 +  GMarkupParseContext *context;
   1.160 +  
   1.161 +  error = NULL;
   1.162 +  if (!g_file_get_contents (filename,
   1.163 +                            &contents,
   1.164 +                            &length,
   1.165 +                            &error))
   1.166 +    {
   1.167 +      fprintf (stderr, "%s\n", error->message);
   1.168 +      g_error_free (error);
   1.169 +      return 1;
   1.170 +    }
   1.171 +
   1.172 +  context = g_markup_parse_context_new (&parser, 0, NULL, NULL);
   1.173 +
   1.174 +  if (!g_markup_parse_context_parse (context, contents, length, NULL))
   1.175 +    {
   1.176 +      g_markup_parse_context_free (context);
   1.177 +      return 1;
   1.178 +    }
   1.179 +
   1.180 +  if (!g_markup_parse_context_end_parse (context, NULL))
   1.181 +    {
   1.182 +      g_markup_parse_context_free (context);
   1.183 +      return 1;
   1.184 +    }
   1.185 +
   1.186 +  g_markup_parse_context_free (context);
   1.187 +
   1.188 +  /* A byte at a time */
   1.189 +  if (test_in_chunks (contents, length, 1) != 0)
   1.190 +    return 1;
   1.191 +
   1.192 +  /* 2 bytes */
   1.193 +  if (test_in_chunks (contents, length, 2) != 0)
   1.194 +    return 1;
   1.195 +
   1.196 +  /*5 bytes */
   1.197 +  if (test_in_chunks (contents, length, 5) != 0)
   1.198 +    return 1;
   1.199 +  
   1.200 +  /* 12 bytes */
   1.201 +  if (test_in_chunks (contents, length, 12) != 0)
   1.202 +    return 1;
   1.203 +  
   1.204 +  /* 1024 bytes */
   1.205 +  if (test_in_chunks (contents, length, 1024) != 0)
   1.206 +    return 1;
   1.207 +
   1.208 +  return 0;
   1.209 +}
   1.210 +
   1.211 +int
   1.212 +main (int   argc,
   1.213 +      char *argv[])
   1.214 +{
   1.215 +  int retval;
   1.216 +  
   1.217 +  #ifdef __SYMBIAN32__
   1.218 +  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);
   1.219 +  g_set_print_handler(mrtPrintHandler);
   1.220 +  #endif /*__SYMBIAN32__*/
   1.221 +
   1.222 +  if (argc > 1)
   1.223 +  {
   1.224 +    retval = test_file (argv[1]);
   1.225 +	  #ifdef __SYMBIAN32__
   1.226 +  testResultXml("markup-test");
   1.227 +  #endif /* EMULATOR */
   1.228 +  return retval;
   1.229 +}
   1.230 +  else
   1.231 +    {
   1.232 +      fprintf (stderr, "Give a markup file on the command line\n");
   1.233 +      return 1;
   1.234 +    }  
   1.235 +}
   1.236 +