Update contrib.
1 // Copyright (c) 2005-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.
16 #include "t_logutil2.h"
19 #define PRECONDITION_TRUE(x) TEST((x))
20 #define PRECONDITION_EQ(x,y) TEST2((x),(y))
22 // If LOWCAP is defined in the .mmp file 'hiCapabilityTest' will be set to FALSE.
24 TBool hiCapabilityTest = EFalse;
25 RTest TheTest(_L("t_logsecureview_lowcap"));
26 _LIT(KTestTitle, "t_logsecureview (low capability)");
28 TBool hiCapabilityTest = ETrue;
29 RTest TheTest(_L("t_logsecureview_hicap"));
30 _LIT(KTestTitle, "t_logsecureview (high capability)");
35 @SYMTestCaseID SYSLIB-LOGENG-CT-0135
36 @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
37 @SYMTestActions See the description and expected results.
39 @SYMTestExpectedResults Should always succeed
42 LOCAL_C void TestDuplicateRemoveIdL(CLogViewDuplicate* aView)
44 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0135 "));
45 TLogId id = aView->Event().Id();
46 TRAPD(error, aView->RemoveL(id));
50 TEST2(error, KErrNone);
51 TEST2(aView->CountL(), 3);
55 TEST2(error, KErrPermissionDenied);
56 TEST2(aView->CountL(), 4);
61 @SYMTestCaseID SYSLIB-LOGENG-CT-0136
62 @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
63 @SYMTestActions See the description and expected results.
65 @SYMTestExpectedResults Should always succeed
68 LOCAL_C void TestDuplicateRemoveCurrentL(CLogViewDuplicate* aView, CTestActive* aTestActive)
70 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0136 "));
71 aTestActive->StartL();
72 PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
73 CActiveScheduler::Start();
74 PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
78 aTestActive->StartL();
79 PRECONDITION_TRUE(aView->RemoveL(aTestActive->iStatus));
80 CActiveScheduler::Start();
81 PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
83 TEST2(aView->CountL(), 2);
87 TRAPD(error, aView->RemoveL(aTestActive->iStatus));
89 TEST2(error, KErrPermissionDenied);
90 TEST2(aView->CountL(), 4);
95 @SYMTestCaseID SYSLIB-LOGENG-CT-0137
96 @SYMTestCaseDesc Ensures only a capable client can clear duplicate events from a recent list
97 @SYMTestActions See the description and expected results.
99 @SYMTestExpectedResults Should always succeed
102 LOCAL_C void TestRecentClearDuplicatesL(CLogViewRecent* aRecentView, CLogViewDuplicate* aDuplicateView)
104 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0137 "));
105 TRAPD(error, aRecentView->ClearDuplicatesL());
109 TEST2(error, KErrNone);
110 TEST2(aDuplicateView->CountL(), 0);
114 TEST2(error, KErrPermissionDenied);
115 TEST2(aDuplicateView->CountL(), 4);
120 @SYMTestCaseID SYSLIB-LOGENG-CT-0138
121 @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
122 @SYMTestActions See the description and expected results.
123 @SYMTestPriority High
124 @SYMTestExpectedResults Should always succeed
127 LOCAL_C void TestRecentRemoveIdL(CLogViewRecent* aView)
129 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0138 "));
130 TLogId id = aView->Event().Id();
131 TRAPD(error, aView->RemoveL(id));
135 TEST2(error, KErrNone);
136 TEST2(aView->CountL(), 1);
140 TEST2(error, KErrPermissionDenied);
141 TEST2(aView->CountL(), 2);
146 @SYMTestCaseID SYSLIB-LOGENG-CT-0139
147 @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
148 @SYMTestActions See the description and expected results.
149 @SYMTestPriority High
150 @SYMTestExpectedResults Should always succeed
153 LOCAL_C void TestRecentRemoveCurrentL(CLogViewRecent* aView, CTestActive* aTestActive)
155 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0139 "));
156 aTestActive->StartL();
157 PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
158 CActiveScheduler::Start();
159 PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
161 TRAPD(error, aView->RemoveL(aTestActive->iStatus));
165 TEST2(error, KErrNone);
166 TEST2(aView->CountL(), 0);
170 TEST2(error, KErrPermissionDenied);
171 TEST2(aView->CountL(), 2);
175 LOCAL_C void TestViewsL()
177 CLogClient* client = CLogClient::NewL(theFs);
178 CleanupStack::PushL(client);
180 CTestActive* testActive = new(ELeave)CTestActive();
181 CleanupStack::PushL(testActive);
183 CLogViewRecent* recentView = CLogViewRecent::NewL(*client);
184 CleanupStack::PushL(recentView);
186 testActive->StartL();
187 PRECONDITION_TRUE(recentView->SetRecentListL(KLogRecentIncomingCalls, testActive->iStatus));
188 CActiveScheduler::Start();
189 PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
190 PRECONDITION_EQ(recentView->CountL(), 2);
192 CLogViewDuplicate* duplicateView = CLogViewDuplicate::NewL(*client);
193 CleanupStack::PushL(duplicateView);
195 testActive->StartL();
196 PRECONDITION_TRUE(recentView->DuplicatesL(*duplicateView, testActive->iStatus));
197 CActiveScheduler::Start();
198 PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
199 PRECONDITION_EQ(duplicateView->CountL(), 4);
201 TheTest.Start(_L("RemoveL on duplicate view with id as argument"));
202 TestDuplicateRemoveIdL(duplicateView);
204 TheTest.Next(_L("RemoveL on duplicate view at current cursor position"));
205 TestDuplicateRemoveCurrentL(duplicateView, testActive);
207 TheTest.Next(_L("ClearDuplicatesL on recent view"));
208 TestRecentClearDuplicatesL(recentView, duplicateView);
210 TheTest.Next(_L("RemoveL on recent view with id as argument"));
211 TestRecentRemoveIdL(recentView);
213 TheTest.Next(_L("RemoveL on recent view at current cursor position"));
214 TestRecentRemoveCurrentL(recentView, testActive);
216 CleanupStack::PopAndDestroy(4);
219 //.............................................................................
223 TestUtils::Initialize(KTestTitle);
224 TestUtils::DeleteDatabaseL();
225 TestUtils::AddViewTestEventsL();
229 TestUtils::DeleteDatabaseL();