os/ossrv/glib/tests/scannerapi.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Gtk+ object tests
sl@0
     2
 * Copyright (C) 2007 Patrick Hulin
sl@0
     3
 * Copyright (C) 2007 Imendio AB
sl@0
     4
 * Authors: Tim Janik
sl@0
     5
 * Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.
sl@0
     6
 * This library is free software; you can redistribute it and/or
sl@0
     7
 * modify it under the terms of the GNU Lesser General Public
sl@0
     8
 * License as published by the Free Software Foundation; either
sl@0
     9
 * version 2 of the License, or (at your option) any later version.
sl@0
    10
 *
sl@0
    11
 * This library is distributed in the hope that it will be useful,
sl@0
    12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    14
 * Lesser General Public License for more details.
sl@0
    15
 *
sl@0
    16
 * You should have received a copy of the GNU Lesser General Public
sl@0
    17
 * License along with this library; if not, write to the
sl@0
    18
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    19
 * Boston, MA 02111-1307, USA.
sl@0
    20
 */
sl@0
    21
#include <glib.h>
sl@0
    22
#include <string.h>
sl@0
    23
#include <stdlib.h>
sl@0
    24
#ifdef __SYMBIAN32__
sl@0
    25
#include "mrt2_glib2_test.h"
sl@0
    26
#endif /*__SYMBIAN32__*/
sl@0
    27
sl@0
    28
/* GScanner fixture */
sl@0
    29
typedef struct {
sl@0
    30
  GScanner *scanner;
sl@0
    31
} ScannerFixture;
sl@0
    32
static void
sl@0
    33
scanner_fixture_setup (ScannerFixture *fix,
sl@0
    34
                       gconstpointer   test_data)
sl@0
    35
{
sl@0
    36
  fix->scanner = g_scanner_new (NULL);
sl@0
    37
  g_assert (fix->scanner != NULL);
sl@0
    38
}
sl@0
    39
static void
sl@0
    40
scanner_fixture_teardown (ScannerFixture *fix,
sl@0
    41
                          gconstpointer   test_data)
sl@0
    42
{
sl@0
    43
  g_assert (fix->scanner != NULL);
sl@0
    44
  g_scanner_destroy (fix->scanner);
sl@0
    45
}
sl@0
    46
sl@0
    47
static void
sl@0
    48
scanner_msg_func (GScanner *scanner,
sl@0
    49
                  gchar    *message,
sl@0
    50
                  gboolean  error)
sl@0
    51
{
sl@0
    52
  g_assert_cmpstr (message, ==, "test");
sl@0
    53
}
sl@0
    54
sl@0
    55
static void
sl@0
    56
test_scanner_warn (ScannerFixture *fix,
sl@0
    57
                   gconstpointer   test_data)
sl@0
    58
{
sl@0
    59
  fix->scanner->msg_handler = scanner_msg_func;
sl@0
    60
  g_scanner_warn (fix->scanner, "test");
sl@0
    61
}
sl@0
    62
sl@0
    63
static void
sl@0
    64
test_scanner_error (ScannerFixture *fix,
sl@0
    65
                    gconstpointer   test_data)
sl@0
    66
{
sl@0
    67
  if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
sl@0
    68
    {
sl@0
    69
      int pe = fix->scanner->parse_errors;
sl@0
    70
      g_scanner_error (fix->scanner, "scanner-error-message-test");
sl@0
    71
      g_assert_cmpint (fix->scanner->parse_errors, ==, pe + 1);
sl@0
    72
      exit (0);
sl@0
    73
    }
sl@0
    74
  g_test_trap_assert_passed();
sl@0
    75
  g_test_trap_assert_stderr ("*scanner-error-message-test*");
sl@0
    76
}
sl@0
    77
sl@0
    78
static void
sl@0
    79
check_keys (gpointer key,
sl@0
    80
            gpointer value,
sl@0
    81
            gpointer user_data)
sl@0
    82
{
sl@0
    83
  g_assert_cmpint (GPOINTER_TO_INT (value), ==, g_ascii_strtoull (key, NULL, 0));
sl@0
    84
}
sl@0
    85
sl@0
    86
static void
sl@0
    87
test_scanner_symbols (ScannerFixture *fix,
sl@0
    88
                      gconstpointer   test_data)
sl@0
    89
{
sl@0
    90
  gint i;
sl@0
    91
  gchar buf[2];
sl@0
    92
sl@0
    93
  g_scanner_set_scope (fix->scanner, 1);
sl@0
    94
sl@0
    95
  for (i = 0; i < 10; i++)
sl@0
    96
    g_scanner_scope_add_symbol (fix->scanner,
sl@0
    97
                                1,
sl@0
    98
                                g_ascii_dtostr (buf, 2, (gdouble)i),
sl@0
    99
                                GINT_TO_POINTER (i));
sl@0
   100
  g_scanner_scope_foreach_symbol (fix->scanner, 1, check_keys, NULL);
sl@0
   101
  g_scanner_scope_remove_symbol (fix->scanner, 1, "5");
sl@0
   102
  g_assert_cmpint (GPOINTER_TO_INT (g_scanner_scope_lookup_symbol (fix->scanner, 1, "4")), ==, 4);
sl@0
   103
  g_assert_cmpint (GPOINTER_TO_INT (g_scanner_scope_lookup_symbol (fix->scanner, 1, "5")), ==, 0);
sl@0
   104
}
sl@0
   105
sl@0
   106
static void
sl@0
   107
test_scanner_tokens (ScannerFixture *fix,
sl@0
   108
                     gconstpointer   test_data)
sl@0
   109
{
sl@0
   110
  gchar buf[] = "(\t\n\r\\){}";
sl@0
   111
  const gint buflen = strlen (buf);
sl@0
   112
  gchar tokbuf[] = "(\\){}";
sl@0
   113
  const gint tokbuflen = strlen (tokbuf);
sl@0
   114
  guint i;
sl@0
   115
sl@0
   116
  g_scanner_input_text (fix->scanner, buf, buflen);
sl@0
   117
sl@0
   118
  g_assert_cmpint (g_scanner_cur_token (fix->scanner), ==, G_TOKEN_NONE);
sl@0
   119
  g_scanner_get_next_token (fix->scanner);
sl@0
   120
  g_assert_cmpint (g_scanner_cur_token (fix->scanner), ==, tokbuf[0]);
sl@0
   121
  g_assert_cmpint (g_scanner_cur_line (fix->scanner), ==, 1);
sl@0
   122
sl@0
   123
  for (i = 1; i < tokbuflen; i++)
sl@0
   124
    g_assert_cmpint (g_scanner_get_next_token (fix->scanner), ==, tokbuf[i]);
sl@0
   125
  g_assert_cmpint (g_scanner_get_next_token (fix->scanner), ==, G_TOKEN_EOF);
sl@0
   126
  return;
sl@0
   127
}
sl@0
   128
sl@0
   129
int
sl@0
   130
main (int   argc,
sl@0
   131
      char *argv[])
sl@0
   132
{
sl@0
   133
#ifdef __SYMBIAN32__
sl@0
   134
  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);
sl@0
   135
  g_set_print_handler(mrtPrintHandler);
sl@0
   136
  #endif /*__SYMBIAN32__*/
sl@0
   137
  g_test_init (&argc, &argv, NULL);
sl@0
   138
sl@0
   139
  g_test_add ("/scanner/warn", ScannerFixture, 0, scanner_fixture_setup, test_scanner_warn, scanner_fixture_teardown);
sl@0
   140
  g_test_add ("/scanner/error", ScannerFixture, 0, scanner_fixture_setup, test_scanner_error, scanner_fixture_teardown);
sl@0
   141
  g_test_add ("/scanner/symbols", ScannerFixture, 0, scanner_fixture_setup, test_scanner_symbols, scanner_fixture_teardown);
sl@0
   142
  g_test_add ("/scanner/tokens", ScannerFixture, 0, scanner_fixture_setup, test_scanner_tokens, scanner_fixture_teardown);
sl@0
   143
#if __SYMBIAN32__
sl@0
   144
  testResultXml("scannerapi");
sl@0
   145
  #endif /* EMULATOR */
sl@0
   146
  return g_test_run();
sl@0
   147
}