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