os/ossrv/glib/build/symbian/tests/inc/mrt2_glib2_test.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 #ifndef __G_LOG_MRT2_GLIB2_TEST
    22 #define __G_LOG_MRT2_GLIB2_TEST
    23 #include <stdio.h>
    24 #include <time.h>
    25 #include <string.h>
    26 #include <dirent.h>
    27 #include <sys/stat.h>
    28 
    29 gboolean assert_failed = FALSE;
    30 
    31 #undef g_assert
    32 #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
    33 
    34 	
    35 void mrtLogHandler(const gchar* log_domain, GLogLevelFlags log_level,
    36 					const gchar* message, gpointer user_data)
    37 {
    38 	FILE *fp;
    39 	fp = fopen("c:\\logtests.txt","a");
    40 	
    41 	if(fp)
    42 	{
    43 		fprintf(fp,message);
    44 		fprintf(fp,"\n");
    45 		fclose(fp);
    46 	}
    47 }
    48 
    49 void mrtPrintHandler(const gchar *message)
    50 {
    51 	FILE *fp;
    52 	fp = fopen("c:\\logtests.txt","a");
    53 	
    54 	if(fp)
    55 	{
    56 		fprintf(fp,message);
    57 		fprintf(fp,"\n");
    58 		fclose(fp);
    59 	}
    60 }
    61 
    62 
    63 // This function is used to generate the xml file used bt ATS
    64 void testResultXml(char *filename)
    65 {
    66 	char time_buf[50];
    67 	
    68 	char result[10];
    69 	
    70 	char xmlfilename[256];
    71 		
    72 	time_t t = time(NULL);
    73 	
    74 	struct tm *tm1 = localtime(&t);
    75 	
    76 	char *atsinitmsg 	= 	"<test-report>\n\t<test-batch>";
    77 	
    78 	char *atsbatchinit1	=   \
    79 							"\n\t\t<batch-init>\
    80 							\n\t\t\t<description></description>\
    81 							\n\t\t\t<date>";						
    82 							
    83 	char *atsbatchinit2 =	"</date>\
    84 							\n\t\t\t<factory>NA</factory>\
    85 							\n\t\t\t<component>\
    86 							\n\t\t\t\t<name>NA</name>\
    87 							\n\t\t\t\t<version>NA</version>\
    88 							\n\t\t\t</component>\
    89 							\n\t\t</batch-init>";
    90 							
    91 	char *atsbatchresult=	\
    92 							"\n\t\t<batch-result>\
    93 							\n\t\t\t<run-time>00:00:00</run-time>\
    94 							\n\t\t</batch-result>";
    95 							
    96 	char *atsclosemsg	=   \
    97 							"\n\t</test-batch>\
    98 							\n</test-report>\n ";
    99 
   100 	char *atstestinit	=	"\n\t\t<test-case time-stamp=\"00:00:00\">";
   101 
   102 	
   103 	char *atscaseinit1	=	\
   104 							"\n\t\t\t<case-init>\
   105 							\n\t\t\t\t<version></version>\
   106 							\n\t\t\t\t<id>";
   107 												
   108 	char *atscaseinit2 = 	"</id>\
   109 							\n\t\t\t\t<expected-result description=\"\">0</expected-result>\
   110 							\n\t\t\t</case-init>";
   111 							
   112 	char *atscaseresult1=	\
   113 							"\n\t\t\t<case-result status=\"";
   114 							
   115 	char *atscaseresult2=	"\">\
   116 							\n\t\t\t\t<actual-result>0</actual-result>\
   117 							\n\t\t\t\t<run-time>00:00:00</run-time>\
   118 							\n\t\t\t</case-result>";
   119 
   120 	char *atstestclose	=	"\n\t\t</test-case>";
   121 	
   122 	/* Check and see if spd_logs/xml is existent or not. If not present create it */
   123 	DIR *dir;
   124 	FILE *fp;
   125 	
   126 	dir = opendir("c:\\spd_logs");
   127 	if(!dir)
   128 		mkdir("c:\\spd_logs",0777);
   129 	
   130 	dir = opendir("c:\\spd_logs\\xml");
   131 	if(!dir)
   132 		mkdir("c:\\spd_logs\\xml",0777);
   133 	
   134 	// create the xml file name
   135 	strcpy(xmlfilename,"c:/spd_logs/xml/");
   136 	strcat(xmlfilename,filename);
   137 	strcat(xmlfilename,".xml");
   138 	
   139 	strftime(time_buf,50,"%c",tm1);
   140 	
   141 	if(assert_failed )
   142 		strcpy(result,"FAILED");
   143 	else
   144 		strcpy(result,"PASSED");
   145 	
   146 	fp = fopen(xmlfilename,"w");
   147 	
   148 	if(fp)
   149 	{
   150 		fprintf(fp,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
   151 			atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
   152 			atstestclose,atsbatchresult,atsclosemsg);
   153 			
   154 		fclose(fp);	
   155 	}
   156 	else
   157 	{
   158 		g_assert(FALSE && "Failed to create the xml file");
   159 	}
   160 }
   161 
   162 #endif