os/ossrv/utilitylibraries/libutils/tsrc/inc/std_log_result.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
/*This material, including documentation and any related
sl@0
    18
 :*  computer programs, is protected by copyright controlled by
sl@0
    19
 *  Nokia Corporation. All rights are reserved. Copying,
sl@0
    20
 *  including reproducing, storing, adapting or translating, any
sl@0
    21
 *  or all of this material requires the prior written consent of
sl@0
    22
 *  Nokia Corporation. This material also contains confidential
sl@0
    23
 *  information which may not be disclosed to others without the
sl@0
    24
 *  prior written consent of Nokia Corporation.
sl@0
    25
 * ============================================================================
sl@0
    26
 */
sl@0
    27
sl@0
    28
sl@0
    29
#ifndef _STD_LOG_FILE_H__
sl@0
    30
#define _STD_LOG_FILE_H__
sl@0
    31
sl@0
    32
#include <stdio.h>
sl@0
    33
#include <time.h>
sl@0
    34
#include <string.h>
sl@0
    35
#include <stdarg.h>
sl@0
    36
#ifdef __SYMBIAN32__
sl@0
    37
#define LOG_FILE "c:\\logs\\std_test_log.txt"
sl@0
    38
#define LOG_DIR "c:\\logs\\"
sl@0
    39
#define LOG_FILE_EXT "xml"
sl@0
    40
bool assert_failed = false;
sl@0
    41
#else
sl@0
    42
#define LOG_DIR ""
sl@0
    43
#define LOG_FILE_EXT "xml"
sl@0
    44
#define LOG_FILE "std_test_log.txt"
sl@0
    45
bool assert_failed = false;
sl@0
    46
#endif
sl@0
    47
FILE *fp;
sl@0
    48
sl@0
    49
bool gnutest = true;
sl@0
    50
sl@0
    51
# define VERIFY(fn) gnutest &= (fn)
sl@0
    52
sl@0
    53
sl@0
    54
void std_log(const char *filename,const int lineno,const char* aformat,...)
sl@0
    55
{
sl@0
    56
	if(fp==NULL)
sl@0
    57
	{
sl@0
    58
		fp = fopen(LOG_FILE,"a");
sl@0
    59
	}
sl@0
    60
	va_list va;
sl@0
    61
	va_start(va,aformat);    
sl@0
    62
    {
sl@0
    63
		fprintf(fp,"%s - [%d] : ",filename,lineno);
sl@0
    64
		vfprintf(fp,aformat,va);
sl@0
    65
		fprintf(fp,"\n");
sl@0
    66
	}
sl@0
    67
	va_end(va);
sl@0
    68
}
sl@0
    69
sl@0
    70
sl@0
    71
void init_log_file()
sl@0
    72
{
sl@0
    73
	if(fp == NULL)
sl@0
    74
	{
sl@0
    75
		fp = fopen(LOG_FILE, "a");
sl@0
    76
	}
sl@0
    77
}
sl@0
    78
sl@0
    79
void close_log_file()
sl@0
    80
{
sl@0
    81
   fclose(fp);
sl@0
    82
}
sl@0
    83
sl@0
    84
// This function is used to generate the xml file used bt ATS
sl@0
    85
void testResultXml(char *filename)
sl@0
    86
{
sl@0
    87
	char time_buf[50];
sl@0
    88
sl@0
    89
	char result[10];
sl@0
    90
sl@0
    91
	char xmlfilename[256];
sl@0
    92
sl@0
    93
	time_t t = time(NULL);
sl@0
    94
sl@0
    95
	struct tm *tm1 = localtime(&t);
sl@0
    96
sl@0
    97
	char *atsinitmsg        =   "<test-report>\n\t<test-batch>";
sl@0
    98
sl@0
    99
	char *atsbatchinit1     =   \
sl@0
   100
								"\n\t\t<batch-init>\
sl@0
   101
								\n\t\t\t<description></description>\
sl@0
   102
								\n\t\t\t<date>";
sl@0
   103
	char *atsbatchinit2 =   "</date>\
sl@0
   104
							 \n\t\t\t<factory>NA</factory>\
sl@0
   105
							 \n\t\t\t<component>\
sl@0
   106
							 \n\t\t\t\t<name>NA</name>\
sl@0
   107
							 \n\t\t\t\t<version>NA</version>\
sl@0
   108
							 \n\t\t\t</component>\
sl@0
   109
							 \n\t\t</batch-init>";
sl@0
   110
sl@0
   111
	char *atsbatchresult=   \
sl@0
   112
							"\n\t\t<batch-result>\
sl@0
   113
							\n\t\t\t<run-time>00:00:00</run-time>\
sl@0
   114
							\n\t\t</batch-result>";
sl@0
   115
sl@0
   116
	char *atsclosemsg       =   \
sl@0
   117
								"\n\t</test-batch>\
sl@0
   118
								\n</test-report>\n ";
sl@0
   119
sl@0
   120
	char *atstestinit       =       "\n\t\t<test-case time-stamp=\"00:00:00\">";
sl@0
   121
sl@0
   122
sl@0
   123
	char *atscaseinit1      =       \
sl@0
   124
									"\n\t\t\t<case-init>\
sl@0
   125
									\n\t\t\t\t<version></version>\
sl@0
   126
									\n\t\t\t\t<id>";
sl@0
   127
sl@0
   128
	char *atscaseinit2 =    "</id>\
sl@0
   129
							 \n\t\t\t\t<expected-result description=\"\">0</expected-result>\
sl@0
   130
							 \n\t\t\t</case-init>";
sl@0
   131
sl@0
   132
	char *atscaseresult1=   \
sl@0
   133
							"\n\t\t\t<case-result status=\"";
sl@0
   134
sl@0
   135
	char *atscaseresult2=   "\">\
sl@0
   136
							 \n\t\t\t\t<actual-result>0</actual-result>\
sl@0
   137
							 \n\t\t\t\t<run-time>00:00:00</run-time>\
sl@0
   138
							 \n\t\t\t</case-result>";
sl@0
   139
sl@0
   140
	char *atstestclose      =       "\n\t\t</test-case>";
sl@0
   141
sl@0
   142
	// create the xml file name
sl@0
   143
	FILE *fp_result;
sl@0
   144
	sprintf(xmlfilename, "%s%s.%s", LOG_DIR, filename, LOG_FILE_EXT);
sl@0
   145
	strftime(time_buf,50,"%c",tm1);
sl@0
   146
sl@0
   147
	if(assert_failed )
sl@0
   148
		strcpy(result,"FAILED");
sl@0
   149
	else
sl@0
   150
		strcpy(result,"PASSED");
sl@0
   151
sl@0
   152
	fp_result = fopen(xmlfilename,"w");
sl@0
   153
sl@0
   154
	if(fp_result)
sl@0
   155
	{
sl@0
   156
		fprintf(fp_result,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
sl@0
   157
				atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
sl@0
   158
				atstestclose,atsbatchresult,atsclosemsg);
sl@0
   159
sl@0
   160
		fclose(fp_result);
sl@0
   161
	}
sl@0
   162
}
sl@0
   163
sl@0
   164
#endif
sl@0
   165