os/ossrv/glib/tests/test-utils.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/tests/test-utils.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,198 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#undef G_DISABLE_ASSERT
    1.20 +#undef G_LOG_DOMAIN
    1.21 +
    1.22 +#include <glib.h>
    1.23 +#include <errno.h>
    1.24 +#define LOG_FILE "c:\\logs\\test_utils_log.txt"
    1.25 +#include "std_log_result.h"
    1.26 +#define LOG_FILENAME_LINE __FILE__, __LINE__
    1.27 +
    1.28 +void create_xml(int result)
    1.29 +{
    1.30 +    if(result)
    1.31 +        assert_failed = 1;
    1.32 +    
    1.33 +    testResultXml("test_utils_log");
    1.34 +    close_log_file();
    1.35 +}
    1.36 +
    1.37 +static void
    1.38 +gstring_overwrite_int (GString *gstring,
    1.39 +                       guint    pos,
    1.40 +                       guint32  vuint)
    1.41 +{
    1.42 +  vuint = g_htonl (vuint);
    1.43 +  g_string_overwrite_len (gstring, pos, (const gchar*) &vuint, 4);
    1.44 +}
    1.45 +
    1.46 +static void
    1.47 +gstring_append_int (GString *gstring,
    1.48 +                    guint32  vuint)
    1.49 +{
    1.50 +  vuint = g_htonl (vuint);
    1.51 +  g_string_append_len (gstring, (const gchar*) &vuint, 4);
    1.52 +}
    1.53 +
    1.54 +static void
    1.55 +gstring_append_double (GString *gstring,
    1.56 +                       double   vdouble)
    1.57 +{
    1.58 +  union { double vdouble; guint64 vuint64; } u;
    1.59 +  u.vdouble = vdouble;
    1.60 +  u.vuint64 = GUINT64_TO_BE (u.vuint64);
    1.61 +  g_string_append_len (gstring, (const gchar*) &u.vuint64, 8);
    1.62 +}
    1.63 +
    1.64 +static guint8*
    1.65 +g_test_log_dump (GTestLogMsg *msg,
    1.66 +                 guint       *len)
    1.67 +{
    1.68 +  GString *gstring = g_string_sized_new (1024);
    1.69 +  guint ui;
    1.70 +  gstring_append_int (gstring, 0);              /* message length */
    1.71 +  gstring_append_int (gstring, msg->log_type);
    1.72 +  gstring_append_int (gstring, msg->n_strings);
    1.73 +  gstring_append_int (gstring, msg->n_nums);
    1.74 +  gstring_append_int (gstring, 0);      /* reserved */
    1.75 +  for (ui = 0; ui < msg->n_strings; ui++)
    1.76 +    {
    1.77 +      guint l = strlen (msg->strings[ui]);
    1.78 +      gstring_append_int (gstring, l);
    1.79 +      g_string_append_len (gstring, msg->strings[ui], l);
    1.80 +    }
    1.81 +  for (ui = 0; ui < msg->n_nums; ui++)
    1.82 +    gstring_append_double (gstring, msg->nums[ui]);
    1.83 +  *len = gstring->len;
    1.84 +  gstring_overwrite_int (gstring, 0, *len);     /* message length */
    1.85 +  return (guint8*) g_string_free (gstring, FALSE);
    1.86 +}
    1.87 +
    1.88 +void start_timer()
    1.89 +    {
    1.90 +    GTimer *timer;
    1.91 +    timer = g_timer_new ();
    1.92 +    g_timer_start(timer);
    1.93 +    g_timer_stop(timer);
    1.94 +    }
    1.95 +
    1.96 +void test_g_test_trap()
    1.97 +    {
    1.98 +    if(g_test_trap_fork(0, G_TEST_TRAP_SILENCE_STDOUT))
    1.99 +        {
   1.100 +        exit(0);
   1.101 +        }
   1.102 +    
   1.103 +    if(!g_test_trap_has_passed())
   1.104 +        {
   1.105 +        std_log(LOG_FILENAME_LINE, "g_test_trap_has_passed didnt work as expected");
   1.106 +        assert_failed = 1;
   1.107 +        }
   1.108 +    }
   1.109 +
   1.110 +void test_g_test_log_type_name()
   1.111 +    {
   1.112 +    const char *ret;
   1.113 +    ret = g_test_log_type_name(G_TEST_LOG_MESSAGE);
   1.114 +    
   1.115 +    if(strcmp(ret, "message"))
   1.116 +        {
   1.117 +        std_log(LOG_FILENAME_LINE, "g_test_log_type_name didnt work as expected");
   1.118 +        assert_failed = 1;
   1.119 +        }
   1.120 +    }
   1.121 +
   1.122 +void test_g_test_timer()
   1.123 +    {
   1.124 +    double ret_time1, ret_time2;
   1.125 +    
   1.126 +    g_test_timer_start();
   1.127 +    ret_time1 = g_test_timer_elapsed();
   1.128 +    ret_time2 = g_test_timer_last();
   1.129 +    
   1.130 +    if(!(ret_time1 == ret_time2))
   1.131 +        {
   1.132 +        std_log(LOG_FILENAME_LINE, "g_test_timer* didnt work as expected");
   1.133 +        assert_failed = 1;
   1.134 +        }
   1.135 +    }
   1.136 +
   1.137 +void test_g_log_buffer()
   1.138 +    {
   1.139 +    GTestLogBuffer* log_buffer;
   1.140 +    GTestLogMsg* log_msg;
   1.141 +	GTestLogMsg msg_ip;
   1.142 +    gchar *astrings[1] = {NULL};
   1.143 +    guint8 *dbuffer;
   1.144 +    guint dbufferlen;
   1.145 +    int i;
   1.146 +
   1.147 +    msg_ip.log_type = G_TEST_LOG_MESSAGE;
   1.148 +    msg_ip.n_strings = 1;
   1.149 +    msg_ip.strings = astrings;
   1.150 +    astrings[0] = (gchar*) "test-log-some-dummy-log";
   1.151 +    msg_ip.n_nums = 0;
   1.152 +    msg_ip.nums = 0;
   1.153 +    dbuffer = (guint8*)g_test_log_dump(&msg_ip, &dbufferlen);
   1.154 +    
   1.155 +    log_buffer = g_test_log_buffer_new();
   1.156 +    
   1.157 +    if(log_buffer)
   1.158 +        {
   1.159 +        g_test_log_buffer_push(log_buffer, dbufferlen, (const guint8*)dbuffer);
   1.160 +            
   1.161 +        log_msg = g_test_log_buffer_pop(log_buffer);
   1.162 +        
   1.163 +        if(log_msg)
   1.164 +            {
   1.165 +            g_test_log_msg_free(log_msg);
   1.166 +            }
   1.167 +        else
   1.168 +            {
   1.169 +            std_log(LOG_FILENAME_LINE, "g_test_log_buffer_pop returned NULL");
   1.170 +            assert_failed = 1;
   1.171 +            }
   1.172 +        
   1.173 +        g_test_log_buffer_free(log_buffer);
   1.174 +        }
   1.175 +    else
   1.176 +        {
   1.177 +        std_log(LOG_FILENAME_LINE, "g_test_log_buffer_new returned NULL");
   1.178 +        assert_failed = 1;
   1.179 +        }
   1.180 +
   1.181 +	g_free (dbuffer);
   1.182 +    }
   1.183 +
   1.184 +int main (int argc, char *argv[])
   1.185 +{
   1.186 +    g_test_init(&argc, &argv);
   1.187 +    
   1.188 +    test_g_test_trap();
   1.189 +    test_g_test_log_type_name();
   1.190 +    test_g_test_timer();
   1.191 +    test_g_log_buffer();
   1.192 +    
   1.193 +    if(assert_failed)
   1.194 +          std_log(LOG_FILENAME_LINE,"Test Failed");
   1.195 +    else
   1.196 +          std_log(LOG_FILENAME_LINE,"Test Successful");
   1.197 +	
   1.198 +    create_xml(0);
   1.199 +
   1.200 +	return 0;
   1.201 +}