sl@0
|
1 |
/* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
|
sl@0
|
2 |
#undef G_DISABLE_ASSERT
|
sl@0
|
3 |
#undef G_LOG_DOMAIN
|
sl@0
|
4 |
|
sl@0
|
5 |
#include <stdarg.h>
|
sl@0
|
6 |
#include <string.h>
|
sl@0
|
7 |
#include <glib.h>
|
sl@0
|
8 |
#ifdef __SYMBIAN32__
|
sl@0
|
9 |
#include "mrt2_glib2_test.h"
|
sl@0
|
10 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
11 |
|
sl@0
|
12 |
|
sl@0
|
13 |
static void test_format (const gchar *format,
|
sl@0
|
14 |
const gchar *expected, ...) G_GNUC_PRINTF (1, 3);
|
sl@0
|
15 |
|
sl@0
|
16 |
static gboolean error = FALSE;
|
sl@0
|
17 |
|
sl@0
|
18 |
static void
|
sl@0
|
19 |
test (const gchar *original,
|
sl@0
|
20 |
const gchar *expected)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
gchar *result = g_markup_escape_text (original, -1);
|
sl@0
|
23 |
|
sl@0
|
24 |
if (strcmp (result, expected) != 0)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
g_printerr ("g_markup_escape_text(): expected '%s', got '%s'\n",
|
sl@0
|
27 |
expected, result);
|
sl@0
|
28 |
error = TRUE;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
g_free (result);
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
static void
|
sl@0
|
35 |
test_unichar (gunichar c,
|
sl@0
|
36 |
gboolean entity)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
gint len;
|
sl@0
|
39 |
gchar outbuf[7], expected[12];
|
sl@0
|
40 |
|
sl@0
|
41 |
len = g_unichar_to_utf8 (c, outbuf);
|
sl@0
|
42 |
outbuf[len] = 0;
|
sl@0
|
43 |
|
sl@0
|
44 |
if (entity)
|
sl@0
|
45 |
g_snprintf (expected, 12, "&#x%x;", c);
|
sl@0
|
46 |
else
|
sl@0
|
47 |
strcpy (expected, outbuf);
|
sl@0
|
48 |
|
sl@0
|
49 |
test (outbuf, expected);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
static void
|
sl@0
|
53 |
test_format (const gchar *format,
|
sl@0
|
54 |
const gchar *expected,
|
sl@0
|
55 |
...)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
gchar *result;
|
sl@0
|
58 |
|
sl@0
|
59 |
va_list args;
|
sl@0
|
60 |
|
sl@0
|
61 |
va_start (args, expected);
|
sl@0
|
62 |
result = g_markup_vprintf_escaped (format, args);
|
sl@0
|
63 |
va_end (args);
|
sl@0
|
64 |
|
sl@0
|
65 |
if (strcmp (result, expected) != 0)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
g_printerr ("g_markup_printf_escaped(): expected '%s', got '%s'\n",
|
sl@0
|
68 |
expected, result);
|
sl@0
|
69 |
error = TRUE;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
g_free (result);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
int main (int argc, char **argv)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
#ifdef __SYMBIAN32__
|
sl@0
|
78 |
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
|
79 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
80 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
/* Tests for g_markup_escape_text() */
|
sl@0
|
84 |
test ("&", "&");
|
sl@0
|
85 |
test ("<", "<");
|
sl@0
|
86 |
test (">", ">");
|
sl@0
|
87 |
test ("'", "'");
|
sl@0
|
88 |
test ("\"", """);
|
sl@0
|
89 |
|
sl@0
|
90 |
test ("", "");
|
sl@0
|
91 |
test ("A", "A");
|
sl@0
|
92 |
test ("A&", "A&");
|
sl@0
|
93 |
test ("&A", "&A");
|
sl@0
|
94 |
test ("A&A", "A&A");
|
sl@0
|
95 |
test ("&&A", "&&A");
|
sl@0
|
96 |
test ("A&&", "A&&");
|
sl@0
|
97 |
test ("A&&A", "A&&A");
|
sl@0
|
98 |
test ("A&A&A", "A&A&A");
|
sl@0
|
99 |
test ("AA", "A&#23;A");
|
sl@0
|
100 |
test ("A
A", "A&#xa;A");
|
sl@0
|
101 |
test_unichar (0x1, TRUE);
|
sl@0
|
102 |
test_unichar (0x8, TRUE);
|
sl@0
|
103 |
test_unichar (0x9, FALSE);
|
sl@0
|
104 |
test_unichar (0xa, FALSE);
|
sl@0
|
105 |
test_unichar (0xb, TRUE);
|
sl@0
|
106 |
test_unichar (0xc, TRUE);
|
sl@0
|
107 |
test_unichar (0xd, FALSE);
|
sl@0
|
108 |
test_unichar (0xe, TRUE);
|
sl@0
|
109 |
test_unichar (0x1f, TRUE);
|
sl@0
|
110 |
test_unichar (0x20, FALSE);
|
sl@0
|
111 |
test_unichar (0x7e, FALSE);
|
sl@0
|
112 |
test_unichar (0x7f, TRUE);
|
sl@0
|
113 |
test_unichar (0x84, TRUE);
|
sl@0
|
114 |
test_unichar (0x85, FALSE);
|
sl@0
|
115 |
test_unichar (0x86, TRUE);
|
sl@0
|
116 |
test_unichar (0x9f, TRUE);
|
sl@0
|
117 |
test_unichar (0xa0, FALSE);
|
sl@0
|
118 |
|
sl@0
|
119 |
/* Tests for g_markup_printf_escaped() */
|
sl@0
|
120 |
test_format ("A", "A");
|
sl@0
|
121 |
test_format ("A%s", "A&", "&");
|
sl@0
|
122 |
test_format ("%sA", "&A", "&");
|
sl@0
|
123 |
test_format ("A%sA", "A&A", "&");
|
sl@0
|
124 |
test_format ("%s%sA", "&&A", "&", "&");
|
sl@0
|
125 |
test_format ("A%s%s", "A&&", "&", "&");
|
sl@0
|
126 |
test_format ("A%s%sA", "A&&A", "&", "&");
|
sl@0
|
127 |
test_format ("A%sA%sA", "A&A&A", "&", "&");
|
sl@0
|
128 |
|
sl@0
|
129 |
test_format ("%s", "<B>&",
|
sl@0
|
130 |
"<B>&");
|
sl@0
|
131 |
test_format ("%c%c", "<&",
|
sl@0
|
132 |
'<', '&');
|
sl@0
|
133 |
test_format (".%c.%c.", ".<.&.",
|
sl@0
|
134 |
'<', '&');
|
sl@0
|
135 |
test_format ("%s", "",
|
sl@0
|
136 |
"");
|
sl@0
|
137 |
test_format ("%-5s", "A ",
|
sl@0
|
138 |
"A");
|
sl@0
|
139 |
test_format ("%2$s%1$s", "B.A.",
|
sl@0
|
140 |
"A.", "B.");
|
sl@0
|
141 |
|
sl@0
|
142 |
|
sl@0
|
143 |
#ifdef __SYMBIAN32__
|
sl@0
|
144 |
testResultXml("markup-escape-test");
|
sl@0
|
145 |
#endif /* EMULATOR */
|
sl@0
|
146 |
|
sl@0
|
147 |
return error ? 1 : 0;
|
sl@0
|
148 |
}
|