Update contrib.
2 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
4 // This component and the accompanying materials are made available
5 // under the terms of "Eclipse Public License v1.0"
6 // which accompanies this distribution, and is available
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
19 #include <logcntdef.h>
20 #include "t_logutil2.h"
23 //LOWCAP defined in t_loglowcapability.mmp file.
25 TBool TheHiCapability = EFalse;
26 RTest TheTest(_L("t_loglowcapability"));
27 _LIT(KTestTitle, "t_loglowcapability");
29 TBool TheHiCapability = ETrue;
30 RTest TheTest(_L("t_loghicapability"));
31 _LIT(KTestTitle, "t_loghicapability");
34 const TUid KTestEventUid = {0x10005393};
35 _LIT(KTestEventDesc1, "Event Type Description");
36 _LIT(KTestEventDesc2, "Changed Event Description");
37 _LIT(KTestRemoteParty1, "Remote Party");
38 _LIT(KTestDirection1, "Direction");
39 const TLogDurationType KTestDurationType1 = 1;
40 const TLogDuration KTestDuration1 = 0x1234;
41 _LIT(KTestStatus1, "Status");
42 _LIT(KTestSubject1, "Subject");
43 _LIT(KTestNumber1, "Number");
44 const TLogContactItemId KTestContact1 = 0x1234;
45 const TLogContactItemId KTestContact2 = 0x1234567;
46 const TLogLink KTestLink1 = 0x1234;
47 _LIT8(KTestData1, "ABCDEFGH");
48 const TLogSize KTestMaxLogSize = 0xFFF;
49 const TLogRecentSize KTestMaxRecentLogSize = 0xF;
50 const TLogAge KTestMaxEventAge = 0xFFFFFFF;
54 @SYMTestCaseID SYSLIB-LOGENG-CT-0118
55 @SYMTestCaseDesc The test aims to ensure that the log server starts in reponse
58 @SYMTestActions The test asks the server for details of a built in event type.
59 A successful server start-up is essential for the completion of subsequent tests.
60 @SYMTestExpectedResults Success. (active->iStatus == 0) Regardless of the capability
61 of the process running this test, it should always succeed because the GetEventType
62 is not policed by platform security.
65 LOCAL_C void TestStartupL()
67 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0118 "));
68 CLogClient* client = CLogClient::NewL(theFs);
69 CleanupStack::PushL(client);
71 CTestActive* active = new(ELeave)CTestActive();
72 CleanupStack::PushL(active);
74 CLogEventType *type = CLogEventType::NewL();
75 CleanupStack::PushL(type);
77 type->SetUid(KLogCallEventTypeUid);
79 client->GetEventType(*type, active->iStatus);
80 CActiveScheduler::Start();
81 TEST2(active->iStatus.Int(), KErrNone);
83 CleanupStack::PopAndDestroy(3); // client, active, type
90 @SYMTestCaseID SYSLIB-LOGENG-CT-0119
91 @SYMTestCaseDesc Tests AddEvent, GetEvent, ChangeEvent and DeleteEvent.
93 @SYMTestActions See the description and expected results.
94 @SYMTestExpectedResults
96 1. a client with sufficient capability succeed in all cases would expect the following...
99 ChangeEvent - KErrNone
100 DeleteEvent - KErrNone
102 2. a client with insufficient capability would expect the following results...
103 AddEvent - KErrPermissionDenied
105 ChangeEvent - KErrPermissionDenied
106 DeleteEvent - KErrPermissionDenied
110 LOCAL_C void TestBasicL(CLogClient& aClient)
112 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0119 "));
113 CTestActive* active = new(ELeave)CTestActive();
114 CleanupStack::PushL(active);
116 CLogEvent* event = CLogEvent::NewL();
117 CleanupStack::PushL(event);
122 event->SetEventType(KLogCallEventTypeUid);
125 aClient.AddEvent(*event, active->iStatus);
126 CActiveScheduler::Start();
127 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
131 TInt eventId = TestUtils::AddEventL();
133 event->SetId(eventId);
137 TEST(event->EventType() == KLogCallEventTypeUid);
141 TLogId id = event->Id();
143 event->SetRemoteParty(KTestRemoteParty1);
144 event->SetDirection(KTestDirection1);
145 event->SetDurationType(KTestDurationType1);
146 event->SetDuration(KTestDuration1);
147 event->SetStatus(KTestStatus1);
148 event->SetSubject(KTestSubject1);
149 event->SetNumber(KTestNumber1);
150 event->SetContact(KTestContact1);
151 event->SetLink(KTestLink1);
152 event->SetDataL(KTestData1);
155 aClient.ChangeEvent(*event, active->iStatus);
156 CActiveScheduler::Start();
157 TheTest.Printf(_L("TestBasicL(), TheHiCapability=%d, event id=%d\r\n"), TheHiCapability, id);
158 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
160 TEST(event->Id() == id );
161 TEST(event->EventType() == KLogCallEventTypeUid);
165 TEST(event->Description().Length() > 0);
166 TEST(event->Time() == now);
167 TEST(event->RemoteParty() == KTestRemoteParty1);
168 TEST(event->Direction() == KTestDirection1);
169 TEST(event->DurationType() == KTestDurationType1);
170 TEST(event->Duration() == KTestDuration1);
171 TEST(event->Status() == KTestStatus1);
172 TEST(event->Subject() == KTestSubject1);
173 TEST(event->Number() == KTestNumber1);
174 TEST(event->Contact() == KTestContact1);
175 TEST(event->Link() == KTestLink1);
176 TEST(event->Data() == KTestData1);
179 CleanupStack::PopAndDestroy(); // event;
181 event = CLogEvent::NewL();
182 CleanupStack::PushL(event);
187 aClient.GetEvent(*event, active->iStatus);
188 CActiveScheduler::Start();
189 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
193 TEST(event->Id() == id);
194 TEST(event->EventType() == KLogCallEventTypeUid);
195 TEST(event->Description().Length() > 0);
196 TEST(event->Time() == now);
197 TEST(event->RemoteParty() == KTestRemoteParty1);
198 TEST(event->Direction() == KTestDirection1);
199 TEST(event->DurationType() == KTestDurationType1);
200 TEST(event->Duration() == KTestDuration1);
201 TEST(event->Status() == KTestStatus1);
202 TEST(event->Subject() == KTestSubject1);
203 TEST(event->Number() == KTestNumber1);
204 TEST(event->Contact() == KTestContact1);
205 TEST(event->Link() == KTestLink1);
206 TEST(event->Data() == KTestData1);
210 aClient.DeleteEvent(id, active->iStatus);
211 CActiveScheduler::Start();
212 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
215 aClient.GetEvent(*event, active->iStatus);
216 CActiveScheduler::Start();
217 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNotFound : KErrPermissionDenied);
219 // try to delete a non-existent event...
221 aClient.DeleteEvent(123, active->iStatus);
222 CActiveScheduler::Start();
223 TEST2(active->iStatus.Int(), KErrNotFound);
225 CleanupStack::PopAndDestroy(2); // event, active
231 @SYMTestCaseID SYSLIB-LOGENG-CT-0120
232 @SYMTestCaseDesc Test AddEventType for high and low capability clients
233 @SYMTestPriority High
235 1. For a clients of all capabilities...
236 a. Add a new event type
237 b. Fill a CLogEventType object with details of the new type
238 c. Try to add the new event type for a second time
240 @SYMTestExpectedResults
241 1. For a client with sufficient capability...
242 Test a. - KErrNone - the new event type was added OK
243 Test b. - KErrNone - the new event type is fully visible
244 Test c. - KErrAlreadyExists - it was already added by test a. !
246 2. For a client with insufficient capability...
247 Test a. - KErrPermissionDenied - not allowed !
248 Test b. - KErrNotFound - allowed, but it isn't there because test a. failed.
249 Test c. - KErrPermissionDenied - exactly the same as test a.
253 LOCAL_C void TestAddEventTypeL(CLogClient& aClient)
255 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0120 "));
256 CLogEventType* type = CLogEventType::NewL();
257 CleanupStack::PushL(type);
259 type->SetUid(KTestEventUid);
260 type->SetDescription(KTestEventDesc1);
261 type->SetLoggingEnabled(ETrue);
263 CTestActive* active = new(ELeave)CTestActive();
264 CleanupStack::PushL(active);
266 aClient.AddEventType(*type, active->iStatus);
268 CActiveScheduler::Start();
269 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
272 aClient.GetEventType(*type, active->iStatus);
273 CActiveScheduler::Start();
274 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrNotFound);
277 aClient.AddEventType(*type, active->iStatus);
278 CActiveScheduler::Start();
279 TEST2(active->iStatus.Int(), TheHiCapability ? KErrAlreadyExists : KErrPermissionDenied);
281 CleanupStack::PopAndDestroy(2); // active, type
287 @SYMTestCaseID SYSLIB-LOGENG-CT-0121
288 @SYMTestCaseDesc Try to populate an CLogEventType object with details of a
289 non built-in event type.
290 @SYMTestPriority High
291 @SYMTestActions Calls GetEventType(...)
292 @SYMTestExpectedResults Always succeeds - all clients should be able to do this as
293 the GetEventType operation is not policed by platform security.
296 LOCAL_C void TestGetEventTypeL(CLogClient& aClient)
298 // This test should succeed, regardless of capability
299 // GetEventType is not policed.
302 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0121 "));
303 CLogEventType* type = CLogEventType::NewL();
304 CleanupStack::PushL(type);
306 type->SetUid(KTestEventUid);
308 CTestActive* active = new(ELeave)CTestActive();
309 CleanupStack::PushL(active);
311 aClient.GetEventType(*type, active->iStatus);
313 CActiveScheduler::Start();
314 TEST2(active->iStatus.Int(), KErrNone);
316 TEST(type->Uid() == KTestEventUid);
317 TEST(type->Description() == KTestEventDesc1);
318 TEST(type->LoggingEnabled());
320 CleanupStack::PopAndDestroy(2); // active, type
327 @SYMTestCaseID SYSLIB-LOGENG-CT-0122
328 @SYMTestCaseDesc Tries to change existing event types.
329 @SYMTestActions See the description and expected results.
330 @SYMTestPriority High
331 @SYMTestExpectedResults Should always succeed
334 LOCAL_C void TestChangeEventTypeL(CLogClient& aClient)
336 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0122 "));
337 CTestActive* active = new(ELeave)CTestActive();
338 CleanupStack::PushL(active);
340 CLogEventType* type = CLogEventType::NewL();
341 CleanupStack::PushL(type);
343 type->SetUid(KTestEventUid);
345 type->SetDescription(KTestEventDesc1);
346 type->SetDescription(KTestEventDesc2);
352 TBool finished = EFalse;
359 type->SetDescription(KTestEventDesc2);
360 type->SetLoggingEnabled(EFalse);
362 __UHEAP_FAILNEXT(failCount++);
364 aClient.ChangeEventType(*type, active->iStatus);
367 CActiveScheduler::Start();
369 if (active->iStatus == KErrNone)
372 error = active->iStatus.Int();
376 if (error == KErrNoMemory)
379 aClient.GetEventType(*type, active->iStatus);
380 CActiveScheduler::Start();
381 TEST2(active->iStatus.Int(), KErrNone);
383 TEST(type->Description() == KTestEventDesc1);
384 TEST(type->LoggingEnabled());
388 TEST2(error, TheHiCapability ? KErrNone : KErrPermissionDenied);
395 type->SetUid(KTestEventUid);
398 aClient.GetEventType(*type, active->iStatus);
399 CActiveScheduler::Start();
400 TEST2(active->iStatus.Int(), KErrNone);
404 TEST(type->Uid() == KTestEventUid);
405 TEST(type->Description() == KTestEventDesc2);
406 TEST(type->LoggingEnabled() == EFalse);
410 TEST(type->Uid() == KTestEventUid);
411 TEST(type->Description() == KTestEventDesc1);
412 TEST(type->LoggingEnabled());
415 CleanupStack::PopAndDestroy(2); // type, active
422 @SYMTestCaseID SYSLIB-LOGENG-CT-0123
423 @SYMTestCaseDesc Delete event types
424 @SYMTestActions See the description and expected results.
425 @SYMTestPriority High
426 @SYMTestExpectedResults Should always succeed
429 LOCAL_C void TestDeleteEventTypeL(CLogClient& aClient)
431 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0123 "));
432 CTestActive* active = new(ELeave)CTestActive();
433 CleanupStack::PushL(active);
435 CLogEventType* type = CLogEventType::NewL();
436 CleanupStack::PushL(type);
438 type->SetUid(KTestEventUid);
444 TBool finished = EFalse;
451 __UHEAP_FAILNEXT(failCount++);
452 aClient.DeleteEventType(KTestEventUid, active->iStatus);
455 CActiveScheduler::Start();
457 if (active->iStatus == KErrNone)
460 error = active->iStatus.Int();
464 if (error == KErrNoMemory)
467 aClient.GetEventType(*type, active->iStatus);
468 CActiveScheduler::Start();
469 TEST2(active->iStatus.Int(), KErrNone);
473 TEST2(error, TheHiCapability ? KErrNone : KErrPermissionDenied);
481 aClient.GetEventType(*type, active->iStatus);
482 CActiveScheduler::Start();
483 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNotFound : KErrNone);
485 CleanupStack::PopAndDestroy(2); // type, active
492 @SYMTestCaseID SYSLIB-LOGENG-CT-0124
493 @SYMTestCaseDesc Try to delete built in event types
494 @SYMTestPriority High
495 @SYMTestActions No one is allowed to delete built in event types !
496 @SYMTestExpectedResults Should always succeed
499 LOCAL_C void TestDeleteBuiltInEventTypeL(CLogClient& aClient)
501 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0124 "));
502 CTestActive* active = new(ELeave)CTestActive();
503 CleanupStack::PushL(active);
505 CLogEventType* type = CLogEventType::NewL();
506 CleanupStack::PushL(type);
508 TUid someBuiltInTypes [] =
510 KLogCallEventTypeUid,
511 KLogDataEventTypeUid,
515 for (TInt i=0; i < 3; i++)
517 aClient.DeleteEventType(someBuiltInTypes [i], active->iStatus);
519 CActiveScheduler::Start();
520 TEST2(active->iStatus.Int(), KErrPermissionDenied);
522 type->SetUid(someBuiltInTypes [i]);
524 aClient.GetEventType(*type, active->iStatus);
525 CActiveScheduler::Start();
526 TEST2(active->iStatus.Int(), KErrNone);
527 TEST(type->Uid() == someBuiltInTypes [i]);
530 CleanupStack::PopAndDestroy(2); // type, active
538 @SYMTestCaseID SYSLIB-LOGENG-CT-0125
539 @SYMTestCaseDesc Get database configuration
540 @SYMTestPriority High
541 @SYMTestActions All clients are allowed to do this
542 @SYMTestExpectedResults Should always succeed
545 LOCAL_C void TestGetConfigL(CLogClient& aClient)
547 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0125 "));
548 CTestActive* active = new(ELeave)CTestActive();
549 CleanupStack::PushL(active);
553 TEST(config.iMaxEventAge == 0);
554 TEST(config.iMaxLogSize == 0);
555 TEST(config.iMaxRecentLogSize == 0);
561 TBool finished = EFalse;
565 __UHEAP_FAILNEXT(failCount++);
566 aClient.GetConfig(config, active->iStatus);
569 CActiveScheduler::Start();
571 if (active->iStatus == KErrNone)
574 TEST2(active->iStatus.Int(), KErrNoMemory);
579 TEST(config.iMaxEventAge > 0);
580 TEST(config.iMaxLogSize > 0);
581 TEST(config.iMaxRecentLogSize > 0);
583 CleanupStack::PopAndDestroy(); // active
590 @SYMTestCaseID SYSLIB-LOGENG-CT-0126
591 @SYMTestCaseDesc Change the database configuration
592 @SYMTestPriority High
593 @SYMTestActions Low capability clients can't do this
594 @SYMTestExpectedResults Should always succeed
597 LOCAL_C void TestChangeConfigL(CLogClient& aClient)
599 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0126 "));
600 CTestActive* active = new(ELeave)CTestActive();
601 CleanupStack::PushL(active);
603 TLogConfig configOld;
606 aClient.GetConfig(configOld, active->iStatus);
607 CActiveScheduler::Start();
608 TEST2(active->iStatus.Int(), KErrNone);
616 TBool finished = EFalse;
623 config.iMaxLogSize = KTestMaxLogSize;
624 config.iMaxRecentLogSize = KTestMaxRecentLogSize;
625 config.iMaxEventAge = KTestMaxEventAge;
627 __UHEAP_FAILNEXT(failCount++);
628 aClient.ChangeConfig(config, active->iStatus);
631 CActiveScheduler::Start();
633 if (active->iStatus == KErrNone)
636 error = active->iStatus.Int();
640 if ((error == KErrNoMemory) || (error == KErrPermissionDenied))
643 aClient.GetConfig(config, active->iStatus);
644 CActiveScheduler::Start();
645 TEST2(active->iStatus.Int(), KErrNone);
647 TEST(config.iMaxLogSize == configOld.iMaxLogSize);
648 TEST(config.iMaxRecentLogSize == configOld.iMaxRecentLogSize);
649 TEST(config.iMaxEventAge == configOld.iMaxEventAge);
653 TEST2(error, KErrNone);
656 if(! TheHiCapability)
663 TEST(config.iMaxLogSize == KTestMaxLogSize);
664 TEST(config.iMaxRecentLogSize == KTestMaxRecentLogSize);
665 TEST(config.iMaxEventAge == KTestMaxEventAge);
669 TEST(config.iMaxLogSize == configOld.iMaxLogSize);
670 TEST(config.iMaxRecentLogSize == configOld.iMaxRecentLogSize);
671 TEST(config.iMaxEventAge == configOld.iMaxEventAge);
674 CleanupStack::PopAndDestroy(); // active
681 @SYMTestCaseID SYSLIB-LOGENG-CT-0127
682 @SYMTestCaseDesc Clear the log
683 @SYMTestPriority High
684 @SYMTestActions Low capability clients can't do this
685 @SYMTestExpectedResults Should always pass
688 void ClearLogL(CLogClient& aClient)
690 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0127 "));
691 CTestActive* active = new(ELeave)CTestActive();
692 CleanupStack::PushL(active);
698 aClient.ClearLog(now, active->iStatus);
700 CActiveScheduler::Start();
701 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
703 CleanupStack::PopAndDestroy(); // active
707 @SYMTestCaseID SYSLIB-LOGENG-CT-0128
708 @SYMTestCaseDesc Try to clear the recent event list
709 @SYMTestPriority High
710 @SYMTestActions Low capability clients will fail
711 @SYMTestExpectedResults Should always succeed
714 void ClearRecentListL(CLogClient& aClient)
716 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0128 "));
717 CTestActive* active = new(ELeave)CTestActive();
718 CleanupStack::PushL(active);
724 aClient.ClearLog(KLogRecentIncomingCalls, active->iStatus);
726 CActiveScheduler::Start();
727 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
729 CleanupStack::PopAndDestroy(); // active
732 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
735 @SYMTestCaseID PDS-LOGENG-UT-4040
736 @SYMTestCaseDesc Clear log events with specific SimId - platform security test.
737 This test is called from two test applications: t_logHicapability
738 and t_loglowcapabilty. As the names state, t_loghicapability has platsec capabilities to
739 call CLogClient::CLearLog(), t_loglowcapabilty - hasn't.
740 When t_loghicapability calls ClearLogL(), "TheHiCapability" flag is true and it is expected
741 the CLogClient::ClearLog() call to complete successfully.
742 When t_loglowcapability calls ClearLogL(), "TheHiCapability" flag is false and it is expected
743 the CLogClient::ClearLog() call to fail with KErrPermissionDenied.
744 @SYMTestActions Clear log events with specific SimId - platform security test.
745 @SYMTestExpectedResults Test must not fail
746 @SYMTestPriority High
749 void ClearLogL(CLogClient& aClient, TSimId aSimId)
750 {//This test case is compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined.
751 CTestActive* active = new(ELeave)CTestActive();
752 CleanupStack::PushL(active);
758 aClient.ClearLog(now, aSimId, active->iStatus);
760 CActiveScheduler::Start();
761 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
763 CleanupStack::PopAndDestroy(); // active
767 @SYMTestCaseID PDS-LOGENG-UT-4041
768 @SYMTestCaseDesc Clear log events from the specified recent list with specific SimId - platform security test.
769 This test is called from two test applications: t_logHicapability
770 and t_loglowcapabilty. As the names state, t_loghicapability has platsec capabilities to
771 call CLogClient::CLearLog(), t_loglowcapabilty - hasn't.
772 When t_loghicapability calls ClearLogL(), "TheHiCapability" flag is true and it is expected
773 the CLogClient::ClearLog() call to complete successfully.
774 When t_loglowcapability calls ClearLogL(), "TheHiCapability" flag is false and it is expected
775 the CLogClient::ClearLog() call to fail with KErrPermissionDenied.
776 @SYMTestActions Clear log events from the specified recent list with specific SimId - platform security test.
777 @SYMTestExpectedResults Test must not fail
778 @SYMTestPriority High
781 void ClearRecentListL(CLogClient& aClient, TSimId aSimId)
782 {//This test case is compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined.
783 CTestActive* active = new(ELeave)CTestActive();
784 CleanupStack::PushL(active);
790 aClient.ClearLog(KLogRecentIncomingCalls, aSimId, active->iStatus);
792 CActiveScheduler::Start();
793 TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
795 CleanupStack::PopAndDestroy(); // active
798 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
801 @SYMTestCaseID SYSLIB-LOGENG-CT-0129
802 @SYMTestCaseDesc Test that a view only contains events that are suitable for a clients cabability
803 @SYMTestPriority High
804 @SYMTestActions See comments in the trest code below for further info.
805 @SYMTestExpectedResults Should always succeed
808 LOCAL_C void TestEventViewWithFilterL(CLogClient& aClient)
810 // TestUtils::AddTestEventsL() --> should be called before this function.
811 // It deletes the database, then...
812 // adds 8 events - 2 are visible to clients with no capabilities
813 // and 6 are of type KLogCallEventTypeUid, which is protected.
814 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0129 "));
815 CTestActive* active = new(ELeave)CTestActive;
816 CleanupStack::PushL(active);
818 CLogFilterList* list = new(ELeave)CLogFilterList;
819 CleanupStack::PushL(list);
821 CLogViewEvent* view = CLogViewEvent::NewL(aClient);
822 CleanupStack::PushL(view);
824 CLogFilter* filter = CLogFilter::NewL();
825 CleanupStack::PushL(filter);
827 TLogString direction;
828 aClient.GetString(direction, R_LOG_DIR_IN);
831 // Of the 8 new events, 2 have KTestContact1 as the contact field
832 // One of them is a secure type and the other isn't.
833 // So, if running at hi capability, expect 2 events, else 1
834 TInt expectedEventCount = (TheHiCapability) ? 2 : 1;
835 filter->SetContact(KTestContact1);
836 list->AppendL(filter);
838 TEST(view->SetFilterL(*list, active->iStatus));
839 CActiveScheduler::Start();
840 TEST(view->CountL() == expectedEventCount);
843 // Of the 8 new events, 6 have KTestContact2 as the contact field
844 // One of them is a secure type and the other isn't.
845 // The filters will be combined in the query, so expect
846 // 8 events if running at hi capability, else 2
847 expectedEventCount = (TheHiCapability) ? 8 : 2;
848 CleanupStack::Pop(); // filter
849 filter = CLogFilter::NewL();
850 CleanupStack::PushL(filter);
851 filter->SetContact(KTestContact2);
852 list->AppendL(filter);
854 TEST(view->SetFilterL(*list, active->iStatus));
855 CActiveScheduler::Start();
856 TEST(view->CountL() == expectedEventCount);
859 // Of the 8 new events, 7 have R_LOG_DIR_IN as the direction field.
860 // Two of these are only visible for hi capability clients, the other one
861 // can be viewed by all clients.
862 expectedEventCount = (TheHiCapability) ? 7 : 1;
863 CleanupStack::Pop(); // filter
864 filter = CLogFilter::NewL();
865 CleanupStack::PushL(filter);
866 filter->SetDirection(direction);
867 list->AppendL(filter);
869 TEST(view->SetFilterL(*list, active->iStatus));
870 CActiveScheduler::Start();
871 TEST(view->CountL() == expectedEventCount);
874 list->ResetAndDestroy();
875 CleanupStack::Pop(); // filter
876 CleanupStack::PopAndDestroy(3); // view, list, active
883 @SYMTestCaseID SYSLIB-LOGENG-CT-0130
884 @SYMTestCaseDesc Test the clients ability to view recent events
885 @SYMTestActions See the description and expected results.
886 @SYMTestPriority High
887 @SYMTestExpectedResults Should always succeed
890 LOCAL_C void TestRecentViewL(CLogClient& aClient)
892 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0130 "));
893 CTestActive* active = new(ELeave)CTestActive();
894 CleanupStack::PushL(active);
896 CLogViewRecent* view = CLogViewRecent::NewL(aClient);
897 CleanupStack::PushL(view);
901 // will return FALSE if the view is empty, which should be the case
902 // with low/no capability clients.
903 if (view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus))
905 __ASSERT_ALWAYS(TheHiCapability, _L("TestRecentViewL"));
906 CActiveScheduler::Start();
907 TEST2(active->iStatus.Int(), KErrNone);
908 TEST(view->CountL() == 2);
909 TInt count = view->CountL();
911 else // low capability client won't be able to see recent incoming calls
913 __ASSERT_ALWAYS(!TheHiCapability, _L("TestRecentViewL"));
917 CleanupStack::PopAndDestroy(2); // view, active
920 //.............................................................................
924 TestUtils::Initialize(KTestTitle);
926 TheTest.Start(_L("Starting tests..."));
928 CLogClient* client = CLogClient::NewL(theFs);
929 CleanupStack::PushL(client);
931 TestUtils::DeleteDatabaseL();
933 TheTest.Next(_L("Server startup"));
937 TheTest.Next(_L("Test Add, Get, Change & Delete event"));
938 TestUtils::DeleteDatabaseL();
940 theLog.Write(_L8("Basic tests OK\n"));
942 TheTest.Next(_L("Add Event Type"));
943 TestAddEventTypeL(*client);
944 theLog.Write(_L8("Add Event Type test OK\n"));
948 // TestAddEventTypeL() will have failed to add an event type, so
949 // this will ensure one is present for the next tests.
950 TestUtils::AddEventTypeL();
953 TheTest.Next(_L("Get Event Type"));
954 TestGetEventTypeL(*client);
955 theLog.Write(_L8("Get Event Type test OK\n"));
957 TheTest.Next(_L("Change Event Type"));
958 TestChangeEventTypeL(*client);
959 theLog.Write(_L8("Change Event Type test OK\n"));
961 TheTest.Next(_L("Delete Event Type"));
962 TestDeleteEventTypeL(*client);
963 theLog.Write(_L8("Delete Event Type test OK\n"));
965 TheTest.Next(_L("Delete Built-in Event Type"));
966 TestDeleteBuiltInEventTypeL(*client);
967 theLog.Write(_L8("Delete Built-in Event Type test OK\n"));
969 TheTest.Next(_L("Get Server Configuration"));
970 TestGetConfigL(*client);
971 theLog.Write(_L8("Get Server Configuration test OK\n"));
973 TheTest.Next(_L("Change Server Configuration"));
974 TestChangeConfigL(*client);
975 theLog.Write(_L8("Change Server Configuration test OK\n"));
977 TheTest.Next(_L("Clear the Log test"));
979 theLog.Write(_L8("Clear the Log test OK\n"));
981 TheTest.Next(_L("Clear Recent List test"));
982 ClearRecentListL(*client);
983 theLog.Write(_L8("Clear Recent List test OK\n"));
985 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
986 const TSimId KSimId = 4000000000U;
988 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4040 Clear the \"Log + SimId\" test"));
989 ClearLogL(*client, KSimId);
990 theLog.Write(_L8("Clear the \"Log + SimId\" test OK\n"));
992 TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4041 Clear \"Recent List + SimId\" test"));
993 ClearRecentListL(*client, KSimId);
994 theLog.Write(_L8("Clear \"Recent List + SimId\" test OK\n"));
998 // View API tests below this
1000 TestUtils::DeleteDatabaseL();
1002 // TestUtils::AddTestEventsL() --> adds 8 events.
1003 // 2 are visible to clients with no capabilities
1004 // and 6 are of type KLogCallEventTypeUid, which is protected.
1005 TestUtils::AddViewTestEventsL();
1007 TheTest.Next(_L("Event View with Filter list"));
1008 TestEventViewWithFilterL(*client);
1009 theLog.Write(_L8("Event View with Filter list test OK\n"));
1011 TheTest.Next(_L("Recent View"));
1012 TestRecentViewL(*client);
1013 theLog.Write(_L8("Recent View test OK\n"));
1015 TestUtils::DeleteDatabaseL(); // ready for next test
1017 CleanupStack::PopAndDestroy(); // client