os/persistentdata/loggingservices/eventlogger/test/src/t_logcompat.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2009-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 // t_logcompat.cpp - verification that old databases without SimId column in Event table can be opened
    15 //                   and events added, viewed, etc.  
    16 // 
    17 //
    18 #include <s32file.h>
    19 #include <s32mem.h>
    20 #include <e32math.h>
    21 #include <bautils.h>
    22 #include <logview.h>
    23 #include "t_logutil2.h"
    24 
    25 RTest TheTest(_L("t_logcompat"));
    26 
    27 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM	
    28 
    29 // These values are stored in "oldLogdb.dat"
    30 _LIT(KEventNum1, "00000");
    31 _LIT(KEventNum2, "11111");
    32 _LIT(KEventNum3, "22222");
    33 _LIT(KEventNum4, "012345678901234567");
    34 const TLogId KEventId1 = 0;
    35 const TLogId KEventId2 = 1;
    36 const TLogId KEventId3 = 2;
    37 const TLogId KEventId4 = 3;
    38 
    39 //New events, added by this test
    40 _LIT(KEventNum5, "123411119");
    41 _LIT(KEventNum6, "999911221");
    42 TLogId TheEventId5 = KLogNullId;
    43 TLogId TheEventId6 = KLogNullId;
    44 
    45 //Stored events properties
    46 _LIT(KTestEventDesc1, "Event Type Description");
    47 _LIT(KTestRemoteParty1, "Remote Party");
    48 _LIT(KTestDirection1, "Direction");
    49 _LIT(KTestStatus1, "Status");
    50 _LIT(KTestSubject1, "Subject");
    51 const TUid KTestEventUid = {0x10005393};
    52 const TLogDurationType KTestDurationType1 = 1;
    53 const TLogDuration KTestDuration1 = 0x1234;
    54 const TLogContactItemId KTestContact1 = 0x1234;
    55 const TLogLink KTestLink1 = 0x1234;
    56 _LIT8(KTestData1, "ABCDEFGH");
    57 const TLogFlags KTestFlags1 = 0x5;
    58 
    59 //Sim Ids used by the test
    60 const TSimId KSimId1 = 1;
    61 const TSimId KSimId3 = 3900100200U;
    62 
    63 void CheckEventProperties(CLogEvent& aEvent, TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId)
    64 	{
    65 	TEST(aEvent.Id() == aEventId);
    66 	TEST(aEvent.Time() > TTime(0));
    67 	TEST(aEvent.Description() == KTestEventDesc1);
    68 	TEST(aEvent.EventType() == KTestEventUid);
    69 	TEST(aEvent.RemoteParty() == KTestRemoteParty1);
    70 	TEST(aEvent.Direction() == KTestDirection1);
    71 	TEST(aEvent.DurationType() == KTestDurationType1);
    72 	TEST(aEvent.Duration() == KTestDuration1);
    73 	TEST(aEvent.Status() == KTestStatus1);
    74 	TEST(aEvent.Subject() == KTestSubject1);
    75 	TEST(aEvent.Contact() == KTestContact1);
    76 	TEST(aEvent.Link() == KTestLink1);
    77 	TEST(aEvent.Data() == KTestData1);
    78 	TEST(aEvent.Flags() == KTestFlags1);
    79 	TEST(aEvent.Number() == aEventNumber);
    80 	TEST(aEvent.SimId() == aSimId);
    81 	TPtrC eventStatus = aEvent.Subject();
    82 	TPtrC eventNumber = aEvent.Number();
    83 	TheTest.Printf(_L("Id:%d No:%S Sub:%S Contact Id:0x%x SimId:%u\n"), aEvent.Id(), &eventNumber, &eventStatus, aEvent.Contact(), aEvent.SimId());
    84 	}
    85 
    86 void DoGetEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
    87 	{
    88 	CLogEvent* event = CLogEvent::NewL();
    89 	CleanupStack::PushL(event);
    90 
    91 	// set the id of the event to be fetched
    92 	event->SetId(aEventId);
    93 
    94 	aActive.StartL();
    95 	aLogClient.GetEvent(*event, aActive.iStatus);
    96 	CActiveScheduler::Start();
    97 	TEST2(aActive.iStatus.Int(), KErrNone);
    98 	
    99 	CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
   100 	
   101 	CleanupStack::PopAndDestroy(event);
   102 	}
   103 
   104 void DoChangeEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
   105 	{
   106 	CLogEvent* event = CLogEvent::NewL();
   107 	CleanupStack::PushL(event);
   108 
   109 	//Retrieve the event.
   110 	event->SetId(aEventId);
   111 	aActive.StartL();
   112 	aLogClient.GetEvent(*event, aActive.iStatus);
   113 	CActiveScheduler::Start();
   114 	TEST2(aActive.iStatus.Int(), KErrNone);
   115 	CheckEventProperties(*event, aEventId, aEventNumber, KLogNullSimId);
   116 	//Change event's SimId.
   117 	event->SetSimId(aSimId);
   118 	aActive.StartL();
   119 	aLogClient.ChangeEvent(*event, aActive.iStatus);
   120 	CActiveScheduler::Start();
   121 	TEST2(aActive.iStatus.Int(), KErrNone);
   122 	CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
   123 	
   124 	CleanupStack::PopAndDestroy(event);
   125 	}
   126 
   127 TInt DoAddEventTestL(const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
   128 	{
   129 	CLogEvent* event = CLogEvent::NewL();
   130 	CleanupStack::PushL(event);
   131 
   132 	TTime now;
   133 	now.UniversalTime();
   134 	
   135 	event->SetEventType(KTestEventUid);
   136 	event->SetRemoteParty(KTestRemoteParty1);
   137 	event->SetDirection(KTestDirection1);
   138 	event->SetDurationType(KTestDurationType1);
   139 	event->SetDuration(KTestDuration1);
   140 	event->SetStatus(KTestStatus1);
   141 	event->SetSubject(KTestSubject1);
   142 	event->SetNumber(aEventNumber);
   143 	event->SetContact(KTestContact1);
   144 	event->SetLink(KTestLink1);
   145 	event->SetDataL(KTestData1);
   146 	event->SetFlags(KTestFlags1);
   147 	if(aSimId != KLogNullSimId)
   148 		{
   149 		event->SetSimId(aSimId);
   150 		}
   151 
   152 	aActive.StartL();
   153 	aLogClient.AddEvent(*event, aActive.iStatus);
   154 	CActiveScheduler::Start();
   155 	TEST(!aActive.IsActive());
   156 	TEST2(aActive.iStatus.Int(), KErrNone);
   157 	
   158 	TLogId eventId = event->Id();
   159 	TEST(eventId != KLogNullId);
   160 	TEST(event->Time() >= now);
   161 	
   162 	CleanupStack::PopAndDestroy(event);
   163 	return eventId;
   164 	}
   165 
   166 /**
   167 @SYMTestCaseID			PDS-LOGENG-UT-4018
   168 @SYMTestCaseDesc		Retrieving events from a database without "SimId" column in the "Event" table.
   169 						The test uses the OldLogdbu.dat database, created before introducing the new 
   170 						"SimId" column. The test checks that the events in the database can be accessed and 
   171 						retrieved. The event's SimID property value should be 0.
   172 @SYMTestActions			Retrieving events from a database without "SimId" column in the "Event" table.
   173 @SYMTestExpectedResults Test must not fail
   174 @SYMTestPriority		Medium
   175 @SYMREQ					REQ12746
   176 */
   177 void GetEventTestL()
   178 	{
   179 	CLogClient* client = CLogClient::NewL(theFs);
   180 	CleanupStack::PushL(client);
   181 	
   182 	CTestActive* active = new(ELeave)CTestActive();
   183 	CleanupStack::PushL(active);
   184 
   185 	DoGetEventTestL(KEventId1, KEventNum1, KLogNullSimId, *active, *client);
   186 	DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
   187 	DoGetEventTestL(KEventId3, KEventNum3, KLogNullSimId, *active, *client);
   188 	DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
   189 
   190 	CleanupStack::PopAndDestroy(active);
   191 	CleanupStack::PopAndDestroy(client);
   192 	}
   193 
   194 /**
   195 @SYMTestCaseID			PDS-LOGENG-UT-4019
   196 @SYMTestCaseDesc		Changing events from a database without "SimId" column in the "Event" table.
   197 						The test uses the OldLogdbu.dat database, created before introducing the new 
   198 						"SimId" column. The test checks that the events in the database can be accessed and 
   199 						retrieved. After that the test changes some of the events, updating events properties
   200 						with a non-zero SimId. The test checks that the updated event really got its SimId 
   201 						property value changed.
   202 @SYMTestActions			Changing events from a database without "SimId" column in the "Event" table.
   203 @SYMTestExpectedResults Test must not fail
   204 @SYMTestPriority		Medium
   205 @SYMREQ					REQ12746
   206 */
   207 void ChangeEventTestL()
   208 	{
   209 	CLogClient* client = CLogClient::NewL(theFs);
   210 	CleanupStack::PushL(client);
   211 	
   212 	CTestActive* active = new(ELeave)CTestActive();
   213 	CleanupStack::PushL(active);
   214 	
   215 	//Change two of the events
   216 	DoChangeEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);
   217 	DoChangeEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);
   218 	//Check that the other two events are unchanged
   219 	DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
   220 	DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
   221 	
   222 	CleanupStack::PopAndDestroy(active);
   223 	CleanupStack::PopAndDestroy(client);
   224 	}
   225 
   226 /**
   227 @SYMTestCaseID			PDS-LOGENG-UT-4020
   228 @SYMTestCaseDesc		Add events to a database without "SimId" column in the "Event" table.
   229 						The test uses the OldLogdbu.dat database, created before introducing the new 
   230 						"SimId" column. The test adds two events to the database, then checks that the
   231 						events can be accessed and retrieved.
   232 @SYMTestActions			Add events to a database without "SimId" column in the "Event" table.
   233 @SYMTestExpectedResults Test must not fail
   234 @SYMTestPriority		Medium
   235 @SYMREQ					REQ12746
   236 */
   237 void AddEventTestL()
   238 	{
   239 	CLogClient* client = CLogClient::NewL(theFs);
   240 	CleanupStack::PushL(client);
   241 	
   242 	CTestActive* active = new(ELeave)CTestActive();
   243 	CleanupStack::PushL(active);
   244 	
   245 	//Add an event without SimId
   246 	TheEventId5 = DoAddEventTestL(KEventNum5, KLogNullSimId, *active, *client);
   247 	//Add an event with SimId
   248 	TheEventId6 = DoAddEventTestL(KEventNum6, KSimId1, *active, *client);
   249 	//Check that the other 4 events are unchanged
   250 	DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL() 
   251 	DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
   252 	DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL()
   253 	DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
   254 	//Check the first added event
   255 	DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client);
   256 	//Check the second added event
   257 	DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client);
   258 	
   259 	CleanupStack::PopAndDestroy(active);
   260 	CleanupStack::PopAndDestroy(client);
   261 	}
   262 
   263 /**
   264 @SYMTestCaseID			PDS-LOGENG-UT-4021
   265 @SYMTestCaseDesc		Delete events from a database without "SimId" column in the "Event" table.
   266 						The test uses the OldLogdbu.dat database, created before introducing the new 
   267 						"SimId" column. The test deletes an event from the database and checks then that
   268 						the other events are intact, the deleted event is really deleted.
   269 @SYMTestActions			Delete events from a database without "SimId" column in the "Event" table.
   270 @SYMTestExpectedResults Test must not fail
   271 @SYMTestPriority		Medium
   272 @SYMREQ					REQ12746
   273 */
   274 void DeleteEventTestL()
   275 	{
   276 	CLogClient* client = CLogClient::NewL(theFs);
   277 	CleanupStack::PushL(client);
   278 	
   279 	CTestActive* active = new(ELeave)CTestActive();
   280 	CleanupStack::PushL(active);
   281 
   282 	//Delete an event
   283 	active->StartL();
   284 	client->DeleteEvent(KEventId2, active->iStatus);
   285 	CActiveScheduler::Start();
   286 	TEST(!active->IsActive());
   287 	TEST2(active->iStatus.Int(), KErrNone);
   288 	
   289 	//Check that the other 5 events are unchanged
   290 	DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL()
   291 	DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL()
   292 	DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
   293 	DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client);
   294 	DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client);
   295 	
   296 	//Check that event 2 was really deleted
   297 	CLogEvent* event = CLogEvent::NewL();
   298 	CleanupStack::PushL(event);
   299 	event->SetId(KEventId2);
   300 	active->StartL();
   301 	client->GetEvent(*event, active->iStatus);
   302 	CActiveScheduler::Start();
   303 	TEST2(active->iStatus.Int(), KErrNotFound);
   304 	
   305 	CleanupStack::PopAndDestroy(event);
   306 	CleanupStack::PopAndDestroy(active);
   307 	CleanupStack::PopAndDestroy(client);
   308 	}
   309 
   310 /**
   311 @SYMTestCaseID			PDS-LOGENG-UT-4022
   312 @SYMTestCaseDesc		Event View test with an old database (without SimId).
   313 						The test uses the OldLogdbu.dat database, created before introducing the new 
   314 						"SimId" column. The test creates an event view and iterates over the events in the view.
   315 						The test checks that events without SimId property set can be retrieved.
   316 @SYMTestActions			Event View test with an old database (without SimId).
   317 @SYMTestExpectedResults Test must not fail
   318 @SYMTestPriority		Medium
   319 @SYMREQ					REQ12747
   320 */
   321 void EventViewTestL()
   322 	{
   323 	CLogClient* client = CLogClient::NewL(theFs);
   324 	CleanupStack::PushL(client);
   325 	
   326 	CTestActive* active = new(ELeave)CTestActive();
   327 	CleanupStack::PushL(active);
   328 
   329 	CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
   330 	observer->SetActive();
   331 	
   332 	CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
   333 	CleanupStack::PushL(view);
   334 
   335 	CLogFilter* filter = CLogFilter::NewL();
   336 	CleanupStack::PushL(filter);
   337 	TBool res = view->SetFilterL(*filter, active->iStatus);
   338 	TEST(res);
   339 	
   340 	//SimId:                      KSimId1    KSimId3    KLogNullSimId  KLogNullSimId   KSimId1 
   341 	const TLogId KLogEventIds[] ={KEventId1, KEventId3, KEventId4,  TheEventId5, TheEventId6};
   342 	TBool logEventVisited[] =    {EFalse,    EFalse,    EFalse,     EFalse,      EFalse};
   343 	const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); 
   344 
   345 	do	{
   346 		active->StartL();
   347 		CActiveScheduler::Start();
   348 		TEST2(active->iStatus.Int(), KErrNone);
   349 
   350 		const TInt viewCount = view->CountL();
   351 		TEST2(viewCount, KLogEventCnt);
   352 		
   353 		TInt eventId = view->Event().Id();
   354 		TInt i = 0;
   355 		for(;i<KLogEventCnt;++i)
   356 			{
   357 			if(KLogEventIds[i] == eventId)
   358 				{
   359 				break;
   360 				}
   361 			}
   362 		TEST(i < KLogEventCnt);
   363 		logEventVisited[i] = ETrue;
   364 		}
   365 	while(view->NextL(active->iStatus));
   366 
   367 	//Check that all events were visited. 
   368 	for(TInt i=0;i<KLogEventCnt;++i)
   369 		{
   370 		TEST(logEventVisited[i]);
   371 		}
   372 	
   373 	CleanupStack::PopAndDestroy(filter);
   374 	CleanupStack::PopAndDestroy(view);
   375 	CleanupStack::PopAndDestroy(observer);
   376 	CleanupStack::PopAndDestroy(active);
   377 	CleanupStack::PopAndDestroy(client);
   378 	}
   379 
   380 /**
   381 @SYMTestCaseID			PDS-LOGENG-UT-4023
   382 @SYMTestCaseDesc		Event View test with an old database (without SimId).
   383 						The test uses the OldLogdbu.dat database, created before introducing the new 
   384 						"SimId" column. The test creates an event view and iterates over the events in the view.
   385 						The test checks that events without SimId property set can be retrieved. The test is very
   386 						similar to the EventViewTestL() test, except the fact that the filter filters out all events
   387 						with non-zero SimId.
   388 @SYMTestActions			Event View test with an old database (without SimId).
   389 @SYMTestExpectedResults Test must not fail
   390 @SYMTestPriority		Medium
   391 @SYMREQ					REQ12747
   392 */
   393 void EventViewTest2L()
   394 	{
   395 	CLogClient* client = CLogClient::NewL(theFs);
   396 	CleanupStack::PushL(client);
   397 	
   398 	CTestActive* active = new(ELeave)CTestActive();
   399 	CleanupStack::PushL(active);
   400 
   401 	CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
   402 	observer->SetActive();
   403 	
   404 	CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
   405 	CleanupStack::PushL(view);
   406 
   407 	CLogFilter* filter = CLogFilter::NewL();
   408 	CleanupStack::PushL(filter);
   409 	filter->SetNullFields(ELogSimIdField);
   410 	TBool res = view->SetFilterL(*filter, active->iStatus);
   411 	TEST(res);
   412 	
   413 	//Only events KEventId4 and TheEventId5 are with zero SimId.
   414 	const TLogId KLogEventIds[] ={KEventId4,  TheEventId5};
   415 	TBool logEventVisited[] =    {EFalse,    EFalse};
   416 	const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); 
   417 
   418 	do	{
   419 		active->StartL();
   420 		CActiveScheduler::Start();
   421 		TEST2(active->iStatus.Int(), KErrNone);
   422 
   423 		const TInt viewCount = view->CountL();
   424 		TEST2(viewCount, KLogEventCnt);
   425 		
   426 		TInt eventId = view->Event().Id();
   427 		TInt i = 0;
   428 		for(;i<KLogEventCnt;++i)
   429 			{
   430 			if(KLogEventIds[i] == eventId)
   431 				{
   432 				break;
   433 				}
   434 			}
   435 		TEST(i < KLogEventCnt);
   436 		logEventVisited[i] = ETrue;
   437 		}
   438 	while(view->NextL(active->iStatus));
   439 
   440 	//Check that all events were visited. 
   441 	for(TInt i=0;i<KLogEventCnt;++i)
   442 		{
   443 		TEST(logEventVisited[i]);
   444 		}
   445 	
   446 	CleanupStack::PopAndDestroy(filter);
   447 	CleanupStack::PopAndDestroy(view);
   448 	CleanupStack::PopAndDestroy(observer);
   449 	CleanupStack::PopAndDestroy(active);
   450 	CleanupStack::PopAndDestroy(client);
   451 	}
   452 
   453 /**
   454 @SYMTestCaseID			PDS-LOGENG-UT-4024
   455 @SYMTestCaseDesc		Event View test with an old database (without SimId).
   456 						The test uses the OldLogdbu.dat database, created before introducing the new 
   457 						"SimId" column. The test creates an event view, sets a filter with a non-zero SimId 
   458 						and iterates over the events in the view. It should be possible to view events with SimId
   459 						set, when the database was created using the old format.
   460 @SYMTestActions			Event View test with an old database (without SimId).
   461 @SYMTestExpectedResults Test must not fail
   462 @SYMTestPriority		Medium
   463 @SYMREQ					REQ12747
   464 */
   465 void EventViewTest3L()
   466 	{
   467 	CLogClient* client = CLogClient::NewL(theFs);
   468 	CleanupStack::PushL(client);
   469 	
   470 	CTestActive* active = new(ELeave)CTestActive();
   471 	CleanupStack::PushL(active);
   472 
   473 	CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
   474 	observer->SetActive();
   475 	
   476 	CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
   477 	CleanupStack::PushL(view);
   478 
   479 	CLogFilter* filter = CLogFilter::NewL();
   480 	CleanupStack::PushL(filter);
   481 	filter->SetSimId(KSimId1);
   482 	TSimId simId = filter->SimId();
   483 	TEST2(simId, KSimId1);
   484 	TBool res = view->SetFilterL(*filter, active->iStatus);
   485 	TEST(res);
   486 	
   487 	//Only events KEventId1 and TheEventId6 are with KSimId1.
   488 	const TLogId KLogEventIds[] ={KEventId1,  TheEventId6};
   489 	TBool logEventVisited[] =    {EFalse,    EFalse};
   490 	const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); 
   491 
   492 	do	{
   493 		active->StartL();
   494 		CActiveScheduler::Start();
   495 		TEST2(active->iStatus.Int(), KErrNone);
   496 
   497 		const TInt viewCount = view->CountL();
   498 		TEST2(viewCount, KLogEventCnt);
   499 		
   500 		TInt eventId = view->Event().Id();
   501 		TInt i = 0;
   502 		for(;i<KLogEventCnt;++i)
   503 			{
   504 			if(KLogEventIds[i] == eventId)
   505 				{
   506 				break;
   507 				}
   508 			}
   509 		TEST(i < KLogEventCnt);
   510 		logEventVisited[i] = ETrue;
   511 		}
   512 	while(view->NextL(active->iStatus));
   513 
   514 	//Check that all events were visited. 
   515 	for(TInt i=0;i<KLogEventCnt;++i)
   516 		{
   517 		TEST(logEventVisited[i]);
   518 		}
   519 	
   520 	CleanupStack::PopAndDestroy(filter);
   521 	CleanupStack::PopAndDestroy(view);
   522 	CleanupStack::PopAndDestroy(observer);
   523 	CleanupStack::PopAndDestroy(active);
   524 	CleanupStack::PopAndDestroy(client);
   525 	}
   526 
   527 /**
   528 @SYMTestCaseID			PDS-LOGENG-UT-4043
   529 @SYMTestCaseDesc		CLogEvent - data compatibility test.
   530 						The test uses data externalized from an event prior the "dual SIM support"
   531 						changes were introduced. The test internalizes the event data and checks 
   532 						that the data is interpreted correctly.
   533 @SYMTestActions			CLogEvent - data compatibility test.
   534 @SYMTestExpectedResults Test must not fail
   535 @SYMTestPriority		Medium
   536 @SYMREQ					REQ12746
   537 */
   538 void EventDataTestL()
   539 	{
   540 	//Externalized to a buffer event data where the following property values have been set:
   541 	// Id=1, Type=2, "RemoteParty", "Direction", "Data"
   542 	//The used event format is before the "dual SIM support" changes were introduced.
   543 	const TUint8 KEvtData1[] =
   544 		//  0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F   
   545 		{ 
   546 		    1,  0,  0,  0,  2,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
   547 		  255,  0,  0,  0,  0,255,255,255,255,  0,  0,  0,  0,  0,  0, 44,
   548 		   82,101,109,111,116,101, 80, 97,114,116,121, 36, 68,105,114,101, 
   549 		   99,116,105,111,110,  0,  0,  0,  4,  0,  0,  0, 18, 68, 97,116,
   550 		   97
   551 		};
   552 
   553 	CLogEvent* evt1 = CLogEvent::NewL();
   554 	CleanupStack::PushL(evt1);
   555 	TPtrC8 ptr1(KEvtData1, sizeof(KEvtData1) / sizeof(KEvtData1[0]));
   556 	RDesReadStream strm1(ptr1);
   557 	strm1 >> *evt1;
   558 	strm1.Close();
   559 	TEST2(evt1->Id(), 1);
   560 	TEST(evt1->EventType() == TUid::Uid(2));
   561 	_LIT(KRemoteParty, "RemoteParty");
   562 	TEST(evt1->RemoteParty() == KRemoteParty);
   563 	_LIT(KDirection, "Direction");
   564 	TEST(evt1->Direction() == KDirection);
   565 	_LIT8(KData, "Data");
   566 	TEST(evt1->Data() == KData);
   567 	TEST(evt1->SimId() == KLogNullSimId);
   568 	CleanupStack::PopAndDestroy(evt1);
   569 	
   570 	//Externalized to a buffer event data where the following property values have been set:
   571 	// Id=3, Type=4, "RemoteParty2", "Direction2"
   572 	//The used event format is before the "dual SIM support" changes were introduced.
   573 	const TUint8 KEvtData2[] =
   574 		//  0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F   
   575 		{ 
   576 		    3,  0,  0,  0,  4,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
   577 		  255,  0,  0,  0,  0,255,255,255,255,  0,  0,  0,  0,  0,  0, 48,
   578 		   82,101,109,111,116,101, 80, 97,114,116,121, 50, 40, 68,105,114, 
   579 		  101, 99,116,105,111,110, 50,  0,  0,  0,  0,  0,  0,  0
   580 		};
   581 
   582 	CLogEvent* evt2 = CLogEvent::NewL();
   583 	CleanupStack::PushL(evt2);
   584 	TPtrC8 ptr2(KEvtData2, sizeof(KEvtData2) / sizeof(KEvtData2[0]));
   585 	RDesReadStream strm2(ptr2);
   586 	strm2 >> *evt2;
   587 	strm2.Close();
   588 	TEST2(evt2->Id(), 3);
   589 	TEST(evt2->EventType() == TUid::Uid(4));
   590 	_LIT(KRemoteParty2, "RemoteParty2");
   591 	TEST(evt2->RemoteParty() == KRemoteParty2);
   592 	_LIT(KDirection2, "Direction2");
   593 	TEST(evt2->Direction() == KDirection2);
   594 	TEST(evt2->SimId() == KLogNullSimId);
   595 	CleanupStack::PopAndDestroy(evt2);
   596 	}
   597 
   598 /**
   599 @SYMTestCaseID			PDS-LOGENG-UT-4046
   600 @SYMTestCaseDesc		CLogClient::ClearLog() - data compatibility test.
   601 						The test uses the OldLogdbu.dat database, created before introducing the new 
   602 						"SimId" column. The test verifies that CLogClient::ClearLog() can work with 
   603 						database with the old format. 
   604 @SYMTestActions			CLogClient::ClearLog() - data compatibility test.
   605 @SYMTestExpectedResults Test must not fail
   606 @SYMTestPriority		Medium
   607 @SYMREQ					REQ12748
   608 */
   609 void ClearLogTestL()
   610 	{
   611 	CLogClient* client = CLogClient::NewL(theFs);
   612 	CleanupStack::PushL(client);
   613 	
   614 	CTestActive* active = new(ELeave)CTestActive();
   615 	CleanupStack::PushL(active);
   616 
   617 	//Get one of the events
   618 	CLogEvent* event = CLogEvent::NewL();
   619 	CleanupStack::PushL(event);
   620 	event->SetId(KEventId1);
   621 	active->StartL();
   622 	client->GetEvent(*event, active->iStatus);
   623 	CActiveScheduler::Start();
   624 	TEST2(active->iStatus.Int(), KErrNone);
   625 	TTime evtTime = event->Time();
   626 	CleanupStack::PopAndDestroy(event);
   627 	event = NULL;
   628 	
   629 	//Delete all events with time < (evtTime + 1s). 
   630 	evtTime += TTimeIntervalSeconds(1);
   631 	active->StartL();
   632 	client->ClearLog(evtTime, active->iStatus);
   633 	CActiveScheduler::Start();
   634 	TEST2(active->iStatus.Int(), KErrNone);
   635 
   636 	//The event with time "evtTime" should not be in the log anymore.
   637 	event = CLogEvent::NewL();
   638 	CleanupStack::PushL(event);
   639 	event->SetId(KEventId1);
   640 	active->StartL();
   641 	client->GetEvent(*event, active->iStatus);
   642 	CActiveScheduler::Start();
   643 	TEST2(active->iStatus.Int(), KErrNotFound);
   644 	CleanupStack::PopAndDestroy(event);
   645 	
   646 	CleanupStack::PopAndDestroy(active);
   647 	CleanupStack::PopAndDestroy(client);
   648 	}
   649 
   650 void doTestsL()
   651 	{
   652     TestUtils::Initialize(_L("t_logcompat"));
   653 	
   654 #ifdef _DEBUG	
   655 	TheTest.Start(_L("Copy the old LogEng database"));
   656 	TestUtils::CopyOldDbL();
   657 	//
   658 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4018: \"Get Event\" compatibility test"));
   659 	GetEventTestL();
   660 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4019: \"Change Event\" compatibility test"));
   661 	ChangeEventTestL();
   662 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4020: \"Add Event\" compatibility test"));
   663 	AddEventTestL();
   664 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4021: \"Delete Event\" compatibility test"));
   665 	DeleteEventTestL();
   666 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4022: \"Event View\" compatibility test"));
   667 	EventViewTestL();
   668 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4023: \"Event View 2\" compatibility test"));
   669 	EventViewTest2L();
   670 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4024: \"Event View 3\" compatibility test"));
   671 	EventViewTest3L();
   672 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4043: \"CLogEvent data\" compatibility test"));
   673 	EventDataTestL();
   674 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4046: \"CLogClient::ClearLog()\" compatibility test"));
   675 	ClearLogTestL();
   676 	//
   677 	TestUtils::DeleteDatabaseL();
   678 #else
   679 	TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()"));
   680 #endif
   681 	}
   682 
   683 #else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
   684 
   685 void doTestsL()
   686 	{
   687 	TestUtils::Initialize(_L("t_logcompat"));
   688 	TheTest.Start(_L("The LogEng compatibility test cases are compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined!"));
   689 	}
   690 
   691 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM