Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #undef G_DISABLE_ASSERT
21 #define LOG_FILE "c:\\logs\\test_utils_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("test_utils_log");
35 gstring_overwrite_int (GString *gstring,
39 vuint = g_htonl (vuint);
40 g_string_overwrite_len (gstring, pos, (const gchar*) &vuint, 4);
44 gstring_append_int (GString *gstring,
47 vuint = g_htonl (vuint);
48 g_string_append_len (gstring, (const gchar*) &vuint, 4);
52 gstring_append_double (GString *gstring,
55 union { double vdouble; guint64 vuint64; } u;
57 u.vuint64 = GUINT64_TO_BE (u.vuint64);
58 g_string_append_len (gstring, (const gchar*) &u.vuint64, 8);
62 g_test_log_dump (GTestLogMsg *msg,
65 GString *gstring = g_string_sized_new (1024);
67 gstring_append_int (gstring, 0); /* message length */
68 gstring_append_int (gstring, msg->log_type);
69 gstring_append_int (gstring, msg->n_strings);
70 gstring_append_int (gstring, msg->n_nums);
71 gstring_append_int (gstring, 0); /* reserved */
72 for (ui = 0; ui < msg->n_strings; ui++)
74 guint l = strlen (msg->strings[ui]);
75 gstring_append_int (gstring, l);
76 g_string_append_len (gstring, msg->strings[ui], l);
78 for (ui = 0; ui < msg->n_nums; ui++)
79 gstring_append_double (gstring, msg->nums[ui]);
81 gstring_overwrite_int (gstring, 0, *len); /* message length */
82 return (guint8*) g_string_free (gstring, FALSE);
88 timer = g_timer_new ();
93 void test_g_test_trap()
95 if(g_test_trap_fork(0, G_TEST_TRAP_SILENCE_STDOUT))
100 if(!g_test_trap_has_passed())
102 std_log(LOG_FILENAME_LINE, "g_test_trap_has_passed didnt work as expected");
107 void test_g_test_log_type_name()
110 ret = g_test_log_type_name(G_TEST_LOG_MESSAGE);
112 if(strcmp(ret, "message"))
114 std_log(LOG_FILENAME_LINE, "g_test_log_type_name didnt work as expected");
119 void test_g_test_timer()
121 double ret_time1, ret_time2;
123 g_test_timer_start();
124 ret_time1 = g_test_timer_elapsed();
125 ret_time2 = g_test_timer_last();
127 if(!(ret_time1 == ret_time2))
129 std_log(LOG_FILENAME_LINE, "g_test_timer* didnt work as expected");
134 void test_g_log_buffer()
136 GTestLogBuffer* log_buffer;
137 GTestLogMsg* log_msg;
139 gchar *astrings[1] = {NULL};
144 msg_ip.log_type = G_TEST_LOG_MESSAGE;
145 msg_ip.n_strings = 1;
146 msg_ip.strings = astrings;
147 astrings[0] = (gchar*) "test-log-some-dummy-log";
150 dbuffer = (guint8*)g_test_log_dump(&msg_ip, &dbufferlen);
152 log_buffer = g_test_log_buffer_new();
156 g_test_log_buffer_push(log_buffer, dbufferlen, (const guint8*)dbuffer);
158 log_msg = g_test_log_buffer_pop(log_buffer);
162 g_test_log_msg_free(log_msg);
166 std_log(LOG_FILENAME_LINE, "g_test_log_buffer_pop returned NULL");
170 g_test_log_buffer_free(log_buffer);
174 std_log(LOG_FILENAME_LINE, "g_test_log_buffer_new returned NULL");
181 int main (int argc, char *argv[])
183 g_test_init(&argc, &argv);
186 test_g_test_log_type_name();
191 std_log(LOG_FILENAME_LINE,"Test Failed");
193 std_log(LOG_FILENAME_LINE,"Test Successful");