sl@0
|
1 |
// Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// T_LOGSERVCRASH.CPP
|
sl@0
|
15 |
// This tests the fix implemented for DEF047320
|
sl@0
|
16 |
//
|
sl@0
|
17 |
#include <s32file.h>
|
sl@0
|
18 |
#include <e32math.h>
|
sl@0
|
19 |
#include "t_logutil2.h"
|
sl@0
|
20 |
#include <logview.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
RTest TheTest(_L("t_logservercrash"));
|
sl@0
|
23 |
|
sl@0
|
24 |
const TInt KTestEventNum = 10;
|
sl@0
|
25 |
const TLogDurationType KTestDurationType1 = 1;
|
sl@0
|
26 |
const TLogDuration KTestDuration1 = 0x1234;
|
sl@0
|
27 |
const TLogFlags KTestFlags1 = 0x5;
|
sl@0
|
28 |
const TLogLink KTestLink1 = 0x1234;
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KTestRemoteParty1, "Remote Party");
|
sl@0
|
31 |
_LIT(KTestDirection1, "Direction");
|
sl@0
|
32 |
_LIT(KTestStatus1, "Status");
|
sl@0
|
33 |
_LIT(KTestSubject1, "Subject");
|
sl@0
|
34 |
_LIT(KTestNumber1, "TheNumber");
|
sl@0
|
35 |
_LIT8(KTestData1, "ABCDEFGH");
|
sl@0
|
36 |
|
sl@0
|
37 |
TBool TheMatchingIsEnabled = EFalse;
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
#define SERVER_NAME _L("LogServ*")
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
@SYMTestCaseID SYSLIB-LOGENG-CT-1021
|
sl@0
|
44 |
@SYMTestCaseDesc Tests for killing the server
|
sl@0
|
45 |
Tests for RProcess::Kill(),RThread::Kill() function
|
sl@0
|
46 |
@SYMTestPriority High
|
sl@0
|
47 |
@SYMTestActions If EKA2 find the process and kill it, for EKA1 find thread and kill it
|
sl@0
|
48 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
49 |
@SYMREQ REQ0000
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
LOCAL_C void TestKillServerL()
|
sl@0
|
52 |
{
|
sl@0
|
53 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1021 Before Killing Server "));
|
sl@0
|
54 |
User::After(2000000);
|
sl@0
|
55 |
|
sl@0
|
56 |
// for EKA2 find process and Kill
|
sl@0
|
57 |
// Note: this needs CAPABILITY PowerMgmt
|
sl@0
|
58 |
TFindProcess findProcess(SERVER_NAME);
|
sl@0
|
59 |
TFullName result;
|
sl@0
|
60 |
LEAVE_IF_ERROR( findProcess.Next(result) );
|
sl@0
|
61 |
|
sl@0
|
62 |
RProcess server;
|
sl@0
|
63 |
LEAVE_IF_ERROR( server.Open(findProcess, EOwnerProcess) );
|
sl@0
|
64 |
server.Kill(0);
|
sl@0
|
65 |
|
sl@0
|
66 |
TheTest.Next(_L("Server is Killed"));
|
sl@0
|
67 |
User::After(2000000);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
@SYMTestCaseID SYSLIB-LOGENG-CT-1022
|
sl@0
|
72 |
@SYMTestCaseDesc Tests for operations on log database
|
sl@0
|
73 |
@SYMTestPriority High
|
sl@0
|
74 |
@SYMTestActions Check by add new event,change the event,and get event and check for integrity of data
|
sl@0
|
75 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
76 |
@SYMREQ REQ0000
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
LOCAL_C void TestEventViewL(CLogClient& aClient)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1022 "));
|
sl@0
|
81 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
82 |
CleanupStack::PushL(active);
|
sl@0
|
83 |
|
sl@0
|
84 |
CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
|
sl@0
|
85 |
changeObs->SetActive();
|
sl@0
|
86 |
|
sl@0
|
87 |
CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
|
sl@0
|
88 |
CleanupStack::PushL(view);
|
sl@0
|
89 |
|
sl@0
|
90 |
CLogEvent* event;
|
sl@0
|
91 |
TLogId id;
|
sl@0
|
92 |
TTime now;
|
sl@0
|
93 |
now.UniversalTime();
|
sl@0
|
94 |
TInt count;
|
sl@0
|
95 |
|
sl@0
|
96 |
for(count = 0; count < KTestEventNum; count++)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
event = CLogEvent::NewL();
|
sl@0
|
99 |
CleanupStack::PushL(event);
|
sl@0
|
100 |
event->SetEventType(KLogCallEventTypeUid);
|
sl@0
|
101 |
|
sl@0
|
102 |
//User::After(Math::Random() % 100000);
|
sl@0
|
103 |
User::After(1000000);
|
sl@0
|
104 |
active->StartL();
|
sl@0
|
105 |
aClient.AddEvent(*event, active->iStatus);
|
sl@0
|
106 |
CActiveScheduler::Start();
|
sl@0
|
107 |
|
sl@0
|
108 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
109 |
TEST(event->EventType() == KLogCallEventTypeUid);
|
sl@0
|
110 |
TEST(event->Description().Length() > 0);
|
sl@0
|
111 |
TEST(event->Time() >= now);
|
sl@0
|
112 |
|
sl@0
|
113 |
now = event->Time();
|
sl@0
|
114 |
id = event->Id();
|
sl@0
|
115 |
|
sl@0
|
116 |
event->SetRemoteParty(KTestRemoteParty1);
|
sl@0
|
117 |
event->SetDirection(KTestDirection1);
|
sl@0
|
118 |
event->SetDurationType(KTestDurationType1);
|
sl@0
|
119 |
event->SetDuration(KTestDuration1);
|
sl@0
|
120 |
event->SetStatus(KTestStatus1);
|
sl@0
|
121 |
event->SetSubject(KTestSubject1);
|
sl@0
|
122 |
event->SetNumber(KTestNumber1);
|
sl@0
|
123 |
event->SetLink(KTestLink1);
|
sl@0
|
124 |
event->SetDataL(KTestData1);
|
sl@0
|
125 |
event->SetFlags(KTestFlags1);
|
sl@0
|
126 |
event->SetContact((TLogContactItemId) count+1);
|
sl@0
|
127 |
|
sl@0
|
128 |
User::After(Math::Random() % 100000);
|
sl@0
|
129 |
active->StartL();
|
sl@0
|
130 |
aClient.ChangeEvent(*event, active->iStatus);
|
sl@0
|
131 |
CActiveScheduler::Start();
|
sl@0
|
132 |
|
sl@0
|
133 |
//If the test fails on the next line with -1 or -12 error, it is possible that the contacts database is missing:
|
sl@0
|
134 |
//c:\private\10003a73\SQLite__Contacts.cdb. Copy it to the specified location and rerun the test.
|
sl@0
|
135 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
136 |
TEST(event->EventType() == KLogCallEventTypeUid);
|
sl@0
|
137 |
TEST(event->RemoteParty() == KTestRemoteParty1);
|
sl@0
|
138 |
TEST(event->Direction() == KTestDirection1);
|
sl@0
|
139 |
TEST(event->DurationType() == KTestDurationType1);
|
sl@0
|
140 |
TEST(event->Duration() == KTestDuration1);
|
sl@0
|
141 |
TEST(event->Status() == KTestStatus1);
|
sl@0
|
142 |
TEST(event->Subject() == KTestSubject1);
|
sl@0
|
143 |
TEST(event->Number() == KTestNumber1);
|
sl@0
|
144 |
TEST(event->Link() == KTestLink1);
|
sl@0
|
145 |
TEST(event->Data() == KTestData1);
|
sl@0
|
146 |
TLogFlags eventFlags;
|
sl@0
|
147 |
if(TheMatchingIsEnabled)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
eventFlags=KTestFlags1|KLogEventContactSearched;
|
sl@0
|
150 |
}
|
sl@0
|
151 |
else
|
sl@0
|
152 |
{
|
sl@0
|
153 |
eventFlags=KTestFlags1;
|
sl@0
|
154 |
}
|
sl@0
|
155 |
//If the test fails on the next line, it is quite possible that there is a
|
sl@0
|
156 |
//z:\private\10202be9a\101f401d.txt file that sets the contacts match count to 0.
|
sl@0
|
157 |
//Delete the file and run the test again.
|
sl@0
|
158 |
TEST(event->Flags() == eventFlags);
|
sl@0
|
159 |
TEST(event->Contact()==(TLogContactItemId) count+1);
|
sl@0
|
160 |
|
sl@0
|
161 |
CleanupStack::PopAndDestroy(); // event;
|
sl@0
|
162 |
|
sl@0
|
163 |
event = CLogEvent::NewL();
|
sl@0
|
164 |
CleanupStack::PushL(event);
|
sl@0
|
165 |
|
sl@0
|
166 |
event->SetId(id);
|
sl@0
|
167 |
active->StartL();
|
sl@0
|
168 |
aClient.GetEvent(*event, active->iStatus);
|
sl@0
|
169 |
CActiveScheduler::Start();
|
sl@0
|
170 |
|
sl@0
|
171 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
172 |
TEST(event->EventType() == KLogCallEventTypeUid);
|
sl@0
|
173 |
TEST(event->RemoteParty() == KTestRemoteParty1);
|
sl@0
|
174 |
TEST(event->Direction() == KTestDirection1);
|
sl@0
|
175 |
TEST(event->DurationType() == KTestDurationType1);
|
sl@0
|
176 |
TEST(event->Duration() == KTestDuration1);
|
sl@0
|
177 |
TEST(event->Status() == KTestStatus1);
|
sl@0
|
178 |
TEST(event->Subject() == KTestSubject1);
|
sl@0
|
179 |
TEST(event->Number() == KTestNumber1);
|
sl@0
|
180 |
TEST(event->Link() == KTestLink1);
|
sl@0
|
181 |
TEST(event->Data() == KTestData1);
|
sl@0
|
182 |
TEST(event->Flags() == eventFlags);
|
sl@0
|
183 |
TEST(event->Contact()==(TLogContactItemId) count+1);
|
sl@0
|
184 |
CleanupStack::PopAndDestroy(); // event;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
CleanupStack::PopAndDestroy(3, active); // Delete view, changeObs, active
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
/**
|
sl@0
|
191 |
This code tests that the log engine will restart automatically
|
sl@0
|
192 |
by killing the Log engine server and then checking that
|
sl@0
|
193 |
a test event can be added.
|
sl@0
|
194 |
Details can be found in DEF047320
|
sl@0
|
195 |
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
void doTestsL()
|
sl@0
|
198 |
{
|
sl@0
|
199 |
TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
|
sl@0
|
200 |
|
sl@0
|
201 |
// test 0 adds an event
|
sl@0
|
202 |
TestUtils::Initialize(_L("t_logservercrash"));
|
sl@0
|
203 |
TestUtils::DeleteDatabaseL();
|
sl@0
|
204 |
|
sl@0
|
205 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
206 |
CleanupStack::PushL(client);
|
sl@0
|
207 |
|
sl@0
|
208 |
CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
|
sl@0
|
209 |
CleanupStack::PushL(notifier);
|
sl@0
|
210 |
|
sl@0
|
211 |
TheTest.Start(_L("Event View With No Filter: Before Killing Sever"));
|
sl@0
|
212 |
TheTest.Next(_L("Test Add Event"));
|
sl@0
|
213 |
TestEventViewL(*client);
|
sl@0
|
214 |
theLog.Write(_L8("Test 0 OK\n"));
|
sl@0
|
215 |
|
sl@0
|
216 |
// Test 1 stops the server
|
sl@0
|
217 |
TheTest.Next(_L("Test Kill Server"));
|
sl@0
|
218 |
TestKillServerL();
|
sl@0
|
219 |
theLog.Write(_L8("Test 1 OK\n"));
|
sl@0
|
220 |
|
sl@0
|
221 |
// Test 2 checks the server is going again
|
sl@0
|
222 |
TheTest.Next(_L("Event View With No Filter : After Killing Sever"));
|
sl@0
|
223 |
TheTest.Next(_L("Test Add Event"));
|
sl@0
|
224 |
TestEventViewL(*client);
|
sl@0
|
225 |
theLog.Write(_L8("Test 2 OK\n"));
|
sl@0
|
226 |
|
sl@0
|
227 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
228 |
}
|