os/persistentdata/loggingservices/eventlogger/test/src/t_logwrap.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2010 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32file.h>
    17 #include <bautils.h>
    18 #include "t_logutil2.h"
    19 
    20 RTest TheTest(_L("t_logwrap"));
    21 
    22 _LIT(KTestRemoteParty, "Remote Party");
    23 _LIT(KTestDirection, "Direction");
    24 const TLogDurationType KTestDurationType = 1;
    25 const TLogDuration KTestDuration = 0x1234;
    26 _LIT(KTestStatus, "Status");
    27 _LIT(KTestSubject, "Subject");
    28 _LIT(KTestNumber, "Number");
    29 const TLogContactItemId KTestContact = 0x1234;
    30 const TLogLink KTestLink = 0x1234;
    31 _LIT8(KTestData, "ABCDEFGH");
    32 
    33 /**
    34 @SYMTestCaseID          SYSLIB-LOGENG-CT-1011
    35 @SYMTestCaseDesc	    Tests for the functionality of CLogEvent class
    36 @SYMTestPriority 	    High
    37 @SYMTestActions  	    Tests for adding,changing,deleting and getting event type functions on the logevent
    38                         Check for memory,KErrNone and KErrNotSupported error flags
    39 @SYMTestExpectedResults Test must not fail
    40 @SYMREQ                 REQ0000
    41 */
    42 LOCAL_C void TestBasicL(CLogBase& aClient, TBool aClientAvailable)
    43 	{
    44 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1011 "));
    45 	CTestActive* active = new(ELeave)CTestActive();
    46 	CleanupStack::PushL(active);
    47 
    48 	CLogEvent* event = CLogEvent::NewL();
    49 	CleanupStack::PushL(event);
    50 
    51 	TTime now;
    52 	now.UniversalTime();
    53 
    54 	event->SetEventType(KLogCallEventTypeUid);
    55 
    56 	active->StartL();
    57 	aClient.AddEvent(*event, active->iStatus);
    58 	CActiveScheduler::Start();
    59 	if(aClientAvailable)
    60 		{
    61 		TEST2(active->iStatus.Int(), KErrNone);
    62 		}
    63 	else
    64 		{
    65 		TEST2(active->iStatus.Int(), KErrNotSupported);
    66 		}
    67 
    68 	if (aClientAvailable)
    69 		{
    70 		TEST(event->EventType() == KLogCallEventTypeUid);
    71 		TEST(event->Description().Length() > 0);
    72 		TEST(event->Time() >= now);
    73 		now = event->Time();
    74 		}
    75 
    76 	TLogId id = event->Id();
    77 
    78 	event->SetRemoteParty(KTestRemoteParty);
    79 	event->SetDirection(KTestDirection);
    80 	event->SetDurationType(KTestDurationType);
    81 	event->SetDuration(KTestDuration);
    82 	event->SetStatus(KTestStatus);
    83 	event->SetSubject(KTestSubject);
    84 	event->SetNumber(KTestNumber);
    85 	event->SetContact(KTestContact);
    86 	event->SetLink(KTestLink);
    87 	event->SetDataL(KTestData);
    88 
    89 	active->StartL();
    90 	aClient.ChangeEvent(*event, active->iStatus);
    91 	CActiveScheduler::Start();
    92 	if(aClientAvailable)
    93 		{
    94 		TEST2(active->iStatus.Int(), KErrNone);
    95 		}
    96 	else
    97 		{
    98 		TEST2(active->iStatus.Int(), KErrNotSupported);
    99 		}
   100 
   101 	if (aClientAvailable)
   102 		{
   103 		TEST(event->Id() == id);
   104 		TEST(event->EventType() == KLogCallEventTypeUid);
   105 		TEST(event->Description().Length() > 0);
   106 		TEST(event->Time() == now);
   107 		TEST(event->RemoteParty() == KTestRemoteParty);
   108 		TEST(event->Direction() == KTestDirection);
   109 		TEST(event->DurationType() == KTestDurationType);
   110 		TEST(event->Duration() == KTestDuration);
   111 		TEST(event->Status() == KTestStatus);
   112 		TEST(event->Subject() == KTestSubject);
   113 		TEST(event->Number() == KTestNumber);
   114 		TEST(event->Contact() == KTestContact);
   115 		TEST(event->Link() == KTestLink);
   116 		TEST(event->Data() == KTestData);
   117 		}
   118 
   119 	CleanupStack::PopAndDestroy(); // event;
   120 
   121 	event = CLogEvent::NewL();
   122 	CleanupStack::PushL(event);
   123 
   124 	event->SetId(id);
   125 
   126 	active->StartL();
   127 	aClient.GetEvent(*event, active->iStatus);
   128 	CActiveScheduler::Start();
   129 	if(aClientAvailable)
   130 		{
   131 		TEST2(active->iStatus.Int(), KErrNone);
   132 		}
   133 	else
   134 		{
   135 		TEST2(active->iStatus.Int(), KErrNotSupported);
   136 		}
   137 
   138 	if (aClientAvailable)
   139 		{
   140 		TEST(event->Id() == id);
   141 		TEST(event->EventType() == KLogCallEventTypeUid);
   142 		TEST(event->Description().Length() > 0);
   143 		TEST(event->Time() == now);
   144 		TEST(event->RemoteParty() == KTestRemoteParty);
   145 		TEST(event->Direction() == KTestDirection);
   146 		TEST(event->DurationType() == KTestDurationType);
   147 		TEST(event->Duration() == KTestDuration);
   148 		TEST(event->Status() == KTestStatus);
   149 		TEST(event->Subject() == KTestSubject);
   150 		TEST(event->Number() == KTestNumber);
   151 		TEST(event->Contact() == KTestContact);
   152 		TEST(event->Link() == KTestLink);
   153 		TEST(event->Data() == KTestData);
   154 		}
   155 
   156 	active->StartL();
   157 	aClient.DeleteEvent(id, active->iStatus);
   158 	CActiveScheduler::Start();
   159 	if(aClientAvailable)
   160 		{
   161 		TEST2(active->iStatus.Int(), KErrNone);
   162 		}
   163 	else
   164 		{
   165 		TEST2(active->iStatus.Int(), KErrNotSupported);
   166 		}
   167 
   168 	active->StartL();
   169 	aClient.GetEvent(*event, active->iStatus);
   170 	CActiveScheduler::Start();
   171 	if(aClientAvailable)
   172 		{
   173 		TEST2(active->iStatus.Int(), KErrNotFound);
   174 		}
   175 	else
   176 		{
   177 		TEST2(active->iStatus.Int(), KErrNotSupported);
   178 		}
   179 
   180 	CleanupStack::PopAndDestroy(2); // event, active
   181 	}
   182 
   183 /**
   184 @SYMTestCaseID          SYSLIB-LOGENG-CT-1012
   185 @SYMTestCaseDesc	    Test for CLogWrapper::Log(),CLogWrapper::ClientAvailable() functions
   186 @SYMTestPriority 	    High
   187 @SYMTestActions  	    Execute basics event test on a log wrapper
   188 @SYMTestExpectedResults Test must not fail
   189 @SYMREQ                 REQ0000
   190 */
   191 LOCAL_C void TestWrapperL()
   192 	{
   193 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1012 "));
   194 	CTestActive* active = new(ELeave)CTestActive();
   195 	CleanupStack::PushL(active);
   196 
   197 	CLogWrapper* wrapper = CLogWrapper::NewL(theFs);
   198 	CleanupStack::PushL(wrapper);
   199 
   200 	CLogBase& logBase = wrapper->Log();
   201 	TestBasicL(logBase, wrapper->ClientAvailable());
   202 
   203 	TBuf<KLogMaxSharedStringLength> buf;
   204 	if (wrapper->ClientAvailable())
   205 		{
   206 		CLogBase& logBase2 = wrapper->Log();
   207 		TEST2(logBase2.GetString(buf, R_LOG_DIR_IN), KErrNone);
   208 		TEST(buf.Length() > 0);
   209 		}
   210 	else
   211 		{
   212 		CLogBase& logBase3 = wrapper->Log();
   213 		TEST2(logBase3.GetString(buf, R_LOG_DIR_IN), KErrNotSupported);
   214 		TEST(buf.Length() == 0);
   215 		}
   216 
   217 	CleanupStack::PopAndDestroy(2); // wrapper, active
   218 	}
   219 
   220 /**
   221 @SYMTestCaseID          SYSLIB-LOGENG-CT-1013
   222 @SYMTestCaseDesc	    Tests for out of memory errors on CLogWrapper::NewL() function call
   223 @SYMTestPriority 	    High
   224 @SYMTestActions  	    Check for no memory error condition
   225 @SYMTestExpectedResults Test must not fail
   226 @SYMREQ                 REQ0000
   227 */
   228 LOCAL_C void TestHeapFailL()
   229 	{
   230 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1013 "));
   231 	CLogWrapper* wrapper = NULL;
   232 	
   233 #ifdef _DEBUG
   234 	TInt failCount = 0;
   235 #endif
   236 
   237 	TBool finished = EFalse;
   238 	TInt error;
   239 	
   240 	while(!finished)
   241 		{
   242 		__UHEAP_FAILNEXT(failCount++);
   243 
   244 		TRAP(error, wrapper = CLogWrapper::NewL(theFs));
   245 
   246 		__UHEAP_RESET;
   247 
   248 		if (error == KErrNone)
   249 			{
   250 			finished = ETrue;
   251 			CLogBase& logBase = wrapper->Log();
   252 			TestBasicL(logBase, wrapper->ClientAvailable());
   253 			delete wrapper;
   254 			}
   255 		else
   256 			TEST2(error, KErrNoMemory);
   257 		}
   258 	}
   259 
   260 /**
   261 @SYMTestCaseID          SYSLIB-LOGENG-CT-1014
   262 @SYMTestCaseDesc	    Tests for CLogWrapper::NewL() function 
   263 @SYMTestPriority 	    High
   264 @SYMTestActions  	    Create log wrapper on heap,if no error execute the basic event tests.
   265                         Check for general errors.
   266 @SYMTestExpectedResults Test must not fail
   267 @SYMREQ                 REQ0000
   268 */
   269 LOCAL_C void TestFileFailL()
   270 	{
   271 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1014 "));
   272 	CLogWrapper* wrapper = NULL;
   273 	
   274 	TInt failCount = 0;
   275 	TBool finished = EFalse;
   276 	TInt error;
   277 	
   278 	while(!finished)
   279 		{
   280 		TheTest.Printf(_L("%d  \r"), failCount);
   281 		__FILE_FAILNEXT(KErrNoMemory, failCount++);
   282 
   283 		TRAP(error, wrapper = CLogWrapper::NewL(theFs));
   284 
   285 		__FILE_RESET;
   286 
   287 		if (error == KErrNone)
   288 			{
   289 			finished = ETrue;
   290 			CLogBase& logBase = wrapper->Log();
   291 			TestBasicL(logBase, wrapper->ClientAvailable());
   292 			delete wrapper;
   293 			}
   294 		else
   295 			{
   296 			TEST2(error, KErrNoMemory);
   297 			}
   298 		}
   299 	TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
   300 	}
   301 
   302 /**
   303 @SYMTestCaseID          SYSLIB-LOGENG-CT-1015
   304 @SYMTestCaseDesc	    Tests for INC047632
   305 @SYMTestPriority 	    High
   306 @SYMTestActions  	    This test uses a stored copy of a corrupt database which is copied to z:\system\data.
   307 						When this database ia accessed open returns an error KErrEof.
   308 @SYMTestExpectedResults Test must not fail
   309 @SYMREQ                 REQ0000
   310 */
   311 LOCAL_C void Test4INC047632L()
   312 	{
   313 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1015 "));
   314 #ifdef _DEBUG	
   315 	TestUtils::CopyCorruptDbL();
   316 
   317 	// run basic test
   318 	CLogWrapper* wrapper = NULL;
   319 	
   320 	TInt error = KErrNone;
   321 	TRAP(error, wrapper = CLogWrapper::NewL(theFs));
   322 
   323 	if (error == KErrNone)
   324 		{
   325 		CLogBase& logBase = wrapper->Log();
   326 		TestBasicL(logBase, wrapper->ClientAvailable());
   327 		delete wrapper;
   328 		}
   329 #else
   330 	RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n"));
   331 #endif//_DEBUG
   332 	}
   333 /**
   334 @SYMTestCaseID          SYSLIB-LOGENG-CT-4001
   335 @SYMTestCaseDesc	    Tests for INC114909
   336 @SYMTestPriority 	    High
   337 @SYMTestActions  	    This test uses a stored copy of a corrupt damaged database which is 
   338 						copied to z:\system\data.
   339 						When an attempt is made to open the database the fault should be 
   340 						recognised and the database deleted.
   341 @SYMTestExpectedResults Test must not fail
   342 @SYMDEF                 INC114909
   343 */
   344 LOCAL_C void Test5INC114909L()
   345 	{
   346 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-4001 "));
   347 #ifdef _DEBUG	
   348  	// Copy over the damaged database to be used.
   349 	TestUtils::CopyCorruptDamagedDbL();
   350  
   351 	// run basic test
   352 	CLogWrapper* wrapper = NULL;	
   353 	TInt error = KErrNone;
   354 	TRAP(error, wrapper = CLogWrapper::NewL(theFs));
   355 	delete wrapper;
   356 	
   357 	// Without the code for this defect the error here will be KErrCorrupt.
   358 	// and the log server will continually try to restart and be brought down
   359 	// with KErrCorrupt 
   360 	// With the fix the error with the database is detected on opening the database 
   361 	// and the  database file is deleted and re-created.
   362  
   363 	TEST(error == KErrNone);
   364 	
   365 	// Perform an extra check that the log server has not been brought down
   366 	// as is the case without the defect fix.
   367 	RLogTestSession theLogServ;
   368 	error = theLogServ.Connect();
   369  	TEST(error == KErrNone);
   370 #else
   371 	RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n"));
   372 #endif//_DEBUG
   373 	}
   374 
   375 void doTestsL()
   376 	{
   377 	TestUtils::Initialize(_L("t_logwrap"));
   378 
   379 	TheTest.Start(_L("Wrapper"));
   380 	TestWrapperL();
   381 	theLog.Write(_L8("Test 1 OK\n"));
   382 
   383 	TheTest.Next(_L("Heap Failure"));
   384 	TestHeapFailL();
   385 	theLog.Write(_L8("Test 2 OK\n"));
   386 
   387 	TheTest.Next(_L("File Failure"));
   388 	TestFileFailL();
   389 	theLog.Write(_L8("Test 3 OK\n"));
   390 
   391 	TheTest.Next(_L("Test4 for INC047632 - corrupt Logdbu.dat returns KErrEoF"));
   392 	Test4INC047632L();
   393 	theLog.Write(_L8("Test 4 for INC047632 OK\n"));
   394 	
   395 	TheTest.Next(_L("Test5 for INC114909 - test damaged Logdbu.dat is dealt with correctly "));
   396 	Test5INC114909L();
   397 	theLog.Write(_L8("Test 5 for INC114909 OK\n"));
   398 	}