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 <e32capability.h>
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "../cenrepsrv/srvparams.h"
|
sl@0
|
23 |
#include "../cenrepsrv/srvreqs.h"
|
sl@0
|
24 |
#include "../common/inc/srvdefs.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
using namespace NCentralRepositoryConstants;
|
sl@0
|
27 |
|
sl@0
|
28 |
RTest TheTest(_L("Central Repository Platform Security Tests"));
|
sl@0
|
29 |
|
sl@0
|
30 |
TBool OomTesting;
|
sl@0
|
31 |
|
sl@0
|
32 |
const TUid KUidPlatsecTestRepository = { 0x00000100 };
|
sl@0
|
33 |
const TUid KUidTransactionTestRepository = { 0x00000101 };
|
sl@0
|
34 |
const TUid KUidResetTestRepository = { 0x00000004 };
|
sl@0
|
35 |
|
sl@0
|
36 |
const TInt KMaxNumRepsToReset = 3;
|
sl@0
|
37 |
|
sl@0
|
38 |
//
|
sl@0
|
39 |
// Platsec test repository
|
sl@0
|
40 |
//
|
sl@0
|
41 |
|
sl@0
|
42 |
const TUint32 KNonExisitent = 0;
|
sl@0
|
43 |
|
sl@0
|
44 |
const TInt KNumSettings = 26;
|
sl@0
|
45 |
|
sl@0
|
46 |
const TUint32 KInt1 = 1;
|
sl@0
|
47 |
const TInt KInt1_InitialValue = 1;
|
sl@0
|
48 |
const TInt KInt1_UpdatedValue = 73;
|
sl@0
|
49 |
const TUint32 KNewInt = 1000;
|
sl@0
|
50 |
//
|
sl@0
|
51 |
const TUint32 KIntAlwaysPass = 0x201;
|
sl@0
|
52 |
const TInt KIntAlwaysPass_Value = 200;
|
sl@0
|
53 |
const TUint32 KIntAlwaysPassFail = 0x202;
|
sl@0
|
54 |
|
sl@0
|
55 |
const TUint32 KReal1 = 2;
|
sl@0
|
56 |
const TReal KReal1_InitialValue = 2.732;
|
sl@0
|
57 |
const TReal KReal1_UpdatedValue = 72.8;
|
sl@0
|
58 |
const TUint32 KNewReal = 2000;
|
sl@0
|
59 |
|
sl@0
|
60 |
const TUint32 KString1 = 5;
|
sl@0
|
61 |
_LIT(KString1_InitialValue, "test\\\"string\"");
|
sl@0
|
62 |
_LIT(KString1_UpdatedValue, "another one");
|
sl@0
|
63 |
const TUint32 KNewString8 = 3000;
|
sl@0
|
64 |
const TUint32 KNewString16 = 4000;
|
sl@0
|
65 |
|
sl@0
|
66 |
RArray<TUid> RepsToReset;
|
sl@0
|
67 |
|
sl@0
|
68 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
69 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
70 |
//Test macroses and functions
|
sl@0
|
71 |
|
sl@0
|
72 |
LOCAL_C void CheckL(TInt aValue, TInt aLine)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
if(!aValue)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
CleanupCDriveL();
|
sl@0
|
77 |
TheTest(EFalse, aLine);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
}
|
sl@0
|
80 |
LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
if(aValue != aExpected)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
CleanupCDriveL();
|
sl@0
|
85 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
86 |
TheTest(EFalse, aLine);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
#define TEST(arg) ::CheckL((arg), __LINE__)
|
sl@0
|
91 |
#define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
|
sl@0
|
92 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
93 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
94 |
|
sl@0
|
95 |
// Function to compare two TUid's.
|
sl@0
|
96 |
LOCAL_C TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return aUid1.iUid - aUid2.iUid;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
LOCAL_C void AddRepositoryToReset(const TUid& aRepositoryUid)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
// Use InsertInOrder not because of speed but to eliminate
|
sl@0
|
104 |
// duplicates.
|
sl@0
|
105 |
RepsToReset.InsertInOrder(aRepositoryUid, CompareUid);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
// NB: this test suite needs each test run to start with keyspaces with values from
|
sl@0
|
109 |
// the initialization files in ROM dir. The best way to archive this is to send the
|
sl@0
|
110 |
// EGetSetParameters IPC to centrep server to flush cache and then delete
|
sl@0
|
111 |
// the .cre files. This option requires the CENTREP_SERVER_CACHETEST macro
|
sl@0
|
112 |
// which is not available in release ONB. The second choice is to wait enough
|
sl@0
|
113 |
// time for centrep server to flush out cache, then delete the .cre files from
|
sl@0
|
114 |
// persists dir. This approach does not work well on the emulator because centrep
|
sl@0
|
115 |
// server's cache timer sometimes is late by as much as a few seconds.
|
sl@0
|
116 |
// Hence instead of wait and delete the .cre files, this RTest uses the ResetAll
|
sl@0
|
117 |
// API. This trick works for the use case of this RTest but may not work in other
|
sl@0
|
118 |
// situations. E.g., in this RTest centrep server always open repositories
|
sl@0
|
119 |
// from cache. This changes the timing pattern and does not exercise the
|
sl@0
|
120 |
// cache eviction code path.
|
sl@0
|
121 |
LOCAL_C void ResetModifiedRepsL()
|
sl@0
|
122 |
{
|
sl@0
|
123 |
for (TInt i = RepsToReset.Count() - 1; i >= 0; i--)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
CRepository* rep;
|
sl@0
|
126 |
User::LeaveIfNull( rep = CRepository::NewL(RepsToReset[i]) );
|
sl@0
|
127 |
rep->Reset();
|
sl@0
|
128 |
delete rep;
|
sl@0
|
129 |
|
sl@0
|
130 |
RepsToReset.Remove(i);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
LOCAL_C void OpenRepositoryL()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
CRepository* repositoryA;
|
sl@0
|
137 |
|
sl@0
|
138 |
TInt r;
|
sl@0
|
139 |
|
sl@0
|
140 |
TRAP(r, CRepository::NewL(TUid::Null()));
|
sl@0
|
141 |
if(OomTesting && r==KErrNoMemory)
|
sl@0
|
142 |
User::Leave(KErrNoMemory);
|
sl@0
|
143 |
TEST2(r, KErrNotFound);
|
sl@0
|
144 |
|
sl@0
|
145 |
repositoryA = CRepository::NewLC(KUidPlatsecTestRepository);
|
sl@0
|
146 |
|
sl@0
|
147 |
TInt a;
|
sl@0
|
148 |
r = repositoryA->Get(KInt1, a);
|
sl@0
|
149 |
TEST2(r, KErrNone);
|
sl@0
|
150 |
TEST(a==KInt1_InitialValue);
|
sl@0
|
151 |
|
sl@0
|
152 |
CleanupStack::PopAndDestroy(repositoryA);
|
sl@0
|
153 |
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
LOCAL_C void GetSetL()
|
sl@0
|
157 |
{
|
sl@0
|
158 |
CRepository* repository;
|
sl@0
|
159 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
160 |
|
sl@0
|
161 |
// Remember that this repository need to be reset
|
sl@0
|
162 |
::AddRepositoryToReset(KUidPlatsecTestRepository);
|
sl@0
|
163 |
|
sl@0
|
164 |
//
|
sl@0
|
165 |
// Integer get/set
|
sl@0
|
166 |
//
|
sl@0
|
167 |
|
sl@0
|
168 |
TInt i = 0;
|
sl@0
|
169 |
|
sl@0
|
170 |
TInt r = repository->Get(KNonExisitent, i);
|
sl@0
|
171 |
TEST2(r, KErrNotFound);
|
sl@0
|
172 |
TEST(i==0);
|
sl@0
|
173 |
|
sl@0
|
174 |
// no capability specified so deafult should do and should succeed
|
sl@0
|
175 |
r = repository->Get(KReal1, i);
|
sl@0
|
176 |
TEST2(r, KErrArgument);
|
sl@0
|
177 |
TEST(i==0);
|
sl@0
|
178 |
|
sl@0
|
179 |
// no capability specified so deafult should do and should succeed
|
sl@0
|
180 |
r = repository->Get(KInt1, i);
|
sl@0
|
181 |
TEST2(r, KErrNone);
|
sl@0
|
182 |
TEST(i==KInt1_InitialValue);
|
sl@0
|
183 |
|
sl@0
|
184 |
r = repository->Set(KNonExisitent, 0);
|
sl@0
|
185 |
TEST2(r, KErrNone);
|
sl@0
|
186 |
|
sl@0
|
187 |
r = repository->Delete(KNonExisitent);
|
sl@0
|
188 |
TEST2(r, KErrNone);
|
sl@0
|
189 |
|
sl@0
|
190 |
r = repository->Set(KReal1, 0);
|
sl@0
|
191 |
TEST2(r, KErrArgument);
|
sl@0
|
192 |
|
sl@0
|
193 |
r = repository->Set(KInt1, KInt1_UpdatedValue);
|
sl@0
|
194 |
TEST2(r, KErrNone);
|
sl@0
|
195 |
|
sl@0
|
196 |
r = repository->Get(KInt1, i);
|
sl@0
|
197 |
TEST2(r, KErrNone);
|
sl@0
|
198 |
TEST(i==KInt1_UpdatedValue);
|
sl@0
|
199 |
|
sl@0
|
200 |
r = repository->Get(KIntAlwaysPass, i);
|
sl@0
|
201 |
// range policy AlwaysPass
|
sl@0
|
202 |
TEST2(r, KErrNone);
|
sl@0
|
203 |
TEST(i==KIntAlwaysPass_Value);
|
sl@0
|
204 |
|
sl@0
|
205 |
i=0;
|
sl@0
|
206 |
r = repository->Get(KIntAlwaysPassFail, i);
|
sl@0
|
207 |
// range policy overidden
|
sl@0
|
208 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
209 |
TEST(i!=KIntAlwaysPass_Value);
|
sl@0
|
210 |
|
sl@0
|
211 |
|
sl@0
|
212 |
//
|
sl@0
|
213 |
// Real get/set
|
sl@0
|
214 |
//
|
sl@0
|
215 |
|
sl@0
|
216 |
TReal y = 0;
|
sl@0
|
217 |
|
sl@0
|
218 |
r = repository->Get(KNonExisitent, y);
|
sl@0
|
219 |
TEST2(r, KErrNotFound);
|
sl@0
|
220 |
TEST(y==0);
|
sl@0
|
221 |
|
sl@0
|
222 |
r = repository->Get(KInt1, y);
|
sl@0
|
223 |
TEST2(r, KErrArgument);
|
sl@0
|
224 |
TEST(y==0);
|
sl@0
|
225 |
|
sl@0
|
226 |
r = repository->Get(KReal1, y);
|
sl@0
|
227 |
TEST2(r, KErrNone);
|
sl@0
|
228 |
TEST(y==KReal1_InitialValue);
|
sl@0
|
229 |
|
sl@0
|
230 |
r = repository->Set(KNonExisitent, 0.0);
|
sl@0
|
231 |
TEST2(r, KErrNone);
|
sl@0
|
232 |
|
sl@0
|
233 |
r = repository->Delete(KNonExisitent);
|
sl@0
|
234 |
TEST2(r, KErrNone);
|
sl@0
|
235 |
|
sl@0
|
236 |
r = repository->Set(KInt1, 0.0);
|
sl@0
|
237 |
TEST2(r, KErrArgument);
|
sl@0
|
238 |
|
sl@0
|
239 |
r = repository->Set(KReal1, KReal1_UpdatedValue);
|
sl@0
|
240 |
TEST2(r, KErrNone);
|
sl@0
|
241 |
|
sl@0
|
242 |
r = repository->Get(KReal1, y);
|
sl@0
|
243 |
TEST2(r, KErrNone);
|
sl@0
|
244 |
TEST(y==KReal1_UpdatedValue);
|
sl@0
|
245 |
|
sl@0
|
246 |
//
|
sl@0
|
247 |
// String get/set
|
sl@0
|
248 |
//
|
sl@0
|
249 |
|
sl@0
|
250 |
TBuf<20> str;
|
sl@0
|
251 |
|
sl@0
|
252 |
r = repository->Get(KNonExisitent, str);
|
sl@0
|
253 |
TEST2(r, KErrNotFound);
|
sl@0
|
254 |
TEST(str.Length()==0);
|
sl@0
|
255 |
|
sl@0
|
256 |
r = repository->Get(KInt1, str);
|
sl@0
|
257 |
TEST2(r, KErrArgument);
|
sl@0
|
258 |
TEST(str.Length()==0);
|
sl@0
|
259 |
|
sl@0
|
260 |
r = repository->Get(KString1, str);
|
sl@0
|
261 |
PlatSec platsec;
|
sl@0
|
262 |
|
sl@0
|
263 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
264 |
{
|
sl@0
|
265 |
TEST2(r, KErrNone);
|
sl@0
|
266 |
TEST(str==KString1_InitialValue);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
else
|
sl@0
|
269 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
270 |
|
sl@0
|
271 |
|
sl@0
|
272 |
TBuf<10> tooShort;
|
sl@0
|
273 |
r = repository->Get(KString1, tooShort);
|
sl@0
|
274 |
|
sl@0
|
275 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
276 |
{
|
sl@0
|
277 |
TEST2(r, KErrOverflow);
|
sl@0
|
278 |
TEST(tooShort.Length()==0);
|
sl@0
|
279 |
}
|
sl@0
|
280 |
else
|
sl@0
|
281 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
282 |
|
sl@0
|
283 |
|
sl@0
|
284 |
r = repository->Set(KNonExisitent, str);
|
sl@0
|
285 |
TEST2(r, KErrNone);
|
sl@0
|
286 |
|
sl@0
|
287 |
r = repository->Delete(KNonExisitent);
|
sl@0
|
288 |
TEST2(r, KErrNone);
|
sl@0
|
289 |
|
sl@0
|
290 |
r = repository->Set(KInt1, str);
|
sl@0
|
291 |
TEST2(r, KErrArgument);
|
sl@0
|
292 |
|
sl@0
|
293 |
r = repository->Set(KString1, KString1_UpdatedValue);
|
sl@0
|
294 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
295 |
{
|
sl@0
|
296 |
TEST2(r, KErrNone);
|
sl@0
|
297 |
}
|
sl@0
|
298 |
else
|
sl@0
|
299 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
300 |
|
sl@0
|
301 |
r = repository->Get(KString1, str);
|
sl@0
|
302 |
|
sl@0
|
303 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
304 |
{
|
sl@0
|
305 |
TEST2(r, KErrNone);
|
sl@0
|
306 |
TEST(str==KString1_UpdatedValue);
|
sl@0
|
307 |
}
|
sl@0
|
308 |
else
|
sl@0
|
309 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
310 |
|
sl@0
|
311 |
const TInt KStringLengthTooBig = KMaxUnicodeStringLength + 1;
|
sl@0
|
312 |
TBuf<KStringLengthTooBig> tooBig;
|
sl@0
|
313 |
tooBig.SetLength(KStringLengthTooBig);
|
sl@0
|
314 |
r = repository->Set(KString1, tooBig);
|
sl@0
|
315 |
TEST2(r, KErrArgument);
|
sl@0
|
316 |
|
sl@0
|
317 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
LOCAL_C void CreateSetIntTransactionL()
|
sl@0
|
321 |
{
|
sl@0
|
322 |
CRepository* repository;
|
sl@0
|
323 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
|
sl@0
|
324 |
|
sl@0
|
325 |
// Remember that this repository need to be reset
|
sl@0
|
326 |
::AddRepositoryToReset(KUidTransactionTestRepository);
|
sl@0
|
327 |
|
sl@0
|
328 |
//
|
sl@0
|
329 |
// Integer get/set
|
sl@0
|
330 |
//
|
sl@0
|
331 |
TInt r;
|
sl@0
|
332 |
TInt i = 0;
|
sl@0
|
333 |
const TInt imax = 0x0ff;
|
sl@0
|
334 |
TUint32 errorId;
|
sl@0
|
335 |
|
sl@0
|
336 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
337 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
338 |
TEST2(r, KErrNone);
|
sl@0
|
339 |
|
sl@0
|
340 |
// create
|
sl@0
|
341 |
TInt KIntStartValue = 100;
|
sl@0
|
342 |
const TUint32 KNewIntBase = 1;
|
sl@0
|
343 |
for(i=0;i<imax;i++)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
r = repository->Create(KNewIntBase+i, KIntStartValue+i);
|
sl@0
|
346 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
347 |
User::Leave(KErrNoMemory);
|
sl@0
|
348 |
else
|
sl@0
|
349 |
TEST2(r, KErrNone);
|
sl@0
|
350 |
}
|
sl@0
|
351 |
|
sl@0
|
352 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
353 |
CleanupStack::Pop();
|
sl@0
|
354 |
if(OomTesting && r!=KErrNone)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
// in OOM test we may have alredy created settings
|
sl@0
|
357 |
TEST2(r, KErrAlreadyExists);
|
sl@0
|
358 |
}
|
sl@0
|
359 |
else
|
sl@0
|
360 |
TEST2(r, KErrNone);
|
sl@0
|
361 |
|
sl@0
|
362 |
TInt integer;
|
sl@0
|
363 |
if(!(OomTesting && r==KErrAlreadyExists))
|
sl@0
|
364 |
{
|
sl@0
|
365 |
// during OOM tests we have values from Sets rather then Create...
|
sl@0
|
366 |
for(i=0;i<imax;i++)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
r = repository->Get(KNewIntBase+i,integer );
|
sl@0
|
369 |
TEST2(r, KErrNone);
|
sl@0
|
370 |
TEST(KIntStartValue+i==integer);
|
sl@0
|
371 |
}
|
sl@0
|
372 |
}
|
sl@0
|
373 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
374 |
TEST2(r, KErrNone);
|
sl@0
|
375 |
|
sl@0
|
376 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
377 |
|
sl@0
|
378 |
// set
|
sl@0
|
379 |
KIntStartValue = 200;
|
sl@0
|
380 |
for(i=0;i<imax;i++)
|
sl@0
|
381 |
{
|
sl@0
|
382 |
r = repository->Set(KNewIntBase+i, KIntStartValue+i);
|
sl@0
|
383 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
384 |
User::Leave(KErrNoMemory);
|
sl@0
|
385 |
else
|
sl@0
|
386 |
TEST2(r, KErrNone);
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
390 |
CleanupStack::Pop();
|
sl@0
|
391 |
TEST2(r, KErrNone);
|
sl@0
|
392 |
for(i=0;i<imax;i++)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
r = repository->Get(KNewIntBase+i,integer );
|
sl@0
|
395 |
TEST2(r, KErrNone);
|
sl@0
|
396 |
TEST(KIntStartValue+i==integer);
|
sl@0
|
397 |
}
|
sl@0
|
398 |
|
sl@0
|
399 |
// lets check set where some are going to fail
|
sl@0
|
400 |
// set
|
sl@0
|
401 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
402 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
403 |
TEST2(r, KErrNone);
|
sl@0
|
404 |
KIntStartValue = 400;
|
sl@0
|
405 |
TInt base = KNewIntBase + 0x7f; // half the range ok other half should fail
|
sl@0
|
406 |
for(i=0;i<imax;i++)
|
sl@0
|
407 |
{
|
sl@0
|
408 |
r = repository->Set(base+i, KIntStartValue+i);
|
sl@0
|
409 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
410 |
User::Leave(KErrNoMemory);
|
sl@0
|
411 |
else
|
sl@0
|
412 |
{
|
sl@0
|
413 |
if (base + i < 0x100)
|
sl@0
|
414 |
{
|
sl@0
|
415 |
TEST2(r, KErrNone);
|
sl@0
|
416 |
}
|
sl@0
|
417 |
else if (base + i == 0x100)
|
sl@0
|
418 |
{
|
sl@0
|
419 |
TEST2(r, KErrNone);
|
sl@0
|
420 |
// this causes transaction to fail
|
sl@0
|
421 |
const TReal KRealValue = 1.234;
|
sl@0
|
422 |
r = repository->Set(base+i, KRealValue);
|
sl@0
|
423 |
TEST2(r, KErrArgument);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
else
|
sl@0
|
426 |
{
|
sl@0
|
427 |
// after transaction has failed, repository returns KErrAbort for every request
|
sl@0
|
428 |
TEST2(r, KErrAbort);
|
sl@0
|
429 |
}
|
sl@0
|
430 |
}
|
sl@0
|
431 |
}
|
sl@0
|
432 |
|
sl@0
|
433 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
434 |
TEST2(r, KErrArgument);
|
sl@0
|
435 |
TEST2(errorId, 0x100);
|
sl@0
|
436 |
CleanupStack::Pop();
|
sl@0
|
437 |
// should be able to open again
|
sl@0
|
438 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
439 |
TEST2(r, KErrNone);
|
sl@0
|
440 |
repository->RollbackTransaction();
|
sl@0
|
441 |
|
sl@0
|
442 |
// and after the failed transaction it should be in previous state!!
|
sl@0
|
443 |
KIntStartValue = 200;
|
sl@0
|
444 |
for(i=0;i<imax;i++)
|
sl@0
|
445 |
{
|
sl@0
|
446 |
r = repository->Get(KNewIntBase+i,integer );
|
sl@0
|
447 |
TEST2(r, KErrNone);
|
sl@0
|
448 |
TEST(KIntStartValue+i==integer);
|
sl@0
|
449 |
}
|
sl@0
|
450 |
|
sl@0
|
451 |
// lets clear after ourselves
|
sl@0
|
452 |
for(i=0;i<imax;i++)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
r = repository->Delete(KNewIntBase+i);
|
sl@0
|
455 |
TEST2(r, KErrNone);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
|
sl@0
|
462 |
LOCAL_C void CreateSetDesTransactionL()
|
sl@0
|
463 |
{
|
sl@0
|
464 |
TUint32 errorId;
|
sl@0
|
465 |
CRepository* repository;
|
sl@0
|
466 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
|
sl@0
|
467 |
|
sl@0
|
468 |
// Remember that this repository need to be reset
|
sl@0
|
469 |
::AddRepositoryToReset(KUidTransactionTestRepository);
|
sl@0
|
470 |
|
sl@0
|
471 |
|
sl@0
|
472 |
_LIT(KString1_TestValue, "test string 1");
|
sl@0
|
473 |
_LIT(KString2_TestValue, "test string 2");
|
sl@0
|
474 |
_LIT(KString3_TestValue, "test string 3");
|
sl@0
|
475 |
_LIT(KString4_TestValue, "test string 4");
|
sl@0
|
476 |
_LIT(KString5_TestValue, "test string 5");
|
sl@0
|
477 |
_LIT(KString1_UpdatedTestValue, "updated test string 1");
|
sl@0
|
478 |
_LIT(KString2_UpdatedTestValue, "updated test string 2");
|
sl@0
|
479 |
//
|
sl@0
|
480 |
// Descriptor get/set
|
sl@0
|
481 |
//
|
sl@0
|
482 |
TInt r;
|
sl@0
|
483 |
|
sl@0
|
484 |
|
sl@0
|
485 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
486 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
487 |
TEST2(r, KErrNone);
|
sl@0
|
488 |
|
sl@0
|
489 |
// create
|
sl@0
|
490 |
r = repository->Create(1, KString1_TestValue);
|
sl@0
|
491 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
492 |
User::Leave(KErrNoMemory);
|
sl@0
|
493 |
else
|
sl@0
|
494 |
TEST2(r, KErrNone);
|
sl@0
|
495 |
r = repository->Create(2, KString2_TestValue);
|
sl@0
|
496 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
497 |
User::Leave(KErrNoMemory);
|
sl@0
|
498 |
else
|
sl@0
|
499 |
TEST2(r, KErrNone);
|
sl@0
|
500 |
r = repository->Create(3, KString3_TestValue);
|
sl@0
|
501 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
502 |
User::Leave(KErrNoMemory);
|
sl@0
|
503 |
else
|
sl@0
|
504 |
TEST2(r, KErrNone);
|
sl@0
|
505 |
r = repository->Create(4, KString4_TestValue);
|
sl@0
|
506 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
507 |
User::Leave(KErrNoMemory);
|
sl@0
|
508 |
else
|
sl@0
|
509 |
TEST2(r, KErrNone);
|
sl@0
|
510 |
r = repository->Create(5, KString5_TestValue);
|
sl@0
|
511 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
512 |
User::Leave(KErrNoMemory);
|
sl@0
|
513 |
else
|
sl@0
|
514 |
TEST2(r, KErrNone);
|
sl@0
|
515 |
|
sl@0
|
516 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
517 |
CleanupStack::Pop();
|
sl@0
|
518 |
if(OomTesting && r!=KErrNone)
|
sl@0
|
519 |
{
|
sl@0
|
520 |
// in OOM test we may have alredy created settings
|
sl@0
|
521 |
TEST2(r, KErrAlreadyExists);
|
sl@0
|
522 |
}
|
sl@0
|
523 |
else
|
sl@0
|
524 |
TEST2(r, KErrNone);
|
sl@0
|
525 |
|
sl@0
|
526 |
TBuf<50> buf;
|
sl@0
|
527 |
if(!OomTesting)
|
sl@0
|
528 |
{
|
sl@0
|
529 |
r = repository->Get(1,buf);
|
sl@0
|
530 |
TEST2(r, KErrNone);
|
sl@0
|
531 |
TEST(buf==KString1_TestValue);
|
sl@0
|
532 |
r = repository->Get(2,buf);
|
sl@0
|
533 |
TEST2(r, KErrNone);
|
sl@0
|
534 |
TEST(buf==KString2_TestValue);
|
sl@0
|
535 |
r = repository->Get(3,buf);
|
sl@0
|
536 |
TEST2(r, KErrNone);
|
sl@0
|
537 |
TEST(buf==KString3_TestValue);
|
sl@0
|
538 |
r = repository->Get(4,buf);
|
sl@0
|
539 |
TEST2(r, KErrNone);
|
sl@0
|
540 |
TEST(buf==KString4_TestValue);
|
sl@0
|
541 |
r = repository->Get(5,buf);
|
sl@0
|
542 |
TEST2(r, KErrNone);
|
sl@0
|
543 |
TEST(buf==KString5_TestValue);
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
547 |
repository->CleanupRollbackTransactionPushL();
|
sl@0
|
548 |
TEST2(r, KErrNone);
|
sl@0
|
549 |
|
sl@0
|
550 |
// set
|
sl@0
|
551 |
r = repository->Set(1, KString1_UpdatedTestValue);
|
sl@0
|
552 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
553 |
User::Leave(KErrNoMemory);
|
sl@0
|
554 |
else
|
sl@0
|
555 |
TEST2(r, KErrNone);
|
sl@0
|
556 |
r = repository->Set(2, KString2_UpdatedTestValue);
|
sl@0
|
557 |
if(OomTesting && (r==KErrNoMemory))
|
sl@0
|
558 |
User::Leave(KErrNoMemory);
|
sl@0
|
559 |
else
|
sl@0
|
560 |
TEST2(r, KErrNone);
|
sl@0
|
561 |
|
sl@0
|
562 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
563 |
CleanupStack::Pop();
|
sl@0
|
564 |
TEST2(r, KErrNone);
|
sl@0
|
565 |
|
sl@0
|
566 |
TBuf<50> buf1,buf2;
|
sl@0
|
567 |
r = repository->Get(1,buf1);
|
sl@0
|
568 |
TEST2(r, KErrNone);
|
sl@0
|
569 |
r = repository->Get(2,buf2);
|
sl@0
|
570 |
TEST2(r, KErrNone);
|
sl@0
|
571 |
|
sl@0
|
572 |
TEST(buf1==KString1_UpdatedTestValue);
|
sl@0
|
573 |
TEST(buf2==KString2_UpdatedTestValue);
|
sl@0
|
574 |
|
sl@0
|
575 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
576 |
}
|
sl@0
|
577 |
|
sl@0
|
578 |
|
sl@0
|
579 |
LOCAL_C void CreateSetRealTransactionL()
|
sl@0
|
580 |
{
|
sl@0
|
581 |
CRepository* repository;
|
sl@0
|
582 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
|
sl@0
|
583 |
|
sl@0
|
584 |
// Remember that this repository need to be reset
|
sl@0
|
585 |
::AddRepositoryToReset(KUidTransactionTestRepository);
|
sl@0
|
586 |
|
sl@0
|
587 |
//
|
sl@0
|
588 |
// Real transaction get/set
|
sl@0
|
589 |
//
|
sl@0
|
590 |
TInt r;
|
sl@0
|
591 |
TInt i = 0;
|
sl@0
|
592 |
const TInt imax = 0x0ff;
|
sl@0
|
593 |
|
sl@0
|
594 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
595 |
TEST2(r, KErrNone);
|
sl@0
|
596 |
|
sl@0
|
597 |
// create
|
sl@0
|
598 |
const TReal KRealStartValue = 100.05;
|
sl@0
|
599 |
const TUint32 KNewRealBase = 1;
|
sl@0
|
600 |
for(i=0;i<imax;i++)
|
sl@0
|
601 |
{
|
sl@0
|
602 |
r = repository->Create(KNewRealBase+i, KRealStartValue+i);
|
sl@0
|
603 |
TEST2(r, KErrNone);
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
TUint32 errorId;
|
sl@0
|
607 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
608 |
TEST2(r, KErrNone);
|
sl@0
|
609 |
|
sl@0
|
610 |
TReal real, real2;
|
sl@0
|
611 |
for(i=0; i<imax; i++)
|
sl@0
|
612 |
{
|
sl@0
|
613 |
r = repository->Get((KNewRealBase+i), real );
|
sl@0
|
614 |
real2 = KRealStartValue+i;
|
sl@0
|
615 |
TEST2(r, KErrNone);
|
sl@0
|
616 |
TEST( real2 == real );
|
sl@0
|
617 |
}
|
sl@0
|
618 |
|
sl@0
|
619 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
620 |
}
|
sl@0
|
621 |
|
sl@0
|
622 |
LOCAL_C void ResetTransactionL()
|
sl@0
|
623 |
{
|
sl@0
|
624 |
#ifdef PENDING_REMOVAL
|
sl@0
|
625 |
// reset operations are not supported in transactions for now.
|
sl@0
|
626 |
// ResetAll will not ever be: still to decide on individual setting reset
|
sl@0
|
627 |
// Both are very slow.
|
sl@0
|
628 |
|
sl@0
|
629 |
TUint32 errorId;
|
sl@0
|
630 |
CRepository* repository;
|
sl@0
|
631 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
632 |
|
sl@0
|
633 |
// Remember that this repository need to be reset
|
sl@0
|
634 |
::AddRepositoryToReset(KUidPlatsecTestRepository);
|
sl@0
|
635 |
|
sl@0
|
636 |
TInt r = repository->Set(KInt1, KInt1_UpdatedValue);
|
sl@0
|
637 |
TEST2(r, KErrNone);
|
sl@0
|
638 |
|
sl@0
|
639 |
TInt x,y;
|
sl@0
|
640 |
r = repository->Get(KInt1, x);
|
sl@0
|
641 |
TEST2(r, KErrNone);
|
sl@0
|
642 |
|
sl@0
|
643 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
644 |
TEST2(r, KErrNone);
|
sl@0
|
645 |
|
sl@0
|
646 |
r = repository->Reset(KInt1);
|
sl@0
|
647 |
TEST2(r, KErrNone);
|
sl@0
|
648 |
|
sl@0
|
649 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
650 |
TEST2(r, KErrNone);
|
sl@0
|
651 |
|
sl@0
|
652 |
r = repository->Get(KInt1, y);
|
sl@0
|
653 |
TEST2(r, KErrNone);
|
sl@0
|
654 |
|
sl@0
|
655 |
// did we get what expected after commit?
|
sl@0
|
656 |
TEST(x!=KInt1_InitialValue);
|
sl@0
|
657 |
TEST(y==KInt1_InitialValue);
|
sl@0
|
658 |
|
sl@0
|
659 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
660 |
|
sl@0
|
661 |
// Repository B
|
sl@0
|
662 |
// lets prepare for reset
|
sl@0
|
663 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
|
sl@0
|
664 |
|
sl@0
|
665 |
// Remember that this repository need to be reset
|
sl@0
|
666 |
::AddRepositoryToReset(KUidTransactionTestRepository);
|
sl@0
|
667 |
|
sl@0
|
668 |
const TInt KNewSettingAlwaysPass = 0x101;
|
sl@0
|
669 |
|
sl@0
|
670 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
671 |
TEST2(r, KErrNone);
|
sl@0
|
672 |
|
sl@0
|
673 |
TInt i = 0;
|
sl@0
|
674 |
for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
|
sl@0
|
675 |
{
|
sl@0
|
676 |
r = repository->Create(i, i);
|
sl@0
|
677 |
TEST2(r, KErrNone);
|
sl@0
|
678 |
}
|
sl@0
|
679 |
|
sl@0
|
680 |
|
sl@0
|
681 |
TRequestStatus status = -1;
|
sl@0
|
682 |
r = repository->NotifyRequest(0, 0, status);
|
sl@0
|
683 |
TEST2(r, KErrNone);
|
sl@0
|
684 |
|
sl@0
|
685 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
686 |
TEST2(r, KErrNone);
|
sl@0
|
687 |
|
sl@0
|
688 |
TInt xArray[10];
|
sl@0
|
689 |
TInt xx=0;
|
sl@0
|
690 |
for(i=0;i<10;i++)
|
sl@0
|
691 |
{
|
sl@0
|
692 |
r = repository->Get(KNewSettingAlwaysPass+i, xArray[i]);
|
sl@0
|
693 |
TEST2(r, KErrNone);
|
sl@0
|
694 |
}
|
sl@0
|
695 |
|
sl@0
|
696 |
//and do the reset business now
|
sl@0
|
697 |
r = repository->StartTransaction(CRepository::EReadWriteTransaction);
|
sl@0
|
698 |
TEST2(r, KErrNone);
|
sl@0
|
699 |
|
sl@0
|
700 |
r = repository->Reset();
|
sl@0
|
701 |
TEST2(r, KErrNone);
|
sl@0
|
702 |
|
sl@0
|
703 |
r = repository->CommitTransaction(errorId);
|
sl@0
|
704 |
TEST2(r, KErrNone);
|
sl@0
|
705 |
|
sl@0
|
706 |
// test reset after commit
|
sl@0
|
707 |
TEST(status==KNewSettingAlwaysPass);
|
sl@0
|
708 |
|
sl@0
|
709 |
for(i=0;i<10;i++)
|
sl@0
|
710 |
{
|
sl@0
|
711 |
TEST(xArray[i]==(KNewSettingAlwaysPass+i));
|
sl@0
|
712 |
}
|
sl@0
|
713 |
|
sl@0
|
714 |
for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
|
sl@0
|
715 |
{
|
sl@0
|
716 |
r = repository->Get(i, xx);
|
sl@0
|
717 |
TEST2(r, KErrNotFound);
|
sl@0
|
718 |
}
|
sl@0
|
719 |
|
sl@0
|
720 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
721 |
#endif // PENDING_REMOVAL
|
sl@0
|
722 |
}
|
sl@0
|
723 |
|
sl@0
|
724 |
LOCAL_C void FindL()
|
sl@0
|
725 |
{
|
sl@0
|
726 |
CRepository* repository;
|
sl@0
|
727 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
728 |
|
sl@0
|
729 |
RArray<TUint32> foundIds;
|
sl@0
|
730 |
CleanupClosePushL(foundIds);
|
sl@0
|
731 |
|
sl@0
|
732 |
TInt r = KErrNone;
|
sl@0
|
733 |
|
sl@0
|
734 |
TRAPD(leaveReason, r = repository->FindL(0, 0, foundIds));
|
sl@0
|
735 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
736 |
{
|
sl@0
|
737 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
738 |
User::Leave(KErrNoMemory);
|
sl@0
|
739 |
}
|
sl@0
|
740 |
// Note that we are allowed to find any setting regardless of it's platsec
|
sl@0
|
741 |
// what we can't do is return the value
|
sl@0
|
742 |
TEST2(r, KErrNone);
|
sl@0
|
743 |
TEST(foundIds.Count()==KNumSettings);
|
sl@0
|
744 |
|
sl@0
|
745 |
foundIds.Reset();
|
sl@0
|
746 |
|
sl@0
|
747 |
TRAP(leaveReason, r = repository->FindL(23, 0, foundIds)); // 23 - just a random number, value is not important
|
sl@0
|
748 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
749 |
{
|
sl@0
|
750 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
751 |
User::Leave(KErrNoMemory);
|
sl@0
|
752 |
}
|
sl@0
|
753 |
TEST2(r, KErrNone);
|
sl@0
|
754 |
TEST(foundIds.Count()==KNumSettings);
|
sl@0
|
755 |
|
sl@0
|
756 |
foundIds.Reset();
|
sl@0
|
757 |
|
sl@0
|
758 |
TRAP(leaveReason, r = repository->FindL(0, 2, foundIds));
|
sl@0
|
759 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
760 |
{
|
sl@0
|
761 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
762 |
User::Leave(KErrNoMemory);
|
sl@0
|
763 |
}
|
sl@0
|
764 |
TEST2(r, KErrNone);
|
sl@0
|
765 |
TEST(foundIds.Count()==22);
|
sl@0
|
766 |
|
sl@0
|
767 |
foundIds.Reset();
|
sl@0
|
768 |
|
sl@0
|
769 |
TRAP(leaveReason, r = repository->FindL(4, 6, foundIds));
|
sl@0
|
770 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
771 |
{
|
sl@0
|
772 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
773 |
User::Leave(KErrNoMemory);
|
sl@0
|
774 |
}
|
sl@0
|
775 |
TEST2(r, KErrNone);
|
sl@0
|
776 |
TEST(foundIds.Count()==1);
|
sl@0
|
777 |
|
sl@0
|
778 |
foundIds.Reset();
|
sl@0
|
779 |
|
sl@0
|
780 |
TRAP(leaveReason, r = repository->FindL(15, 15, foundIds));
|
sl@0
|
781 |
if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
|
sl@0
|
782 |
{
|
sl@0
|
783 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
784 |
User::Leave(KErrNoMemory);
|
sl@0
|
785 |
}
|
sl@0
|
786 |
TEST2(r, KErrNotFound);
|
sl@0
|
787 |
TEST(foundIds.Count()==0);
|
sl@0
|
788 |
|
sl@0
|
789 |
CleanupStack::PopAndDestroy(); //foundIds
|
sl@0
|
790 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
791 |
}
|
sl@0
|
792 |
|
sl@0
|
793 |
LOCAL_C void NotifyL()
|
sl@0
|
794 |
{
|
sl@0
|
795 |
CRepository* repository;
|
sl@0
|
796 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
797 |
// Remember that this repository need to be reset
|
sl@0
|
798 |
::AddRepositoryToReset(KUidPlatsecTestRepository);
|
sl@0
|
799 |
|
sl@0
|
800 |
PlatSec platsec;
|
sl@0
|
801 |
|
sl@0
|
802 |
//
|
sl@0
|
803 |
// Notification on non-existent setting
|
sl@0
|
804 |
//
|
sl@0
|
805 |
TRequestStatus intStatus;
|
sl@0
|
806 |
TInt r = repository->NotifyRequest(KNonExisitent, intStatus);
|
sl@0
|
807 |
TEST2(r, KErrNotFound);
|
sl@0
|
808 |
|
sl@0
|
809 |
|
sl@0
|
810 |
//
|
sl@0
|
811 |
// Basic notification
|
sl@0
|
812 |
//
|
sl@0
|
813 |
r = repository->NotifyRequest(KInt1, intStatus);
|
sl@0
|
814 |
TEST2(r, KErrNone);
|
sl@0
|
815 |
|
sl@0
|
816 |
TRequestStatus realStatus;
|
sl@0
|
817 |
r = repository->NotifyRequest(KReal1, realStatus);
|
sl@0
|
818 |
TEST2(r, KErrNone);
|
sl@0
|
819 |
|
sl@0
|
820 |
TRequestStatus stringStatus;
|
sl@0
|
821 |
r = repository->NotifyRequest(KString1, stringStatus);
|
sl@0
|
822 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
823 |
{
|
sl@0
|
824 |
TEST2(r, KErrNone);
|
sl@0
|
825 |
}
|
sl@0
|
826 |
else
|
sl@0
|
827 |
{
|
sl@0
|
828 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
829 |
}
|
sl@0
|
830 |
|
sl@0
|
831 |
|
sl@0
|
832 |
// Setting to the same value should not cause a notification
|
sl@0
|
833 |
TInt intval;
|
sl@0
|
834 |
r = repository->Get(KInt1, intval);
|
sl@0
|
835 |
TEST2(r, KErrNone);
|
sl@0
|
836 |
r = repository->Set(KInt1, intval);
|
sl@0
|
837 |
TEST2(r, KErrNone);
|
sl@0
|
838 |
TEST(intStatus==KRequestPending);
|
sl@0
|
839 |
TEST(realStatus==KRequestPending);
|
sl@0
|
840 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
841 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
842 |
RThread thisThread;
|
sl@0
|
843 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
844 |
|
sl@0
|
845 |
// First change to setting should cause notification
|
sl@0
|
846 |
r = repository->Set(KInt1, 0);
|
sl@0
|
847 |
TEST2(r, KErrNone);
|
sl@0
|
848 |
User::WaitForAnyRequest();
|
sl@0
|
849 |
TEST(intStatus==KInt1);
|
sl@0
|
850 |
TEST(realStatus==KRequestPending);
|
sl@0
|
851 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
852 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
853 |
|
sl@0
|
854 |
// Second change to setting should not cause notification
|
sl@0
|
855 |
intStatus = 7777;
|
sl@0
|
856 |
r = repository->Set(KInt1, 0);
|
sl@0
|
857 |
TEST2(r, KErrNone);
|
sl@0
|
858 |
TEST(intStatus==7777);
|
sl@0
|
859 |
TEST(realStatus==KRequestPending);
|
sl@0
|
860 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
861 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
862 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
863 |
|
sl@0
|
864 |
|
sl@0
|
865 |
// Setting to the same value should not cause a notification
|
sl@0
|
866 |
TReal realval;
|
sl@0
|
867 |
r = repository->Get(KReal1, realval);
|
sl@0
|
868 |
TEST2(r, KErrNone);
|
sl@0
|
869 |
r = repository->Set(KReal1, realval);
|
sl@0
|
870 |
TEST2(r, KErrNone);
|
sl@0
|
871 |
TEST(intStatus==7777);
|
sl@0
|
872 |
TEST(realStatus==KRequestPending);
|
sl@0
|
873 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
874 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
875 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
876 |
|
sl@0
|
877 |
r = repository->Set(KReal1, 0.0);
|
sl@0
|
878 |
TEST2(r, KErrNone);
|
sl@0
|
879 |
User::WaitForAnyRequest();
|
sl@0
|
880 |
TEST(intStatus==7777);
|
sl@0
|
881 |
TEST(realStatus==KReal1);
|
sl@0
|
882 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
883 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
884 |
|
sl@0
|
885 |
|
sl@0
|
886 |
// Setting to the same value should not cause a notification
|
sl@0
|
887 |
realStatus = 8888;
|
sl@0
|
888 |
TBuf<20> stringval;
|
sl@0
|
889 |
r = repository->Get(KString1, stringval);
|
sl@0
|
890 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
891 |
TEST2(r, KErrNone);
|
sl@0
|
892 |
else
|
sl@0
|
893 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
894 |
r = repository->Set(KString1, stringval);
|
sl@0
|
895 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
896 |
TEST2(r, KErrNone);
|
sl@0
|
897 |
else
|
sl@0
|
898 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
899 |
TEST(intStatus==7777);
|
sl@0
|
900 |
TEST(realStatus==8888);
|
sl@0
|
901 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
902 |
TEST(stringStatus==KRequestPending);
|
sl@0
|
903 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
904 |
|
sl@0
|
905 |
_LIT(KStringValue2, "string2");
|
sl@0
|
906 |
r = repository->Set(KString1, KStringValue2);
|
sl@0
|
907 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
908 |
{
|
sl@0
|
909 |
TEST2(r, KErrNone);
|
sl@0
|
910 |
User::WaitForAnyRequest();
|
sl@0
|
911 |
}
|
sl@0
|
912 |
else
|
sl@0
|
913 |
TEST2(r, KErrPermissionDenied);
|
sl@0
|
914 |
|
sl@0
|
915 |
TEST(intStatus==7777);
|
sl@0
|
916 |
TEST(realStatus==8888);
|
sl@0
|
917 |
if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
|
sl@0
|
918 |
TEST(stringStatus==KString1);
|
sl@0
|
919 |
|
sl@0
|
920 |
|
sl@0
|
921 |
//
|
sl@0
|
922 |
// Cancelling single notifications
|
sl@0
|
923 |
//
|
sl@0
|
924 |
r = repository->NotifyRequest(KInt1, intStatus);
|
sl@0
|
925 |
TEST2(r, KErrNone);
|
sl@0
|
926 |
r = repository->NotifyCancel(KInt1);
|
sl@0
|
927 |
TEST2(r, KErrNone);
|
sl@0
|
928 |
User::WaitForAnyRequest();
|
sl@0
|
929 |
TEST(intStatus==KUnspecifiedKey);
|
sl@0
|
930 |
|
sl@0
|
931 |
intStatus = 7777;
|
sl@0
|
932 |
r = repository->NotifyRequest(KReal1, realStatus);
|
sl@0
|
933 |
TEST2(r, KErrNone);
|
sl@0
|
934 |
r = repository->Set(KInt1, 1);
|
sl@0
|
935 |
TEST2(r, KErrNone);
|
sl@0
|
936 |
r = repository->Set(KReal1, 1.1);
|
sl@0
|
937 |
TEST2(r, KErrNone);
|
sl@0
|
938 |
User::WaitForAnyRequest();
|
sl@0
|
939 |
TEST(intStatus==7777);
|
sl@0
|
940 |
TEST(realStatus==KReal1);
|
sl@0
|
941 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
942 |
|
sl@0
|
943 |
|
sl@0
|
944 |
//
|
sl@0
|
945 |
// Cancelling all notifications
|
sl@0
|
946 |
//
|
sl@0
|
947 |
realStatus = 8888;
|
sl@0
|
948 |
r = repository->NotifyRequest(KInt1, intStatus);
|
sl@0
|
949 |
TEST2(r, KErrNone);
|
sl@0
|
950 |
r = repository->NotifyRequest(KReal1, realStatus);
|
sl@0
|
951 |
TEST2(r, KErrNone);
|
sl@0
|
952 |
|
sl@0
|
953 |
r = repository->NotifyCancelAll();
|
sl@0
|
954 |
TEST2(r, KErrNone);
|
sl@0
|
955 |
User::WaitForAnyRequest();
|
sl@0
|
956 |
User::WaitForAnyRequest();
|
sl@0
|
957 |
TEST(intStatus==KUnspecifiedKey);
|
sl@0
|
958 |
TEST(realStatus==KUnspecifiedKey);
|
sl@0
|
959 |
|
sl@0
|
960 |
intStatus = 7777;
|
sl@0
|
961 |
realStatus = 8888;
|
sl@0
|
962 |
r = repository->Set(KInt1, 2);
|
sl@0
|
963 |
TEST2(r, KErrNone);
|
sl@0
|
964 |
r = repository->Set(KReal1, 2.2);
|
sl@0
|
965 |
TEST2(r, KErrNone);
|
sl@0
|
966 |
TEST(intStatus==7777);
|
sl@0
|
967 |
TEST(realStatus==8888);
|
sl@0
|
968 |
TEST(thisThread.RequestCount()==0);
|
sl@0
|
969 |
|
sl@0
|
970 |
//
|
sl@0
|
971 |
// Group notifications
|
sl@0
|
972 |
//
|
sl@0
|
973 |
r = repository->NotifyRequest(0, 0, intStatus);
|
sl@0
|
974 |
TEST2(r, KErrNone);
|
sl@0
|
975 |
User::WaitForAnyRequest();
|
sl@0
|
976 |
// we do not have capabilities for all settings
|
sl@0
|
977 |
TEST(intStatus==KErrPermissionDenied);
|
sl@0
|
978 |
|
sl@0
|
979 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
LOCAL_C void CreateDeleteL()
|
sl@0
|
983 |
{
|
sl@0
|
984 |
CRepository* repository;
|
sl@0
|
985 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
986 |
// Remember that this repository need to be reset
|
sl@0
|
987 |
::AddRepositoryToReset(KUidPlatsecTestRepository);
|
sl@0
|
988 |
|
sl@0
|
989 |
TInt x;
|
sl@0
|
990 |
TInt r = repository->Get(KNewInt, x);
|
sl@0
|
991 |
TEST2(r, KErrNotFound);
|
sl@0
|
992 |
|
sl@0
|
993 |
const TInt KIntValue = 1234;
|
sl@0
|
994 |
r = repository->Create(KNewInt, KIntValue);
|
sl@0
|
995 |
TEST2(r, KErrNone);
|
sl@0
|
996 |
|
sl@0
|
997 |
r = repository->Get(KNewInt, x);
|
sl@0
|
998 |
TEST2(r, KErrNone);
|
sl@0
|
999 |
TEST(x==KIntValue);
|
sl@0
|
1000 |
|
sl@0
|
1001 |
r = repository->Delete(KNewInt);
|
sl@0
|
1002 |
TEST2(r, KErrNone);
|
sl@0
|
1003 |
|
sl@0
|
1004 |
r = repository->Get(KNewInt, x);
|
sl@0
|
1005 |
TEST2(r, KErrNotFound);
|
sl@0
|
1006 |
|
sl@0
|
1007 |
r = repository->Create(KNewInt, KIntValue);
|
sl@0
|
1008 |
TEST2(r, KErrNone);
|
sl@0
|
1009 |
|
sl@0
|
1010 |
r = repository->Get(KNewInt, x);
|
sl@0
|
1011 |
TEST2(r, KErrNone);
|
sl@0
|
1012 |
TEST(x==KIntValue);
|
sl@0
|
1013 |
|
sl@0
|
1014 |
r = repository->Get(KNewInt, x);
|
sl@0
|
1015 |
TEST2(r, KErrNone);
|
sl@0
|
1016 |
TEST(x==KIntValue);
|
sl@0
|
1017 |
|
sl@0
|
1018 |
TReal y;
|
sl@0
|
1019 |
r = repository->Get(KNewReal, y);
|
sl@0
|
1020 |
TEST2(r, KErrNotFound);
|
sl@0
|
1021 |
|
sl@0
|
1022 |
const TReal KRealValue = 5678.0;
|
sl@0
|
1023 |
r = repository->Create(KNewReal, KRealValue);
|
sl@0
|
1024 |
TEST2(r, KErrNone);
|
sl@0
|
1025 |
|
sl@0
|
1026 |
r = repository->Get(KNewReal, y);
|
sl@0
|
1027 |
TEST2(r, KErrNone);
|
sl@0
|
1028 |
TEST(y==KRealValue);
|
sl@0
|
1029 |
|
sl@0
|
1030 |
r = repository->Delete(KNewReal);
|
sl@0
|
1031 |
TEST2(r, KErrNone);
|
sl@0
|
1032 |
|
sl@0
|
1033 |
r = repository->Get(KNewReal, y);
|
sl@0
|
1034 |
TEST2(r, KErrNotFound);
|
sl@0
|
1035 |
|
sl@0
|
1036 |
r = repository->Create(KNewReal, KRealValue);
|
sl@0
|
1037 |
TEST2(r, KErrNone);
|
sl@0
|
1038 |
|
sl@0
|
1039 |
r = repository->Get(KNewReal, y);
|
sl@0
|
1040 |
TEST2(r, KErrNone);
|
sl@0
|
1041 |
TEST(y==KRealValue);
|
sl@0
|
1042 |
|
sl@0
|
1043 |
r = repository->Get(KNewReal, y);
|
sl@0
|
1044 |
TEST2(r, KErrNone);
|
sl@0
|
1045 |
TEST(y==KRealValue);
|
sl@0
|
1046 |
|
sl@0
|
1047 |
TBuf8<20> z8;
|
sl@0
|
1048 |
r = repository->Get(KNewString8, z8);
|
sl@0
|
1049 |
TEST2(r, KErrNotFound);
|
sl@0
|
1050 |
|
sl@0
|
1051 |
_LIT8(KString8Value, "ABCDEF");
|
sl@0
|
1052 |
r = repository->Create(KNewString8, KString8Value);
|
sl@0
|
1053 |
TEST2(r, KErrNone);
|
sl@0
|
1054 |
|
sl@0
|
1055 |
r = repository->Get(KNewString8, z8);
|
sl@0
|
1056 |
TEST2(r, KErrNone);
|
sl@0
|
1057 |
TEST(z8==KString8Value);
|
sl@0
|
1058 |
|
sl@0
|
1059 |
r = repository->Delete(KNewString8);
|
sl@0
|
1060 |
TEST2(r, KErrNone);
|
sl@0
|
1061 |
|
sl@0
|
1062 |
r = repository->Get(KNewString8, z8);
|
sl@0
|
1063 |
TEST2(r, KErrNotFound);
|
sl@0
|
1064 |
|
sl@0
|
1065 |
r = repository->Create(KNewString8, KString8Value);
|
sl@0
|
1066 |
TEST2(r, KErrNone);
|
sl@0
|
1067 |
|
sl@0
|
1068 |
r = repository->Get(KNewString8, z8);
|
sl@0
|
1069 |
TEST2(r, KErrNone);
|
sl@0
|
1070 |
TEST(z8==KString8Value);
|
sl@0
|
1071 |
|
sl@0
|
1072 |
r = repository->Get(KNewString8, z8);
|
sl@0
|
1073 |
TEST2(r, KErrNone);
|
sl@0
|
1074 |
TEST(z8==KString8Value);
|
sl@0
|
1075 |
|
sl@0
|
1076 |
TBuf16<20> z16;
|
sl@0
|
1077 |
r = repository->Get(KNewString16, z16);
|
sl@0
|
1078 |
TEST2(r, KErrNotFound);
|
sl@0
|
1079 |
|
sl@0
|
1080 |
_LIT(KString16Value, "ghijklmn");
|
sl@0
|
1081 |
r = repository->Create(KNewString16, KString16Value);
|
sl@0
|
1082 |
TEST2(r, KErrNone);
|
sl@0
|
1083 |
|
sl@0
|
1084 |
r = repository->Get(KNewString16, z16);
|
sl@0
|
1085 |
TEST2(r, KErrNone);
|
sl@0
|
1086 |
TEST(z16==KString16Value);
|
sl@0
|
1087 |
|
sl@0
|
1088 |
r = repository->Delete(KNewString16);
|
sl@0
|
1089 |
TEST2(r, KErrNone);
|
sl@0
|
1090 |
|
sl@0
|
1091 |
r = repository->Get(KNewString16, z16);
|
sl@0
|
1092 |
TEST2(r, KErrNotFound);
|
sl@0
|
1093 |
|
sl@0
|
1094 |
r = repository->Create(KNewString16, KString16Value);
|
sl@0
|
1095 |
TEST2(r, KErrNone);
|
sl@0
|
1096 |
|
sl@0
|
1097 |
r = repository->Get(KNewString16, z16);
|
sl@0
|
1098 |
TEST2(r, KErrNone);
|
sl@0
|
1099 |
TEST(z16==KString16Value);
|
sl@0
|
1100 |
|
sl@0
|
1101 |
r = repository->Get(KNewString16, z16);
|
sl@0
|
1102 |
TEST2(r, KErrNone);
|
sl@0
|
1103 |
TEST(z16==KString16Value);
|
sl@0
|
1104 |
|
sl@0
|
1105 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
1106 |
}
|
sl@0
|
1107 |
|
sl@0
|
1108 |
LOCAL_C void MultiClientL()
|
sl@0
|
1109 |
{
|
sl@0
|
1110 |
CRepository* repository1;
|
sl@0
|
1111 |
User::LeaveIfNull(repository1 = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
1112 |
CRepository* repository2;
|
sl@0
|
1113 |
User::LeaveIfNull(repository2 = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
1114 |
|
sl@0
|
1115 |
// Remember that this repository need to be reset
|
sl@0
|
1116 |
::AddRepositoryToReset(KUidPlatsecTestRepository);
|
sl@0
|
1117 |
|
sl@0
|
1118 |
//
|
sl@0
|
1119 |
// Get/Set
|
sl@0
|
1120 |
//
|
sl@0
|
1121 |
TInt i;
|
sl@0
|
1122 |
TInt r = repository1->Set(KInt1, 0);
|
sl@0
|
1123 |
TEST2(r, KErrNone);
|
sl@0
|
1124 |
r = repository2->Get(KInt1, i);
|
sl@0
|
1125 |
TEST2(r, KErrNone);
|
sl@0
|
1126 |
TEST(i==0);
|
sl@0
|
1127 |
|
sl@0
|
1128 |
r = repository2->Set(KInt1, 123);
|
sl@0
|
1129 |
TEST2(r, KErrNone);
|
sl@0
|
1130 |
r = repository1->Get(KInt1, i);
|
sl@0
|
1131 |
TEST2(r, KErrNone);
|
sl@0
|
1132 |
TEST(i==123);
|
sl@0
|
1133 |
|
sl@0
|
1134 |
//
|
sl@0
|
1135 |
// Notification
|
sl@0
|
1136 |
//
|
sl@0
|
1137 |
TRequestStatus status;
|
sl@0
|
1138 |
r = repository1->NotifyRequest(KInt1, status);
|
sl@0
|
1139 |
TEST2(r, KErrNone);
|
sl@0
|
1140 |
|
sl@0
|
1141 |
r = repository2->Set(KInt1, 0);
|
sl@0
|
1142 |
TEST2(r, KErrNone);
|
sl@0
|
1143 |
User::WaitForAnyRequest();
|
sl@0
|
1144 |
TEST(status==KInt1);
|
sl@0
|
1145 |
|
sl@0
|
1146 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
1147 |
}
|
sl@0
|
1148 |
|
sl@0
|
1149 |
LOCAL_C void ResetL()
|
sl@0
|
1150 |
{
|
sl@0
|
1151 |
CRepository* repository;
|
sl@0
|
1152 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
|
sl@0
|
1153 |
|
sl@0
|
1154 |
TInt x;
|
sl@0
|
1155 |
TInt r = repository->Get(KInt1, x);
|
sl@0
|
1156 |
TEST2(r, KErrNone);
|
sl@0
|
1157 |
TEST(x!=KInt1_InitialValue);
|
sl@0
|
1158 |
|
sl@0
|
1159 |
r = repository->Reset(KInt1);
|
sl@0
|
1160 |
TEST2(r, KErrNone);
|
sl@0
|
1161 |
|
sl@0
|
1162 |
r = repository->Get(KInt1, x);
|
sl@0
|
1163 |
TEST2(r, KErrNone);
|
sl@0
|
1164 |
TEST(x==KInt1_InitialValue);
|
sl@0
|
1165 |
|
sl@0
|
1166 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
1167 |
|
sl@0
|
1168 |
// Repository D
|
sl@0
|
1169 |
User::LeaveIfNull(repository = CRepository::NewLC(KUidResetTestRepository));
|
sl@0
|
1170 |
// Remember that this repository need to be reset
|
sl@0
|
1171 |
::AddRepositoryToReset(KUidResetTestRepository);
|
sl@0
|
1172 |
|
sl@0
|
1173 |
|
sl@0
|
1174 |
const TInt KNewSetting1 = 5;
|
sl@0
|
1175 |
const TInt KNewSetting2 = 6;
|
sl@0
|
1176 |
r = repository->Create(KNewSetting1, 0);
|
sl@0
|
1177 |
TEST2(r, KErrNone);
|
sl@0
|
1178 |
r = repository->Create(KNewSetting2, 0);
|
sl@0
|
1179 |
TEST2(r, KErrNone);
|
sl@0
|
1180 |
|
sl@0
|
1181 |
r = repository->Create(65, 1);
|
sl@0
|
1182 |
TEST2(r, KErrNone);
|
sl@0
|
1183 |
|
sl@0
|
1184 |
r = repository->Set(70, 1);
|
sl@0
|
1185 |
TEST2(r, KErrNone);
|
sl@0
|
1186 |
|
sl@0
|
1187 |
r = repository->Create(80, 1);
|
sl@0
|
1188 |
TEST2(r, KErrNone);
|
sl@0
|
1189 |
|
sl@0
|
1190 |
r = repository->Create(90, 1);
|
sl@0
|
1191 |
TEST2(r, KErrNone);
|
sl@0
|
1192 |
|
sl@0
|
1193 |
TRequestStatus status = -1;
|
sl@0
|
1194 |
r = repository->NotifyRequest(0, 0, status);
|
sl@0
|
1195 |
TEST2(r, KErrNone);
|
sl@0
|
1196 |
|
sl@0
|
1197 |
r = repository->Reset();
|
sl@0
|
1198 |
TEST2(r, KErrNone);
|
sl@0
|
1199 |
TEST(status==KUnspecifiedKey);
|
sl@0
|
1200 |
RThread thisThread;
|
sl@0
|
1201 |
TEST(thisThread.RequestCount()==1);
|
sl@0
|
1202 |
|
sl@0
|
1203 |
r = repository->Get(10, x);
|
sl@0
|
1204 |
TEST2(r, KErrNone);
|
sl@0
|
1205 |
TEST(x==10);
|
sl@0
|
1206 |
|
sl@0
|
1207 |
r = repository->Get(40, x);
|
sl@0
|
1208 |
TEST2(r, KErrNone);
|
sl@0
|
1209 |
TEST(x==0);
|
sl@0
|
1210 |
|
sl@0
|
1211 |
r = repository->Get(50, x);
|
sl@0
|
1212 |
TEST2(r, KErrNone);
|
sl@0
|
1213 |
TEST(x==0);
|
sl@0
|
1214 |
|
sl@0
|
1215 |
r = repository->Get(60, x);
|
sl@0
|
1216 |
TEST2(r, KErrNone);
|
sl@0
|
1217 |
TEST(x==0);
|
sl@0
|
1218 |
|
sl@0
|
1219 |
r = repository->Get(70, x);
|
sl@0
|
1220 |
TEST2(r, KErrNone);
|
sl@0
|
1221 |
TEST(x==0);
|
sl@0
|
1222 |
|
sl@0
|
1223 |
TBuf<10> z;
|
sl@0
|
1224 |
r = repository->Get(20, z);
|
sl@0
|
1225 |
TEST2(r, KErrNone);
|
sl@0
|
1226 |
TEST(z==_L("string"));
|
sl@0
|
1227 |
|
sl@0
|
1228 |
TReal y;
|
sl@0
|
1229 |
r = repository->Get(30, y);
|
sl@0
|
1230 |
TEST2(r, KErrNone);
|
sl@0
|
1231 |
TEST(y==1);
|
sl@0
|
1232 |
|
sl@0
|
1233 |
r = repository->Get(5, x);
|
sl@0
|
1234 |
TEST2(r, KErrNotFound);
|
sl@0
|
1235 |
r = repository->Get(6, x);
|
sl@0
|
1236 |
TEST2(r, KErrNotFound);
|
sl@0
|
1237 |
r = repository->Get(65, x);
|
sl@0
|
1238 |
TEST2(r, KErrNotFound);
|
sl@0
|
1239 |
r = repository->Get(80, x);
|
sl@0
|
1240 |
TEST2(r, KErrNotFound);
|
sl@0
|
1241 |
r = repository->Get(90, x);
|
sl@0
|
1242 |
TEST2(r, KErrNotFound);
|
sl@0
|
1243 |
|
sl@0
|
1244 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
1245 |
}
|
sl@0
|
1246 |
|
sl@0
|
1247 |
LOCAL_C void FuncBasicTestsL()
|
sl@0
|
1248 |
{
|
sl@0
|
1249 |
TheTest.Start(_L("Open/Close repository"));
|
sl@0
|
1250 |
OpenRepositoryL();
|
sl@0
|
1251 |
|
sl@0
|
1252 |
TheTest.Next(_L("Get/Set"));
|
sl@0
|
1253 |
GetSetL();
|
sl@0
|
1254 |
|
sl@0
|
1255 |
TheTest.Next(_L("Find"));
|
sl@0
|
1256 |
FindL();
|
sl@0
|
1257 |
|
sl@0
|
1258 |
TheTest.Next(_L("Notify"));
|
sl@0
|
1259 |
NotifyL();
|
sl@0
|
1260 |
|
sl@0
|
1261 |
TheTest.Next(_L("Create/Delete"));
|
sl@0
|
1262 |
CreateDeleteL();
|
sl@0
|
1263 |
|
sl@0
|
1264 |
TheTest.Next(_L("Multiple clients"));
|
sl@0
|
1265 |
MultiClientL();
|
sl@0
|
1266 |
|
sl@0
|
1267 |
TheTest.Next(_L("Restore factory settings"));
|
sl@0
|
1268 |
ResetL();
|
sl@0
|
1269 |
|
sl@0
|
1270 |
TheTest.End();
|
sl@0
|
1271 |
}
|
sl@0
|
1272 |
|
sl@0
|
1273 |
LOCAL_C void FuncTransactionTestsL()
|
sl@0
|
1274 |
{
|
sl@0
|
1275 |
TheTest.Start(_L("Open/Close repository"));
|
sl@0
|
1276 |
OpenRepositoryL();
|
sl@0
|
1277 |
|
sl@0
|
1278 |
TheTest.Next(_L("Create/Set Int Transaction"));
|
sl@0
|
1279 |
CreateSetIntTransactionL();
|
sl@0
|
1280 |
|
sl@0
|
1281 |
TheTest.Next(_L("Create/Set Real Transaction"));
|
sl@0
|
1282 |
CreateSetRealTransactionL();
|
sl@0
|
1283 |
|
sl@0
|
1284 |
TheTest.Next(_L("Create/Set Descriptor Transaction"));
|
sl@0
|
1285 |
|
sl@0
|
1286 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1287 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1288 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1289 |
// undesirable effects.
|
sl@0
|
1290 |
::ResetModifiedRepsL();
|
sl@0
|
1291 |
|
sl@0
|
1292 |
CreateSetDesTransactionL();
|
sl@0
|
1293 |
|
sl@0
|
1294 |
TheTest.Next(_L("Restore factory settings"));
|
sl@0
|
1295 |
ResetTransactionL();
|
sl@0
|
1296 |
|
sl@0
|
1297 |
TheTest.End();
|
sl@0
|
1298 |
}
|
sl@0
|
1299 |
|
sl@0
|
1300 |
|
sl@0
|
1301 |
// ---------------------------------------------------
|
sl@0
|
1302 |
// OomTest
|
sl@0
|
1303 |
//
|
sl@0
|
1304 |
// Function to convert a test into an OOM test
|
sl@0
|
1305 |
|
sl@0
|
1306 |
LOCAL_C void OomTest(void (*testFuncL)())
|
sl@0
|
1307 |
{
|
sl@0
|
1308 |
TInt error;
|
sl@0
|
1309 |
TInt count = 0;
|
sl@0
|
1310 |
|
sl@0
|
1311 |
do
|
sl@0
|
1312 |
{
|
sl@0
|
1313 |
User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
|
sl@0
|
1314 |
User::__DbgMarkStart(RHeap::EUser);
|
sl@0
|
1315 |
TRAP(error, (testFuncL)());
|
sl@0
|
1316 |
User::__DbgMarkEnd(RHeap::EUser, 0);
|
sl@0
|
1317 |
} while(error == KErrNoMemory);
|
sl@0
|
1318 |
|
sl@0
|
1319 |
_LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
|
sl@0
|
1320 |
__ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
|
sl@0
|
1321 |
|
sl@0
|
1322 |
User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
|
sl@0
|
1323 |
}
|
sl@0
|
1324 |
|
sl@0
|
1325 |
/**
|
sl@0
|
1326 |
@SYMTestCaseID SYSLIB-CENREP-CT-0032
|
sl@0
|
1327 |
@SYMTestCaseDesc BasicPlatsecTestsL() function calls test for the Secure Cenrep (setting).
|
sl@0
|
1328 |
Methods of CRepository class are called for various combination of different settings
|
sl@0
|
1329 |
and the results are asserted.
|
sl@0
|
1330 |
@SYMTestPriority High
|
sl@0
|
1331 |
@SYMTestActions BasicPlatsecTestsL() method calls test.
|
sl@0
|
1332 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
1333 |
@SYMPREQ PREQ277
|
sl@0
|
1334 |
PREQ280
|
sl@0
|
1335 |
*/
|
sl@0
|
1336 |
LOCAL_C void BasicPlatsecTestsL()
|
sl@0
|
1337 |
{
|
sl@0
|
1338 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0032 Basic functional tests for PlatSec "));
|
sl@0
|
1339 |
OomTesting = EFalse;
|
sl@0
|
1340 |
|
sl@0
|
1341 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1342 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1343 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1344 |
// undesirable effects.
|
sl@0
|
1345 |
RepsToReset.AppendL(KUidPlatsecTestRepository);
|
sl@0
|
1346 |
RepsToReset.AppendL(KUidTransactionTestRepository);
|
sl@0
|
1347 |
RepsToReset.AppendL(KUidResetTestRepository);
|
sl@0
|
1348 |
::ResetModifiedRepsL();
|
sl@0
|
1349 |
|
sl@0
|
1350 |
FuncBasicTestsL();
|
sl@0
|
1351 |
|
sl@0
|
1352 |
TheTest.Next(_L("Basic Out-of-memory tests"));
|
sl@0
|
1353 |
|
sl@0
|
1354 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1355 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1356 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1357 |
// undesirable effects.
|
sl@0
|
1358 |
::ResetModifiedRepsL();
|
sl@0
|
1359 |
|
sl@0
|
1360 |
OomTesting = ETrue;
|
sl@0
|
1361 |
TheTest.Next(_L("OOM Open/Close repository"));
|
sl@0
|
1362 |
OomTest(OpenRepositoryL);
|
sl@0
|
1363 |
|
sl@0
|
1364 |
GetSetL();
|
sl@0
|
1365 |
|
sl@0
|
1366 |
TheTest.Next(_L("OOM Find"));
|
sl@0
|
1367 |
OomTest(FindL);
|
sl@0
|
1368 |
|
sl@0
|
1369 |
TheTest.End();
|
sl@0
|
1370 |
}
|
sl@0
|
1371 |
/**
|
sl@0
|
1372 |
@SYMTestCaseID SYSLIB-CENREP-CT-0033
|
sl@0
|
1373 |
@SYMTestCaseDesc TransactionPlatsecTestsL() function calls test for the Secure Cenrep (setting).
|
sl@0
|
1374 |
Methods of CRepository class are called for various combination of different settings
|
sl@0
|
1375 |
in a 'transaction' mode and the results are asserted.
|
sl@0
|
1376 |
@SYMTestPriority High
|
sl@0
|
1377 |
@SYMTestActions TransactionPlatsecTestsL() method calls test.
|
sl@0
|
1378 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
1379 |
@SYMPREQ PREQ277
|
sl@0
|
1380 |
PREQ280
|
sl@0
|
1381 |
*/
|
sl@0
|
1382 |
LOCAL_C void TransactionPlatsecTestsL()
|
sl@0
|
1383 |
{
|
sl@0
|
1384 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0033 Transaction functional tests for PlatSec "));
|
sl@0
|
1385 |
OomTesting = EFalse;
|
sl@0
|
1386 |
|
sl@0
|
1387 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1388 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1389 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1390 |
// undesirable effects.
|
sl@0
|
1391 |
::ResetModifiedRepsL();
|
sl@0
|
1392 |
|
sl@0
|
1393 |
FuncTransactionTestsL();
|
sl@0
|
1394 |
|
sl@0
|
1395 |
TheTest.Next(_L("Transaction Out-of-memory tests"));
|
sl@0
|
1396 |
|
sl@0
|
1397 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1398 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1399 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1400 |
// undesirable effects.
|
sl@0
|
1401 |
::ResetModifiedRepsL();
|
sl@0
|
1402 |
|
sl@0
|
1403 |
OomTesting = ETrue;
|
sl@0
|
1404 |
TheTest.Next(_L("OOM Open/Close repository"));
|
sl@0
|
1405 |
OomTest(OpenRepositoryL);
|
sl@0
|
1406 |
|
sl@0
|
1407 |
TheTest.Next(_L("OOM Transaction Int"));
|
sl@0
|
1408 |
OomTest(CreateSetIntTransactionL);
|
sl@0
|
1409 |
|
sl@0
|
1410 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1411 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1412 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1413 |
// undesirable effects.
|
sl@0
|
1414 |
::ResetModifiedRepsL();
|
sl@0
|
1415 |
|
sl@0
|
1416 |
|
sl@0
|
1417 |
TheTest.Next(_L("OOM Transaction Descriptors"));
|
sl@0
|
1418 |
OomTest(CreateSetDesTransactionL);
|
sl@0
|
1419 |
|
sl@0
|
1420 |
// Instead of wait for cache clear, this test uses the ResetAll API to
|
sl@0
|
1421 |
// restore keyspaces to original ROM settings. See the notes at implementation
|
sl@0
|
1422 |
// of ResetModifiedRepsL which explains why this is done and possible
|
sl@0
|
1423 |
// undesirable effects.
|
sl@0
|
1424 |
::ResetModifiedRepsL();
|
sl@0
|
1425 |
|
sl@0
|
1426 |
TheTest.End();
|
sl@0
|
1427 |
}
|
sl@0
|
1428 |
|
sl@0
|
1429 |
LOCAL_C void ServerPersistenceTest()
|
sl@0
|
1430 |
{
|
sl@0
|
1431 |
// Wait for a while after last test and ensure server is still running
|
sl@0
|
1432 |
User::After(KGeneralDelay);
|
sl@0
|
1433 |
|
sl@0
|
1434 |
_LIT( KCentralRepositoryServerName, "Centralrepository*");
|
sl@0
|
1435 |
TFullName serverName;
|
sl@0
|
1436 |
TFindProcess serverFind(KCentralRepositoryServerName);
|
sl@0
|
1437 |
TEST2(serverFind.Next(serverName), KErrNone);
|
sl@0
|
1438 |
}
|
sl@0
|
1439 |
|
sl@0
|
1440 |
LOCAL_C void MainL()
|
sl@0
|
1441 |
{
|
sl@0
|
1442 |
// allocate slots ahead of time to avoid problems with OOM tests.
|
sl@0
|
1443 |
RepsToReset.ReserveL(KMaxNumRepsToReset);
|
sl@0
|
1444 |
|
sl@0
|
1445 |
TheTest.Start(_L("Tests for basic PlatSec"));
|
sl@0
|
1446 |
BasicPlatsecTestsL();
|
sl@0
|
1447 |
|
sl@0
|
1448 |
TheTest.Next(_L("Tests for Transaction PlatSec"));
|
sl@0
|
1449 |
TransactionPlatsecTestsL();
|
sl@0
|
1450 |
|
sl@0
|
1451 |
TheTest.Next(_L("Server persistence test"));
|
sl@0
|
1452 |
ServerPersistenceTest();
|
sl@0
|
1453 |
|
sl@0
|
1454 |
TheTest.End();
|
sl@0
|
1455 |
TheTest.Close();
|
sl@0
|
1456 |
|
sl@0
|
1457 |
RepsToReset.Reset();
|
sl@0
|
1458 |
}
|
sl@0
|
1459 |
|
sl@0
|
1460 |
TInt E32Main()
|
sl@0
|
1461 |
{
|
sl@0
|
1462 |
//
|
sl@0
|
1463 |
// For the tests to work we need SID policing enforced plus the specific
|
sl@0
|
1464 |
// capabilities listed below.
|
sl@0
|
1465 |
//
|
sl@0
|
1466 |
// These are dependent on the capabilities set in the platform security
|
sl@0
|
1467 |
// repository test initialisation file 87654321.txt. If the content
|
sl@0
|
1468 |
// of that file changes then the following clauses may need to be
|
sl@0
|
1469 |
// updated.
|
sl@0
|
1470 |
//
|
sl@0
|
1471 |
if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) ||
|
sl@0
|
1472 |
!PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) ||
|
sl@0
|
1473 |
!PlatSec::IsCapabilityEnforced(ECapabilityDRM) ||
|
sl@0
|
1474 |
!PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) ||
|
sl@0
|
1475 |
!PlatSec::IsCapabilityEnforced(ECapabilityCommDD))
|
sl@0
|
1476 |
{
|
sl@0
|
1477 |
TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings"));
|
sl@0
|
1478 |
TheTest.End();
|
sl@0
|
1479 |
TheTest.Close();
|
sl@0
|
1480 |
return 0;
|
sl@0
|
1481 |
}
|
sl@0
|
1482 |
|
sl@0
|
1483 |
__UHEAP_MARK;
|
sl@0
|
1484 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
1485 |
if(!cleanup)
|
sl@0
|
1486 |
return KErrNoMemory;
|
sl@0
|
1487 |
|
sl@0
|
1488 |
TRAPD(err, MainL());
|
sl@0
|
1489 |
if (err != KErrNone)
|
sl@0
|
1490 |
User::Panic(_L("Testing failed: "), err);
|
sl@0
|
1491 |
|
sl@0
|
1492 |
delete cleanup;
|
sl@0
|
1493 |
__UHEAP_MARKEND;
|
sl@0
|
1494 |
|
sl@0
|
1495 |
return 0;
|
sl@0
|
1496 |
}
|