Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Client / server logging for Test Framework
15 // NOTE : does NOT include secure API changes in EKA2
20 // Test system includes
21 #include <testframework.h>
23 // do not export if Unit Testing
24 #if defined (__TSU_TESTFRAMEWORK__)
31 * HTML font formatting strings
36 _LIT(KResultPass, "<font size=4 color=00AF00>");
37 _LIT(KResultFail, "<font size=4 color=FF0000>");
38 _LIT(KResultInconclusive, "<font size=4 color=0000FF>");
39 _LIT(KResultUndefined, "<font size=4 color=FF00FF>");
40 _LIT(KResultEnd, "</font>");
41 _LIT(KResultNonHtml, "");
43 _LIT(KResultKnownFailure, "<font size=4 color=008080>"); //A new TVerdict for a known failed test
45 // logging macro used only for verdicts - not for external use
46 #define VER_PRINTF(r1, r2, r3) LogExtra(__FILE8__, __LINE__, ESevrVer, _L("%S%S%S\n"), (r1), (r2), (r3))
50 * Static constructor for CLog.
54 * The constructed CLog
59 EXPORT_C CLog* CLog::NewL()
61 CLog* self = new(ELeave) CLog;
68 * Static NewLC constructor for CLog.
72 * The constructed CLog
77 EXPORT_C CLog* CLog::NewLC()
79 CLog* self = new(ELeave) CLog;
80 CleanupStack::PushL(self);
87 * Second-phase constructor for CLog.
92 EXPORT_C void CLog::Construct()
94 iLogStatus = 0; // no outputs enabled yet
96 //Do we need to put information about source file & #line?
98 iLogFlags = ELogPutSrcInfo | ELogHtmlMode;
103 * Destructor for CLog.
108 EXPORT_C CLog::~CLog()
110 // tell server to close logs here
111 iClientSession.Close();
116 * Open a new test log.
118 * @param "const TDesC& aLogName"
119 * Log file or console name
121 * @param "TInt aLogMode"
122 * Log modes (a bitmask of TTestFrameworkLogMode).
127 EXPORT_C void CLog::OpenLogFileL(const TDesC& aLogName, TInt aLogMode)
129 User::LeaveIfError(iClientSession.Connect());
131 iClientSession.OpenLog(aLogName, aLogMode);
132 // get and store the log status - this will determine whether we
133 // e.g. do any formatting for file output
134 iLogStatus = iClientSession.LogStatus();
139 * Open an existing test log.
144 EXPORT_C void CLog::OpenLogFileL()
146 User::LeaveIfError(iClientSession.Connect());
147 iLogStatus = iClientSession.LogStatus();
152 * Set put source info (i.e. traceable logging).
154 * @param "TBool aPutSrcInfo"
155 * Put source info on or off.
160 EXPORT_C void CLog::SetPutSrcInfo(TBool aPutSrcInfo)
163 iLogFlags |= ELogPutSrcInfo;
165 iLogFlags &= ~ELogPutSrcInfo;
170 * Set HTML logging mode.
172 * @param "TBool aArg"
173 * HTML mode on or off.
178 EXPORT_C void CLog::SetHtmlLogMode(TBool aArg)
181 iLogFlags |= ELogHtmlMode;
183 iLogFlags &= ~ELogHtmlMode;
188 * Get HTML logging mode.
191 * HTML mode on or off.
196 EXPORT_C TBool CLog::HtmlLogMode() const
198 return ((iLogFlags & ELogHtmlMode) != 0);
204 * General logging function.
206 * @param "TRefByValue<const TDesC16> aFmt"
207 * Printf-style format.
210 * Variable print parameters
215 EXPORT_C void CLog::Log(TRefByValue<const TDesC16> aFmt, ...)
218 VA_START(aList, aFmt);
220 TIntegrationTestLog16Overflow overflow16;
222 // decode formatted data for display on console
223 TBuf<KMaxLogLineLength> lineBuf;
225 lineBuf.AppendFormatList(aFmt, aList, &overflow16);
227 // write to the console
228 if(iLogStatus & ELogConsoleFull)
229 iClientSession.WriteLog(lineBuf, ELogToConsole);
232 WriteFormat(_L("%S\n"), &lineBuf);
239 * General logging function with severity.
241 * @param "TInt aSeverity"
242 * Severity level required to log
244 * @param "TRefByValue<const TDesC16> aFmt"
245 * Printf-style format.
248 * Variable print parameters
253 EXPORT_C void CLog::Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...)
256 VA_START(aList, aFmt);
258 if(LogSeverity::IsActive(aSeverity, Severity()))
268 * General logging function.
270 * @param "TRefByValue<const TDesC16> aFmt"
271 * Printf-style format.
273 * @param "VA_LIST aList"
274 * Variable print parameters
279 EXPORT_C void CLog::Log(TRefByValue<const TDesC16> aFmt, VA_LIST aList)
281 // decode formatted data for display on console
282 TBuf<KMaxLogLineLength> lineBuf;
283 TIntegrationTestLog16Overflow overflow16;
286 lineBuf.AppendFormatList(aFmt, aList, &overflow16);
289 WriteFormat(_L("%S\n"),&lineBuf);
291 // write to the console
292 if(iLogStatus & ELogConsoleFull)
293 iClientSession.WriteLog(lineBuf, ELogToConsole);
299 * Traceable logging function
301 * Should be used for macros only
303 * @param "const TText8* aFile"
304 * Source code file name
306 * @param "TInt aLine"
309 * @param "TInt aSeverity"
310 * Severity level required to log
312 * @param "TRefByValue<const TDesC16> aFmt"
313 * Printf-style format.
315 * @param "VA_LIST aList"
316 * Variable print parameters
321 #ifdef EXCLUDE_FOR_UNITTEST
322 EXPORT_C void CLog::LogExtra(const TText8* /*aFile*/, TInt /*aLine*/, TInt /*aSeverity*/,
323 TRefByValue<const TDesC16> /*aFmt*/, VA_LIST /*aList*/)
327 EXPORT_C void CLog::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
328 TRefByValue<const TDesC16> aFmt, VA_LIST aList)
330 if(LogSeverity::IsActive(aSeverity, Severity()))
333 TIntegrationTestLog16Overflow overflow16;
335 // decode formatted data for display on console
336 TBuf<KMaxLogLineLength> lineBuf;
339 lineBuf.AppendFormatList(aFmt, aList, &overflow16);
341 // write to the console
342 if(iLogStatus & ELogConsoleFull)
343 WriteLogConsole(lineBuf);
364 // Do we need to put information about source file & #line?
365 if(iLogFlags & ELogPutSrcInfo)
366 { // Braces used to scope lifetime of TBuf objects
367 TPtrC8 fileName8(aFile);
369 TParse printFileName;
370 fileName.Copy(fileName8); // TText8->TBuf16
371 // We don't need full file name.
372 printFileName.Set(fileName, NULL, NULL) ;
373 fileName.Copy(printFileName.NameAndExt()) ;
375 WriteFormat(_L("%S\t%S\t%d\t%S\n"), &charSevr, &fileName, aLine, &lineBuf);
380 WriteFormat(_L("%S\t%S\n"), &charSevr, &lineBuf);
384 #endif // EXCLUDE_FOR_UNITTEST
388 * Traceable logging function with variable param list.
390 * Should be used for macros only
392 * @param "const TText8* aFile"
393 * Source code file name
395 * @param "TInt aLine"
398 * @param "TInt aSeverity"
399 * Severity level required to log
401 * @param "TRefByValue<const TDesC16> aFmt"
402 * Printf-style format.
405 * Variable print parameters
410 EXPORT_C void CLog::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
411 TRefByValue<const TDesC16> aFmt,...)
414 VA_START(aList, aFmt);
415 LogExtra(aFile, aLine, aSeverity, aFmt, aList);
422 * Write a test result highlighted to the log.
424 * @param "TVerdict aVerdict"
427 * @param "TRefByValue<const TDesC16> aFmt"
428 * Printf-style format.
431 * Variable print parameters
436 EXPORT_C void CLog::LogResult(TVerdict aVerdict, TRefByValue<const TDesC16> aFmt, ...)
439 VA_START(aList, aFmt);
441 TIntegrationTestLog16Overflow iOverflow16;
443 // decode formatted data for display on console
444 TBuf <KMaxLogLineLength> lineBuf;
445 lineBuf.AppendFormatList(aFmt, aList, &iOverflow16);
447 // write to the console
448 iClientSession.WriteLog(lineBuf, ELogToConsole);
451 if(iLogFlags & ELogHtmlMode)
456 VER_PRINTF(&KResultPass(), &lineBuf, &KResultEnd());
459 VER_PRINTF(&KResultFail(), &lineBuf, &KResultEnd());
462 case ETestSuiteError:
464 VER_PRINTF(&KResultInconclusive(), &lineBuf, &KResultEnd());
466 case EKnownFailure: //A new TVerdict for a known failed test
467 VER_PRINTF(&KResultKnownFailure(), &lineBuf, &KResultEnd());
470 default: // undefined
471 VER_PRINTF(&KResultUndefined(), &lineBuf, &KResultEnd());
477 VER_PRINTF(&KResultNonHtml(), &lineBuf, &KResultNonHtml());
484 * Make a readable string out of an EPOC error code.
486 * @param "TInt aError"
490 * The error code as a readable string
495 EXPORT_C TPtrC CLog::EpocErrorToText(TInt aError)
500 return _L("KErrNone");
502 return _L("KErrNotFound");
504 return _L("KErrGeneral");
506 return _L("KErrCancel");
508 return _L("KErrNoMemory");
509 case KErrNotSupported:
510 return _L("KErrNotSupported");
512 return _L("KErrArgument");
513 case KErrTotalLossOfPrecision:
514 return _L("KErrTotalLossOfPrecision");
516 return _L("KErrBadHandle");
518 return _L("KErrOverflow");
520 return _L("KErrUnderflow");
521 case KErrAlreadyExists:
522 return _L("KErrAlreadyExists");
523 case KErrPathNotFound:
524 return _L("KErrPathNotFound");
526 return _L("KErrDied");
528 return _L("KErrInUse");
529 case KErrServerTerminated:
530 return _L("KErrServerTerminated");
532 return _L("KErrServerBusy");
534 return _L("KErrCompletion");
536 return _L("KErrNotReady");
538 return _L("KErrUnknown");
540 return _L("KErrCorrupt");
541 case KErrAccessDenied:
542 return _L("KErrAccessDenied");
544 return _L("KErrLocked");
546 return _L("KErrWrite");
548 return _L("KErrDisMounted");
550 return _L("KErrEof");
552 return _L("KErrDiskFull");
554 return _L("KErrBadDriver");
556 return _L("KErrBadName");
557 case KErrCommsLineFail:
558 return _L("KErrCommsLineFail");
560 return _L("KErrCommsFrame");
561 case KErrCommsOverrun:
562 return _L("KErrCommsOverrun");
563 case KErrCommsParity:
564 return _L("KErrCommsParity");
566 return _L("KErrTimedOut");
567 case KErrCouldNotConnect:
568 return _L("KErrCouldNotConnect");
569 case KErrCouldNotDisconnect:
570 return _L("KErrCouldNotDisconnect");
571 case KErrDisconnected:
572 return _L("KErrDisconnected");
573 case KErrBadLibraryEntryPoint:
574 return _L("KErrBadLibraryEntryPoint");
575 case KErrBadDescriptor:
576 return _L("KErrBadDescriptor");
578 return _L("KErrAbort");
580 return _L("KErrTooBig");
582 return _L("Unknown");
589 * Make a readable string out of a test verdict.
591 * @param "TVerdict aTestVerdict"
595 * The test verdict as a readable string
600 EXPORT_C TPtrC CLog::TestResultText(TVerdict aTestVerdict)
602 switch (aTestVerdict)
609 return _L("INCONCLUSIVE");
610 case ETestSuiteError:
611 return _L("TEST_SUITE_ERROR");
614 case EKnownFailure: //A new TVerdict for a known failed test
615 return _L("KNOWN_Failure"); //using lower case in 'Failure' can remove the confusion on 'savres2html.bat' making test summary
617 return _L("undefined");
624 * Write blank lines to the log.
626 * @param "TInt number"
627 * Number of lines to write
632 EXPORT_C void CLog::LogBlankLine(TInt aNumber)
634 for (TInt i = 0; i < aNumber; i++)
645 EXPORT_C void CLog::CloseLogFile()
648 WriteFormat(_L("</end>"));
650 iClientSession.CloseLog();
657 * @param "TInt aSeverity"
658 * The required severity
663 EXPORT_C void CLog::SetSeverity(TInt aSeverity)
665 iSeverity = aSeverity;
673 * The current severity
678 EXPORT_C TInt CLog::Severity() const
685 * Get log status from this logger's client session.
688 * The current log status (a bitmask of TTestFrameworkLogMode)
693 EXPORT_C TInt CLog::LogStatus()
695 return iClientSession.LogStatus();
701 * Write formatted output to the log.
703 * @param "TRefByValue<const TDesC16> aFmt"
704 * Printf-style format.
707 * Variable print parameters
712 EXPORT_C void CLog::WriteFormat(TRefByValue<const TDesC16> aFmt, ...)
715 // file / port logging not enabled
716 if (!(iLogStatus & ELogToFile))
717 if (!(iLogStatus & ELogToPort))
721 VA_START(aList, aFmt);
723 TIntegrationTestLog16Overflow overflow16;
725 TUint16* dataBufPtr = (TUint16*)(iDataBuf.Ptr());
726 TPtr16 lineBuf(dataBufPtr, 0, KMaxLogLineLength);
727 lineBuf.Fill('\0', KMaxLogLineLength);
729 // get the current time and date
732 TDateTime dateTime = now.DateTime() ;
734 // add the current time and date
735 lineBuf.Format(_L("%02d/%02d/%04d\t%02d:%02d:%02d:%03d\t"),
742 (dateTime.MicroSecond() / 1000));
744 // followed by the formatted data
745 lineBuf.AppendFormatList(aFmt, aList, &overflow16);
748 // send one message - the server will write to both if enabled
750 if (iLogStatus & ELogToFile)
751 theStatus |= ELogToFile;
752 if (iLogStatus & ELogToPort)
753 theStatus |= ELogToPort;
755 iClientSession.WriteLog(lineBuf, theStatus);
760 * Write output to the console with date/time stamp
762 * @param "const TDesC& aBuf"
768 EXPORT_C void CLog::WriteLogConsole(const TDesC& aBuf)
771 // console logging not enabled
772 if (!(iLogStatus & ELogConsoleFull))
775 // decode formatted data for display on console
776 TUint16* dataBufPtr = (TUint16*)(iDataBuf.Ptr());
777 TPtr16 lineBuf(dataBufPtr, 0, KMaxLogLineLength);
778 lineBuf.Fill('\0', KMaxLogLineLength);
780 // get the current time and date
783 TDateTime dateTime = now.DateTime() ;
785 // add the current time and date
786 lineBuf.Format(_L("%02d/%02d/%04d\t%02d:%02d:%02d:%03d\t%S"),
793 (dateTime.MicroSecond() / 1000),
796 iClientSession.WriteLog(lineBuf, ELogToConsole);
801 * This function is used to avoid a panic if format text overflows
802 * the internal buffer.
805 * the overflowing string
810 void TIntegrationTestLog16Overflow::Overflow(TDes16& aDes)
812 aDes = _L("*** ERROR : line too long, cannot log ***");
817 * Check a severity value is valid.
820 * The value to check.
823 * Valid (ETrue) or not (EFalse).
828 EXPORT_C TBool LogSeverity::IsValid(TInt aSev)
830 return ((aSev & ~(ESevrAll)) == 0);
835 * Check a severity value is active
837 * @param "TInt aThisSev"
838 * The value to check.
840 * @param "TInt aGlobalSev"
841 * The value to check against (e.g. global severity value of a log).
844 * Active (ETrue) or not (EFalse).
849 EXPORT_C TBool LogSeverity::IsActive(TInt aThisSev, TInt aGlobalSev)
851 return ((aThisSev & aGlobalSev) != 0);