Update contrib.
2 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
13 #include "mrt2_glib2_test.h"
14 #endif /*__SYMBIAN32__*/
16 #define DATA_SIZE 1024
19 static guchar data[DATA_SIZE];
22 test_incremental (gboolean line_break,
26 gsize len, decoded_len, max, input_len, block_size;
32 data2 = g_malloc (length);
33 text = g_malloc (length * 4);
39 while (input_len < length)
41 block_size = MIN (BLOCK_SIZE, length - input_len);
42 len += g_base64_encode_step (data + input_len, block_size,
43 line_break, text + len, &state, &save);
44 input_len += block_size;
46 len += g_base64_encode_close (line_break, text + len, &state, &save);
49 max = length * 4 / 3 + length * 4 / (3 * 72) + 7;
51 max = length * 4 / 3 + 6;
54 g_print ("Too long encoded length: got %d, expected max %d\n",
65 int chunk_len = MIN (BLOCK_SIZE, len);
66 decoded_len += g_base64_decode_step (p,
69 &state, &decoder_save);
74 if (decoded_len != length)
76 g_print ("Wrong decoded length: got %d, expected %d\n",
81 if (memcmp (data, data2, length) != 0)
83 g_print ("Wrong decoded base64 data\n");
92 test_full (gint length)
98 text = g_base64_encode (data, length);
99 data2 = g_base64_decode (text, &len);
104 g_print ("Wrong decoded length: got %d, expected %d\n",
109 if (memcmp (data, data2, length) != 0)
111 g_print ("Wrong decoded base64 data\n");
119 main (int argc, char *argv[])
124 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);
125 g_set_print_handler(mrtPrintHandler);
126 #endif /*__SYMBIAN32__*/
128 for (i = 0; i < DATA_SIZE; i++)
131 test_full (DATA_SIZE);
136 test_incremental (FALSE, DATA_SIZE);
137 test_incremental (TRUE, DATA_SIZE);
139 test_incremental (FALSE, DATA_SIZE - 1);
140 test_incremental (TRUE, DATA_SIZE - 1);
142 test_incremental (FALSE, DATA_SIZE - 2);
143 test_incremental (TRUE, DATA_SIZE - 2);
145 test_incremental (FALSE, 1);
146 test_incremental (FALSE, 2);
147 test_incremental (FALSE, 3);
149 testResultXml("base64-test");
150 #endif /* EMULATOR */