Update contrib.
1 // Copyright (c) 2004-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.
15 // This tests the fix implemented for DEF047320
19 #include "t_logutil2.h"
22 RTest TheTest(_L("t_logservercrash"));
24 const TInt KTestEventNum = 10;
25 const TLogDurationType KTestDurationType1 = 1;
26 const TLogDuration KTestDuration1 = 0x1234;
27 const TLogFlags KTestFlags1 = 0x5;
28 const TLogLink KTestLink1 = 0x1234;
30 _LIT(KTestRemoteParty1, "Remote Party");
31 _LIT(KTestDirection1, "Direction");
32 _LIT(KTestStatus1, "Status");
33 _LIT(KTestSubject1, "Subject");
34 _LIT(KTestNumber1, "TheNumber");
35 _LIT8(KTestData1, "ABCDEFGH");
37 TBool TheMatchingIsEnabled = EFalse;
40 #define SERVER_NAME _L("LogServ*")
43 @SYMTestCaseID SYSLIB-LOGENG-CT-1021
44 @SYMTestCaseDesc Tests for killing the server
45 Tests for RProcess::Kill(),RThread::Kill() function
47 @SYMTestActions If EKA2 find the process and kill it, for EKA1 find thread and kill it
48 @SYMTestExpectedResults Test must not fail
51 LOCAL_C void TestKillServerL()
53 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1021 Before Killing Server "));
56 // for EKA2 find process and Kill
57 // Note: this needs CAPABILITY PowerMgmt
58 TFindProcess findProcess(SERVER_NAME);
60 LEAVE_IF_ERROR( findProcess.Next(result) );
63 LEAVE_IF_ERROR( server.Open(findProcess, EOwnerProcess) );
66 TheTest.Next(_L("Server is Killed"));
71 @SYMTestCaseID SYSLIB-LOGENG-CT-1022
72 @SYMTestCaseDesc Tests for operations on log database
74 @SYMTestActions Check by add new event,change the event,and get event and check for integrity of data
75 @SYMTestExpectedResults Test must not fail
78 LOCAL_C void TestEventViewL(CLogClient& aClient)
80 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1022 "));
81 CTestActive* active = new(ELeave)CTestActive();
82 CleanupStack::PushL(active);
84 CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
85 changeObs->SetActive();
87 CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
88 CleanupStack::PushL(view);
96 for(count = 0; count < KTestEventNum; count++)
98 event = CLogEvent::NewL();
99 CleanupStack::PushL(event);
100 event->SetEventType(KLogCallEventTypeUid);
102 //User::After(Math::Random() % 100000);
103 User::After(1000000);
105 aClient.AddEvent(*event, active->iStatus);
106 CActiveScheduler::Start();
108 TEST2(active->iStatus.Int(), KErrNone);
109 TEST(event->EventType() == KLogCallEventTypeUid);
110 TEST(event->Description().Length() > 0);
111 TEST(event->Time() >= now);
116 event->SetRemoteParty(KTestRemoteParty1);
117 event->SetDirection(KTestDirection1);
118 event->SetDurationType(KTestDurationType1);
119 event->SetDuration(KTestDuration1);
120 event->SetStatus(KTestStatus1);
121 event->SetSubject(KTestSubject1);
122 event->SetNumber(KTestNumber1);
123 event->SetLink(KTestLink1);
124 event->SetDataL(KTestData1);
125 event->SetFlags(KTestFlags1);
126 event->SetContact((TLogContactItemId) count+1);
128 User::After(Math::Random() % 100000);
130 aClient.ChangeEvent(*event, active->iStatus);
131 CActiveScheduler::Start();
133 //If the test fails on the next line with -1 or -12 error, it is possible that the contacts database is missing:
134 //c:\private\10003a73\SQLite__Contacts.cdb. Copy it to the specified location and rerun the test.
135 TEST2(active->iStatus.Int(), KErrNone);
136 TEST(event->EventType() == KLogCallEventTypeUid);
137 TEST(event->RemoteParty() == KTestRemoteParty1);
138 TEST(event->Direction() == KTestDirection1);
139 TEST(event->DurationType() == KTestDurationType1);
140 TEST(event->Duration() == KTestDuration1);
141 TEST(event->Status() == KTestStatus1);
142 TEST(event->Subject() == KTestSubject1);
143 TEST(event->Number() == KTestNumber1);
144 TEST(event->Link() == KTestLink1);
145 TEST(event->Data() == KTestData1);
146 TLogFlags eventFlags;
147 if(TheMatchingIsEnabled)
149 eventFlags=KTestFlags1|KLogEventContactSearched;
153 eventFlags=KTestFlags1;
155 //If the test fails on the next line, it is quite possible that there is a
156 //z:\private\10202be9a\101f401d.txt file that sets the contacts match count to 0.
157 //Delete the file and run the test again.
158 TEST(event->Flags() == eventFlags);
159 TEST(event->Contact()==(TLogContactItemId) count+1);
161 CleanupStack::PopAndDestroy(); // event;
163 event = CLogEvent::NewL();
164 CleanupStack::PushL(event);
168 aClient.GetEvent(*event, active->iStatus);
169 CActiveScheduler::Start();
171 TEST2(active->iStatus.Int(), KErrNone);
172 TEST(event->EventType() == KLogCallEventTypeUid);
173 TEST(event->RemoteParty() == KTestRemoteParty1);
174 TEST(event->Direction() == KTestDirection1);
175 TEST(event->DurationType() == KTestDurationType1);
176 TEST(event->Duration() == KTestDuration1);
177 TEST(event->Status() == KTestStatus1);
178 TEST(event->Subject() == KTestSubject1);
179 TEST(event->Number() == KTestNumber1);
180 TEST(event->Link() == KTestLink1);
181 TEST(event->Data() == KTestData1);
182 TEST(event->Flags() == eventFlags);
183 TEST(event->Contact()==(TLogContactItemId) count+1);
184 CleanupStack::PopAndDestroy(); // event;
187 CleanupStack::PopAndDestroy(3, active); // Delete view, changeObs, active
191 This code tests that the log engine will restart automatically
192 by killing the Log engine server and then checking that
193 a test event can be added.
194 Details can be found in DEF047320
199 TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
201 // test 0 adds an event
202 TestUtils::Initialize(_L("t_logservercrash"));
203 TestUtils::DeleteDatabaseL();
205 CLogClient* client = CLogClient::NewL(theFs);
206 CleanupStack::PushL(client);
208 CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
209 CleanupStack::PushL(notifier);
211 TheTest.Start(_L("Event View With No Filter: Before Killing Sever"));
212 TheTest.Next(_L("Test Add Event"));
213 TestEventViewL(*client);
214 theLog.Write(_L8("Test 0 OK\n"));
216 // Test 1 stops the server
217 TheTest.Next(_L("Test Kill Server"));
219 theLog.Write(_L8("Test 1 OK\n"));
221 // Test 2 checks the server is going again
222 TheTest.Next(_L("Event View With No Filter : After Killing Sever"));
223 TheTest.Next(_L("Test Add Event"));
224 TestEventViewL(*client);
225 theLog.Write(_L8("Test 2 OK\n"));
227 CleanupStack::PopAndDestroy(2);