sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef __G_LOG_MRT2_GLIB2_TEST sl@0: #define __G_LOG_MRT2_GLIB2_TEST sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: gboolean assert_failed = FALSE; sl@0: sl@0: #undef g_assert sl@0: #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 sl@0: sl@0: sl@0: void mrtLogHandler(const gchar* log_domain, GLogLevelFlags log_level, sl@0: const gchar* message, gpointer user_data) sl@0: { sl@0: FILE *fp; sl@0: fp = fopen("c:\\logtests.txt","a"); sl@0: sl@0: if(fp) sl@0: { sl@0: fprintf(fp,message); sl@0: fprintf(fp,"\n"); sl@0: fclose(fp); sl@0: } sl@0: } sl@0: sl@0: void mrtPrintHandler(const gchar *message) sl@0: { sl@0: FILE *fp; sl@0: fp = fopen("c:\\logtests.txt","a"); sl@0: sl@0: if(fp) sl@0: { sl@0: fprintf(fp,message); sl@0: fprintf(fp,"\n"); sl@0: fclose(fp); sl@0: } sl@0: } sl@0: sl@0: sl@0: // This function is used to generate the xml file used bt ATS sl@0: void testResultXml(char *filename) sl@0: { sl@0: char time_buf[50]; sl@0: sl@0: char result[10]; sl@0: sl@0: char xmlfilename[256]; sl@0: sl@0: time_t t = time(NULL); sl@0: sl@0: struct tm *tm1 = localtime(&t); sl@0: sl@0: char *atsinitmsg = "\n\t"; sl@0: sl@0: char *atsbatchinit1 = \ sl@0: "\n\t\t\ sl@0: \n\t\t\t\ sl@0: \n\t\t\t"; sl@0: sl@0: char *atsbatchinit2 = "\ sl@0: \n\t\t\tNA\ sl@0: \n\t\t\t\ sl@0: \n\t\t\t\tNA\ sl@0: \n\t\t\t\tNA\ sl@0: \n\t\t\t\ sl@0: \n\t\t"; sl@0: sl@0: char *atsbatchresult= \ sl@0: "\n\t\t\ sl@0: \n\t\t\t00:00:00\ sl@0: \n\t\t"; sl@0: sl@0: char *atsclosemsg = \ sl@0: "\n\t\ sl@0: \n\n "; sl@0: sl@0: char *atstestinit = "\n\t\t"; sl@0: sl@0: sl@0: char *atscaseinit1 = \ sl@0: "\n\t\t\t\ sl@0: \n\t\t\t\t\ sl@0: \n\t\t\t\t"; sl@0: sl@0: char *atscaseinit2 = "\ sl@0: \n\t\t\t\t0\ sl@0: \n\t\t\t"; sl@0: sl@0: char *atscaseresult1= \ sl@0: "\n\t\t\t\ sl@0: \n\t\t\t\t0\ sl@0: \n\t\t\t\t00:00:00\ sl@0: \n\t\t\t"; sl@0: sl@0: char *atstestclose = "\n\t\t"; sl@0: sl@0: /* Check and see if spd_logs/xml is existent or not. If not present create it */ sl@0: DIR *dir; sl@0: FILE *fp; sl@0: sl@0: dir = opendir("c:\\spd_logs"); sl@0: if(!dir) sl@0: mkdir("c:\\spd_logs",0777); sl@0: sl@0: dir = opendir("c:\\spd_logs\\xml"); sl@0: if(!dir) sl@0: mkdir("c:\\spd_logs\\xml",0777); sl@0: sl@0: // create the xml file name sl@0: strcpy(xmlfilename,"c:/spd_logs/xml/"); sl@0: strcat(xmlfilename,filename); sl@0: strcat(xmlfilename,".xml"); sl@0: sl@0: strftime(time_buf,50,"%c",tm1); sl@0: sl@0: if(assert_failed ) sl@0: strcpy(result,"FAILED"); sl@0: else sl@0: strcpy(result,"PASSED"); sl@0: sl@0: fp = fopen(xmlfilename,"w"); sl@0: sl@0: if(fp) sl@0: { sl@0: fprintf(fp,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit, sl@0: atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2, sl@0: atstestclose,atsbatchresult,atsclosemsg); sl@0: sl@0: fclose(fp); sl@0: } sl@0: else sl@0: { sl@0: g_assert(FALSE && "Failed to create the xml file"); sl@0: } sl@0: } sl@0: sl@0: #endif