sl@0: // Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // t_logcompat.cpp - verification that old databases without SimId column in Event table can be opened sl@0: // and events added, viewed, etc. sl@0: // sl@0: // sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "t_logutil2.h" sl@0: sl@0: RTest TheTest(_L("t_logcompat")); sl@0: sl@0: #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM sl@0: sl@0: // These values are stored in "oldLogdb.dat" sl@0: _LIT(KEventNum1, "00000"); sl@0: _LIT(KEventNum2, "11111"); sl@0: _LIT(KEventNum3, "22222"); sl@0: _LIT(KEventNum4, "012345678901234567"); sl@0: const TLogId KEventId1 = 0; sl@0: const TLogId KEventId2 = 1; sl@0: const TLogId KEventId3 = 2; sl@0: const TLogId KEventId4 = 3; sl@0: sl@0: //New events, added by this test sl@0: _LIT(KEventNum5, "123411119"); sl@0: _LIT(KEventNum6, "999911221"); sl@0: TLogId TheEventId5 = KLogNullId; sl@0: TLogId TheEventId6 = KLogNullId; sl@0: sl@0: //Stored events properties sl@0: _LIT(KTestEventDesc1, "Event Type Description"); sl@0: _LIT(KTestRemoteParty1, "Remote Party"); sl@0: _LIT(KTestDirection1, "Direction"); sl@0: _LIT(KTestStatus1, "Status"); sl@0: _LIT(KTestSubject1, "Subject"); sl@0: const TUid KTestEventUid = {0x10005393}; sl@0: const TLogDurationType KTestDurationType1 = 1; sl@0: const TLogDuration KTestDuration1 = 0x1234; sl@0: const TLogContactItemId KTestContact1 = 0x1234; sl@0: const TLogLink KTestLink1 = 0x1234; sl@0: _LIT8(KTestData1, "ABCDEFGH"); sl@0: const TLogFlags KTestFlags1 = 0x5; sl@0: sl@0: //Sim Ids used by the test sl@0: const TSimId KSimId1 = 1; sl@0: const TSimId KSimId3 = 3900100200U; sl@0: sl@0: void CheckEventProperties(CLogEvent& aEvent, TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId) sl@0: { sl@0: TEST(aEvent.Id() == aEventId); sl@0: TEST(aEvent.Time() > TTime(0)); sl@0: TEST(aEvent.Description() == KTestEventDesc1); sl@0: TEST(aEvent.EventType() == KTestEventUid); sl@0: TEST(aEvent.RemoteParty() == KTestRemoteParty1); sl@0: TEST(aEvent.Direction() == KTestDirection1); sl@0: TEST(aEvent.DurationType() == KTestDurationType1); sl@0: TEST(aEvent.Duration() == KTestDuration1); sl@0: TEST(aEvent.Status() == KTestStatus1); sl@0: TEST(aEvent.Subject() == KTestSubject1); sl@0: TEST(aEvent.Contact() == KTestContact1); sl@0: TEST(aEvent.Link() == KTestLink1); sl@0: TEST(aEvent.Data() == KTestData1); sl@0: TEST(aEvent.Flags() == KTestFlags1); sl@0: TEST(aEvent.Number() == aEventNumber); sl@0: TEST(aEvent.SimId() == aSimId); sl@0: TPtrC eventStatus = aEvent.Subject(); sl@0: TPtrC eventNumber = aEvent.Number(); sl@0: TheTest.Printf(_L("Id:%d No:%S Sub:%S Contact Id:0x%x SimId:%u\n"), aEvent.Id(), &eventNumber, &eventStatus, aEvent.Contact(), aEvent.SimId()); sl@0: } sl@0: sl@0: void DoGetEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient) sl@0: { sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: // set the id of the event to be fetched sl@0: event->SetId(aEventId); sl@0: sl@0: aActive.StartL(); sl@0: aLogClient.GetEvent(*event, aActive.iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(aActive.iStatus.Int(), KErrNone); sl@0: sl@0: CheckEventProperties(*event, aEventId, aEventNumber, aSimId); sl@0: sl@0: CleanupStack::PopAndDestroy(event); sl@0: } sl@0: sl@0: void DoChangeEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient) sl@0: { sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: //Retrieve the event. sl@0: event->SetId(aEventId); sl@0: aActive.StartL(); sl@0: aLogClient.GetEvent(*event, aActive.iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(aActive.iStatus.Int(), KErrNone); sl@0: CheckEventProperties(*event, aEventId, aEventNumber, KLogNullSimId); sl@0: //Change event's SimId. sl@0: event->SetSimId(aSimId); sl@0: aActive.StartL(); sl@0: aLogClient.ChangeEvent(*event, aActive.iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(aActive.iStatus.Int(), KErrNone); sl@0: CheckEventProperties(*event, aEventId, aEventNumber, aSimId); sl@0: sl@0: CleanupStack::PopAndDestroy(event); sl@0: } sl@0: sl@0: TInt DoAddEventTestL(const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient) sl@0: { sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: TTime now; sl@0: now.UniversalTime(); sl@0: sl@0: event->SetEventType(KTestEventUid); sl@0: event->SetRemoteParty(KTestRemoteParty1); sl@0: event->SetDirection(KTestDirection1); sl@0: event->SetDurationType(KTestDurationType1); sl@0: event->SetDuration(KTestDuration1); sl@0: event->SetStatus(KTestStatus1); sl@0: event->SetSubject(KTestSubject1); sl@0: event->SetNumber(aEventNumber); sl@0: event->SetContact(KTestContact1); sl@0: event->SetLink(KTestLink1); sl@0: event->SetDataL(KTestData1); sl@0: event->SetFlags(KTestFlags1); sl@0: if(aSimId != KLogNullSimId) sl@0: { sl@0: event->SetSimId(aSimId); sl@0: } sl@0: sl@0: aActive.StartL(); sl@0: aLogClient.AddEvent(*event, aActive.iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(!aActive.IsActive()); sl@0: TEST2(aActive.iStatus.Int(), KErrNone); sl@0: sl@0: TLogId eventId = event->Id(); sl@0: TEST(eventId != KLogNullId); sl@0: TEST(event->Time() >= now); sl@0: sl@0: CleanupStack::PopAndDestroy(event); sl@0: return eventId; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4018 sl@0: @SYMTestCaseDesc Retrieving events from a database without "SimId" column in the "Event" table. sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test checks that the events in the database can be accessed and sl@0: retrieved. The event's SimID property value should be 0. sl@0: @SYMTestActions Retrieving events from a database without "SimId" column in the "Event" table. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12746 sl@0: */ sl@0: void GetEventTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: DoGetEventTestL(KEventId1, KEventNum1, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(KEventId3, KEventNum3, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client); sl@0: sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4019 sl@0: @SYMTestCaseDesc Changing events from a database without "SimId" column in the "Event" table. sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test checks that the events in the database can be accessed and sl@0: retrieved. After that the test changes some of the events, updating events properties sl@0: with a non-zero SimId. The test checks that the updated event really got its SimId sl@0: property value changed. sl@0: @SYMTestActions Changing events from a database without "SimId" column in the "Event" table. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12746 sl@0: */ sl@0: void ChangeEventTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Change two of the events sl@0: DoChangeEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client); sl@0: DoChangeEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client); sl@0: //Check that the other two events are unchanged sl@0: DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client); sl@0: sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4020 sl@0: @SYMTestCaseDesc Add events to a database without "SimId" column in the "Event" table. sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test adds two events to the database, then checks that the sl@0: events can be accessed and retrieved. sl@0: @SYMTestActions Add events to a database without "SimId" column in the "Event" table. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12746 sl@0: */ sl@0: void AddEventTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Add an event without SimId sl@0: TheEventId5 = DoAddEventTestL(KEventNum5, KLogNullSimId, *active, *client); sl@0: //Add an event with SimId sl@0: TheEventId6 = DoAddEventTestL(KEventNum6, KSimId1, *active, *client); sl@0: //Check that the other 4 events are unchanged sl@0: DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL() sl@0: DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL() sl@0: DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client); sl@0: //Check the first added event sl@0: DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client); sl@0: //Check the second added event sl@0: DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client); sl@0: sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4021 sl@0: @SYMTestCaseDesc Delete events from a database without "SimId" column in the "Event" table. sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test deletes an event from the database and checks then that sl@0: the other events are intact, the deleted event is really deleted. sl@0: @SYMTestActions Delete events from a database without "SimId" column in the "Event" table. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12746 sl@0: */ sl@0: void DeleteEventTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Delete an event sl@0: active->StartL(); sl@0: client->DeleteEvent(KEventId2, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(!active->IsActive()); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: //Check that the other 5 events are unchanged sl@0: DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL() sl@0: DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL() sl@0: DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client); sl@0: DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client); sl@0: sl@0: //Check that event 2 was really deleted sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetId(KEventId2); sl@0: active->StartL(); sl@0: client->GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(event); sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4022 sl@0: @SYMTestCaseDesc Event View test with an old database (without SimId). sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test creates an event view and iterates over the events in the view. sl@0: The test checks that events without SimId property set can be retrieved. sl@0: @SYMTestActions Event View test with an old database (without SimId). sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12747 sl@0: */ sl@0: void EventViewTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC(); sl@0: observer->SetActive(); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: TBool res = view->SetFilterL(*filter, active->iStatus); sl@0: TEST(res); sl@0: sl@0: //SimId: KSimId1 KSimId3 KLogNullSimId KLogNullSimId KSimId1 sl@0: const TLogId KLogEventIds[] ={KEventId1, KEventId3, KEventId4, TheEventId5, TheEventId6}; sl@0: TBool logEventVisited[] = {EFalse, EFalse, EFalse, EFalse, EFalse}; sl@0: const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); sl@0: sl@0: do { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: const TInt viewCount = view->CountL(); sl@0: TEST2(viewCount, KLogEventCnt); sl@0: sl@0: TInt eventId = view->Event().Id(); sl@0: TInt i = 0; sl@0: for(;iNextL(active->iStatus)); sl@0: sl@0: //Check that all events were visited. sl@0: for(TInt i=0;iSetActive(); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: filter->SetNullFields(ELogSimIdField); sl@0: TBool res = view->SetFilterL(*filter, active->iStatus); sl@0: TEST(res); sl@0: sl@0: //Only events KEventId4 and TheEventId5 are with zero SimId. sl@0: const TLogId KLogEventIds[] ={KEventId4, TheEventId5}; sl@0: TBool logEventVisited[] = {EFalse, EFalse}; sl@0: const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); sl@0: sl@0: do { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: const TInt viewCount = view->CountL(); sl@0: TEST2(viewCount, KLogEventCnt); sl@0: sl@0: TInt eventId = view->Event().Id(); sl@0: TInt i = 0; sl@0: for(;iNextL(active->iStatus)); sl@0: sl@0: //Check that all events were visited. sl@0: for(TInt i=0;iSetActive(); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: filter->SetSimId(KSimId1); sl@0: TSimId simId = filter->SimId(); sl@0: TEST2(simId, KSimId1); sl@0: TBool res = view->SetFilterL(*filter, active->iStatus); sl@0: TEST(res); sl@0: sl@0: //Only events KEventId1 and TheEventId6 are with KSimId1. sl@0: const TLogId KLogEventIds[] ={KEventId1, TheEventId6}; sl@0: TBool logEventVisited[] = {EFalse, EFalse}; sl@0: const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]); sl@0: sl@0: do { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: const TInt viewCount = view->CountL(); sl@0: TEST2(viewCount, KLogEventCnt); sl@0: sl@0: TInt eventId = view->Event().Id(); sl@0: TInt i = 0; sl@0: for(;iNextL(active->iStatus)); sl@0: sl@0: //Check that all events were visited. sl@0: for(TInt i=0;i> *evt1; sl@0: strm1.Close(); sl@0: TEST2(evt1->Id(), 1); sl@0: TEST(evt1->EventType() == TUid::Uid(2)); sl@0: _LIT(KRemoteParty, "RemoteParty"); sl@0: TEST(evt1->RemoteParty() == KRemoteParty); sl@0: _LIT(KDirection, "Direction"); sl@0: TEST(evt1->Direction() == KDirection); sl@0: _LIT8(KData, "Data"); sl@0: TEST(evt1->Data() == KData); sl@0: TEST(evt1->SimId() == KLogNullSimId); sl@0: CleanupStack::PopAndDestroy(evt1); sl@0: sl@0: //Externalized to a buffer event data where the following property values have been set: sl@0: // Id=3, Type=4, "RemoteParty2", "Direction2" sl@0: //The used event format is before the "dual SIM support" changes were introduced. sl@0: const TUint8 KEvtData2[] = sl@0: // 0 1 2 3 4 5 6 7 8 9 A B C D E F sl@0: { sl@0: 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, sl@0: 255, 0, 0, 0, 0,255,255,255,255, 0, 0, 0, 0, 0, 0, 48, sl@0: 82,101,109,111,116,101, 80, 97,114,116,121, 50, 40, 68,105,114, sl@0: 101, 99,116,105,111,110, 50, 0, 0, 0, 0, 0, 0, 0 sl@0: }; sl@0: sl@0: CLogEvent* evt2 = CLogEvent::NewL(); sl@0: CleanupStack::PushL(evt2); sl@0: TPtrC8 ptr2(KEvtData2, sizeof(KEvtData2) / sizeof(KEvtData2[0])); sl@0: RDesReadStream strm2(ptr2); sl@0: strm2 >> *evt2; sl@0: strm2.Close(); sl@0: TEST2(evt2->Id(), 3); sl@0: TEST(evt2->EventType() == TUid::Uid(4)); sl@0: _LIT(KRemoteParty2, "RemoteParty2"); sl@0: TEST(evt2->RemoteParty() == KRemoteParty2); sl@0: _LIT(KDirection2, "Direction2"); sl@0: TEST(evt2->Direction() == KDirection2); sl@0: TEST(evt2->SimId() == KLogNullSimId); sl@0: CleanupStack::PopAndDestroy(evt2); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-LOGENG-UT-4046 sl@0: @SYMTestCaseDesc CLogClient::ClearLog() - data compatibility test. sl@0: The test uses the OldLogdbu.dat database, created before introducing the new sl@0: "SimId" column. The test verifies that CLogClient::ClearLog() can work with sl@0: database with the old format. sl@0: @SYMTestActions CLogClient::ClearLog() - data compatibility test. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMTestPriority Medium sl@0: @SYMREQ REQ12748 sl@0: */ sl@0: void ClearLogTestL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Get one of the events sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetId(KEventId1); sl@0: active->StartL(); sl@0: client->GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: TTime evtTime = event->Time(); sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = NULL; sl@0: sl@0: //Delete all events with time < (evtTime + 1s). sl@0: evtTime += TTimeIntervalSeconds(1); sl@0: active->StartL(); sl@0: client->ClearLog(evtTime, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: //The event with time "evtTime" should not be in the log anymore. sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetId(KEventId1); sl@0: active->StartL(); sl@0: client->GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNotFound); sl@0: CleanupStack::PopAndDestroy(event); sl@0: sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logcompat")); sl@0: sl@0: #ifdef _DEBUG sl@0: TheTest.Start(_L("Copy the old LogEng database")); sl@0: TestUtils::CopyOldDbL(); sl@0: // sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4018: \"Get Event\" compatibility test")); sl@0: GetEventTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4019: \"Change Event\" compatibility test")); sl@0: ChangeEventTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4020: \"Add Event\" compatibility test")); sl@0: AddEventTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4021: \"Delete Event\" compatibility test")); sl@0: DeleteEventTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4022: \"Event View\" compatibility test")); sl@0: EventViewTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4023: \"Event View 2\" compatibility test")); sl@0: EventViewTest2L(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4024: \"Event View 3\" compatibility test")); sl@0: EventViewTest3L(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4043: \"CLogEvent data\" compatibility test")); sl@0: EventDataTestL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4046: \"CLogClient::ClearLog()\" compatibility test")); sl@0: ClearLogTestL(); sl@0: // sl@0: TestUtils::DeleteDatabaseL(); sl@0: #else sl@0: TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()")); sl@0: #endif sl@0: } sl@0: sl@0: #else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logcompat")); sl@0: TheTest.Start(_L("The LogEng compatibility test cases are compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined!")); sl@0: } sl@0: sl@0: #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM