1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/glib/build/symbian/tests/inc/mrt2_glib2_test.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,162 @@
1.4 +/*
1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +
1.24 +#ifndef __G_LOG_MRT2_GLIB2_TEST
1.25 +#define __G_LOG_MRT2_GLIB2_TEST
1.26 +#include <stdio.h>
1.27 +#include <time.h>
1.28 +#include <string.h>
1.29 +#include <dirent.h>
1.30 +#include <sys/stat.h>
1.31 +
1.32 +gboolean assert_failed = FALSE;
1.33 +
1.34 +#undef g_assert
1.35 +#define g_assert(expr) G_STMT_START{ if (expr) { } else {g_log (G_LOG_DOMAIN,G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, "file %s: line %d: assertion failed: (%s)", __FILE__, __LINE__, #expr);assert_failed = TRUE; }}G_STMT_END
1.36 +
1.37 +
1.38 +void mrtLogHandler(const gchar* log_domain, GLogLevelFlags log_level,
1.39 + const gchar* message, gpointer user_data)
1.40 +{
1.41 + FILE *fp;
1.42 + fp = fopen("c:\\logtests.txt","a");
1.43 +
1.44 + if(fp)
1.45 + {
1.46 + fprintf(fp,message);
1.47 + fprintf(fp,"\n");
1.48 + fclose(fp);
1.49 + }
1.50 +}
1.51 +
1.52 +void mrtPrintHandler(const gchar *message)
1.53 +{
1.54 + FILE *fp;
1.55 + fp = fopen("c:\\logtests.txt","a");
1.56 +
1.57 + if(fp)
1.58 + {
1.59 + fprintf(fp,message);
1.60 + fprintf(fp,"\n");
1.61 + fclose(fp);
1.62 + }
1.63 +}
1.64 +
1.65 +
1.66 +// This function is used to generate the xml file used bt ATS
1.67 +void testResultXml(char *filename)
1.68 +{
1.69 + char time_buf[50];
1.70 +
1.71 + char result[10];
1.72 +
1.73 + char xmlfilename[256];
1.74 +
1.75 + time_t t = time(NULL);
1.76 +
1.77 + struct tm *tm1 = localtime(&t);
1.78 +
1.79 + char *atsinitmsg = "<test-report>\n\t<test-batch>";
1.80 +
1.81 + char *atsbatchinit1 = \
1.82 + "\n\t\t<batch-init>\
1.83 + \n\t\t\t<description></description>\
1.84 + \n\t\t\t<date>";
1.85 +
1.86 + char *atsbatchinit2 = "</date>\
1.87 + \n\t\t\t<factory>NA</factory>\
1.88 + \n\t\t\t<component>\
1.89 + \n\t\t\t\t<name>NA</name>\
1.90 + \n\t\t\t\t<version>NA</version>\
1.91 + \n\t\t\t</component>\
1.92 + \n\t\t</batch-init>";
1.93 +
1.94 + char *atsbatchresult= \
1.95 + "\n\t\t<batch-result>\
1.96 + \n\t\t\t<run-time>00:00:00</run-time>\
1.97 + \n\t\t</batch-result>";
1.98 +
1.99 + char *atsclosemsg = \
1.100 + "\n\t</test-batch>\
1.101 + \n</test-report>\n ";
1.102 +
1.103 + char *atstestinit = "\n\t\t<test-case time-stamp=\"00:00:00\">";
1.104 +
1.105 +
1.106 + char *atscaseinit1 = \
1.107 + "\n\t\t\t<case-init>\
1.108 + \n\t\t\t\t<version></version>\
1.109 + \n\t\t\t\t<id>";
1.110 +
1.111 + char *atscaseinit2 = "</id>\
1.112 + \n\t\t\t\t<expected-result description=\"\">0</expected-result>\
1.113 + \n\t\t\t</case-init>";
1.114 +
1.115 + char *atscaseresult1= \
1.116 + "\n\t\t\t<case-result status=\"";
1.117 +
1.118 + char *atscaseresult2= "\">\
1.119 + \n\t\t\t\t<actual-result>0</actual-result>\
1.120 + \n\t\t\t\t<run-time>00:00:00</run-time>\
1.121 + \n\t\t\t</case-result>";
1.122 +
1.123 + char *atstestclose = "\n\t\t</test-case>";
1.124 +
1.125 + /* Check and see if spd_logs/xml is existent or not. If not present create it */
1.126 + DIR *dir;
1.127 + FILE *fp;
1.128 +
1.129 + dir = opendir("c:\\spd_logs");
1.130 + if(!dir)
1.131 + mkdir("c:\\spd_logs",0777);
1.132 +
1.133 + dir = opendir("c:\\spd_logs\\xml");
1.134 + if(!dir)
1.135 + mkdir("c:\\spd_logs\\xml",0777);
1.136 +
1.137 + // create the xml file name
1.138 + strcpy(xmlfilename,"c:/spd_logs/xml/");
1.139 + strcat(xmlfilename,filename);
1.140 + strcat(xmlfilename,".xml");
1.141 +
1.142 + strftime(time_buf,50,"%c",tm1);
1.143 +
1.144 + if(assert_failed )
1.145 + strcpy(result,"FAILED");
1.146 + else
1.147 + strcpy(result,"PASSED");
1.148 +
1.149 + fp = fopen(xmlfilename,"w");
1.150 +
1.151 + if(fp)
1.152 + {
1.153 + fprintf(fp,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
1.154 + atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
1.155 + atstestclose,atsbatchresult,atsclosemsg);
1.156 +
1.157 + fclose(fp);
1.158 + }
1.159 + else
1.160 + {
1.161 + g_assert(FALSE && "Failed to create the xml file");
1.162 + }
1.163 +}
1.164 +
1.165 +#endif