Update contrib.
1 // Copyright (c) 2005-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.
22 #include <Test\RFileLogger.h>
24 /********************************************************************************
25 * Externally available test functions
26 * TInt CreateTextTest(void)
27 * TInt CreateXMLTest(void)
28 * TInt AppendXMLTest(void)
29 ********************************************************************************/
31 static TInt WriteTextTest(RFileFlogger& logger);
32 static TInt LogLevelTest(RFileFlogger& logger);
33 static TInt LogAdditionalFieldsTest(RFileFlogger& logger);
35 TInt CreateTextTest(void)
41 err = logger.Connect( );
42 err = logger.CreateLog( _L("C:\\logs\\logger.txt"), RFileFlogger::ELogModeOverWrite );
44 WriteTextTest( logger );
45 LogLevelTest( logger );
46 LogAdditionalFieldsTest( logger );
53 TInt CreateXMLTest(void)
59 err = logger.Connect( );
60 err = logger.CreateLog( _L("C:\\logger.xml"), RFileFlogger::ELogModeOverWrite );
62 WriteTextTest( logger );
63 LogLevelTest( logger );
64 LogAdditionalFieldsTest( logger );
71 TInt AppendXMLTest(void)
77 err = logger.Connect( );
78 err = logger.CreateLog( _L("C:\\logger.xml"), RFileFlogger::ELogModeAppend );
80 WriteTextTest( logger );
87 TInt WriteTextTest(RFileFlogger& logger)
91 logger.Log( ((TText8*)(__FILE__)), __LINE__, RFileFlogger::ESevrWarn, _L("This is a warning.") );
96 TInt LogLevelTest(RFileFlogger& logger)
100 logger.SetLogLevel( RFileFlogger::ESevrAll );
101 logger.Log( ((TText8*)(__FILE__)), __LINE__, RFileFlogger::ESevrInfo, _L("This is the first info log.") );
102 logger.SetLogLevel( RFileFlogger::ESevrErr );
103 logger.Log( ((TText8*)(__FILE__)), __LINE__, RFileFlogger::ESevrInfo, _L("This is the second info log.") );
104 logger.SetLogLevel( RFileFlogger::ESevrAll );
105 logger.Log( ((TText8*)(__FILE__)), __LINE__, RFileFlogger::ESevrInfo, _L("This is the third info log.") );
110 TInt LogAdditionalFieldsTest(RFileFlogger& logger)
114 TExtraLogField fields[2];
116 fields[0].iLogFieldName = _L("Animal");
117 fields[0].iLogFieldValue = _L("Rabbit");
118 fields[1].iLogFieldName = _L("City");
119 fields[1].iLogFieldValue = _L("London");
121 logger.Log( ((TText8*)(__FILE__)), __LINE__, RFileFlogger::ESevrInfo, 2, fields, _L("This is %d fields."), 2 );