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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // t_logcompat.cpp - verification that old databases without SimId column in Event table can be opened
15 // and events added, viewed, etc.
23 #include "t_logutil2.h"
25 RTest TheTest(_L("t_logcompat"));
27 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
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;
39 //New events, added by this test
40 _LIT(KEventNum5, "123411119");
41 _LIT(KEventNum6, "999911221");
42 TLogId TheEventId5 = KLogNullId;
43 TLogId TheEventId6 = KLogNullId;
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;
59 //Sim Ids used by the test
60 const TSimId KSimId1 = 1;
61 const TSimId KSimId3 = 3900100200U;
63 void CheckEventProperties(CLogEvent& aEvent, TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId)
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());
86 void DoGetEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
88 CLogEvent* event = CLogEvent::NewL();
89 CleanupStack::PushL(event);
91 // set the id of the event to be fetched
92 event->SetId(aEventId);
95 aLogClient.GetEvent(*event, aActive.iStatus);
96 CActiveScheduler::Start();
97 TEST2(aActive.iStatus.Int(), KErrNone);
99 CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
101 CleanupStack::PopAndDestroy(event);
104 void DoChangeEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
106 CLogEvent* event = CLogEvent::NewL();
107 CleanupStack::PushL(event);
109 //Retrieve the event.
110 event->SetId(aEventId);
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);
119 aLogClient.ChangeEvent(*event, aActive.iStatus);
120 CActiveScheduler::Start();
121 TEST2(aActive.iStatus.Int(), KErrNone);
122 CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
124 CleanupStack::PopAndDestroy(event);
127 TInt DoAddEventTestL(const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
129 CLogEvent* event = CLogEvent::NewL();
130 CleanupStack::PushL(event);
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)
149 event->SetSimId(aSimId);
153 aLogClient.AddEvent(*event, aActive.iStatus);
154 CActiveScheduler::Start();
155 TEST(!aActive.IsActive());
156 TEST2(aActive.iStatus.Int(), KErrNone);
158 TLogId eventId = event->Id();
159 TEST(eventId != KLogNullId);
160 TEST(event->Time() >= now);
162 CleanupStack::PopAndDestroy(event);
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
179 CLogClient* client = CLogClient::NewL(theFs);
180 CleanupStack::PushL(client);
182 CTestActive* active = new(ELeave)CTestActive();
183 CleanupStack::PushL(active);
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);
190 CleanupStack::PopAndDestroy(active);
191 CleanupStack::PopAndDestroy(client);
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
207 void ChangeEventTestL()
209 CLogClient* client = CLogClient::NewL(theFs);
210 CleanupStack::PushL(client);
212 CTestActive* active = new(ELeave)CTestActive();
213 CleanupStack::PushL(active);
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);
222 CleanupStack::PopAndDestroy(active);
223 CleanupStack::PopAndDestroy(client);
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
239 CLogClient* client = CLogClient::NewL(theFs);
240 CleanupStack::PushL(client);
242 CTestActive* active = new(ELeave)CTestActive();
243 CleanupStack::PushL(active);
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);
259 CleanupStack::PopAndDestroy(active);
260 CleanupStack::PopAndDestroy(client);
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
274 void DeleteEventTestL()
276 CLogClient* client = CLogClient::NewL(theFs);
277 CleanupStack::PushL(client);
279 CTestActive* active = new(ELeave)CTestActive();
280 CleanupStack::PushL(active);
284 client->DeleteEvent(KEventId2, active->iStatus);
285 CActiveScheduler::Start();
286 TEST(!active->IsActive());
287 TEST2(active->iStatus.Int(), KErrNone);
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);
296 //Check that event 2 was really deleted
297 CLogEvent* event = CLogEvent::NewL();
298 CleanupStack::PushL(event);
299 event->SetId(KEventId2);
301 client->GetEvent(*event, active->iStatus);
302 CActiveScheduler::Start();
303 TEST2(active->iStatus.Int(), KErrNotFound);
305 CleanupStack::PopAndDestroy(event);
306 CleanupStack::PopAndDestroy(active);
307 CleanupStack::PopAndDestroy(client);
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
321 void EventViewTestL()
323 CLogClient* client = CLogClient::NewL(theFs);
324 CleanupStack::PushL(client);
326 CTestActive* active = new(ELeave)CTestActive();
327 CleanupStack::PushL(active);
329 CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
330 observer->SetActive();
332 CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
333 CleanupStack::PushL(view);
335 CLogFilter* filter = CLogFilter::NewL();
336 CleanupStack::PushL(filter);
337 TBool res = view->SetFilterL(*filter, active->iStatus);
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]);
347 CActiveScheduler::Start();
348 TEST2(active->iStatus.Int(), KErrNone);
350 const TInt viewCount = view->CountL();
351 TEST2(viewCount, KLogEventCnt);
353 TInt eventId = view->Event().Id();
355 for(;i<KLogEventCnt;++i)
357 if(KLogEventIds[i] == eventId)
362 TEST(i < KLogEventCnt);
363 logEventVisited[i] = ETrue;
365 while(view->NextL(active->iStatus));
367 //Check that all events were visited.
368 for(TInt i=0;i<KLogEventCnt;++i)
370 TEST(logEventVisited[i]);
373 CleanupStack::PopAndDestroy(filter);
374 CleanupStack::PopAndDestroy(view);
375 CleanupStack::PopAndDestroy(observer);
376 CleanupStack::PopAndDestroy(active);
377 CleanupStack::PopAndDestroy(client);
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
388 @SYMTestActions Event View test with an old database (without SimId).
389 @SYMTestExpectedResults Test must not fail
390 @SYMTestPriority Medium
393 void EventViewTest2L()
395 CLogClient* client = CLogClient::NewL(theFs);
396 CleanupStack::PushL(client);
398 CTestActive* active = new(ELeave)CTestActive();
399 CleanupStack::PushL(active);
401 CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
402 observer->SetActive();
404 CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
405 CleanupStack::PushL(view);
407 CLogFilter* filter = CLogFilter::NewL();
408 CleanupStack::PushL(filter);
409 filter->SetNullFields(ELogSimIdField);
410 TBool res = view->SetFilterL(*filter, active->iStatus);
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]);
420 CActiveScheduler::Start();
421 TEST2(active->iStatus.Int(), KErrNone);
423 const TInt viewCount = view->CountL();
424 TEST2(viewCount, KLogEventCnt);
426 TInt eventId = view->Event().Id();
428 for(;i<KLogEventCnt;++i)
430 if(KLogEventIds[i] == eventId)
435 TEST(i < KLogEventCnt);
436 logEventVisited[i] = ETrue;
438 while(view->NextL(active->iStatus));
440 //Check that all events were visited.
441 for(TInt i=0;i<KLogEventCnt;++i)
443 TEST(logEventVisited[i]);
446 CleanupStack::PopAndDestroy(filter);
447 CleanupStack::PopAndDestroy(view);
448 CleanupStack::PopAndDestroy(observer);
449 CleanupStack::PopAndDestroy(active);
450 CleanupStack::PopAndDestroy(client);
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
465 void EventViewTest3L()
467 CLogClient* client = CLogClient::NewL(theFs);
468 CleanupStack::PushL(client);
470 CTestActive* active = new(ELeave)CTestActive();
471 CleanupStack::PushL(active);
473 CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
474 observer->SetActive();
476 CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
477 CleanupStack::PushL(view);
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);
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]);
494 CActiveScheduler::Start();
495 TEST2(active->iStatus.Int(), KErrNone);
497 const TInt viewCount = view->CountL();
498 TEST2(viewCount, KLogEventCnt);
500 TInt eventId = view->Event().Id();
502 for(;i<KLogEventCnt;++i)
504 if(KLogEventIds[i] == eventId)
509 TEST(i < KLogEventCnt);
510 logEventVisited[i] = ETrue;
512 while(view->NextL(active->iStatus));
514 //Check that all events were visited.
515 for(TInt i=0;i<KLogEventCnt;++i)
517 TEST(logEventVisited[i]);
520 CleanupStack::PopAndDestroy(filter);
521 CleanupStack::PopAndDestroy(view);
522 CleanupStack::PopAndDestroy(observer);
523 CleanupStack::PopAndDestroy(active);
524 CleanupStack::PopAndDestroy(client);
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
538 void EventDataTestL()
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
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,
553 CLogEvent* evt1 = CLogEvent::NewL();
554 CleanupStack::PushL(evt1);
555 TPtrC8 ptr1(KEvtData1, sizeof(KEvtData1) / sizeof(KEvtData1[0]));
556 RDesReadStream strm1(ptr1);
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);
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
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
582 CLogEvent* evt2 = CLogEvent::NewL();
583 CleanupStack::PushL(evt2);
584 TPtrC8 ptr2(KEvtData2, sizeof(KEvtData2) / sizeof(KEvtData2[0]));
585 RDesReadStream strm2(ptr2);
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);
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
611 CLogClient* client = CLogClient::NewL(theFs);
612 CleanupStack::PushL(client);
614 CTestActive* active = new(ELeave)CTestActive();
615 CleanupStack::PushL(active);
617 //Get one of the events
618 CLogEvent* event = CLogEvent::NewL();
619 CleanupStack::PushL(event);
620 event->SetId(KEventId1);
622 client->GetEvent(*event, active->iStatus);
623 CActiveScheduler::Start();
624 TEST2(active->iStatus.Int(), KErrNone);
625 TTime evtTime = event->Time();
626 CleanupStack::PopAndDestroy(event);
629 //Delete all events with time < (evtTime + 1s).
630 evtTime += TTimeIntervalSeconds(1);
632 client->ClearLog(evtTime, active->iStatus);
633 CActiveScheduler::Start();
634 TEST2(active->iStatus.Int(), KErrNone);
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);
641 client->GetEvent(*event, active->iStatus);
642 CActiveScheduler::Start();
643 TEST2(active->iStatus.Int(), KErrNotFound);
644 CleanupStack::PopAndDestroy(event);
646 CleanupStack::PopAndDestroy(active);
647 CleanupStack::PopAndDestroy(client);
652 TestUtils::Initialize(_L("t_logcompat"));
655 TheTest.Start(_L("Copy the old LogEng database"));
656 TestUtils::CopyOldDbL();
658 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4018: \"Get Event\" compatibility test"));
660 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4019: \"Change Event\" compatibility test"));
662 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4020: \"Add Event\" compatibility test"));
664 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4021: \"Delete Event\" compatibility test"));
666 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4022: \"Event View\" compatibility test"));
668 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4023: \"Event View 2\" compatibility test"));
670 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4024: \"Event View 3\" compatibility test"));
672 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4043: \"CLogEvent data\" compatibility test"));
674 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4046: \"CLogClient::ClearLog()\" compatibility test"));
677 TestUtils::DeleteDatabaseL();
679 TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()"));
683 #else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
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!"));
691 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM