sl@0
|
1 |
// Copyright (c) 2004-2009 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_cenrep_helper.h"
|
sl@0
|
17 |
#include <centralrepository.h>
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <f32file.h>
|
sl@0
|
20 |
#include <bautils.h>
|
sl@0
|
21 |
#include "e32math.h"
|
sl@0
|
22 |
#include "../cenrepsrv/srvreqs.h"
|
sl@0
|
23 |
#include "../common/inc/srvdefs.h"
|
sl@0
|
24 |
#include "../cenrepsrv/srvparams.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
using namespace NCentralRepositoryConstants;
|
sl@0
|
27 |
|
sl@0
|
28 |
RTest TheTest(_L("Central Repository PREQ752 Tests"));
|
sl@0
|
29 |
|
sl@0
|
30 |
TBool OomTesting;
|
sl@0
|
31 |
|
sl@0
|
32 |
const TUid KUidPlatsecTestRepository = { 0x00000100 };
|
sl@0
|
33 |
const TUid KUidCorruptHeaderRepository = { 0xBADBADBA };
|
sl@0
|
34 |
const TUid KUidCorruptSettingRepository = { 0x00000003 };
|
sl@0
|
35 |
|
sl@0
|
36 |
//
|
sl@0
|
37 |
// Repository A
|
sl@0
|
38 |
//
|
sl@0
|
39 |
|
sl@0
|
40 |
const TUint32 KNonExistent = 0;
|
sl@0
|
41 |
|
sl@0
|
42 |
const TInt KNumSettings = 26;
|
sl@0
|
43 |
const TInt KNumUnprotectedSettings = 11;
|
sl@0
|
44 |
const TUint32 KUnprotectedSettingsMask = 0xFF000000 ;
|
sl@0
|
45 |
const TUint32 KInt1 = 1;
|
sl@0
|
46 |
const TInt KInt1_InitialValue = 1;
|
sl@0
|
47 |
const TUint32 KNewInt = 1000;
|
sl@0
|
48 |
const TInt KIntValue = 1234;
|
sl@0
|
49 |
|
sl@0
|
50 |
const TUint32 KReal1 = 2;
|
sl@0
|
51 |
const TReal KReal1_InitialValue = 2.732;
|
sl@0
|
52 |
const TUint32 KReal2 = 8;
|
sl@0
|
53 |
const TReal KReal2_InitialValue = 1.5;
|
sl@0
|
54 |
const TUint32 KReal3 = 17;
|
sl@0
|
55 |
|
sl@0
|
56 |
const TUint32 KString1 = 5;
|
sl@0
|
57 |
_LIT(KString1_InitialValue, "test\\\"string\"");
|
sl@0
|
58 |
|
sl@0
|
59 |
const TUint32 KLongString = 0x300 ;
|
sl@0
|
60 |
|
sl@0
|
61 |
const TUint32 KMoveSource = 0x02000000 ;
|
sl@0
|
62 |
const TUint32 KMoveTarget = 0x02000001 ;
|
sl@0
|
63 |
const TUint32 KMoveSourceDoesntExist = 0x01000000 ;
|
sl@0
|
64 |
const TUint32 KMoveTargetExists = 0x03000000 ;
|
sl@0
|
65 |
const TUint32 KMoveForbidden = 0x04000000 ;
|
sl@0
|
66 |
const TUint32 KMoveMask = 0xFF0000FF ;
|
sl@0
|
67 |
|
sl@0
|
68 |
_LIT(KCreFile, "c:\\private\\10202BE9\\persists\\00000100.cre");
|
sl@0
|
69 |
_LIT(KZCorruptSettingFile, "z:\\private\\10202BE9\\00000003.txt");
|
sl@0
|
70 |
_LIT(KZCorruptHeaderFile, "z:\\private\\10202BE9\\00000bad.cre");
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
74 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
75 |
//Test macroses and functions
|
sl@0
|
76 |
LOCAL_C void CheckL(TInt aValue, TInt aLine)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
if(!aValue)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
CleanupCDriveL();
|
sl@0
|
81 |
TheTest(EFalse, aLine);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
}
|
sl@0
|
84 |
LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
if(aValue != aExpected)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
89 |
CleanupCDriveL();
|
sl@0
|
90 |
TheTest(EFalse, aLine);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|
sl@0
|
93 |
#define TEST(arg) ::CheckL((arg), __LINE__)
|
sl@0
|
94 |
#define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
|
sl@0
|
95 |
|
sl@0
|
96 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
97 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
98 |
|
sl@0
|
99 |
LOCAL_C void KillCentRepServerL()
|
sl@0
|
100 |
{
|
sl@0
|
101 |
_LIT(KCentralRepositoryServerName, "Centralrepositorysrv");
|
sl@0
|
102 |
_LIT(KProcessKillProcess, "t_processkillprocess.exe");
|
sl@0
|
103 |
|
sl@0
|
104 |
TRequestStatus stat;
|
sl@0
|
105 |
RProcess p;
|
sl@0
|
106 |
User::LeaveIfError(p.Create(KProcessKillProcess, KCentralRepositoryServerName));
|
sl@0
|
107 |
|
sl@0
|
108 |
// Asynchronous logon: completes when process terminates with process
|
sl@0
|
109 |
// exit code
|
sl@0
|
110 |
p.Logon(stat);
|
sl@0
|
111 |
p.Resume();
|
sl@0
|
112 |
User::WaitForRequest(stat);
|
sl@0
|
113 |
|
sl@0
|
114 |
TExitType exitType = p.ExitType();
|
sl@0
|
115 |
TInt exitReason = p.ExitReason();
|
sl@0
|
116 |
|
sl@0
|
117 |
_LIT(KKillServerFailed, "Killing Central Repository Server Failed");
|
sl@0
|
118 |
__ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KKillServerFailed, exitReason));
|
sl@0
|
119 |
|
sl@0
|
120 |
p.Close();
|
sl@0
|
121 |
User::LeaveIfError(exitReason);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0080
|
sl@0
|
127 |
@SYMTestCaseDesc Tests reach through Find operations during transactions.
|
sl@0
|
128 |
@SYMTestPriority High
|
sl@0
|
129 |
@SYMTestActions Start a transaction and attempt Find operations.
|
sl@0
|
130 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
131 |
@SYMPREQ PREQ752
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
|
sl@0
|
134 |
LOCAL_C void FindL()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0080 "));
|
sl@0
|
137 |
TInt r;
|
sl@0
|
138 |
|
sl@0
|
139 |
CRepository* repository;
|
sl@0
|
140 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
141 |
|
sl@0
|
142 |
PlatSec platsec;
|
sl@0
|
143 |
|
sl@0
|
144 |
// Test we can do some FindL's in a transaction
|
sl@0
|
145 |
|
sl@0
|
146 |
r = repository->StartTransaction(CRepository::EReadTransaction);
|
sl@0
|
147 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
148 |
TEST2(r, KErrNone);
|
sl@0
|
149 |
|
sl@0
|
150 |
RArray<TUint32> foundIds;
|
sl@0
|
151 |
CleanupClosePushL(foundIds);
|
sl@0
|
152 |
|
sl@0
|
153 |
TRAPD(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask, foundIds));
|
sl@0
|
154 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
155 |
{
|
sl@0
|
156 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
157 |
User::Leave(KErrNoMemory);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
// Note that we are allowed to find any setting regardless of it's platsec
|
sl@0
|
161 |
// what we can't do is return the value
|
sl@0
|
162 |
TEST2(r, KErrNone);
|
sl@0
|
163 |
TEST(foundIds.Count()==KNumUnprotectedSettings);
|
sl@0
|
164 |
foundIds.Reset();
|
sl@0
|
165 |
|
sl@0
|
166 |
TRAP(leaveReason, r = repository->FindL(23, KUnprotectedSettingsMask, foundIds)); // 23 - just a random number, value is not important
|
sl@0
|
167 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
168 |
{
|
sl@0
|
169 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
170 |
User::Leave(KErrNoMemory);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
TEST2(r, KErrNone);
|
sl@0
|
173 |
TEST(foundIds.Count()==KNumUnprotectedSettings);
|
sl@0
|
174 |
foundIds.Reset();
|
sl@0
|
175 |
|
sl@0
|
176 |
TRAP(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask | 2, foundIds));
|
sl@0
|
177 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
178 |
{
|
sl@0
|
179 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
180 |
User::Leave(KErrNoMemory);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
TEST2(r, KErrNone);
|
sl@0
|
183 |
TEST(foundIds.Count()==7);
|
sl@0
|
184 |
foundIds.Reset();
|
sl@0
|
185 |
|
sl@0
|
186 |
TRAP(leaveReason, r = repository->FindL(4, KUnprotectedSettingsMask | 6, foundIds));
|
sl@0
|
187 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
188 |
{
|
sl@0
|
189 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
190 |
User::Leave(KErrNoMemory);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
TEST2(r, KErrNone);
|
sl@0
|
193 |
TEST(foundIds.Count()==1);
|
sl@0
|
194 |
foundIds.Reset();
|
sl@0
|
195 |
|
sl@0
|
196 |
TRAP(leaveReason, r = repository->FindL(15, 15, foundIds));
|
sl@0
|
197 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
198 |
{
|
sl@0
|
199 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
200 |
User::Leave(KErrNoMemory);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
TEST2(r, KErrNotFound);
|
sl@0
|
203 |
TEST(foundIds.Count()==0);
|
sl@0
|
204 |
foundIds.Reset();
|
sl@0
|
205 |
|
sl@0
|
206 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds));
|
sl@0
|
207 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
208 |
{
|
sl@0
|
209 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
210 |
User::Leave(KErrNoMemory);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
213 |
{
|
sl@0
|
214 |
TEST2(r, KErrNone);
|
sl@0
|
215 |
TEST(foundIds.Count()==1);
|
sl@0
|
216 |
TEST(foundIds[0]==KInt1);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
else
|
sl@0
|
219 |
{
|
sl@0
|
220 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
foundIds.Reset();
|
sl@0
|
223 |
|
sl@0
|
224 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 0, foundIds));
|
sl@0
|
225 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
226 |
{
|
sl@0
|
227 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
228 |
User::Leave(KErrNoMemory);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
231 |
{
|
sl@0
|
232 |
TEST2(r, KErrNotFound);
|
sl@0
|
233 |
TEST(foundIds.Count()==0);
|
sl@0
|
234 |
}
|
sl@0
|
235 |
else
|
sl@0
|
236 |
{
|
sl@0
|
237 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KReal2_InitialValue, foundIds));
|
sl@0
|
241 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
242 |
{
|
sl@0
|
243 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
244 |
User::Leave(KErrNoMemory);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
247 |
{
|
sl@0
|
248 |
TEST2(r, KErrNone);
|
sl@0
|
249 |
TEST(foundIds.Count()==2);
|
sl@0
|
250 |
TEST(foundIds[0]==KReal2);
|
sl@0
|
251 |
TEST(foundIds[1]==KReal3);
|
sl@0
|
252 |
}
|
sl@0
|
253 |
else
|
sl@0
|
254 |
{
|
sl@0
|
255 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
256 |
}
|
sl@0
|
257 |
foundIds.Reset();
|
sl@0
|
258 |
|
sl@0
|
259 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 7.7, foundIds));
|
sl@0
|
260 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
261 |
{
|
sl@0
|
262 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
263 |
User::Leave(KErrNoMemory);
|
sl@0
|
264 |
}
|
sl@0
|
265 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
266 |
{
|
sl@0
|
267 |
TEST2(r, KErrNone);
|
sl@0
|
268 |
TEST(foundIds.Count()==0);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
else
|
sl@0
|
271 |
{
|
sl@0
|
272 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds));
|
sl@0
|
276 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
277 |
{
|
sl@0
|
278 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
279 |
User::Leave(KErrNoMemory);
|
sl@0
|
280 |
}
|
sl@0
|
281 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
282 |
{
|
sl@0
|
283 |
TEST2(r, KErrNone);
|
sl@0
|
284 |
TEST(foundIds.Count()==1);
|
sl@0
|
285 |
TEST(foundIds[0]==KString1);
|
sl@0
|
286 |
}
|
sl@0
|
287 |
else
|
sl@0
|
288 |
{
|
sl@0
|
289 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
foundIds.Reset();
|
sl@0
|
292 |
|
sl@0
|
293 |
_LIT(KFoo, "foo");
|
sl@0
|
294 |
TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KFoo, foundIds));
|
sl@0
|
295 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
296 |
{
|
sl@0
|
297 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
298 |
User::Leave(KErrNoMemory);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
301 |
{
|
sl@0
|
302 |
TEST2(r, KErrNotFound);
|
sl@0
|
303 |
TEST(foundIds.Count()==0);
|
sl@0
|
304 |
}
|
sl@0
|
305 |
else
|
sl@0
|
306 |
{
|
sl@0
|
307 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds));
|
sl@0
|
311 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
312 |
{
|
sl@0
|
313 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
314 |
User::Leave(KErrNoMemory);
|
sl@0
|
315 |
}
|
sl@0
|
316 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
317 |
{
|
sl@0
|
318 |
TEST2(r, KErrNone);
|
sl@0
|
319 |
TEST(foundIds.Count()==7);
|
sl@0
|
320 |
TEST2(foundIds.Find(KInt1), KErrNotFound);
|
sl@0
|
321 |
}
|
sl@0
|
322 |
else
|
sl@0
|
323 |
{
|
sl@0
|
324 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
foundIds.Reset();
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
TRAP(leaveReason, r = repository->FindNeqL(25, 25, KInt1_InitialValue, foundIds));
|
sl@0
|
330 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
331 |
{
|
sl@0
|
332 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
333 |
User::Leave(KErrNoMemory);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
TEST2(r, KErrNotFound);
|
sl@0
|
336 |
TEST(foundIds.Count()==0);
|
sl@0
|
337 |
foundIds.Reset();
|
sl@0
|
338 |
|
sl@0
|
339 |
|
sl@0
|
340 |
TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KReal1_InitialValue, foundIds));
|
sl@0
|
341 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
342 |
{
|
sl@0
|
343 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
344 |
User::Leave(KErrNoMemory);
|
sl@0
|
345 |
}
|
sl@0
|
346 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
347 |
{
|
sl@0
|
348 |
TEST2(r, KErrNone);
|
sl@0
|
349 |
TEST(foundIds.Count()==7);
|
sl@0
|
350 |
TEST2(foundIds.Find(KReal1), KErrNotFound);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
else
|
sl@0
|
353 |
{
|
sl@0
|
354 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
355 |
}
|
sl@0
|
356 |
foundIds.Reset();
|
sl@0
|
357 |
|
sl@0
|
358 |
TRAP(leaveReason, r = repository->FindNeqL(25, 25, KReal1_InitialValue, foundIds));
|
sl@0
|
359 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
360 |
{
|
sl@0
|
361 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
362 |
User::Leave(KErrNoMemory);
|
sl@0
|
363 |
}
|
sl@0
|
364 |
TEST2(r, KErrNotFound);
|
sl@0
|
365 |
TEST(foundIds.Count()==0);
|
sl@0
|
366 |
foundIds.Reset();
|
sl@0
|
367 |
|
sl@0
|
368 |
|
sl@0
|
369 |
TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds));
|
sl@0
|
370 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
371 |
{
|
sl@0
|
372 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
373 |
User::Leave(KErrNoMemory);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
376 |
{
|
sl@0
|
377 |
TEST2(r, KErrNone);
|
sl@0
|
378 |
TEST(foundIds.Count()==7);
|
sl@0
|
379 |
TEST2(foundIds.Find(KString1), KErrNotFound);
|
sl@0
|
380 |
}
|
sl@0
|
381 |
else
|
sl@0
|
382 |
{
|
sl@0
|
383 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
384 |
}
|
sl@0
|
385 |
foundIds.Reset();
|
sl@0
|
386 |
|
sl@0
|
387 |
|
sl@0
|
388 |
TRAP(leaveReason, r = repository->FindNeqL(25, 25, KString1_InitialValue, foundIds));
|
sl@0
|
389 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
390 |
{
|
sl@0
|
391 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
392 |
User::Leave(KErrNoMemory);
|
sl@0
|
393 |
}
|
sl@0
|
394 |
TEST2(r, KErrNotFound);
|
sl@0
|
395 |
TEST(foundIds.Count()==0);
|
sl@0
|
396 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
397 |
|
sl@0
|
398 |
TUint32 errorId;
|
sl@0
|
399 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
400 |
TEST2(r, KErrNone);
|
sl@0
|
401 |
CleanupStack::Pop(); // CleanupRollbackTransaction
|
sl@0
|
402 |
|
sl@0
|
403 |
// Restore repository
|
sl@0
|
404 |
r = repository->Reset();
|
sl@0
|
405 |
TEST2(r, KErrNone);
|
sl@0
|
406 |
|
sl@0
|
407 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
408 |
}
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0081
|
sl@0
|
412 |
@SYMTestCaseDesc Tests reach through Find operations during transactions which create and delete settings.
|
sl@0
|
413 |
@SYMTestPriority High
|
sl@0
|
414 |
@SYMTestActions Start various transactions with creates and deletes of settings and attempt Find operations on those settings.
|
sl@0
|
415 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
416 |
@SYMPREQ PREQ752
|
sl@0
|
417 |
*/
|
sl@0
|
418 |
|
sl@0
|
419 |
LOCAL_C void FindWithCreateDeleteL()
|
sl@0
|
420 |
{
|
sl@0
|
421 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0081 "));
|
sl@0
|
422 |
TInt r;
|
sl@0
|
423 |
TUint32 errorId;
|
sl@0
|
424 |
|
sl@0
|
425 |
CRepository* repository;
|
sl@0
|
426 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
427 |
|
sl@0
|
428 |
RArray<TUint32> foundIds;
|
sl@0
|
429 |
|
sl@0
|
430 |
PlatSec platsec;
|
sl@0
|
431 |
|
sl@0
|
432 |
// Test that transaction operations that change settings work with find
|
sl@0
|
433 |
|
sl@0
|
434 |
// Do a create in a transaction and check find operation
|
sl@0
|
435 |
|
sl@0
|
436 |
// Begin transaction for create operation
|
sl@0
|
437 |
|
sl@0
|
438 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
439 |
TEST2(r, KErrNone);
|
sl@0
|
440 |
|
sl@0
|
441 |
// Creates new setting
|
sl@0
|
442 |
r = repository->Create(KNewInt, KIntValue);
|
sl@0
|
443 |
TEST2(r, KErrNone);
|
sl@0
|
444 |
|
sl@0
|
445 |
// Try to find KIntValue - should be there now
|
sl@0
|
446 |
r = repository->FindEqL(0, 0, KIntValue, foundIds);
|
sl@0
|
447 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
448 |
{
|
sl@0
|
449 |
TEST2(r, KErrNone);
|
sl@0
|
450 |
TEST(foundIds.Count()==1);
|
sl@0
|
451 |
TEST(foundIds[0]==KNewInt);
|
sl@0
|
452 |
}
|
sl@0
|
453 |
else
|
sl@0
|
454 |
{
|
sl@0
|
455 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
foundIds.Reset();
|
sl@0
|
458 |
|
sl@0
|
459 |
// Check num of settings - should now be KNumSettings+1
|
sl@0
|
460 |
r = repository->FindL(0, 0, foundIds);
|
sl@0
|
461 |
TEST2(r, KErrNone);
|
sl@0
|
462 |
TEST(foundIds.Count()==KNumSettings+1);
|
sl@0
|
463 |
foundIds.Reset();
|
sl@0
|
464 |
|
sl@0
|
465 |
// Commit transaction - this makes KNewInt persistent
|
sl@0
|
466 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
467 |
TEST2(r, KErrNone);
|
sl@0
|
468 |
|
sl@0
|
469 |
// Check that transaction operation succeeded
|
sl@0
|
470 |
|
sl@0
|
471 |
// Try to find KIntValue - should be there now
|
sl@0
|
472 |
r = repository->FindEqL(0, 0, KIntValue, foundIds);
|
sl@0
|
473 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
474 |
{
|
sl@0
|
475 |
TEST2(r, KErrNone);
|
sl@0
|
476 |
TEST(foundIds.Count()==1);
|
sl@0
|
477 |
TEST(foundIds[0]==KNewInt);
|
sl@0
|
478 |
}
|
sl@0
|
479 |
else
|
sl@0
|
480 |
{
|
sl@0
|
481 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
482 |
}
|
sl@0
|
483 |
foundIds.Reset();
|
sl@0
|
484 |
|
sl@0
|
485 |
// Check num of settings - should still be KNumSettings+1
|
sl@0
|
486 |
r = repository->FindL(0, 0, foundIds);
|
sl@0
|
487 |
TEST2(r, KErrNone);
|
sl@0
|
488 |
TEST(foundIds.Count()==KNumSettings+1);
|
sl@0
|
489 |
foundIds.Reset();
|
sl@0
|
490 |
|
sl@0
|
491 |
// Do a delete in a transaction and check find operation
|
sl@0
|
492 |
|
sl@0
|
493 |
// Begin transaction operation to delete KNewInt
|
sl@0
|
494 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
495 |
TEST2(r, KErrNone);
|
sl@0
|
496 |
|
sl@0
|
497 |
// Delete KNewInt
|
sl@0
|
498 |
r = repository->Delete( KNewInt);
|
sl@0
|
499 |
TEST2(r, KErrNone);
|
sl@0
|
500 |
|
sl@0
|
501 |
// Try to find KIntValue, should not be there
|
sl@0
|
502 |
r = repository->FindEqL(0, 0, KIntValue, foundIds);
|
sl@0
|
503 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
504 |
{
|
sl@0
|
505 |
TEST2(r, KErrNotFound);
|
sl@0
|
506 |
}
|
sl@0
|
507 |
else
|
sl@0
|
508 |
{
|
sl@0
|
509 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
510 |
}
|
sl@0
|
511 |
foundIds.Reset();
|
sl@0
|
512 |
|
sl@0
|
513 |
// Check num of settings - should be KNumSettings
|
sl@0
|
514 |
r = repository->FindL(0, 0, foundIds);
|
sl@0
|
515 |
TEST2(r, KErrNone);
|
sl@0
|
516 |
TEST(foundIds.Count()==KNumSettings);
|
sl@0
|
517 |
foundIds.Reset();
|
sl@0
|
518 |
|
sl@0
|
519 |
// Commit transaction - make removal of KNewInt persistent
|
sl@0
|
520 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
521 |
TEST2(r, KErrNone);
|
sl@0
|
522 |
|
sl@0
|
523 |
// Check that transaction operation succeeded
|
sl@0
|
524 |
|
sl@0
|
525 |
// Try to find KIntValue - should be gone now
|
sl@0
|
526 |
r = repository->FindEqL(0, 0, KIntValue, foundIds);
|
sl@0
|
527 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
528 |
{
|
sl@0
|
529 |
TEST2(r, KErrNotFound);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
else
|
sl@0
|
532 |
{
|
sl@0
|
533 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
534 |
}
|
sl@0
|
535 |
foundIds.Reset();
|
sl@0
|
536 |
|
sl@0
|
537 |
// Check num of settings - should be back to KNumSettings
|
sl@0
|
538 |
r = repository->FindL(0, 0, foundIds);
|
sl@0
|
539 |
TEST2(r, KErrNone);
|
sl@0
|
540 |
TEST(foundIds.Count()==KNumSettings);
|
sl@0
|
541 |
foundIds.Reset();
|
sl@0
|
542 |
|
sl@0
|
543 |
// Restore repository
|
sl@0
|
544 |
r = repository->Reset();
|
sl@0
|
545 |
TEST2(r, KErrNone);
|
sl@0
|
546 |
|
sl@0
|
547 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
548 |
}
|
sl@0
|
549 |
|
sl@0
|
550 |
/**
|
sl@0
|
551 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0082
|
sl@0
|
552 |
@SYMTestCaseDesc Tests reach through Get operations during transactions.
|
sl@0
|
553 |
@SYMTestPriority High
|
sl@0
|
554 |
@SYMTestActions Start a transaction and attempt Get operations.
|
sl@0
|
555 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
556 |
@SYMPREQ PREQ752
|
sl@0
|
557 |
*/
|
sl@0
|
558 |
|
sl@0
|
559 |
LOCAL_C void Get()
|
sl@0
|
560 |
{
|
sl@0
|
561 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0082 "));
|
sl@0
|
562 |
TInt r;
|
sl@0
|
563 |
|
sl@0
|
564 |
CRepository* repository;
|
sl@0
|
565 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
566 |
|
sl@0
|
567 |
// Test we can do some Get's in a transaction
|
sl@0
|
568 |
|
sl@0
|
569 |
r = repository->StartTransaction(CRepository::EReadTransaction);
|
sl@0
|
570 |
TEST2(r, KErrNone);
|
sl@0
|
571 |
|
sl@0
|
572 |
TInt y;
|
sl@0
|
573 |
r = repository->Get(KInt1, y);
|
sl@0
|
574 |
TEST2(r, KErrNone);
|
sl@0
|
575 |
TEST(y==KInt1_InitialValue);
|
sl@0
|
576 |
|
sl@0
|
577 |
TReal real1;
|
sl@0
|
578 |
r = repository->Get(KReal1, real1);
|
sl@0
|
579 |
TEST2(r, KErrNone);
|
sl@0
|
580 |
TEST(real1==KReal1_InitialValue);
|
sl@0
|
581 |
|
sl@0
|
582 |
TBuf<20> str;
|
sl@0
|
583 |
r = repository->Get(KNonExistent, str);
|
sl@0
|
584 |
TEST2(r, KErrNotFound);
|
sl@0
|
585 |
TEST(str.Length()==0);
|
sl@0
|
586 |
|
sl@0
|
587 |
r = repository->Get(KInt1, str);
|
sl@0
|
588 |
TEST2(r, KErrArgument);
|
sl@0
|
589 |
TEST(str.Length()==0);
|
sl@0
|
590 |
|
sl@0
|
591 |
r = repository->Get(KString1, str);
|
sl@0
|
592 |
PlatSec platsec;
|
sl@0
|
593 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
594 |
{
|
sl@0
|
595 |
TEST2(r, KErrNone);
|
sl@0
|
596 |
TEST(str==KString1_InitialValue);
|
sl@0
|
597 |
}
|
sl@0
|
598 |
else
|
sl@0
|
599 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
600 |
|
sl@0
|
601 |
TUint32 errorId;
|
sl@0
|
602 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
603 |
TEST2(r, KErrNone);
|
sl@0
|
604 |
|
sl@0
|
605 |
// Restore repository
|
sl@0
|
606 |
r = repository->Reset();
|
sl@0
|
607 |
TEST2(r, KErrNone);
|
sl@0
|
608 |
|
sl@0
|
609 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
610 |
}
|
sl@0
|
611 |
|
sl@0
|
612 |
/**
|
sl@0
|
613 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0083
|
sl@0
|
614 |
@SYMTestCaseDesc Tests reach through Get operations during transactions which create and delete settings.
|
sl@0
|
615 |
@SYMTestPriority High
|
sl@0
|
616 |
@SYMTestActions Start various transactions with creates and deletes of settings and attempt Get operations on those settings.
|
sl@0
|
617 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
618 |
@SYMPREQ PREQ752
|
sl@0
|
619 |
*/
|
sl@0
|
620 |
|
sl@0
|
621 |
LOCAL_C void GetWithCreateDeleteL()
|
sl@0
|
622 |
{
|
sl@0
|
623 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0083 "));
|
sl@0
|
624 |
TInt r;
|
sl@0
|
625 |
TUint32 errorId;
|
sl@0
|
626 |
|
sl@0
|
627 |
CRepository* repository;
|
sl@0
|
628 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
629 |
|
sl@0
|
630 |
// Test that transaction operations that change settings work with new get
|
sl@0
|
631 |
// which works independently of a transaction
|
sl@0
|
632 |
|
sl@0
|
633 |
// Do a create in a transaction and check find operation
|
sl@0
|
634 |
|
sl@0
|
635 |
// Begin transaction for create operation
|
sl@0
|
636 |
|
sl@0
|
637 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
638 |
TEST2(r, KErrNone);
|
sl@0
|
639 |
|
sl@0
|
640 |
// Create new setting
|
sl@0
|
641 |
r = repository->Create(KNewInt, KIntValue);
|
sl@0
|
642 |
TEST2(r, KErrNone);
|
sl@0
|
643 |
|
sl@0
|
644 |
// Try to get KIntValue - should appear to be there
|
sl@0
|
645 |
TInt i;
|
sl@0
|
646 |
r = repository->Get(KNewInt, i);
|
sl@0
|
647 |
TEST2(r, KErrNone);
|
sl@0
|
648 |
TEST(i==KIntValue);
|
sl@0
|
649 |
|
sl@0
|
650 |
// Commit transaction - KNewInt will be made persistent
|
sl@0
|
651 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
652 |
TEST2(r, KErrNone);
|
sl@0
|
653 |
|
sl@0
|
654 |
// Check that transaction operation succeeded
|
sl@0
|
655 |
|
sl@0
|
656 |
// Try to get KIntValue - should be there now
|
sl@0
|
657 |
r = repository->Get(KNewInt, i);
|
sl@0
|
658 |
TEST2(r, KErrNone);
|
sl@0
|
659 |
TEST(i==KIntValue);
|
sl@0
|
660 |
|
sl@0
|
661 |
// Do a delete in a transaction and check find operation
|
sl@0
|
662 |
|
sl@0
|
663 |
// Begin transaction operation to delete KNewInt
|
sl@0
|
664 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
665 |
TEST2(r, KErrNone);
|
sl@0
|
666 |
|
sl@0
|
667 |
// Delete KNewInt
|
sl@0
|
668 |
r = repository->Delete( KNewInt);
|
sl@0
|
669 |
TEST2(r, KErrNone);
|
sl@0
|
670 |
|
sl@0
|
671 |
// Try to get KIntValue - should appear to be gone
|
sl@0
|
672 |
r = repository->Get(KNewInt, i);
|
sl@0
|
673 |
TEST2(r, KErrNotFound);
|
sl@0
|
674 |
|
sl@0
|
675 |
// Commit transaction - so removal of KIntValue is persistent
|
sl@0
|
676 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
677 |
TEST2(r, KErrNone);
|
sl@0
|
678 |
|
sl@0
|
679 |
// Check that transaction operation succeeded
|
sl@0
|
680 |
|
sl@0
|
681 |
// Try to get KIntValue - should be gone now
|
sl@0
|
682 |
r = repository->Get(KNewInt, i);
|
sl@0
|
683 |
TEST2(r, KErrNotFound);
|
sl@0
|
684 |
|
sl@0
|
685 |
// Restore repository
|
sl@0
|
686 |
r = repository->Reset();
|
sl@0
|
687 |
TEST2(r, KErrNone);
|
sl@0
|
688 |
|
sl@0
|
689 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
690 |
}
|
sl@0
|
691 |
|
sl@0
|
692 |
/**
|
sl@0
|
693 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0084
|
sl@0
|
694 |
@SYMTestCaseDesc Tests transaction operations.
|
sl@0
|
695 |
@SYMTestPriority High
|
sl@0
|
696 |
@SYMTestActions Test empty transaction, failed transactions and rollback of transaction.
|
sl@0
|
697 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
698 |
@SYMPREQ PREQ752
|
sl@0
|
699 |
*/
|
sl@0
|
700 |
|
sl@0
|
701 |
LOCAL_C void GeneralTransactionL()
|
sl@0
|
702 |
{
|
sl@0
|
703 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0084 "));
|
sl@0
|
704 |
TInt r;
|
sl@0
|
705 |
TUint32 errorId;
|
sl@0
|
706 |
|
sl@0
|
707 |
CRepository* repository;
|
sl@0
|
708 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
709 |
|
sl@0
|
710 |
// Do an empty transaction
|
sl@0
|
711 |
|
sl@0
|
712 |
// Begin transaction
|
sl@0
|
713 |
|
sl@0
|
714 |
r = repository->StartTransaction(CRepository::EReadTransaction);
|
sl@0
|
715 |
TEST2(r, KErrNone);
|
sl@0
|
716 |
|
sl@0
|
717 |
// Commit transaction
|
sl@0
|
718 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
719 |
TEST2(r, KErrNone);
|
sl@0
|
720 |
|
sl@0
|
721 |
// Try 2 successive calls to begin a transaction
|
sl@0
|
722 |
r = repository->StartTransaction(CRepository::EReadTransaction);
|
sl@0
|
723 |
TEST2(r, KErrNone);
|
sl@0
|
724 |
|
sl@0
|
725 |
// Try to create new setting,
|
sl@0
|
726 |
r = repository->Create(KNewInt, KIntValue);
|
sl@0
|
727 |
TEST2(r, KErrNone);
|
sl@0
|
728 |
|
sl@0
|
729 |
// Rollback unrequired transaction
|
sl@0
|
730 |
repository->RollbackTransaction();
|
sl@0
|
731 |
|
sl@0
|
732 |
// Check that new setting was not created
|
sl@0
|
733 |
TInt getValue;
|
sl@0
|
734 |
r = repository->Get(KNewInt, getValue);
|
sl@0
|
735 |
TEST2(r, KErrNotFound);
|
sl@0
|
736 |
|
sl@0
|
737 |
|
sl@0
|
738 |
// Check that correct Id is returned for failed transaction
|
sl@0
|
739 |
|
sl@0
|
740 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
741 |
TEST2(r, KErrNone);
|
sl@0
|
742 |
|
sl@0
|
743 |
// do several creates with an illegal one in the middle
|
sl@0
|
744 |
TInt KIntStartValue = 100;
|
sl@0
|
745 |
const TUint32 KNewIntBase = 1000;
|
sl@0
|
746 |
TInt i = 0;
|
sl@0
|
747 |
const TInt imax = 0x0ff;
|
sl@0
|
748 |
const TInt imiddle = 0x080;
|
sl@0
|
749 |
for(i=0;i<imiddle;i++)
|
sl@0
|
750 |
{
|
sl@0
|
751 |
r = repository->Create(KNewIntBase+i, KIntStartValue+i);
|
sl@0
|
752 |
TEST2(r, KErrNone);
|
sl@0
|
753 |
}
|
sl@0
|
754 |
|
sl@0
|
755 |
// Illegal create of existing setting - should fail transaction
|
sl@0
|
756 |
r = repository->Create(KReal1, KReal1_InitialValue);
|
sl@0
|
757 |
TEST2(r, KErrAlreadyExists);
|
sl@0
|
758 |
|
sl@0
|
759 |
for(i=imiddle;i<imax;i++)
|
sl@0
|
760 |
{
|
sl@0
|
761 |
r = repository->Create(KNewIntBase+i, KIntStartValue+i);
|
sl@0
|
762 |
// after transaction has failed, KErrAbort should be returned by all methods
|
sl@0
|
763 |
TEST2(r, KErrAbort);
|
sl@0
|
764 |
}
|
sl@0
|
765 |
|
sl@0
|
766 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
767 |
TEST2(r, KErrAlreadyExists);
|
sl@0
|
768 |
TEST2(errorId, KReal1);
|
sl@0
|
769 |
|
sl@0
|
770 |
// Restore repository
|
sl@0
|
771 |
r = repository->Reset();
|
sl@0
|
772 |
TEST2(r, KErrNone);
|
sl@0
|
773 |
|
sl@0
|
774 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
775 |
}
|
sl@0
|
776 |
|
sl@0
|
777 |
/**
|
sl@0
|
778 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0086
|
sl@0
|
779 |
@SYMTestCaseDesc Tests move operations.
|
sl@0
|
780 |
@SYMTestPriority High
|
sl@0
|
781 |
@SYMTestActions Move keys or groups of keys within keyspace. Ensure security policies are correctly enforced and that errors are correctly reported.
|
sl@0
|
782 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
783 |
@SYMPREQ PREQ752
|
sl@0
|
784 |
*/
|
sl@0
|
785 |
|
sl@0
|
786 |
LOCAL_C void MoveL()
|
sl@0
|
787 |
// Initial test of move stuff JMG 08/11/2005
|
sl@0
|
788 |
{
|
sl@0
|
789 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0086 "));
|
sl@0
|
790 |
TInt r;
|
sl@0
|
791 |
TUint32 errId ;
|
sl@0
|
792 |
CRepository* repository;
|
sl@0
|
793 |
|
sl@0
|
794 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
795 |
|
sl@0
|
796 |
//
|
sl@0
|
797 |
// 1. Simple Move Operation
|
sl@0
|
798 |
//
|
sl@0
|
799 |
|
sl@0
|
800 |
// Confirm that source keys exist
|
sl@0
|
801 |
RArray<TUint32> foundIds;
|
sl@0
|
802 |
r = repository->FindL(KMoveSource, KMoveMask, foundIds);
|
sl@0
|
803 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
804 |
User::Leave(KErrNoMemory);
|
sl@0
|
805 |
TEST2(r, KErrNone);
|
sl@0
|
806 |
TEST(foundIds.Count()==5);
|
sl@0
|
807 |
foundIds.Reset();
|
sl@0
|
808 |
|
sl@0
|
809 |
// Confirm that target keys don't exist!
|
sl@0
|
810 |
r = repository->FindL(KMoveTarget, KMoveMask, foundIds);
|
sl@0
|
811 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
812 |
User::Leave(KErrNoMemory);
|
sl@0
|
813 |
TEST2(r, KErrNotFound);
|
sl@0
|
814 |
TEST(foundIds.Count()==0);
|
sl@0
|
815 |
foundIds.Reset();
|
sl@0
|
816 |
|
sl@0
|
817 |
// Move a set of keys
|
sl@0
|
818 |
r = repository->Move(KMoveSource, KMoveTarget, KMoveMask, errId) ;
|
sl@0
|
819 |
TEST2(r, KErrNone);
|
sl@0
|
820 |
|
sl@0
|
821 |
// Confirm that target keys now exist
|
sl@0
|
822 |
r = repository->FindL(KMoveTarget, KMoveMask, foundIds);
|
sl@0
|
823 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
824 |
User::Leave(KErrNoMemory);
|
sl@0
|
825 |
TEST2(r, KErrNone);
|
sl@0
|
826 |
TEST(foundIds.Count()==5);
|
sl@0
|
827 |
foundIds.Reset();
|
sl@0
|
828 |
|
sl@0
|
829 |
// Confirm that source keys no longer exist!
|
sl@0
|
830 |
r = repository->FindL(KMoveSource, KMoveMask, foundIds);
|
sl@0
|
831 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
832 |
User::Leave(KErrNoMemory);
|
sl@0
|
833 |
TEST2(r, KErrNotFound);
|
sl@0
|
834 |
TEST(foundIds.Count()==0);
|
sl@0
|
835 |
foundIds.Reset();
|
sl@0
|
836 |
|
sl@0
|
837 |
// Move keys back again [For our later convenience :-)]
|
sl@0
|
838 |
r = repository->Move(KMoveTarget, KMoveSource, KMoveMask, errId) ;
|
sl@0
|
839 |
TEST2(r, KErrNone);
|
sl@0
|
840 |
r = repository->FindL(KMoveSource, KMoveMask, foundIds);
|
sl@0
|
841 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
842 |
User::Leave(KErrNoMemory);
|
sl@0
|
843 |
TEST2(r, KErrNone);
|
sl@0
|
844 |
TEST(foundIds.Count()==5);
|
sl@0
|
845 |
foundIds.Reset();
|
sl@0
|
846 |
|
sl@0
|
847 |
|
sl@0
|
848 |
//
|
sl@0
|
849 |
// 2. Move Operation where target already exists
|
sl@0
|
850 |
//
|
sl@0
|
851 |
r = repository->Move(KMoveSource, KMoveTargetExists, KMoveMask, errId) ;
|
sl@0
|
852 |
TEST2(r, KErrAlreadyExists);
|
sl@0
|
853 |
errId &= KMoveMask ;
|
sl@0
|
854 |
TEST(errId == KMoveTargetExists) ;
|
sl@0
|
855 |
|
sl@0
|
856 |
|
sl@0
|
857 |
//
|
sl@0
|
858 |
// 3. Move Operation where source doesn't exist
|
sl@0
|
859 |
//
|
sl@0
|
860 |
|
sl@0
|
861 |
// Confirm that source keys don't exist.
|
sl@0
|
862 |
r = repository->FindL(KMoveSourceDoesntExist, KMoveMask, foundIds);
|
sl@0
|
863 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
864 |
User::Leave(KErrNoMemory);
|
sl@0
|
865 |
TEST2(r, KErrNotFound);
|
sl@0
|
866 |
TEST(foundIds.Count()==0);
|
sl@0
|
867 |
foundIds.Reset();
|
sl@0
|
868 |
|
sl@0
|
869 |
// Attempt move and check result
|
sl@0
|
870 |
r = repository->Move(KMoveSourceDoesntExist, KMoveTarget, KMoveMask, errId) ;
|
sl@0
|
871 |
TEST2(r, KErrNotFound);
|
sl@0
|
872 |
errId &= KMoveMask ;
|
sl@0
|
873 |
TEST2(errId, KMoveSourceDoesntExist) ;
|
sl@0
|
874 |
|
sl@0
|
875 |
|
sl@0
|
876 |
//
|
sl@0
|
877 |
// 4. Move Operation where client doesn't have capabilities to write
|
sl@0
|
878 |
// to target range.
|
sl@0
|
879 |
//
|
sl@0
|
880 |
|
sl@0
|
881 |
// Attempt move and check result
|
sl@0
|
882 |
r = repository->Move(KMoveSource, KMoveForbidden, KMoveMask, errId) ;
|
sl@0
|
883 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
884 |
errId &= KMoveMask ;
|
sl@0
|
885 |
TEST2(errId, KMoveForbidden) ;
|
sl@0
|
886 |
|
sl@0
|
887 |
//
|
sl@0
|
888 |
// 5. Move Operation where client doesn't have capabilities to read
|
sl@0
|
889 |
// from source range.
|
sl@0
|
890 |
//
|
sl@0
|
891 |
|
sl@0
|
892 |
// Attempt move and check result
|
sl@0
|
893 |
r = repository->Move(KMoveForbidden, KMoveTarget, KMoveMask, errId) ;
|
sl@0
|
894 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
895 |
errId &= KMoveMask ;
|
sl@0
|
896 |
TEST2(errId, KMoveForbidden) ;
|
sl@0
|
897 |
|
sl@0
|
898 |
// Restore repository
|
sl@0
|
899 |
r = repository->Reset();
|
sl@0
|
900 |
TEST2(r, KErrNone);
|
sl@0
|
901 |
|
sl@0
|
902 |
// Close the repository
|
sl@0
|
903 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
904 |
}
|
sl@0
|
905 |
|
sl@0
|
906 |
/*
|
sl@0
|
907 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0087
|
sl@0
|
908 |
@SYMTestCaseDesc Tests handling of long (>256 character) strings.
|
sl@0
|
909 |
@SYMTestPriority High
|
sl@0
|
910 |
@SYMTestActions Attempt to write and then read back a long string
|
sl@0
|
911 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
912 |
@SYMPREQ PREQ752
|
sl@0
|
913 |
*/
|
sl@0
|
914 |
|
sl@0
|
915 |
LOCAL_C void LongStringL()
|
sl@0
|
916 |
{
|
sl@0
|
917 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0087 "));
|
sl@0
|
918 |
TInt r;
|
sl@0
|
919 |
TUint16 eric ;
|
sl@0
|
920 |
|
sl@0
|
921 |
CRepository* repository;
|
sl@0
|
922 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
923 |
|
sl@0
|
924 |
HBufC* longSetString = HBufC::NewLC(KMaxUnicodeStringLength);
|
sl@0
|
925 |
TPtr setStr(longSetString->Des()) ;
|
sl@0
|
926 |
HBufC* longGetString = HBufC::NewLC(KMaxUnicodeStringLength);
|
sl@0
|
927 |
TPtr getStr(longGetString->Des()) ;
|
sl@0
|
928 |
|
sl@0
|
929 |
for (r = 0; r < KMaxUnicodeStringLength; r++)
|
sl@0
|
930 |
{
|
sl@0
|
931 |
eric = (TInt16)Math::Random();
|
sl@0
|
932 |
setStr.Append(eric) ;
|
sl@0
|
933 |
}
|
sl@0
|
934 |
|
sl@0
|
935 |
r = repository->Set(KLongString, setStr);
|
sl@0
|
936 |
TEST2(r, KErrNone);
|
sl@0
|
937 |
|
sl@0
|
938 |
r = repository->Get(KLongString, getStr);
|
sl@0
|
939 |
TEST2(r, KErrNone);
|
sl@0
|
940 |
TEST(getStr==setStr);
|
sl@0
|
941 |
|
sl@0
|
942 |
// Restore repository
|
sl@0
|
943 |
r = repository->Reset();
|
sl@0
|
944 |
TEST2(r, KErrNone);
|
sl@0
|
945 |
|
sl@0
|
946 |
CleanupStack::PopAndDestroy(longGetString) ;
|
sl@0
|
947 |
CleanupStack::PopAndDestroy(longSetString) ;
|
sl@0
|
948 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
949 |
}
|
sl@0
|
950 |
|
sl@0
|
951 |
/*
|
sl@0
|
952 |
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0098
|
sl@0
|
953 |
@SYMTestCaseDesc Tests robustness.
|
sl@0
|
954 |
@SYMTestPriority High
|
sl@0
|
955 |
@SYMTestActions Handle corrupt files and settings correctly
|
sl@0
|
956 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
957 |
@SYMREQ REQ4093
|
sl@0
|
958 |
*/
|
sl@0
|
959 |
LOCAL_C void REQ4093L()
|
sl@0
|
960 |
{
|
sl@0
|
961 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0098 "));
|
sl@0
|
962 |
RFs fs;
|
sl@0
|
963 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
964 |
CleanupClosePushL(fs);
|
sl@0
|
965 |
|
sl@0
|
966 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
967 |
CleanupStack::PushL(fm);
|
sl@0
|
968 |
|
sl@0
|
969 |
CRepository* rep;
|
sl@0
|
970 |
|
sl@0
|
971 |
// Open corrupt header ROM file
|
sl@0
|
972 |
TheTest.Printf(_L("\nOpen corrupt header ROM file\n"));
|
sl@0
|
973 |
TRAPD(errH, rep=CRepository::NewLC(KUidCorruptHeaderRepository));
|
sl@0
|
974 |
TEST2(errH, KErrCorrupt);
|
sl@0
|
975 |
// Open corrupt setting ROM file
|
sl@0
|
976 |
TheTest.Printf(_L("\nOpen corrupt setting ROM file\n"));
|
sl@0
|
977 |
TRAPD(errS,rep=CRepository::NewLC(KUidCorruptSettingRepository));
|
sl@0
|
978 |
TEST2(errS, KErrCorrupt);
|
sl@0
|
979 |
|
sl@0
|
980 |
// Edit repos with new setting
|
sl@0
|
981 |
TheTest.Printf(_L("\nEdit repos with new setting\n"));
|
sl@0
|
982 |
User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
983 |
TInt r = rep->Create(KNewInt, KIntValue);
|
sl@0
|
984 |
TEST2(r, KErrNone);
|
sl@0
|
985 |
TInt newInt;
|
sl@0
|
986 |
r=rep->Get(KNewInt, newInt);
|
sl@0
|
987 |
TEST2(r, KErrNone);
|
sl@0
|
988 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
989 |
|
sl@0
|
990 |
// Existance of caching functionality invalidates some tests and
|
sl@0
|
991 |
// makes them fail, so kill the server to force clearing the cache
|
sl@0
|
992 |
KillCentRepServerL();
|
sl@0
|
993 |
|
sl@0
|
994 |
// Copy corrupt header file in rep dir as C: file
|
sl@0
|
995 |
// Corrupt file has KNewInt and corrupt header
|
sl@0
|
996 |
TheTest.Printf(_L("\nCopy corrupt header file into persists dir\n"));
|
sl@0
|
997 |
User::LeaveIfError(fm->Copy(KZCorruptHeaderFile, KCreFile));
|
sl@0
|
998 |
|
sl@0
|
999 |
// Reset read-only bit
|
sl@0
|
1000 |
User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
1001 |
//need to delete .cre file to preserve test's old behaviour
|
sl@0
|
1002 |
User::LeaveIfError(fm->Delete(KCreFile));
|
sl@0
|
1003 |
User::After(KGeneralDelay);
|
sl@0
|
1004 |
|
sl@0
|
1005 |
// Open repos, should find corrupt header and use ROM file
|
sl@0
|
1006 |
User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
1007 |
// If we can't find KNewInt, this proves that we are using ROM file
|
sl@0
|
1008 |
r=rep->Get(KNewInt, newInt);
|
sl@0
|
1009 |
TEST2(r, KErrNotFound);
|
sl@0
|
1010 |
// Test that file is deleted
|
sl@0
|
1011 |
TheTest.Printf(_L("\nCheck corrupt header file deleted from persists dir\n"));
|
sl@0
|
1012 |
TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse);
|
sl@0
|
1013 |
// Close repository
|
sl@0
|
1014 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
1015 |
|
sl@0
|
1016 |
// Existance of caching functionality invalidates some tests and
|
sl@0
|
1017 |
// makes them fail, so kill the server to force clearing the cache
|
sl@0
|
1018 |
KillCentRepServerL();
|
sl@0
|
1019 |
|
sl@0
|
1020 |
// Copy file with corrupt setting into C:
|
sl@0
|
1021 |
TheTest.Printf(_L("\nCopy corrupt setting file into persists dir\n"));
|
sl@0
|
1022 |
User::LeaveIfError(fm->Copy(KZCorruptSettingFile, KCreFile));
|
sl@0
|
1023 |
// Reset read-only bit
|
sl@0
|
1024 |
User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
1025 |
User::After(KGeneralDelay);
|
sl@0
|
1026 |
// Open repos, should find corrupt setting and use ROM file
|
sl@0
|
1027 |
User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
1028 |
// Test that file is deleted
|
sl@0
|
1029 |
TheTest.Printf(_L("\nCheck corrupt setting file deleted from persists dir\n"));
|
sl@0
|
1030 |
TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse);
|
sl@0
|
1031 |
|
sl@0
|
1032 |
// Restore repository
|
sl@0
|
1033 |
r = rep->Reset();
|
sl@0
|
1034 |
TEST2(r, KErrNone);
|
sl@0
|
1035 |
|
sl@0
|
1036 |
//close repository
|
sl@0
|
1037 |
CleanupStack::PopAndDestroy(3); //rep, fs,fm
|
sl@0
|
1038 |
}
|
sl@0
|
1039 |
|
sl@0
|
1040 |
LOCAL_C void FuncTestsL()
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
TheTest.Start(_L("Transaction commands"));
|
sl@0
|
1043 |
GeneralTransactionL();
|
sl@0
|
1044 |
|
sl@0
|
1045 |
TheTest.Next(_L("Find during transaction"));
|
sl@0
|
1046 |
FindL();
|
sl@0
|
1047 |
|
sl@0
|
1048 |
TheTest.Next(_L("Find during transaction with create/delete"));
|
sl@0
|
1049 |
FindWithCreateDeleteL();
|
sl@0
|
1050 |
|
sl@0
|
1051 |
TheTest.Next(_L("Get during transaction"));
|
sl@0
|
1052 |
Get();
|
sl@0
|
1053 |
|
sl@0
|
1054 |
TheTest.Next(_L("Get during transaction with create/delete"));
|
sl@0
|
1055 |
GetWithCreateDeleteL();
|
sl@0
|
1056 |
|
sl@0
|
1057 |
TheTest.Next(_L("Move")) ;
|
sl@0
|
1058 |
MoveL() ;
|
sl@0
|
1059 |
|
sl@0
|
1060 |
TheTest.Next(_L("Long String")) ;
|
sl@0
|
1061 |
LongStringL() ;
|
sl@0
|
1062 |
|
sl@0
|
1063 |
TheTest.Next(_L("REQ4093 tests"));
|
sl@0
|
1064 |
REQ4093L() ;
|
sl@0
|
1065 |
|
sl@0
|
1066 |
|
sl@0
|
1067 |
TheTest.End();
|
sl@0
|
1068 |
}
|
sl@0
|
1069 |
|
sl@0
|
1070 |
|
sl@0
|
1071 |
// ---------------------------------------------------
|
sl@0
|
1072 |
// OomTest
|
sl@0
|
1073 |
//
|
sl@0
|
1074 |
// Function to convert a test into an OOM test
|
sl@0
|
1075 |
|
sl@0
|
1076 |
LOCAL_C void OomTest(void (*testFuncL)())
|
sl@0
|
1077 |
{
|
sl@0
|
1078 |
TInt error;
|
sl@0
|
1079 |
TInt count = 0;
|
sl@0
|
1080 |
|
sl@0
|
1081 |
do
|
sl@0
|
1082 |
{
|
sl@0
|
1083 |
User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
|
sl@0
|
1084 |
User::__DbgMarkStart(RHeap::EUser);
|
sl@0
|
1085 |
TRAP(error, (testFuncL)());
|
sl@0
|
1086 |
User::__DbgMarkEnd(RHeap::EUser, 0);
|
sl@0
|
1087 |
} while(error == KErrNoMemory);
|
sl@0
|
1088 |
|
sl@0
|
1089 |
_LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
|
sl@0
|
1090 |
__ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
|
sl@0
|
1091 |
|
sl@0
|
1092 |
User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
|
sl@0
|
1093 |
}
|
sl@0
|
1094 |
|
sl@0
|
1095 |
LOCAL_C void OomTestsL()
|
sl@0
|
1096 |
{
|
sl@0
|
1097 |
TheTest.Start(_L("Find"));
|
sl@0
|
1098 |
|
sl@0
|
1099 |
OomTest(FindL);
|
sl@0
|
1100 |
|
sl@0
|
1101 |
TheTest.End();
|
sl@0
|
1102 |
}
|
sl@0
|
1103 |
|
sl@0
|
1104 |
|
sl@0
|
1105 |
LOCAL_C void MainL()
|
sl@0
|
1106 |
{
|
sl@0
|
1107 |
TheTest.Start(_L("Functional tests"));
|
sl@0
|
1108 |
OomTesting = EFalse;
|
sl@0
|
1109 |
FuncTestsL();
|
sl@0
|
1110 |
|
sl@0
|
1111 |
TheTest.Next(_L("Out-of-memory tests"));
|
sl@0
|
1112 |
OomTesting = ETrue;
|
sl@0
|
1113 |
OomTestsL();
|
sl@0
|
1114 |
|
sl@0
|
1115 |
TheTest.Next(_L("Clean out C: files"));
|
sl@0
|
1116 |
CleanupCDriveL();
|
sl@0
|
1117 |
|
sl@0
|
1118 |
TheTest.End();
|
sl@0
|
1119 |
TheTest.Close();
|
sl@0
|
1120 |
}
|
sl@0
|
1121 |
|
sl@0
|
1122 |
TInt E32Main()
|
sl@0
|
1123 |
{
|
sl@0
|
1124 |
//
|
sl@0
|
1125 |
// For the tests to work we need SID policing enforced plus the specific
|
sl@0
|
1126 |
// capabilities listed below.
|
sl@0
|
1127 |
//
|
sl@0
|
1128 |
// These are dependent on the capabilities set in the platform security
|
sl@0
|
1129 |
// repository test initialisation file 87654321.txt. If the content
|
sl@0
|
1130 |
// of that file changes then the following clauses may need to be
|
sl@0
|
1131 |
// updated.
|
sl@0
|
1132 |
//
|
sl@0
|
1133 |
if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) ||
|
sl@0
|
1134 |
!PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) ||
|
sl@0
|
1135 |
!PlatSec::IsCapabilityEnforced(ECapabilityDRM) ||
|
sl@0
|
1136 |
!PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) ||
|
sl@0
|
1137 |
!PlatSec::IsCapabilityEnforced(ECapabilityCommDD))
|
sl@0
|
1138 |
{
|
sl@0
|
1139 |
TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings"));
|
sl@0
|
1140 |
TheTest.End();
|
sl@0
|
1141 |
TheTest.Close();
|
sl@0
|
1142 |
return 0;
|
sl@0
|
1143 |
}
|
sl@0
|
1144 |
|
sl@0
|
1145 |
__UHEAP_MARK;
|
sl@0
|
1146 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
1147 |
if(!cleanup)
|
sl@0
|
1148 |
return KErrNoMemory;
|
sl@0
|
1149 |
|
sl@0
|
1150 |
TRAPD(err, MainL());
|
sl@0
|
1151 |
if (err != KErrNone)
|
sl@0
|
1152 |
User::Panic(_L("Testing failed: "), err);
|
sl@0
|
1153 |
|
sl@0
|
1154 |
delete cleanup;
|
sl@0
|
1155 |
__UHEAP_MARKEND;
|
sl@0
|
1156 |
|
sl@0
|
1157 |
return 0;
|
sl@0
|
1158 |
}
|