1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logservercrash.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,228 @@
1.4 +// Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// T_LOGSERVCRASH.CPP
1.18 +// This tests the fix implemented for DEF047320
1.19 +//
1.20 +#include <s32file.h>
1.21 +#include <e32math.h>
1.22 +#include "t_logutil2.h"
1.23 +#include <logview.h>
1.24 +
1.25 +RTest TheTest(_L("t_logservercrash"));
1.26 +
1.27 +const TInt KTestEventNum = 10;
1.28 +const TLogDurationType KTestDurationType1 = 1;
1.29 +const TLogDuration KTestDuration1 = 0x1234;
1.30 +const TLogFlags KTestFlags1 = 0x5;
1.31 +const TLogLink KTestLink1 = 0x1234;
1.32 +
1.33 +_LIT(KTestRemoteParty1, "Remote Party");
1.34 +_LIT(KTestDirection1, "Direction");
1.35 +_LIT(KTestStatus1, "Status");
1.36 +_LIT(KTestSubject1, "Subject");
1.37 +_LIT(KTestNumber1, "TheNumber");
1.38 +_LIT8(KTestData1, "ABCDEFGH");
1.39 +
1.40 +TBool TheMatchingIsEnabled = EFalse;
1.41 +
1.42 +
1.43 +#define SERVER_NAME _L("LogServ*")
1.44 +
1.45 +/**
1.46 +@SYMTestCaseID SYSLIB-LOGENG-CT-1021
1.47 +@SYMTestCaseDesc Tests for killing the server
1.48 + Tests for RProcess::Kill(),RThread::Kill() function
1.49 +@SYMTestPriority High
1.50 +@SYMTestActions If EKA2 find the process and kill it, for EKA1 find thread and kill it
1.51 +@SYMTestExpectedResults Test must not fail
1.52 +@SYMREQ REQ0000
1.53 +*/
1.54 +LOCAL_C void TestKillServerL()
1.55 + {
1.56 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1021 Before Killing Server "));
1.57 + User::After(2000000);
1.58 +
1.59 + // for EKA2 find process and Kill
1.60 + // Note: this needs CAPABILITY PowerMgmt
1.61 + TFindProcess findProcess(SERVER_NAME);
1.62 + TFullName result;
1.63 + LEAVE_IF_ERROR( findProcess.Next(result) );
1.64 +
1.65 + RProcess server;
1.66 + LEAVE_IF_ERROR( server.Open(findProcess, EOwnerProcess) );
1.67 + server.Kill(0);
1.68 +
1.69 + TheTest.Next(_L("Server is Killed"));
1.70 + User::After(2000000);
1.71 + }
1.72 +
1.73 +/**
1.74 +@SYMTestCaseID SYSLIB-LOGENG-CT-1022
1.75 +@SYMTestCaseDesc Tests for operations on log database
1.76 +@SYMTestPriority High
1.77 +@SYMTestActions Check by add new event,change the event,and get event and check for integrity of data
1.78 +@SYMTestExpectedResults Test must not fail
1.79 +@SYMREQ REQ0000
1.80 +*/
1.81 +LOCAL_C void TestEventViewL(CLogClient& aClient)
1.82 + {
1.83 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1022 "));
1.84 + CTestActive* active = new(ELeave)CTestActive();
1.85 + CleanupStack::PushL(active);
1.86 +
1.87 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.88 + changeObs->SetActive();
1.89 +
1.90 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.91 + CleanupStack::PushL(view);
1.92 +
1.93 + CLogEvent* event;
1.94 + TLogId id;
1.95 + TTime now;
1.96 + now.UniversalTime();
1.97 + TInt count;
1.98 +
1.99 + for(count = 0; count < KTestEventNum; count++)
1.100 + {
1.101 + event = CLogEvent::NewL();
1.102 + CleanupStack::PushL(event);
1.103 + event->SetEventType(KLogCallEventTypeUid);
1.104 +
1.105 + //User::After(Math::Random() % 100000);
1.106 + User::After(1000000);
1.107 + active->StartL();
1.108 + aClient.AddEvent(*event, active->iStatus);
1.109 + CActiveScheduler::Start();
1.110 +
1.111 + TEST2(active->iStatus.Int(), KErrNone);
1.112 + TEST(event->EventType() == KLogCallEventTypeUid);
1.113 + TEST(event->Description().Length() > 0);
1.114 + TEST(event->Time() >= now);
1.115 +
1.116 + now = event->Time();
1.117 + id = event->Id();
1.118 +
1.119 + event->SetRemoteParty(KTestRemoteParty1);
1.120 + event->SetDirection(KTestDirection1);
1.121 + event->SetDurationType(KTestDurationType1);
1.122 + event->SetDuration(KTestDuration1);
1.123 + event->SetStatus(KTestStatus1);
1.124 + event->SetSubject(KTestSubject1);
1.125 + event->SetNumber(KTestNumber1);
1.126 + event->SetLink(KTestLink1);
1.127 + event->SetDataL(KTestData1);
1.128 + event->SetFlags(KTestFlags1);
1.129 + event->SetContact((TLogContactItemId) count+1);
1.130 +
1.131 + User::After(Math::Random() % 100000);
1.132 + active->StartL();
1.133 + aClient.ChangeEvent(*event, active->iStatus);
1.134 + CActiveScheduler::Start();
1.135 +
1.136 + //If the test fails on the next line with -1 or -12 error, it is possible that the contacts database is missing:
1.137 + //c:\private\10003a73\SQLite__Contacts.cdb. Copy it to the specified location and rerun the test.
1.138 + TEST2(active->iStatus.Int(), KErrNone);
1.139 + TEST(event->EventType() == KLogCallEventTypeUid);
1.140 + TEST(event->RemoteParty() == KTestRemoteParty1);
1.141 + TEST(event->Direction() == KTestDirection1);
1.142 + TEST(event->DurationType() == KTestDurationType1);
1.143 + TEST(event->Duration() == KTestDuration1);
1.144 + TEST(event->Status() == KTestStatus1);
1.145 + TEST(event->Subject() == KTestSubject1);
1.146 + TEST(event->Number() == KTestNumber1);
1.147 + TEST(event->Link() == KTestLink1);
1.148 + TEST(event->Data() == KTestData1);
1.149 + TLogFlags eventFlags;
1.150 + if(TheMatchingIsEnabled)
1.151 + {
1.152 + eventFlags=KTestFlags1|KLogEventContactSearched;
1.153 + }
1.154 + else
1.155 + {
1.156 + eventFlags=KTestFlags1;
1.157 + }
1.158 + //If the test fails on the next line, it is quite possible that there is a
1.159 + //z:\private\10202be9a\101f401d.txt file that sets the contacts match count to 0.
1.160 + //Delete the file and run the test again.
1.161 + TEST(event->Flags() == eventFlags);
1.162 + TEST(event->Contact()==(TLogContactItemId) count+1);
1.163 +
1.164 + CleanupStack::PopAndDestroy(); // event;
1.165 +
1.166 + event = CLogEvent::NewL();
1.167 + CleanupStack::PushL(event);
1.168 +
1.169 + event->SetId(id);
1.170 + active->StartL();
1.171 + aClient.GetEvent(*event, active->iStatus);
1.172 + CActiveScheduler::Start();
1.173 +
1.174 + TEST2(active->iStatus.Int(), KErrNone);
1.175 + TEST(event->EventType() == KLogCallEventTypeUid);
1.176 + TEST(event->RemoteParty() == KTestRemoteParty1);
1.177 + TEST(event->Direction() == KTestDirection1);
1.178 + TEST(event->DurationType() == KTestDurationType1);
1.179 + TEST(event->Duration() == KTestDuration1);
1.180 + TEST(event->Status() == KTestStatus1);
1.181 + TEST(event->Subject() == KTestSubject1);
1.182 + TEST(event->Number() == KTestNumber1);
1.183 + TEST(event->Link() == KTestLink1);
1.184 + TEST(event->Data() == KTestData1);
1.185 + TEST(event->Flags() == eventFlags);
1.186 + TEST(event->Contact()==(TLogContactItemId) count+1);
1.187 + CleanupStack::PopAndDestroy(); // event;
1.188 + }
1.189 +
1.190 + CleanupStack::PopAndDestroy(3, active); // Delete view, changeObs, active
1.191 + }
1.192 +
1.193 +/**
1.194 + This code tests that the log engine will restart automatically
1.195 + by killing the Log engine server and then checking that
1.196 + a test event can be added.
1.197 + Details can be found in DEF047320
1.198 +
1.199 + */
1.200 +void doTestsL()
1.201 + {
1.202 + TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
1.203 +
1.204 + // test 0 adds an event
1.205 + TestUtils::Initialize(_L("t_logservercrash"));
1.206 + TestUtils::DeleteDatabaseL();
1.207 +
1.208 + CLogClient* client = CLogClient::NewL(theFs);
1.209 + CleanupStack::PushL(client);
1.210 +
1.211 + CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
1.212 + CleanupStack::PushL(notifier);
1.213 +
1.214 + TheTest.Start(_L("Event View With No Filter: Before Killing Sever"));
1.215 + TheTest.Next(_L("Test Add Event"));
1.216 + TestEventViewL(*client);
1.217 + theLog.Write(_L8("Test 0 OK\n"));
1.218 +
1.219 + // Test 1 stops the server
1.220 + TheTest.Next(_L("Test Kill Server"));
1.221 + TestKillServerL();
1.222 + theLog.Write(_L8("Test 1 OK\n"));
1.223 +
1.224 + // Test 2 checks the server is going again
1.225 + TheTest.Next(_L("Event View With No Filter : After Killing Sever"));
1.226 + TheTest.Next(_L("Test Add Event"));
1.227 + TestEventViewL(*client);
1.228 + theLog.Write(_L8("Test 2 OK\n"));
1.229 +
1.230 + CleanupStack::PopAndDestroy(2);
1.231 + }