sl@0
|
1 |
// Copyright (c) 2005-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "t_logutil2.h"
|
sl@0
|
17 |
#include <logview.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
#define PRECONDITION_TRUE(x) TEST((x))
|
sl@0
|
20 |
#define PRECONDITION_EQ(x,y) TEST2((x),(y))
|
sl@0
|
21 |
|
sl@0
|
22 |
// If LOWCAP is defined in the .mmp file 'hiCapabilityTest' will be set to FALSE.
|
sl@0
|
23 |
#ifdef LOWCAP
|
sl@0
|
24 |
TBool hiCapabilityTest = EFalse;
|
sl@0
|
25 |
RTest TheTest(_L("t_logsecureview_lowcap"));
|
sl@0
|
26 |
_LIT(KTestTitle, "t_logsecureview (low capability)");
|
sl@0
|
27 |
#else
|
sl@0
|
28 |
TBool hiCapabilityTest = ETrue;
|
sl@0
|
29 |
RTest TheTest(_L("t_logsecureview_hicap"));
|
sl@0
|
30 |
_LIT(KTestTitle, "t_logsecureview (high capability)");
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0135
|
sl@0
|
36 |
@SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
|
sl@0
|
37 |
@SYMTestActions See the description and expected results.
|
sl@0
|
38 |
@SYMTestPriority High
|
sl@0
|
39 |
@SYMTestExpectedResults Should always succeed
|
sl@0
|
40 |
@SYMREQ REQ3431
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
LOCAL_C void TestDuplicateRemoveIdL(CLogViewDuplicate* aView)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0135 "));
|
sl@0
|
45 |
TLogId id = aView->Event().Id();
|
sl@0
|
46 |
TRAPD(error, aView->RemoveL(id));
|
sl@0
|
47 |
|
sl@0
|
48 |
if(hiCapabilityTest)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
TEST2(error, KErrNone);
|
sl@0
|
51 |
TEST2(aView->CountL(), 3);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
else
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TEST2(error, KErrPermissionDenied);
|
sl@0
|
56 |
TEST2(aView->CountL(), 4);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0136
|
sl@0
|
62 |
@SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
|
sl@0
|
63 |
@SYMTestActions See the description and expected results.
|
sl@0
|
64 |
@SYMTestPriority High
|
sl@0
|
65 |
@SYMTestExpectedResults Should always succeed
|
sl@0
|
66 |
@SYMREQ REQ3431
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
LOCAL_C void TestDuplicateRemoveCurrentL(CLogViewDuplicate* aView, CTestActive* aTestActive)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0136 "));
|
sl@0
|
71 |
aTestActive->StartL();
|
sl@0
|
72 |
PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
|
sl@0
|
73 |
CActiveScheduler::Start();
|
sl@0
|
74 |
PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
|
sl@0
|
75 |
|
sl@0
|
76 |
if(hiCapabilityTest)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
aTestActive->StartL();
|
sl@0
|
79 |
PRECONDITION_TRUE(aView->RemoveL(aTestActive->iStatus));
|
sl@0
|
80 |
CActiveScheduler::Start();
|
sl@0
|
81 |
PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
|
sl@0
|
82 |
|
sl@0
|
83 |
TEST2(aView->CountL(), 2);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
else
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TRAPD(error, aView->RemoveL(aTestActive->iStatus));
|
sl@0
|
88 |
|
sl@0
|
89 |
TEST2(error, KErrPermissionDenied);
|
sl@0
|
90 |
TEST2(aView->CountL(), 4);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0137
|
sl@0
|
96 |
@SYMTestCaseDesc Ensures only a capable client can clear duplicate events from a recent list
|
sl@0
|
97 |
@SYMTestActions See the description and expected results.
|
sl@0
|
98 |
@SYMTestPriority High
|
sl@0
|
99 |
@SYMTestExpectedResults Should always succeed
|
sl@0
|
100 |
@SYMREQ REQ3431
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
LOCAL_C void TestRecentClearDuplicatesL(CLogViewRecent* aRecentView, CLogViewDuplicate* aDuplicateView)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0137 "));
|
sl@0
|
105 |
TRAPD(error, aRecentView->ClearDuplicatesL());
|
sl@0
|
106 |
|
sl@0
|
107 |
if(hiCapabilityTest)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
TEST2(error, KErrNone);
|
sl@0
|
110 |
TEST2(aDuplicateView->CountL(), 0);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
else
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TEST2(error, KErrPermissionDenied);
|
sl@0
|
115 |
TEST2(aDuplicateView->CountL(), 4);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0138
|
sl@0
|
121 |
@SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
|
sl@0
|
122 |
@SYMTestActions See the description and expected results.
|
sl@0
|
123 |
@SYMTestPriority High
|
sl@0
|
124 |
@SYMTestExpectedResults Should always succeed
|
sl@0
|
125 |
@SYMREQ REQ3431
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
LOCAL_C void TestRecentRemoveIdL(CLogViewRecent* aView)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0138 "));
|
sl@0
|
130 |
TLogId id = aView->Event().Id();
|
sl@0
|
131 |
TRAPD(error, aView->RemoveL(id));
|
sl@0
|
132 |
|
sl@0
|
133 |
if(hiCapabilityTest)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
TEST2(error, KErrNone);
|
sl@0
|
136 |
TEST2(aView->CountL(), 1);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
else
|
sl@0
|
139 |
{
|
sl@0
|
140 |
TEST2(error, KErrPermissionDenied);
|
sl@0
|
141 |
TEST2(aView->CountL(), 2);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0139
|
sl@0
|
147 |
@SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
|
sl@0
|
148 |
@SYMTestActions See the description and expected results.
|
sl@0
|
149 |
@SYMTestPriority High
|
sl@0
|
150 |
@SYMTestExpectedResults Should always succeed
|
sl@0
|
151 |
@SYMREQ REQ3431
|
sl@0
|
152 |
*/
|
sl@0
|
153 |
LOCAL_C void TestRecentRemoveCurrentL(CLogViewRecent* aView, CTestActive* aTestActive)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0139 "));
|
sl@0
|
156 |
aTestActive->StartL();
|
sl@0
|
157 |
PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
|
sl@0
|
158 |
CActiveScheduler::Start();
|
sl@0
|
159 |
PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
|
sl@0
|
160 |
|
sl@0
|
161 |
TRAPD(error, aView->RemoveL(aTestActive->iStatus));
|
sl@0
|
162 |
|
sl@0
|
163 |
if(hiCapabilityTest)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
TEST2(error, KErrNone);
|
sl@0
|
166 |
TEST2(aView->CountL(), 0);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
else
|
sl@0
|
169 |
{
|
sl@0
|
170 |
TEST2(error, KErrPermissionDenied);
|
sl@0
|
171 |
TEST2(aView->CountL(), 2);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
LOCAL_C void TestViewsL()
|
sl@0
|
176 |
{
|
sl@0
|
177 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
178 |
CleanupStack::PushL(client);
|
sl@0
|
179 |
|
sl@0
|
180 |
CTestActive* testActive = new(ELeave)CTestActive();
|
sl@0
|
181 |
CleanupStack::PushL(testActive);
|
sl@0
|
182 |
|
sl@0
|
183 |
CLogViewRecent* recentView = CLogViewRecent::NewL(*client);
|
sl@0
|
184 |
CleanupStack::PushL(recentView);
|
sl@0
|
185 |
|
sl@0
|
186 |
testActive->StartL();
|
sl@0
|
187 |
PRECONDITION_TRUE(recentView->SetRecentListL(KLogRecentIncomingCalls, testActive->iStatus));
|
sl@0
|
188 |
CActiveScheduler::Start();
|
sl@0
|
189 |
PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
|
sl@0
|
190 |
PRECONDITION_EQ(recentView->CountL(), 2);
|
sl@0
|
191 |
|
sl@0
|
192 |
CLogViewDuplicate* duplicateView = CLogViewDuplicate::NewL(*client);
|
sl@0
|
193 |
CleanupStack::PushL(duplicateView);
|
sl@0
|
194 |
|
sl@0
|
195 |
testActive->StartL();
|
sl@0
|
196 |
PRECONDITION_TRUE(recentView->DuplicatesL(*duplicateView, testActive->iStatus));
|
sl@0
|
197 |
CActiveScheduler::Start();
|
sl@0
|
198 |
PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
|
sl@0
|
199 |
PRECONDITION_EQ(duplicateView->CountL(), 4);
|
sl@0
|
200 |
|
sl@0
|
201 |
TheTest.Start(_L("RemoveL on duplicate view with id as argument"));
|
sl@0
|
202 |
TestDuplicateRemoveIdL(duplicateView);
|
sl@0
|
203 |
|
sl@0
|
204 |
TheTest.Next(_L("RemoveL on duplicate view at current cursor position"));
|
sl@0
|
205 |
TestDuplicateRemoveCurrentL(duplicateView, testActive);
|
sl@0
|
206 |
|
sl@0
|
207 |
TheTest.Next(_L("ClearDuplicatesL on recent view"));
|
sl@0
|
208 |
TestRecentClearDuplicatesL(recentView, duplicateView);
|
sl@0
|
209 |
|
sl@0
|
210 |
TheTest.Next(_L("RemoveL on recent view with id as argument"));
|
sl@0
|
211 |
TestRecentRemoveIdL(recentView);
|
sl@0
|
212 |
|
sl@0
|
213 |
TheTest.Next(_L("RemoveL on recent view at current cursor position"));
|
sl@0
|
214 |
TestRecentRemoveCurrentL(recentView, testActive);
|
sl@0
|
215 |
|
sl@0
|
216 |
CleanupStack::PopAndDestroy(4);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
//.............................................................................
|
sl@0
|
220 |
|
sl@0
|
221 |
void doTestsL()
|
sl@0
|
222 |
{
|
sl@0
|
223 |
TestUtils::Initialize(KTestTitle);
|
sl@0
|
224 |
TestUtils::DeleteDatabaseL();
|
sl@0
|
225 |
TestUtils::AddViewTestEventsL();
|
sl@0
|
226 |
|
sl@0
|
227 |
TestViewsL();
|
sl@0
|
228 |
|
sl@0
|
229 |
TestUtils::DeleteDatabaseL();
|
sl@0
|
230 |
}
|