Updated Hungarian translation
[glib.git] / glib / tests / protocol.c
blobd6286ff2ba6723f1b6f9c588606a8b2642f9fc09
1 /* This file is part of GLib
3 * Copyright (C) 2010 Sven Herzberg
5 * This work is provided "as is"; redistribution and modification
6 * in whole or in part, in any medium, physical or electronic is
7 * permitted without restriction.
9 * This work is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * In no event shall the authors or contributors be liable for any
14 * direct, indirect, incidental, special, exemplary, or consequential
15 * damages (including, but not limited to, procurement of substitute
16 * goods or services; loss of use, data, or profits; or business
17 * interruption) however caused and on any theory of liability, whether
18 * in contract, strict liability, or tort (including negligence or
19 * otherwise) arising in any way out of the use of this software, even
20 * if advised of the possibility of such damage.
23 #include <errno.h> /* errno */
24 #include <glib.h>
25 #ifdef G_OS_UNIX
26 #include <unistd.h> /* pipe() */
27 #endif
28 #ifdef G_OS_WIN32
29 #include <io.h>
30 #include <fcntl.h>
31 #define pipe(fds) _pipe(fds, 4096, _O_BINARY)
32 #endif
34 static const char *argv0;
36 static void
37 debug (void)
39 if (g_test_subprocess ())
40 g_debug ("this is a regular g_debug() from the test suite");
43 static void
44 info (void)
46 if (g_test_subprocess ())
47 g_info ("this is a regular g_info from the test suite");
50 static void
51 message (void)
53 if (g_test_subprocess ())
54 g_message ("this is a regular g_message() from the test suite");
57 static void
58 warning (void)
60 if (g_test_subprocess ())
61 g_warning ("this is a regular g_warning() from the test suite");
64 static void
65 critical (void)
67 if (g_test_subprocess ())
68 g_critical ("this is a regular g_critical() from the test suite");
71 static void
72 error (void)
74 if (g_test_subprocess ())
75 g_error ("this is a regular g_error() from the test suite");
78 static void
79 gtest_message (void)
81 if (g_test_subprocess ())
82 g_test_message ("this is a regular g_test_message() from the test suite");
85 static gboolean
86 test_message_cb1 (GIOChannel * channel,
87 GIOCondition condition,
88 gpointer user_data)
90 GIOStatus status;
91 guchar buf[512];
92 gsize read_bytes = 0;
94 g_assert_cmpuint (condition, ==, G_IO_IN);
96 for (status = g_io_channel_read_chars (channel, (gchar*)buf, sizeof (buf), &read_bytes, NULL);
97 status == G_IO_STATUS_NORMAL;
98 status = g_io_channel_read_chars (channel, (gchar*)buf, sizeof (buf), &read_bytes, NULL))
100 g_test_log_buffer_push (user_data, read_bytes, buf);
103 g_assert_cmpuint (status, ==, G_IO_STATUS_AGAIN);
105 return TRUE;
108 static void
109 test_message_cb2 (GPid pid,
110 gint status,
111 gpointer user_data)
113 g_spawn_close_pid (pid);
115 g_main_loop_quit (user_data);
118 static void
119 test_message (void)
121 gchar* argv[] = {
122 (gchar*)argv0,
123 NULL,
124 "--GTestSubprocess",
125 "-p", "/glib/testing/protocol/debug",
126 "-p", "/glib/testing/protocol/message",
127 "-p", "/glib/testing/protocol/gtest-message",
128 NULL
130 GTestLogBuffer* tlb;
131 GTestLogMsg * msg;
132 GIOChannel * channel;
133 GMainLoop * loop;
134 GError * error = NULL;
135 gulong child_source;
136 gulong io_source;
137 GPid pid = 0;
138 int pipes[2];
139 int passed = 0;
140 int messages = 0;
141 const char * line_term;
142 int line_term_len;
144 if (0 > pipe (pipes))
146 g_error ("error creating pipe: %s", g_strerror (errno));
149 argv[1] = g_strdup_printf ("--GTestLogFD=%u", pipes[1]);
151 if (!g_spawn_async (NULL,
152 argv, NULL,
153 G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_LEAVE_DESCRIPTORS_OPEN |
154 G_SPAWN_STDOUT_TO_DEV_NULL | G_SPAWN_STDERR_TO_DEV_NULL,
155 NULL, NULL, &pid,
156 &error))
158 g_error ("error spawning the test: %s", error->message);
161 tlb = g_test_log_buffer_new ();
162 loop = g_main_loop_new (NULL, FALSE);
164 channel = g_io_channel_unix_new (pipes[0]);
165 g_io_channel_set_close_on_unref (channel, TRUE);
166 g_io_channel_set_encoding (channel, NULL, NULL);
167 g_io_channel_set_buffered (channel, FALSE);
168 g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL);
169 g_assert (g_io_channel_get_line_term (channel, NULL) == NULL);
170 g_io_channel_set_line_term (channel, "\n", 1);
171 line_term = g_io_channel_get_line_term (channel, &line_term_len);
172 g_assert_cmpint (*line_term, ==, '\n');
173 g_assert_cmpint (line_term_len, ==, 1);
175 g_assert (g_io_channel_get_close_on_unref (channel));
176 g_assert (g_io_channel_get_encoding (channel) == NULL);
177 g_assert (!g_io_channel_get_buffered (channel));
179 io_source = g_io_add_watch (channel, G_IO_IN, test_message_cb1, tlb);
180 child_source = g_child_watch_add (pid, test_message_cb2, loop);
182 g_main_loop_run (loop);
184 test_message_cb1 (channel, G_IO_IN, tlb);
186 g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL, "Source ID*");
187 g_assert (!g_source_remove (child_source));
188 g_test_assert_expected_messages ();
189 g_assert (g_source_remove (io_source));
190 g_io_channel_unref (channel);
192 for (msg = g_test_log_buffer_pop (tlb);
193 msg;
194 msg = g_test_log_buffer_pop (tlb))
196 switch (msg->log_type)
198 case G_TEST_LOG_START_BINARY:
199 case G_TEST_LOG_START_CASE:
200 case G_TEST_LOG_START_SUITE:
201 case G_TEST_LOG_STOP_SUITE:
202 /* ignore */
203 break;
204 case G_TEST_LOG_STOP_CASE:
205 passed++;
206 break;
207 case G_TEST_LOG_MESSAGE:
209 gchar const* known_messages[] = {
210 "this is a regular g_test_message() from the test suite",
211 "GLib-MESSAGE: this is a regular g_message() from the test suite",
212 "GLib-DEBUG: this is a regular g_debug() from the test suite"
214 g_assert_cmpint (messages, <, G_N_ELEMENTS (known_messages));
215 g_assert_cmpstr (msg->strings[0], ==, known_messages[messages]);
216 messages++;
218 break;
219 case G_TEST_LOG_ERROR:
220 g_assert_not_reached ();
221 break;
222 default:
223 g_error ("unexpected log message type: %s", g_test_log_type_name (msg->log_type));
225 g_test_log_msg_free (msg);
228 g_assert_cmpint (passed, ==, 3);
229 g_assert_cmpint (messages, ==, 3);
231 g_free (argv[1]);
232 g_main_loop_unref (loop);
233 g_test_log_buffer_free (tlb);
236 static void
237 test_error (void)
239 gchar* tests[] = {
240 "/glib/testing/protocol/warning",
241 "/glib/testing/protocol/critical",
242 "/glib/testing/protocol/error"
244 gint i;
245 int messages = 0;
247 for (i = 0; i < G_N_ELEMENTS (tests); i++)
249 gchar* argv[] = {
250 (gchar*)argv0,
251 NULL,
252 "--GTestSubprocess",
253 "-p", tests[i],
254 NULL
256 GTestLogBuffer* tlb;
257 GTestLogMsg * msg;
258 GIOChannel * channel;
259 GMainLoop * loop;
260 GError * error = NULL;
261 gulong child_source;
262 gulong io_source;
263 GPid pid = 0;
264 int pipes[2];
266 if (0 > pipe (pipes))
268 g_error ("error creating pipe: %s", g_strerror (errno));
271 argv[1] = g_strdup_printf ("--GTestLogFD=%u", pipes[1]);
273 if (!g_spawn_async (NULL,
274 argv, NULL,
275 G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_LEAVE_DESCRIPTORS_OPEN |
276 G_SPAWN_STDOUT_TO_DEV_NULL | G_SPAWN_STDERR_TO_DEV_NULL,
277 NULL, NULL, &pid,
278 &error))
280 g_error ("error spawning the test: %s", error->message);
283 tlb = g_test_log_buffer_new ();
284 loop = g_main_loop_new (NULL, FALSE);
286 channel = g_io_channel_unix_new (pipes[0]);
287 g_io_channel_set_close_on_unref (channel, TRUE);
288 g_io_channel_set_encoding (channel, NULL, NULL);
289 g_io_channel_set_buffered (channel, FALSE);
290 g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL);
292 io_source = g_io_add_watch (channel, G_IO_IN, test_message_cb1, tlb);
293 child_source = g_child_watch_add (pid, test_message_cb2, loop);
295 g_main_loop_run (loop);
297 test_message_cb1 (channel, G_IO_IN, tlb);
299 g_test_expect_message ("GLib", G_LOG_LEVEL_CRITICAL, "Source ID*");
300 g_assert (!g_source_remove (child_source));
301 g_test_assert_expected_messages ();
302 g_assert (g_source_remove (io_source));
303 g_io_channel_unref (channel);
305 for (msg = g_test_log_buffer_pop (tlb);
306 msg;
307 msg = g_test_log_buffer_pop (tlb))
309 switch (msg->log_type)
311 case G_TEST_LOG_START_BINARY:
312 case G_TEST_LOG_START_CASE:
313 case G_TEST_LOG_START_SUITE:
314 case G_TEST_LOG_STOP_SUITE:
315 /* ignore */
316 break;
317 case G_TEST_LOG_STOP_CASE:
318 case G_TEST_LOG_MESSAGE:
319 g_assert_not_reached ();
320 break;
321 case G_TEST_LOG_ERROR:
323 gchar const* known_messages[] = {
324 "GLib-FATAL-WARNING: this is a regular g_warning() from the test suite",
325 "GLib-FATAL-CRITICAL: this is a regular g_critical() from the test suite",
326 "GLib-FATAL-ERROR: this is a regular g_error() from the test suite"
328 g_assert_cmpint (messages, <, G_N_ELEMENTS (known_messages));
329 g_assert_cmpstr (msg->strings[0], ==, known_messages[messages]);
330 messages++;
332 break;
333 default:
334 g_error ("unexpected log message type: %s", g_test_log_type_name (msg->log_type));
336 g_test_log_msg_free (msg);
339 g_free (argv[1]);
340 g_main_loop_unref (loop);
341 g_test_log_buffer_free (tlb);
344 g_assert_cmpint (messages, ==, 3);
348 main (int argc,
349 char**argv)
351 argv0 = argv[0];
353 g_test_init (&argc, &argv, NULL);
355 /* we use ourself as the testcase, these are the ones we need internally */
356 g_test_add_func ("/glib/testing/protocol/debug", debug);
357 g_test_add_func ("/glib/testing/protocol/info", info);
358 g_test_add_func ("/glib/testing/protocol/message", message);
359 g_test_add_func ("/glib/testing/protocol/warning", warning);
360 g_test_add_func ("/glib/testing/protocol/critical", critical);
361 g_test_add_func ("/glib/testing/protocol/error", error);
362 g_test_add_func ("/glib/testing/protocol/gtest-message", gtest_message);
364 /* these are the real tests */
365 g_test_add_func ("/glib/testing/protocol/test-message", test_message);
366 g_test_add_func ("/glib/testing/protocol/test-error", test_error);
368 return g_test_run ();
371 /* vim:set et sw=2 cino=t0,f0,(0,{s,>2s,n-1s,^-1s,e2s: */