Update contrib.
1 // Copyright (c) 2009-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.
14 // t_logsimid.cpp - Log event tests using the SimId event property
23 #include "t_logutil2.h"
24 #include "LogServSqlStrings.h"
26 RTest TheTest(_L("t_logsimid"));
28 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
30 const TLogId KEvId1 = 101;
31 _LIT(KEvDesc1, "Event Type Description 1");
32 _LIT(KEvRemote1, "Remote Party 1");
35 //KLogCallEventType is used in order to use the "recent list" related functionality on the server side
36 //(KEvDirection1 value also plays important role)
37 const TUid KEvTypeUid = {KLogCallEventType};
38 //KEvDirection1 together with the KEvTypeUid guarantee that the properties of events being added match the conditions of one
39 //of the LogEng server recent lists and thus the "recent list" related functionality on the server side will be used.
40 _LIT(KEvDirection1, "Missed call");
42 _LIT(KEvStatus1, "Status 1");
43 _LIT(KEvSubject1, "Subject 1");
44 _LIT(KEvNumber1, "11119999");
45 const TLogDurationType KEvDurationType1 = 1;
46 const TLogDuration KEvDuration1 = 1000;
47 const TLogContactItemId KEvContact1 = 1010;
48 const TLogLink KEvLink1 = 2000;
49 _LIT8(KEvData1, "ABCDEFGH 1");
50 const TLogFlags KEvFlags1 = 0x5;
51 const TSimId KEvSimId1 = 3000000910U;//Bigger than KMaxTInt, to check that SQL statement formatting works as expected
53 const TInt KDiffEvCount = 10;
54 const TLogDurationType KEvDurationType2 = 2;
55 _LIT(KEvNumber2, "22226666");
57 const TUid KEvTypeUidLoggingDisabled = {0x447422};
59 //The default max log size is 1000. But the test timeouts on hardware with max log size of 1000.
60 const TInt KMaxLogSize = 200;
61 const TInt KMaxPlusEvCount = 100; //Added events count on top of the max log size
63 TInt TheAddedEventCount = -1;
64 TInt TheMaxLogSize = -1;
66 enum TLogViewSimId {ELogWithoutSimId, ELogWithSimId, ELogIgnoreSimId, ELogDiffEvents};
70 void DoTestEvent1(const CLogEvent& aEvent)
72 TEST(aEvent.Id() == KEvId1);
73 TEST(aEvent.EventType() == KEvTypeUid);
74 TEST(aEvent.RemoteParty() == KEvRemote1);
75 TEST(aEvent.Direction() == KEvDirection1);
76 TEST(aEvent.DurationType() == KEvDurationType1);
77 TEST(aEvent.Duration() == KEvDuration1);
78 TEST(aEvent.Status() == KEvStatus1);
79 TEST(aEvent.Subject() == KEvSubject1);
80 TEST(aEvent.Number() == KEvNumber1);
81 TEST(aEvent.Contact() == KEvContact1);
82 TEST(aEvent.Link() == KEvLink1);
83 TEST(aEvent.Description() == KEvDesc1);
84 TEST(aEvent.Flags() == KEvFlags1);
85 TEST(aEvent.Data() == KEvData1);
86 TEST(aEvent.SimId() == KEvSimId1);
89 void DoTestFilter1(const CLogFilter& aFilter)
91 TEST(aFilter.EventType() == KEvTypeUid);
92 TEST(aFilter.RemoteParty() == KEvRemote1);
93 TEST(aFilter.Direction() == KEvDirection1);
94 TEST(aFilter.DurationType() == KEvDurationType1);
95 TEST(aFilter.Status() == KEvStatus1);
96 TEST(aFilter.Contact() == KEvContact1);
97 TEST(aFilter.Number() == KEvNumber1);
98 TEST(aFilter.Flags() == KEvFlags1);
99 TEST(aFilter.SimId() == KEvSimId1);
103 @SYMTestCaseID PDS-LOGENG-UT-4025
104 @SYMTestCaseDesc CLogEvent API and SimId test.
105 The test creates an event and checks that event Copy(), Internalize() and Externalize()
106 operations work properly.
107 @SYMTestActions CLogEvent API and SimId test.
108 @SYMTestExpectedResults Test must not fail
109 @SYMTestPriority Medium
112 void LogEventApiTestL()
114 CLogEvent* event = CLogEvent::NewL();
115 CleanupStack::PushL(event);
117 event->SetId(KEvId1);
118 event->SetEventType(KEvTypeUid);
119 event->SetRemoteParty(KEvRemote1);
120 event->SetDirection(KEvDirection1);
121 event->SetDurationType(KEvDurationType1);
122 event->SetDuration(KEvDuration1);
123 event->SetStatus(KEvStatus1);
124 event->SetSubject(KEvSubject1);
125 event->SetNumber(KEvNumber1);
126 event->SetContact(KEvContact1);
127 event->SetLink(KEvLink1);
128 event->SetDescription(KEvDesc1);
129 event->SetFlags(KEvFlags1);
130 event->SetDataL(KEvData1);
131 event->SetSimId( KEvSimId1);
134 CLogEvent* event2 = CLogEvent::NewL();
135 CleanupStack::PushL(event2);
136 event2->CopyL(*event);
137 DoTestEvent1(*event2);
138 CleanupStack::PopAndDestroy(event2);
142 RDesWriteStream strmOut;
144 event->ExternalizeL(strmOut);
149 CLogEvent* event3 = CLogEvent::NewL();
150 CleanupStack::PushL(event3);
151 RDesReadStream strmIn;
153 event3->InternalizeL(strmIn);
155 DoTestEvent1(*event3);
156 CleanupStack::PopAndDestroy(event3);
158 CleanupStack::PopAndDestroy(event);
162 @SYMTestCaseID PDS-LOGENG-UT-4026
163 @SYMTestCaseDesc CLogEvent API and SimId test.
164 The test creates a filter and checks that filter Copy() operation work properly.
165 @SYMTestActions CLogEvent API and SimId test.
166 @SYMTestExpectedResults Test must not fail
167 @SYMTestPriority Medium
170 void LogFilterApiTestL()
172 CLogFilter* filter = CLogFilter::NewL();
173 CleanupStack::PushL(filter);
175 filter->SetEventType(KEvTypeUid);
176 filter->SetRemoteParty(KEvRemote1);
177 filter->SetDirection(KEvDirection1);
178 filter->SetDurationType(KEvDurationType1);
179 filter->SetStatus(KEvStatus1);
180 filter->SetContact(KEvContact1);
181 filter->SetNumber(KEvNumber1);
182 filter->SetFlags(KEvFlags1);
183 filter->SetSimId( KEvSimId1);
186 CLogFilter* filter2 = CLogFilter::NewL();
187 CleanupStack::PushL(filter2);
188 filter2->Copy(*filter);
189 DoTestFilter1(*filter2);
190 CleanupStack::PopAndDestroy(filter2);
192 CleanupStack::PopAndDestroy(filter);
195 void DoSetNewMaxLogSizeL(CLogClient& aClient, CTestActive& aActive)
197 //Check what is the max log size.
200 aClient.GetConfig(config, aActive.iStatus);
201 CActiveScheduler::Start();
202 TEST2(aActive.iStatus.Int(), KErrNone);
203 //Set new max log size
204 config.iMaxLogSize = KMaxLogSize;
206 aClient.ChangeConfig(config, aActive.iStatus);
207 CActiveScheduler::Start();
208 TEST2(aActive.iStatus.Int(), KErrNone);
209 //Test the new max log size
211 aClient.GetConfig(config, aActive.iStatus);
212 CActiveScheduler::Start();
213 TEST2(aActive.iStatus.Int(), KErrNone);
214 TEST2(config.iMaxLogSize, KMaxLogSize);
216 TheMaxLogSize = config.iMaxLogSize;
217 TheAddedEventCount = config.iMaxLogSize + KMaxPlusEvCount;
221 @SYMTestCaseID PDS-LOGENG-UT-4027
222 @SYMTestCaseDesc Add events test.
223 The test adds events to the LogEng database. The events count is bigger than the
224 max log size. Half of the events will be with non-zero SimId property.
225 10 of the events will have different DurationType and Number values than the other events.
226 Apart from checking that the "add event" opertaion works with the new SimId property, this
227 test case also prepares data for the other "view event" test cases.
228 @SYMTestActions Add events test.
229 @SYMTestExpectedResults Test must not fail
230 @SYMTestPriority Medium
233 void LogAddEventsTestL()
235 CLogClient* client = CLogClient::NewL(theFs);
236 CleanupStack::PushL(client);
237 CTestActive* active = new(ELeave)CTestActive();
238 CleanupStack::PushL(active);
240 //Set new max log size
241 DoSetNewMaxLogSizeL(*client, *active);
243 //Add TheAddedEventCount events. Some of them with SimId, some - not.
244 //This certainly will involve some log purging operations when the log size reaches the max.
245 CLogEvent* event = CLogEvent::NewL();
246 CleanupStack::PushL(event);
247 event->SetEventType(KLogCallEventTypeUid);
248 event->SetRemoteParty(KEvRemote1);
249 event->SetDirection(KEvDirection1);
250 event->SetDurationType(KEvDurationType1);
251 event->SetDuration(KEvDuration1);
252 event->SetStatus(KEvStatus1);
253 event->SetSubject(KEvSubject1);
254 event->SetNumber(KEvNumber1);
255 event->SetContact(KEvContact1);
256 event->SetLink(KEvLink1);
257 event->SetDescription(KEvDesc1);
258 event->SetFlags(KEvFlags1);
259 event->SetDataL(KEvData1);
262 st_time.UniversalTime();
264 TheTest.Printf(_L("Added events:\n"));
265 TInt diffEvCount = KDiffEvCount;
266 for(TInt i=0;i<TheAddedEventCount;++i)
268 event->SetSimId(KLogNullSimId);
269 event->SetDurationType(KEvDurationType1);
270 event->SetNumber(KEvNumber1);
273 event->SetSimId(KEvSimId1);
274 if((i > TheMaxLogSize / 2 + 1) && (i % 10) == 0 && --diffEvCount >= 0)
275 {//Add after the second half because when the log grows above the max log size, the first events will be deleted
276 event->SetDurationType(KEvDurationType2);
277 event->SetNumber(KEvNumber2);
281 client->AddEvent(*event, active->iStatus);
282 CActiveScheduler::Start();
283 TEST(!active->IsActive());
284 TEST2(active->iStatus.Int(), KErrNone);
287 TheTest.Printf(_L("%d\r"), i);
290 TheTest.Printf(_L("%d\n"), TheAddedEventCount);
293 end_time.UniversalTime();
295 CleanupStack::PopAndDestroy(event);
297 CleanupStack::PopAndDestroy(active);
298 CleanupStack::PopAndDestroy(client);
300 TTimeIntervalMicroSeconds us = end_time.MicroSecondsFrom(st_time);
301 TheTest.Printf(_L("%d events added. Time: %ld milliseconds\n"), TheAddedEventCount, us.Int64() / 1000);
304 void DoSetFilterL(TLogViewSimId aViewSimId, TInt aExpectedEventCount,
305 CLogViewEvent& aLogView, CLogFilter& aLogFilter, CTestActive& aActive)
309 case ELogWithoutSimId:
310 aLogFilter.SetNullFields(ELogSimIdField);
313 aLogFilter.SetSimId(KEvSimId1);
316 aLogFilter.SetSimId(KEvSimId1);
317 aLogFilter.SetDurationType(KEvDurationType2);
318 aLogFilter.SetNumber(KEvNumber2);
320 case ELogIgnoreSimId:
324 TBool res = aLogView.SetFilterL(aLogFilter, aActive.iStatus);
327 CActiveScheduler::Start();
328 TEST2(aActive.iStatus.Int(), KErrNone);
329 TInt count = aLogView.CountL();
330 TheTest.Printf(_L("===Events count: %d\n"), count);
331 TEST2(count, aExpectedEventCount);
334 void DoTestViewEvent(TLogViewSimId aViewSimId, CLogViewEvent& aLogView)
336 const CLogEvent& e = aLogView.Event();
337 TSimId simid = e.SimId();
338 TLogDurationType durationType = e.DurationType();
339 const TDesC& number = e.Number();
342 case ELogWithoutSimId:
343 TEST2(simid, KLogNullSimId);
346 TEST2U(simid, KEvSimId1);
349 TEST2U(simid, KEvSimId1);
350 TEST2(durationType, KEvDurationType2);
351 TEST(number == KEvNumber2);
353 case ELogIgnoreSimId:
360 @SYMTestCaseID PDS-LOGENG-UT-4028
361 @SYMTestCaseDesc View events test.
362 The test case expects the LogEng database to be already filled with events.
363 Depending what is the value of the aViewSimId, the test will prepare a view and
364 set the view filter to filter in events without SimId, events with SimId, all events,
365 or the events with different DurationType and Number property values. The purpose
366 of the test is to check that the event filtering works as expected with the new SimId
368 @SYMTestActions View events test.
369 @SYMTestExpectedResults Test must not fail
370 @SYMTestPriority Medium
373 void LogViewEventsTestL(TLogViewSimId aViewSimId, TInt aExpectedEventCount)
375 CLogClient* client = CLogClient::NewL(theFs);
376 CleanupStack::PushL(client);
377 CTestActive* active = new(ELeave)CTestActive();
378 CleanupStack::PushL(active);
379 CLogViewEvent* view = CLogViewEvent::NewL(*client);
380 CleanupStack::PushL(view);
381 CLogFilter* filter = CLogFilter::NewL();
382 CleanupStack::PushL(filter);
385 st_time.UniversalTime();
386 DoSetFilterL(aViewSimId, aExpectedEventCount, *view, *filter, *active);
388 end_time.UniversalTime();
389 TTimeIntervalMicroSeconds us = end_time.MicroSecondsFrom(st_time);
390 TheTest.Printf(_L("SetFilter(). Time: %ld milliseconds\n"), us.Int64() / 1000);
393 st_time.UniversalTime();
394 if(view->FirstL(active->iStatus))
399 CActiveScheduler::Start();
400 TEST2(active->iStatus.Int(), KErrNone);
401 DoTestViewEvent(aViewSimId, *view);
404 while(view->NextL(active->iStatus));
406 end_time.UniversalTime();
407 us = end_time.MicroSecondsFrom(st_time);
408 TheTest.Printf(_L("Event view walk completed. Events count: %d. Time: %ld milliseconds\n"), count, us.Int64() / 1000);
410 CleanupStack::PopAndDestroy(filter);
411 CleanupStack::PopAndDestroy(view);
412 CleanupStack::PopAndDestroy(active);
413 CleanupStack::PopAndDestroy(client);
416 //Add a new event type with "logging disabled"
417 void DoAddEventTypeL(CLogClient& aClient, CTestActive& aActive)
419 CLogEventType* type = CLogEventType::NewL();
420 CleanupStack::PushL(type);
422 type->SetUid(KEvTypeUidLoggingDisabled);
423 type->SetDescription(_L("110111011011"));
424 type->SetLoggingEnabled(EFalse);
426 aClient.AddEventType(*type, aActive.iStatus);
428 CActiveScheduler::Start();
429 TEST2(aActive.iStatus.Int(), KErrNone);
431 CleanupStack::PopAndDestroy(type);
436 TestUtils::Initialize(_L("t_logsimid"));
437 TestUtils::DeleteDatabaseL();
439 TheTest.Start(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4025: CLogEvent API test"));
441 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4026: CLogFilter API test"));
443 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4027: Add events test"));
445 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events without SimId test"));
446 LogViewEventsTestL(ELogWithoutSimId, TheMaxLogSize / 2);
447 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events with SimId test"));
448 LogViewEventsTestL(ELogWithSimId, TheMaxLogSize / 2);
449 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events with or without SimId test"));
450 LogViewEventsTestL(ELogIgnoreSimId, TheMaxLogSize);
451 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: More complex event view test"));
452 LogViewEventsTestL(ELogDiffEvents, KDiffEvCount);
454 TestUtils::DeleteDatabaseL();
457 #else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
461 TestUtils::Initialize(_L("t_logsimid"));
462 TheTest.Start(_L("The t_simid test cases are compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined!"));
465 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM