sl@0
|
1 |
// Copyright (c) 2009-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_logcompat.cpp - verification that old databases without SimId column in Event table can be opened
|
sl@0
|
15 |
// and events added, viewed, etc.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include <s32mem.h>
|
sl@0
|
20 |
#include <e32math.h>
|
sl@0
|
21 |
#include <bautils.h>
|
sl@0
|
22 |
#include <logview.h>
|
sl@0
|
23 |
#include "t_logutil2.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
RTest TheTest(_L("t_logcompat"));
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
|
sl@0
|
28 |
|
sl@0
|
29 |
// These values are stored in "oldLogdb.dat"
|
sl@0
|
30 |
_LIT(KEventNum1, "00000");
|
sl@0
|
31 |
_LIT(KEventNum2, "11111");
|
sl@0
|
32 |
_LIT(KEventNum3, "22222");
|
sl@0
|
33 |
_LIT(KEventNum4, "012345678901234567");
|
sl@0
|
34 |
const TLogId KEventId1 = 0;
|
sl@0
|
35 |
const TLogId KEventId2 = 1;
|
sl@0
|
36 |
const TLogId KEventId3 = 2;
|
sl@0
|
37 |
const TLogId KEventId4 = 3;
|
sl@0
|
38 |
|
sl@0
|
39 |
//New events, added by this test
|
sl@0
|
40 |
_LIT(KEventNum5, "123411119");
|
sl@0
|
41 |
_LIT(KEventNum6, "999911221");
|
sl@0
|
42 |
TLogId TheEventId5 = KLogNullId;
|
sl@0
|
43 |
TLogId TheEventId6 = KLogNullId;
|
sl@0
|
44 |
|
sl@0
|
45 |
//Stored events properties
|
sl@0
|
46 |
_LIT(KTestEventDesc1, "Event Type Description");
|
sl@0
|
47 |
_LIT(KTestRemoteParty1, "Remote Party");
|
sl@0
|
48 |
_LIT(KTestDirection1, "Direction");
|
sl@0
|
49 |
_LIT(KTestStatus1, "Status");
|
sl@0
|
50 |
_LIT(KTestSubject1, "Subject");
|
sl@0
|
51 |
const TUid KTestEventUid = {0x10005393};
|
sl@0
|
52 |
const TLogDurationType KTestDurationType1 = 1;
|
sl@0
|
53 |
const TLogDuration KTestDuration1 = 0x1234;
|
sl@0
|
54 |
const TLogContactItemId KTestContact1 = 0x1234;
|
sl@0
|
55 |
const TLogLink KTestLink1 = 0x1234;
|
sl@0
|
56 |
_LIT8(KTestData1, "ABCDEFGH");
|
sl@0
|
57 |
const TLogFlags KTestFlags1 = 0x5;
|
sl@0
|
58 |
|
sl@0
|
59 |
//Sim Ids used by the test
|
sl@0
|
60 |
const TSimId KSimId1 = 1;
|
sl@0
|
61 |
const TSimId KSimId3 = 3900100200U;
|
sl@0
|
62 |
|
sl@0
|
63 |
void CheckEventProperties(CLogEvent& aEvent, TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
TEST(aEvent.Id() == aEventId);
|
sl@0
|
66 |
TEST(aEvent.Time() > TTime(0));
|
sl@0
|
67 |
TEST(aEvent.Description() == KTestEventDesc1);
|
sl@0
|
68 |
TEST(aEvent.EventType() == KTestEventUid);
|
sl@0
|
69 |
TEST(aEvent.RemoteParty() == KTestRemoteParty1);
|
sl@0
|
70 |
TEST(aEvent.Direction() == KTestDirection1);
|
sl@0
|
71 |
TEST(aEvent.DurationType() == KTestDurationType1);
|
sl@0
|
72 |
TEST(aEvent.Duration() == KTestDuration1);
|
sl@0
|
73 |
TEST(aEvent.Status() == KTestStatus1);
|
sl@0
|
74 |
TEST(aEvent.Subject() == KTestSubject1);
|
sl@0
|
75 |
TEST(aEvent.Contact() == KTestContact1);
|
sl@0
|
76 |
TEST(aEvent.Link() == KTestLink1);
|
sl@0
|
77 |
TEST(aEvent.Data() == KTestData1);
|
sl@0
|
78 |
TEST(aEvent.Flags() == KTestFlags1);
|
sl@0
|
79 |
TEST(aEvent.Number() == aEventNumber);
|
sl@0
|
80 |
TEST(aEvent.SimId() == aSimId);
|
sl@0
|
81 |
TPtrC eventStatus = aEvent.Subject();
|
sl@0
|
82 |
TPtrC eventNumber = aEvent.Number();
|
sl@0
|
83 |
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
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
void DoGetEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
89 |
CleanupStack::PushL(event);
|
sl@0
|
90 |
|
sl@0
|
91 |
// set the id of the event to be fetched
|
sl@0
|
92 |
event->SetId(aEventId);
|
sl@0
|
93 |
|
sl@0
|
94 |
aActive.StartL();
|
sl@0
|
95 |
aLogClient.GetEvent(*event, aActive.iStatus);
|
sl@0
|
96 |
CActiveScheduler::Start();
|
sl@0
|
97 |
TEST2(aActive.iStatus.Int(), KErrNone);
|
sl@0
|
98 |
|
sl@0
|
99 |
CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
|
sl@0
|
100 |
|
sl@0
|
101 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
void DoChangeEventTestL(TLogId aEventId, const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
107 |
CleanupStack::PushL(event);
|
sl@0
|
108 |
|
sl@0
|
109 |
//Retrieve the event.
|
sl@0
|
110 |
event->SetId(aEventId);
|
sl@0
|
111 |
aActive.StartL();
|
sl@0
|
112 |
aLogClient.GetEvent(*event, aActive.iStatus);
|
sl@0
|
113 |
CActiveScheduler::Start();
|
sl@0
|
114 |
TEST2(aActive.iStatus.Int(), KErrNone);
|
sl@0
|
115 |
CheckEventProperties(*event, aEventId, aEventNumber, KLogNullSimId);
|
sl@0
|
116 |
//Change event's SimId.
|
sl@0
|
117 |
event->SetSimId(aSimId);
|
sl@0
|
118 |
aActive.StartL();
|
sl@0
|
119 |
aLogClient.ChangeEvent(*event, aActive.iStatus);
|
sl@0
|
120 |
CActiveScheduler::Start();
|
sl@0
|
121 |
TEST2(aActive.iStatus.Int(), KErrNone);
|
sl@0
|
122 |
CheckEventProperties(*event, aEventId, aEventNumber, aSimId);
|
sl@0
|
123 |
|
sl@0
|
124 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
TInt DoAddEventTestL(const TDesC& aEventNumber, TSimId aSimId, CTestActive& aActive, CLogClient& aLogClient)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
130 |
CleanupStack::PushL(event);
|
sl@0
|
131 |
|
sl@0
|
132 |
TTime now;
|
sl@0
|
133 |
now.UniversalTime();
|
sl@0
|
134 |
|
sl@0
|
135 |
event->SetEventType(KTestEventUid);
|
sl@0
|
136 |
event->SetRemoteParty(KTestRemoteParty1);
|
sl@0
|
137 |
event->SetDirection(KTestDirection1);
|
sl@0
|
138 |
event->SetDurationType(KTestDurationType1);
|
sl@0
|
139 |
event->SetDuration(KTestDuration1);
|
sl@0
|
140 |
event->SetStatus(KTestStatus1);
|
sl@0
|
141 |
event->SetSubject(KTestSubject1);
|
sl@0
|
142 |
event->SetNumber(aEventNumber);
|
sl@0
|
143 |
event->SetContact(KTestContact1);
|
sl@0
|
144 |
event->SetLink(KTestLink1);
|
sl@0
|
145 |
event->SetDataL(KTestData1);
|
sl@0
|
146 |
event->SetFlags(KTestFlags1);
|
sl@0
|
147 |
if(aSimId != KLogNullSimId)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
event->SetSimId(aSimId);
|
sl@0
|
150 |
}
|
sl@0
|
151 |
|
sl@0
|
152 |
aActive.StartL();
|
sl@0
|
153 |
aLogClient.AddEvent(*event, aActive.iStatus);
|
sl@0
|
154 |
CActiveScheduler::Start();
|
sl@0
|
155 |
TEST(!aActive.IsActive());
|
sl@0
|
156 |
TEST2(aActive.iStatus.Int(), KErrNone);
|
sl@0
|
157 |
|
sl@0
|
158 |
TLogId eventId = event->Id();
|
sl@0
|
159 |
TEST(eventId != KLogNullId);
|
sl@0
|
160 |
TEST(event->Time() >= now);
|
sl@0
|
161 |
|
sl@0
|
162 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
163 |
return eventId;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
@SYMTestCaseID PDS-LOGENG-UT-4018
|
sl@0
|
168 |
@SYMTestCaseDesc Retrieving events from a database without "SimId" column in the "Event" table.
|
sl@0
|
169 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
170 |
"SimId" column. The test checks that the events in the database can be accessed and
|
sl@0
|
171 |
retrieved. The event's SimID property value should be 0.
|
sl@0
|
172 |
@SYMTestActions Retrieving events from a database without "SimId" column in the "Event" table.
|
sl@0
|
173 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
174 |
@SYMTestPriority Medium
|
sl@0
|
175 |
@SYMREQ REQ12746
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
void GetEventTestL()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
180 |
CleanupStack::PushL(client);
|
sl@0
|
181 |
|
sl@0
|
182 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
183 |
CleanupStack::PushL(active);
|
sl@0
|
184 |
|
sl@0
|
185 |
DoGetEventTestL(KEventId1, KEventNum1, KLogNullSimId, *active, *client);
|
sl@0
|
186 |
DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
|
sl@0
|
187 |
DoGetEventTestL(KEventId3, KEventNum3, KLogNullSimId, *active, *client);
|
sl@0
|
188 |
DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
|
sl@0
|
189 |
|
sl@0
|
190 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
191 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
@SYMTestCaseID PDS-LOGENG-UT-4019
|
sl@0
|
196 |
@SYMTestCaseDesc Changing events from a database without "SimId" column in the "Event" table.
|
sl@0
|
197 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
198 |
"SimId" column. The test checks that the events in the database can be accessed and
|
sl@0
|
199 |
retrieved. After that the test changes some of the events, updating events properties
|
sl@0
|
200 |
with a non-zero SimId. The test checks that the updated event really got its SimId
|
sl@0
|
201 |
property value changed.
|
sl@0
|
202 |
@SYMTestActions Changing events from a database without "SimId" column in the "Event" table.
|
sl@0
|
203 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
204 |
@SYMTestPriority Medium
|
sl@0
|
205 |
@SYMREQ REQ12746
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
void ChangeEventTestL()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
210 |
CleanupStack::PushL(client);
|
sl@0
|
211 |
|
sl@0
|
212 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
213 |
CleanupStack::PushL(active);
|
sl@0
|
214 |
|
sl@0
|
215 |
//Change two of the events
|
sl@0
|
216 |
DoChangeEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);
|
sl@0
|
217 |
DoChangeEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);
|
sl@0
|
218 |
//Check that the other two events are unchanged
|
sl@0
|
219 |
DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
|
sl@0
|
220 |
DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
|
sl@0
|
221 |
|
sl@0
|
222 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
223 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
/**
|
sl@0
|
227 |
@SYMTestCaseID PDS-LOGENG-UT-4020
|
sl@0
|
228 |
@SYMTestCaseDesc Add events to a database without "SimId" column in the "Event" table.
|
sl@0
|
229 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
230 |
"SimId" column. The test adds two events to the database, then checks that the
|
sl@0
|
231 |
events can be accessed and retrieved.
|
sl@0
|
232 |
@SYMTestActions Add events to a database without "SimId" column in the "Event" table.
|
sl@0
|
233 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
234 |
@SYMTestPriority Medium
|
sl@0
|
235 |
@SYMREQ REQ12746
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
void AddEventTestL()
|
sl@0
|
238 |
{
|
sl@0
|
239 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
240 |
CleanupStack::PushL(client);
|
sl@0
|
241 |
|
sl@0
|
242 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
243 |
CleanupStack::PushL(active);
|
sl@0
|
244 |
|
sl@0
|
245 |
//Add an event without SimId
|
sl@0
|
246 |
TheEventId5 = DoAddEventTestL(KEventNum5, KLogNullSimId, *active, *client);
|
sl@0
|
247 |
//Add an event with SimId
|
sl@0
|
248 |
TheEventId6 = DoAddEventTestL(KEventNum6, KSimId1, *active, *client);
|
sl@0
|
249 |
//Check that the other 4 events are unchanged
|
sl@0
|
250 |
DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL()
|
sl@0
|
251 |
DoGetEventTestL(KEventId2, KEventNum2, KLogNullSimId, *active, *client);
|
sl@0
|
252 |
DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL()
|
sl@0
|
253 |
DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
|
sl@0
|
254 |
//Check the first added event
|
sl@0
|
255 |
DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client);
|
sl@0
|
256 |
//Check the second added event
|
sl@0
|
257 |
DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client);
|
sl@0
|
258 |
|
sl@0
|
259 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
260 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
/**
|
sl@0
|
264 |
@SYMTestCaseID PDS-LOGENG-UT-4021
|
sl@0
|
265 |
@SYMTestCaseDesc Delete events from a database without "SimId" column in the "Event" table.
|
sl@0
|
266 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
267 |
"SimId" column. The test deletes an event from the database and checks then that
|
sl@0
|
268 |
the other events are intact, the deleted event is really deleted.
|
sl@0
|
269 |
@SYMTestActions Delete events from a database without "SimId" column in the "Event" table.
|
sl@0
|
270 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
271 |
@SYMTestPriority Medium
|
sl@0
|
272 |
@SYMREQ REQ12746
|
sl@0
|
273 |
*/
|
sl@0
|
274 |
void DeleteEventTestL()
|
sl@0
|
275 |
{
|
sl@0
|
276 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
277 |
CleanupStack::PushL(client);
|
sl@0
|
278 |
|
sl@0
|
279 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
280 |
CleanupStack::PushL(active);
|
sl@0
|
281 |
|
sl@0
|
282 |
//Delete an event
|
sl@0
|
283 |
active->StartL();
|
sl@0
|
284 |
client->DeleteEvent(KEventId2, active->iStatus);
|
sl@0
|
285 |
CActiveScheduler::Start();
|
sl@0
|
286 |
TEST(!active->IsActive());
|
sl@0
|
287 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
288 |
|
sl@0
|
289 |
//Check that the other 5 events are unchanged
|
sl@0
|
290 |
DoGetEventTestL(KEventId1, KEventNum1, KSimId1, *active, *client);//KSimId1 - set by ChangeEventTestL()
|
sl@0
|
291 |
DoGetEventTestL(KEventId3, KEventNum3, KSimId3, *active, *client);//KSimId3 - set by ChangeEventTestL()
|
sl@0
|
292 |
DoGetEventTestL(KEventId4, KEventNum4, KLogNullSimId, *active, *client);
|
sl@0
|
293 |
DoGetEventTestL(TheEventId5, KEventNum5, KLogNullSimId, *active, *client);
|
sl@0
|
294 |
DoGetEventTestL(TheEventId6, KEventNum6, KSimId1, *active, *client);
|
sl@0
|
295 |
|
sl@0
|
296 |
//Check that event 2 was really deleted
|
sl@0
|
297 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
298 |
CleanupStack::PushL(event);
|
sl@0
|
299 |
event->SetId(KEventId2);
|
sl@0
|
300 |
active->StartL();
|
sl@0
|
301 |
client->GetEvent(*event, active->iStatus);
|
sl@0
|
302 |
CActiveScheduler::Start();
|
sl@0
|
303 |
TEST2(active->iStatus.Int(), KErrNotFound);
|
sl@0
|
304 |
|
sl@0
|
305 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
306 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
307 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
/**
|
sl@0
|
311 |
@SYMTestCaseID PDS-LOGENG-UT-4022
|
sl@0
|
312 |
@SYMTestCaseDesc Event View test with an old database (without SimId).
|
sl@0
|
313 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
314 |
"SimId" column. The test creates an event view and iterates over the events in the view.
|
sl@0
|
315 |
The test checks that events without SimId property set can be retrieved.
|
sl@0
|
316 |
@SYMTestActions Event View test with an old database (without SimId).
|
sl@0
|
317 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
318 |
@SYMTestPriority Medium
|
sl@0
|
319 |
@SYMREQ REQ12747
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
void EventViewTestL()
|
sl@0
|
322 |
{
|
sl@0
|
323 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
324 |
CleanupStack::PushL(client);
|
sl@0
|
325 |
|
sl@0
|
326 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
327 |
CleanupStack::PushL(active);
|
sl@0
|
328 |
|
sl@0
|
329 |
CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
|
sl@0
|
330 |
observer->SetActive();
|
sl@0
|
331 |
|
sl@0
|
332 |
CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
|
sl@0
|
333 |
CleanupStack::PushL(view);
|
sl@0
|
334 |
|
sl@0
|
335 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
336 |
CleanupStack::PushL(filter);
|
sl@0
|
337 |
TBool res = view->SetFilterL(*filter, active->iStatus);
|
sl@0
|
338 |
TEST(res);
|
sl@0
|
339 |
|
sl@0
|
340 |
//SimId: KSimId1 KSimId3 KLogNullSimId KLogNullSimId KSimId1
|
sl@0
|
341 |
const TLogId KLogEventIds[] ={KEventId1, KEventId3, KEventId4, TheEventId5, TheEventId6};
|
sl@0
|
342 |
TBool logEventVisited[] = {EFalse, EFalse, EFalse, EFalse, EFalse};
|
sl@0
|
343 |
const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]);
|
sl@0
|
344 |
|
sl@0
|
345 |
do {
|
sl@0
|
346 |
active->StartL();
|
sl@0
|
347 |
CActiveScheduler::Start();
|
sl@0
|
348 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
349 |
|
sl@0
|
350 |
const TInt viewCount = view->CountL();
|
sl@0
|
351 |
TEST2(viewCount, KLogEventCnt);
|
sl@0
|
352 |
|
sl@0
|
353 |
TInt eventId = view->Event().Id();
|
sl@0
|
354 |
TInt i = 0;
|
sl@0
|
355 |
for(;i<KLogEventCnt;++i)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
if(KLogEventIds[i] == eventId)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
break;
|
sl@0
|
360 |
}
|
sl@0
|
361 |
}
|
sl@0
|
362 |
TEST(i < KLogEventCnt);
|
sl@0
|
363 |
logEventVisited[i] = ETrue;
|
sl@0
|
364 |
}
|
sl@0
|
365 |
while(view->NextL(active->iStatus));
|
sl@0
|
366 |
|
sl@0
|
367 |
//Check that all events were visited.
|
sl@0
|
368 |
for(TInt i=0;i<KLogEventCnt;++i)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
TEST(logEventVisited[i]);
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
CleanupStack::PopAndDestroy(filter);
|
sl@0
|
374 |
CleanupStack::PopAndDestroy(view);
|
sl@0
|
375 |
CleanupStack::PopAndDestroy(observer);
|
sl@0
|
376 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
377 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
/**
|
sl@0
|
381 |
@SYMTestCaseID PDS-LOGENG-UT-4023
|
sl@0
|
382 |
@SYMTestCaseDesc Event View test with an old database (without SimId).
|
sl@0
|
383 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
384 |
"SimId" column. The test creates an event view and iterates over the events in the view.
|
sl@0
|
385 |
The test checks that events without SimId property set can be retrieved. The test is very
|
sl@0
|
386 |
similar to the EventViewTestL() test, except the fact that the filter filters out all events
|
sl@0
|
387 |
with non-zero SimId.
|
sl@0
|
388 |
@SYMTestActions Event View test with an old database (without SimId).
|
sl@0
|
389 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
390 |
@SYMTestPriority Medium
|
sl@0
|
391 |
@SYMREQ REQ12747
|
sl@0
|
392 |
*/
|
sl@0
|
393 |
void EventViewTest2L()
|
sl@0
|
394 |
{
|
sl@0
|
395 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
396 |
CleanupStack::PushL(client);
|
sl@0
|
397 |
|
sl@0
|
398 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
399 |
CleanupStack::PushL(active);
|
sl@0
|
400 |
|
sl@0
|
401 |
CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
|
sl@0
|
402 |
observer->SetActive();
|
sl@0
|
403 |
|
sl@0
|
404 |
CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
|
sl@0
|
405 |
CleanupStack::PushL(view);
|
sl@0
|
406 |
|
sl@0
|
407 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
408 |
CleanupStack::PushL(filter);
|
sl@0
|
409 |
filter->SetNullFields(ELogSimIdField);
|
sl@0
|
410 |
TBool res = view->SetFilterL(*filter, active->iStatus);
|
sl@0
|
411 |
TEST(res);
|
sl@0
|
412 |
|
sl@0
|
413 |
//Only events KEventId4 and TheEventId5 are with zero SimId.
|
sl@0
|
414 |
const TLogId KLogEventIds[] ={KEventId4, TheEventId5};
|
sl@0
|
415 |
TBool logEventVisited[] = {EFalse, EFalse};
|
sl@0
|
416 |
const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]);
|
sl@0
|
417 |
|
sl@0
|
418 |
do {
|
sl@0
|
419 |
active->StartL();
|
sl@0
|
420 |
CActiveScheduler::Start();
|
sl@0
|
421 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
422 |
|
sl@0
|
423 |
const TInt viewCount = view->CountL();
|
sl@0
|
424 |
TEST2(viewCount, KLogEventCnt);
|
sl@0
|
425 |
|
sl@0
|
426 |
TInt eventId = view->Event().Id();
|
sl@0
|
427 |
TInt i = 0;
|
sl@0
|
428 |
for(;i<KLogEventCnt;++i)
|
sl@0
|
429 |
{
|
sl@0
|
430 |
if(KLogEventIds[i] == eventId)
|
sl@0
|
431 |
{
|
sl@0
|
432 |
break;
|
sl@0
|
433 |
}
|
sl@0
|
434 |
}
|
sl@0
|
435 |
TEST(i < KLogEventCnt);
|
sl@0
|
436 |
logEventVisited[i] = ETrue;
|
sl@0
|
437 |
}
|
sl@0
|
438 |
while(view->NextL(active->iStatus));
|
sl@0
|
439 |
|
sl@0
|
440 |
//Check that all events were visited.
|
sl@0
|
441 |
for(TInt i=0;i<KLogEventCnt;++i)
|
sl@0
|
442 |
{
|
sl@0
|
443 |
TEST(logEventVisited[i]);
|
sl@0
|
444 |
}
|
sl@0
|
445 |
|
sl@0
|
446 |
CleanupStack::PopAndDestroy(filter);
|
sl@0
|
447 |
CleanupStack::PopAndDestroy(view);
|
sl@0
|
448 |
CleanupStack::PopAndDestroy(observer);
|
sl@0
|
449 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
450 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
/**
|
sl@0
|
454 |
@SYMTestCaseID PDS-LOGENG-UT-4024
|
sl@0
|
455 |
@SYMTestCaseDesc Event View test with an old database (without SimId).
|
sl@0
|
456 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
457 |
"SimId" column. The test creates an event view, sets a filter with a non-zero SimId
|
sl@0
|
458 |
and iterates over the events in the view. It should be possible to view events with SimId
|
sl@0
|
459 |
set, when the database was created using the old format.
|
sl@0
|
460 |
@SYMTestActions Event View test with an old database (without SimId).
|
sl@0
|
461 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
462 |
@SYMTestPriority Medium
|
sl@0
|
463 |
@SYMREQ REQ12747
|
sl@0
|
464 |
*/
|
sl@0
|
465 |
void EventViewTest3L()
|
sl@0
|
466 |
{
|
sl@0
|
467 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
468 |
CleanupStack::PushL(client);
|
sl@0
|
469 |
|
sl@0
|
470 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
471 |
CleanupStack::PushL(active);
|
sl@0
|
472 |
|
sl@0
|
473 |
CLogViewChangeObserver* observer = CLogViewChangeObserver::NewLC();
|
sl@0
|
474 |
observer->SetActive();
|
sl@0
|
475 |
|
sl@0
|
476 |
CLogViewEvent* view = CLogViewEvent::NewL(*client, *observer);
|
sl@0
|
477 |
CleanupStack::PushL(view);
|
sl@0
|
478 |
|
sl@0
|
479 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
480 |
CleanupStack::PushL(filter);
|
sl@0
|
481 |
filter->SetSimId(KSimId1);
|
sl@0
|
482 |
TSimId simId = filter->SimId();
|
sl@0
|
483 |
TEST2(simId, KSimId1);
|
sl@0
|
484 |
TBool res = view->SetFilterL(*filter, active->iStatus);
|
sl@0
|
485 |
TEST(res);
|
sl@0
|
486 |
|
sl@0
|
487 |
//Only events KEventId1 and TheEventId6 are with KSimId1.
|
sl@0
|
488 |
const TLogId KLogEventIds[] ={KEventId1, TheEventId6};
|
sl@0
|
489 |
TBool logEventVisited[] = {EFalse, EFalse};
|
sl@0
|
490 |
const TInt KLogEventCnt = sizeof(KLogEventIds)/sizeof(KLogEventIds[0]);
|
sl@0
|
491 |
|
sl@0
|
492 |
do {
|
sl@0
|
493 |
active->StartL();
|
sl@0
|
494 |
CActiveScheduler::Start();
|
sl@0
|
495 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
496 |
|
sl@0
|
497 |
const TInt viewCount = view->CountL();
|
sl@0
|
498 |
TEST2(viewCount, KLogEventCnt);
|
sl@0
|
499 |
|
sl@0
|
500 |
TInt eventId = view->Event().Id();
|
sl@0
|
501 |
TInt i = 0;
|
sl@0
|
502 |
for(;i<KLogEventCnt;++i)
|
sl@0
|
503 |
{
|
sl@0
|
504 |
if(KLogEventIds[i] == eventId)
|
sl@0
|
505 |
{
|
sl@0
|
506 |
break;
|
sl@0
|
507 |
}
|
sl@0
|
508 |
}
|
sl@0
|
509 |
TEST(i < KLogEventCnt);
|
sl@0
|
510 |
logEventVisited[i] = ETrue;
|
sl@0
|
511 |
}
|
sl@0
|
512 |
while(view->NextL(active->iStatus));
|
sl@0
|
513 |
|
sl@0
|
514 |
//Check that all events were visited.
|
sl@0
|
515 |
for(TInt i=0;i<KLogEventCnt;++i)
|
sl@0
|
516 |
{
|
sl@0
|
517 |
TEST(logEventVisited[i]);
|
sl@0
|
518 |
}
|
sl@0
|
519 |
|
sl@0
|
520 |
CleanupStack::PopAndDestroy(filter);
|
sl@0
|
521 |
CleanupStack::PopAndDestroy(view);
|
sl@0
|
522 |
CleanupStack::PopAndDestroy(observer);
|
sl@0
|
523 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
524 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
525 |
}
|
sl@0
|
526 |
|
sl@0
|
527 |
/**
|
sl@0
|
528 |
@SYMTestCaseID PDS-LOGENG-UT-4043
|
sl@0
|
529 |
@SYMTestCaseDesc CLogEvent - data compatibility test.
|
sl@0
|
530 |
The test uses data externalized from an event prior the "dual SIM support"
|
sl@0
|
531 |
changes were introduced. The test internalizes the event data and checks
|
sl@0
|
532 |
that the data is interpreted correctly.
|
sl@0
|
533 |
@SYMTestActions CLogEvent - data compatibility test.
|
sl@0
|
534 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
535 |
@SYMTestPriority Medium
|
sl@0
|
536 |
@SYMREQ REQ12746
|
sl@0
|
537 |
*/
|
sl@0
|
538 |
void EventDataTestL()
|
sl@0
|
539 |
{
|
sl@0
|
540 |
//Externalized to a buffer event data where the following property values have been set:
|
sl@0
|
541 |
// Id=1, Type=2, "RemoteParty", "Direction", "Data"
|
sl@0
|
542 |
//The used event format is before the "dual SIM support" changes were introduced.
|
sl@0
|
543 |
const TUint8 KEvtData1[] =
|
sl@0
|
544 |
// 0 1 2 3 4 5 6 7 8 9 A B C D E F
|
sl@0
|
545 |
{
|
sl@0
|
546 |
1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
sl@0
|
547 |
255, 0, 0, 0, 0,255,255,255,255, 0, 0, 0, 0, 0, 0, 44,
|
sl@0
|
548 |
82,101,109,111,116,101, 80, 97,114,116,121, 36, 68,105,114,101,
|
sl@0
|
549 |
99,116,105,111,110, 0, 0, 0, 4, 0, 0, 0, 18, 68, 97,116,
|
sl@0
|
550 |
97
|
sl@0
|
551 |
};
|
sl@0
|
552 |
|
sl@0
|
553 |
CLogEvent* evt1 = CLogEvent::NewL();
|
sl@0
|
554 |
CleanupStack::PushL(evt1);
|
sl@0
|
555 |
TPtrC8 ptr1(KEvtData1, sizeof(KEvtData1) / sizeof(KEvtData1[0]));
|
sl@0
|
556 |
RDesReadStream strm1(ptr1);
|
sl@0
|
557 |
strm1 >> *evt1;
|
sl@0
|
558 |
strm1.Close();
|
sl@0
|
559 |
TEST2(evt1->Id(), 1);
|
sl@0
|
560 |
TEST(evt1->EventType() == TUid::Uid(2));
|
sl@0
|
561 |
_LIT(KRemoteParty, "RemoteParty");
|
sl@0
|
562 |
TEST(evt1->RemoteParty() == KRemoteParty);
|
sl@0
|
563 |
_LIT(KDirection, "Direction");
|
sl@0
|
564 |
TEST(evt1->Direction() == KDirection);
|
sl@0
|
565 |
_LIT8(KData, "Data");
|
sl@0
|
566 |
TEST(evt1->Data() == KData);
|
sl@0
|
567 |
TEST(evt1->SimId() == KLogNullSimId);
|
sl@0
|
568 |
CleanupStack::PopAndDestroy(evt1);
|
sl@0
|
569 |
|
sl@0
|
570 |
//Externalized to a buffer event data where the following property values have been set:
|
sl@0
|
571 |
// Id=3, Type=4, "RemoteParty2", "Direction2"
|
sl@0
|
572 |
//The used event format is before the "dual SIM support" changes were introduced.
|
sl@0
|
573 |
const TUint8 KEvtData2[] =
|
sl@0
|
574 |
// 0 1 2 3 4 5 6 7 8 9 A B C D E F
|
sl@0
|
575 |
{
|
sl@0
|
576 |
3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
sl@0
|
577 |
255, 0, 0, 0, 0,255,255,255,255, 0, 0, 0, 0, 0, 0, 48,
|
sl@0
|
578 |
82,101,109,111,116,101, 80, 97,114,116,121, 50, 40, 68,105,114,
|
sl@0
|
579 |
101, 99,116,105,111,110, 50, 0, 0, 0, 0, 0, 0, 0
|
sl@0
|
580 |
};
|
sl@0
|
581 |
|
sl@0
|
582 |
CLogEvent* evt2 = CLogEvent::NewL();
|
sl@0
|
583 |
CleanupStack::PushL(evt2);
|
sl@0
|
584 |
TPtrC8 ptr2(KEvtData2, sizeof(KEvtData2) / sizeof(KEvtData2[0]));
|
sl@0
|
585 |
RDesReadStream strm2(ptr2);
|
sl@0
|
586 |
strm2 >> *evt2;
|
sl@0
|
587 |
strm2.Close();
|
sl@0
|
588 |
TEST2(evt2->Id(), 3);
|
sl@0
|
589 |
TEST(evt2->EventType() == TUid::Uid(4));
|
sl@0
|
590 |
_LIT(KRemoteParty2, "RemoteParty2");
|
sl@0
|
591 |
TEST(evt2->RemoteParty() == KRemoteParty2);
|
sl@0
|
592 |
_LIT(KDirection2, "Direction2");
|
sl@0
|
593 |
TEST(evt2->Direction() == KDirection2);
|
sl@0
|
594 |
TEST(evt2->SimId() == KLogNullSimId);
|
sl@0
|
595 |
CleanupStack::PopAndDestroy(evt2);
|
sl@0
|
596 |
}
|
sl@0
|
597 |
|
sl@0
|
598 |
/**
|
sl@0
|
599 |
@SYMTestCaseID PDS-LOGENG-UT-4046
|
sl@0
|
600 |
@SYMTestCaseDesc CLogClient::ClearLog() - data compatibility test.
|
sl@0
|
601 |
The test uses the OldLogdbu.dat database, created before introducing the new
|
sl@0
|
602 |
"SimId" column. The test verifies that CLogClient::ClearLog() can work with
|
sl@0
|
603 |
database with the old format.
|
sl@0
|
604 |
@SYMTestActions CLogClient::ClearLog() - data compatibility test.
|
sl@0
|
605 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
606 |
@SYMTestPriority Medium
|
sl@0
|
607 |
@SYMREQ REQ12748
|
sl@0
|
608 |
*/
|
sl@0
|
609 |
void ClearLogTestL()
|
sl@0
|
610 |
{
|
sl@0
|
611 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
612 |
CleanupStack::PushL(client);
|
sl@0
|
613 |
|
sl@0
|
614 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
615 |
CleanupStack::PushL(active);
|
sl@0
|
616 |
|
sl@0
|
617 |
//Get one of the events
|
sl@0
|
618 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
619 |
CleanupStack::PushL(event);
|
sl@0
|
620 |
event->SetId(KEventId1);
|
sl@0
|
621 |
active->StartL();
|
sl@0
|
622 |
client->GetEvent(*event, active->iStatus);
|
sl@0
|
623 |
CActiveScheduler::Start();
|
sl@0
|
624 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
625 |
TTime evtTime = event->Time();
|
sl@0
|
626 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
627 |
event = NULL;
|
sl@0
|
628 |
|
sl@0
|
629 |
//Delete all events with time < (evtTime + 1s).
|
sl@0
|
630 |
evtTime += TTimeIntervalSeconds(1);
|
sl@0
|
631 |
active->StartL();
|
sl@0
|
632 |
client->ClearLog(evtTime, active->iStatus);
|
sl@0
|
633 |
CActiveScheduler::Start();
|
sl@0
|
634 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
635 |
|
sl@0
|
636 |
//The event with time "evtTime" should not be in the log anymore.
|
sl@0
|
637 |
event = CLogEvent::NewL();
|
sl@0
|
638 |
CleanupStack::PushL(event);
|
sl@0
|
639 |
event->SetId(KEventId1);
|
sl@0
|
640 |
active->StartL();
|
sl@0
|
641 |
client->GetEvent(*event, active->iStatus);
|
sl@0
|
642 |
CActiveScheduler::Start();
|
sl@0
|
643 |
TEST2(active->iStatus.Int(), KErrNotFound);
|
sl@0
|
644 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
645 |
|
sl@0
|
646 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
647 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
void doTestsL()
|
sl@0
|
651 |
{
|
sl@0
|
652 |
TestUtils::Initialize(_L("t_logcompat"));
|
sl@0
|
653 |
|
sl@0
|
654 |
#ifdef _DEBUG
|
sl@0
|
655 |
TheTest.Start(_L("Copy the old LogEng database"));
|
sl@0
|
656 |
TestUtils::CopyOldDbL();
|
sl@0
|
657 |
//
|
sl@0
|
658 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4018: \"Get Event\" compatibility test"));
|
sl@0
|
659 |
GetEventTestL();
|
sl@0
|
660 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4019: \"Change Event\" compatibility test"));
|
sl@0
|
661 |
ChangeEventTestL();
|
sl@0
|
662 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4020: \"Add Event\" compatibility test"));
|
sl@0
|
663 |
AddEventTestL();
|
sl@0
|
664 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4021: \"Delete Event\" compatibility test"));
|
sl@0
|
665 |
DeleteEventTestL();
|
sl@0
|
666 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4022: \"Event View\" compatibility test"));
|
sl@0
|
667 |
EventViewTestL();
|
sl@0
|
668 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4023: \"Event View 2\" compatibility test"));
|
sl@0
|
669 |
EventViewTest2L();
|
sl@0
|
670 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4024: \"Event View 3\" compatibility test"));
|
sl@0
|
671 |
EventViewTest3L();
|
sl@0
|
672 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4043: \"CLogEvent data\" compatibility test"));
|
sl@0
|
673 |
EventDataTestL();
|
sl@0
|
674 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4046: \"CLogClient::ClearLog()\" compatibility test"));
|
sl@0
|
675 |
ClearLogTestL();
|
sl@0
|
676 |
//
|
sl@0
|
677 |
TestUtils::DeleteDatabaseL();
|
sl@0
|
678 |
#else
|
sl@0
|
679 |
TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()"));
|
sl@0
|
680 |
#endif
|
sl@0
|
681 |
}
|
sl@0
|
682 |
|
sl@0
|
683 |
#else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
|
sl@0
|
684 |
|
sl@0
|
685 |
void doTestsL()
|
sl@0
|
686 |
{
|
sl@0
|
687 |
TestUtils::Initialize(_L("t_logcompat"));
|
sl@0
|
688 |
TheTest.Start(_L("The LogEng compatibility test cases are compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined!"));
|
sl@0
|
689 |
}
|
sl@0
|
690 |
|
sl@0
|
691 |
#endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
|