Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
3 #undef G_DISABLE_ASSERT
15 #include "mrt2_glib2_test.h"
16 #endif /*__SYMBIAN32__*/
19 #define BUFFER_SIZE 1024
22 test_small_writes (void)
30 io = g_io_channel_new_file ("c:\\iochannel-test-outfile", "w", &error);
33 g_warning ("Unable to open file %s: %s",
34 "iochannel-test-outfile",
41 g_io_channel_set_encoding (io, NULL, NULL);
42 g_io_channel_set_buffer_size (io, 1022);
44 cnt = 2 * g_io_channel_get_buffer_size (io);
49 status = g_io_channel_write_chars (io, &tmp, 1, NULL, NULL);
50 if (status == G_IO_STATUS_ERROR)
52 if (status == G_IO_STATUS_NORMAL)
56 g_assert (status == G_IO_STATUS_NORMAL);
58 g_io_channel_unref (io);
62 gint main (gint argc, gchar * argv[])
64 GIOChannel *gio_r, *gio_w ;
68 char *srcdir = getenv ("srcdir");
72 const gchar encoding[] = "ISO-8859-5";
77 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);
78 g_set_print_handler(mrtPrintHandler);
79 #endif /*__SYMBIAN32__*/
84 filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "iochannel-test-infile", NULL);
86 setbuf (stdout, NULL); /* For debugging */
88 gio_r = g_io_channel_new_file (filename, "r", &gerr);
91 g_warning ("Unable to open file %s: %s", filename, gerr->message);
94 g_assert(FALSE && "iochannel-test failed");
97 testResultXml("iochannel-test");
101 gio_w = g_io_channel_new_file ("c:\\iochannel-test-outfile", "w", &gerr);
104 g_warning ("Unable to open file %s: %s", "iochannel-test-outfile", gerr->message);
107 testResultXml("iochannel-test");
108 #endif /* EMULATOR */
113 g_io_channel_set_encoding (gio_r, encoding, &gerr);
116 g_warning (gerr->message);
117 /* Keep going if this is just a case of iconv not supporting EUC-JP, see bug 428048 */
118 if (gerr->code != G_CONVERT_ERROR_NO_CONVERSION)
122 g_assert(FALSE && "iochannel-test failed");
125 testResultXml("iochannel-test");
126 #endif /* EMULATOR */
131 g_io_channel_set_buffer_size (gio_r, BUFFER_SIZE);
133 status = g_io_channel_set_flags (gio_r, G_IO_FLAG_NONBLOCK, &gerr);
134 if (status == G_IO_STATUS_ERROR)
136 g_warning (gerr->message);
137 g_assert(FALSE && "iochannel-test failed");
141 flags = g_io_channel_get_flags (gio_r);
142 buffer = g_string_sized_new (BUFFER_SIZE);
147 status = g_io_channel_read_line_string (gio_r, buffer, NULL, &gerr);
148 while (status == G_IO_STATUS_AGAIN);
149 if (status != G_IO_STATUS_NORMAL)
152 rlength += buffer->len;
155 status = g_io_channel_write_chars (gio_w, buffer->str, buffer->len,
157 while (status == G_IO_STATUS_AGAIN);
158 if (status != G_IO_STATUS_NORMAL)
161 wlength += length_out;
163 if (length_out < buffer->len)
165 g_warning ("Only wrote part of the line.");
166 g_assert(FALSE && "iochannel-test failed");
171 g_print ("%s", buffer->str);
173 g_string_truncate (buffer, 0);
178 case G_IO_STATUS_EOF:
180 case G_IO_STATUS_ERROR:
181 g_warning (gerr->message);
186 g_warning ("Abnormal exit from write loop.");
187 g_assert(FALSE && "iochannel-test failed");
192 status = g_io_channel_flush (gio_w, &gerr);
193 while (status == G_IO_STATUS_AGAIN);
195 if (status == G_IO_STATUS_ERROR)
197 g_warning (gerr->message);
198 g_assert(FALSE && "iochannel-test failed");
204 g_print ("read %d bytes, wrote %ld bytes\n", rlength, wlength);
207 g_io_channel_unref(gio_r);
208 g_io_channel_unref(gio_w);
210 test_small_writes ();
213 testResultXml("iochannel-test");
214 #endif /* EMULATOR */