sl@0: // Copyright (c) 2004-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_LOGSERVCRASH.CPP sl@0: // This tests the fix implemented for DEF047320 sl@0: // sl@0: #include sl@0: #include sl@0: #include "t_logutil2.h" sl@0: #include sl@0: sl@0: RTest TheTest(_L("t_logservercrash")); sl@0: sl@0: const TInt KTestEventNum = 10; sl@0: const TLogDurationType KTestDurationType1 = 1; sl@0: const TLogDuration KTestDuration1 = 0x1234; sl@0: const TLogFlags KTestFlags1 = 0x5; sl@0: const TLogLink KTestLink1 = 0x1234; sl@0: sl@0: _LIT(KTestRemoteParty1, "Remote Party"); sl@0: _LIT(KTestDirection1, "Direction"); sl@0: _LIT(KTestStatus1, "Status"); sl@0: _LIT(KTestSubject1, "Subject"); sl@0: _LIT(KTestNumber1, "TheNumber"); sl@0: _LIT8(KTestData1, "ABCDEFGH"); sl@0: sl@0: TBool TheMatchingIsEnabled = EFalse; sl@0: sl@0: sl@0: #define SERVER_NAME _L("LogServ*") sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1021 sl@0: @SYMTestCaseDesc Tests for killing the server sl@0: Tests for RProcess::Kill(),RThread::Kill() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions If EKA2 find the process and kill it, for EKA1 find thread and kill it sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestKillServerL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1021 Before Killing Server ")); sl@0: User::After(2000000); sl@0: sl@0: // for EKA2 find process and Kill sl@0: // Note: this needs CAPABILITY PowerMgmt sl@0: TFindProcess findProcess(SERVER_NAME); sl@0: TFullName result; sl@0: LEAVE_IF_ERROR( findProcess.Next(result) ); sl@0: sl@0: RProcess server; sl@0: LEAVE_IF_ERROR( server.Open(findProcess, EOwnerProcess) ); sl@0: server.Kill(0); sl@0: sl@0: TheTest.Next(_L("Server is Killed")); sl@0: User::After(2000000); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1022 sl@0: @SYMTestCaseDesc Tests for operations on log database sl@0: @SYMTestPriority High sl@0: @SYMTestActions Check by add new event,change the event,and get event and check for integrity of data sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestEventViewL(CLogClient& aClient) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1022 ")); sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC(); sl@0: changeObs->SetActive(); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogEvent* event; sl@0: TLogId id; sl@0: TTime now; sl@0: now.UniversalTime(); sl@0: TInt count; sl@0: sl@0: for(count = 0; count < KTestEventNum; count++) sl@0: { sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: //User::After(Math::Random() % 100000); sl@0: User::After(1000000); sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->Description().Length() > 0); sl@0: TEST(event->Time() >= now); sl@0: sl@0: now = event->Time(); sl@0: id = event->Id(); sl@0: 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(KTestNumber1); sl@0: event->SetLink(KTestLink1); sl@0: event->SetDataL(KTestData1); sl@0: event->SetFlags(KTestFlags1); sl@0: event->SetContact((TLogContactItemId) count+1); sl@0: sl@0: User::After(Math::Random() % 100000); sl@0: active->StartL(); sl@0: aClient.ChangeEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: sl@0: //If the test fails on the next line with -1 or -12 error, it is possible that the contacts database is missing: sl@0: //c:\private\10003a73\SQLite__Contacts.cdb. Copy it to the specified location and rerun the test. sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->RemoteParty() == KTestRemoteParty1); sl@0: TEST(event->Direction() == KTestDirection1); sl@0: TEST(event->DurationType() == KTestDurationType1); sl@0: TEST(event->Duration() == KTestDuration1); sl@0: TEST(event->Status() == KTestStatus1); sl@0: TEST(event->Subject() == KTestSubject1); sl@0: TEST(event->Number() == KTestNumber1); sl@0: TEST(event->Link() == KTestLink1); sl@0: TEST(event->Data() == KTestData1); sl@0: TLogFlags eventFlags; sl@0: if(TheMatchingIsEnabled) sl@0: { sl@0: eventFlags=KTestFlags1|KLogEventContactSearched; sl@0: } sl@0: else sl@0: { sl@0: eventFlags=KTestFlags1; sl@0: } sl@0: //If the test fails on the next line, it is quite possible that there is a sl@0: //z:\private\10202be9a\101f401d.txt file that sets the contacts match count to 0. sl@0: //Delete the file and run the test again. sl@0: TEST(event->Flags() == eventFlags); sl@0: TEST(event->Contact()==(TLogContactItemId) count+1); sl@0: sl@0: CleanupStack::PopAndDestroy(); // event; sl@0: sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: event->SetId(id); sl@0: active->StartL(); sl@0: aClient.GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->RemoteParty() == KTestRemoteParty1); sl@0: TEST(event->Direction() == KTestDirection1); sl@0: TEST(event->DurationType() == KTestDurationType1); sl@0: TEST(event->Duration() == KTestDuration1); sl@0: TEST(event->Status() == KTestStatus1); sl@0: TEST(event->Subject() == KTestSubject1); sl@0: TEST(event->Number() == KTestNumber1); sl@0: TEST(event->Link() == KTestLink1); sl@0: TEST(event->Data() == KTestData1); sl@0: TEST(event->Flags() == eventFlags); sl@0: TEST(event->Contact()==(TLogContactItemId) count+1); sl@0: CleanupStack::PopAndDestroy(); // event; sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(3, active); // Delete view, changeObs, active sl@0: } sl@0: sl@0: /** sl@0: This code tests that the log engine will restart automatically sl@0: by killing the Log engine server and then checking that sl@0: a test event can be added. sl@0: Details can be found in DEF047320 sl@0: sl@0: */ sl@0: void doTestsL() sl@0: { sl@0: TheMatchingIsEnabled = TestUtils::MatchingEnabledL(); sl@0: sl@0: // test 0 adds an event sl@0: TestUtils::Initialize(_L("t_logservercrash")); sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CLogChangeNotifier* notifier = CLogChangeNotifier::NewL(); sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: TheTest.Start(_L("Event View With No Filter: Before Killing Sever")); sl@0: TheTest.Next(_L("Test Add Event")); sl@0: TestEventViewL(*client); sl@0: theLog.Write(_L8("Test 0 OK\n")); sl@0: sl@0: // Test 1 stops the server sl@0: TheTest.Next(_L("Test Kill Server")); sl@0: TestKillServerL(); sl@0: theLog.Write(_L8("Test 1 OK\n")); sl@0: sl@0: // Test 2 checks the server is going again sl@0: TheTest.Next(_L("Event View With No Filter : After Killing Sever")); sl@0: TheTest.Next(_L("Test Add Event")); sl@0: TestEventViewL(*client); sl@0: theLog.Write(_L8("Test 2 OK\n")); sl@0: sl@0: CleanupStack::PopAndDestroy(2); sl@0: }