1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_platsec.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1496 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "t_cenrep_helper.h"
1.20 +#include <centralrepository.h>
1.21 +#include <e32capability.h>
1.22 +#include <e32test.h>
1.23 +#include <f32file.h>
1.24 +
1.25 +#include "../cenrepsrv/srvparams.h"
1.26 +#include "../cenrepsrv/srvreqs.h"
1.27 +#include "../common/inc/srvdefs.h"
1.28 +
1.29 +using namespace NCentralRepositoryConstants;
1.30 +
1.31 +RTest TheTest(_L("Central Repository Platform Security Tests"));
1.32 +
1.33 +TBool OomTesting;
1.34 +
1.35 +const TUid KUidPlatsecTestRepository = { 0x00000100 };
1.36 +const TUid KUidTransactionTestRepository = { 0x00000101 };
1.37 +const TUid KUidResetTestRepository = { 0x00000004 };
1.38 +
1.39 +const TInt KMaxNumRepsToReset = 3;
1.40 +
1.41 +//
1.42 +// Platsec test repository
1.43 +//
1.44 +
1.45 +const TUint32 KNonExisitent = 0;
1.46 +
1.47 +const TInt KNumSettings = 26;
1.48 +
1.49 +const TUint32 KInt1 = 1;
1.50 +const TInt KInt1_InitialValue = 1;
1.51 +const TInt KInt1_UpdatedValue = 73;
1.52 +const TUint32 KNewInt = 1000;
1.53 +//
1.54 +const TUint32 KIntAlwaysPass = 0x201;
1.55 +const TInt KIntAlwaysPass_Value = 200;
1.56 +const TUint32 KIntAlwaysPassFail = 0x202;
1.57 +
1.58 +const TUint32 KReal1 = 2;
1.59 +const TReal KReal1_InitialValue = 2.732;
1.60 +const TReal KReal1_UpdatedValue = 72.8;
1.61 +const TUint32 KNewReal = 2000;
1.62 +
1.63 +const TUint32 KString1 = 5;
1.64 +_LIT(KString1_InitialValue, "test\\\"string\"");
1.65 +_LIT(KString1_UpdatedValue, "another one");
1.66 +const TUint32 KNewString8 = 3000;
1.67 +const TUint32 KNewString16 = 4000;
1.68 +
1.69 +RArray<TUid> RepsToReset;
1.70 +
1.71 +///////////////////////////////////////////////////////////////////////////////////////
1.72 +///////////////////////////////////////////////////////////////////////////////////////
1.73 +//Test macroses and functions
1.74 +
1.75 +LOCAL_C void CheckL(TInt aValue, TInt aLine)
1.76 + {
1.77 + if(!aValue)
1.78 + {
1.79 + CleanupCDriveL();
1.80 + TheTest(EFalse, aLine);
1.81 + }
1.82 + }
1.83 +LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
1.84 + {
1.85 + if(aValue != aExpected)
1.86 + {
1.87 + CleanupCDriveL();
1.88 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.89 + TheTest(EFalse, aLine);
1.90 + }
1.91 + }
1.92 +
1.93 +#define TEST(arg) ::CheckL((arg), __LINE__)
1.94 +#define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
1.95 +///////////////////////////////////////////////////////////////////////////////////////
1.96 +///////////////////////////////////////////////////////////////////////////////////////
1.97 +
1.98 +// Function to compare two TUid's.
1.99 +LOCAL_C TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
1.100 + {
1.101 + return aUid1.iUid - aUid2.iUid;
1.102 + }
1.103 +
1.104 +LOCAL_C void AddRepositoryToReset(const TUid& aRepositoryUid)
1.105 + {
1.106 + // Use InsertInOrder not because of speed but to eliminate
1.107 + // duplicates.
1.108 + RepsToReset.InsertInOrder(aRepositoryUid, CompareUid);
1.109 + }
1.110 +
1.111 +// NB: this test suite needs each test run to start with keyspaces with values from
1.112 +// the initialization files in ROM dir. The best way to archive this is to send the
1.113 +// EGetSetParameters IPC to centrep server to flush cache and then delete
1.114 +// the .cre files. This option requires the CENTREP_SERVER_CACHETEST macro
1.115 +// which is not available in release ONB. The second choice is to wait enough
1.116 +// time for centrep server to flush out cache, then delete the .cre files from
1.117 +// persists dir. This approach does not work well on the emulator because centrep
1.118 +// server's cache timer sometimes is late by as much as a few seconds.
1.119 +// Hence instead of wait and delete the .cre files, this RTest uses the ResetAll
1.120 +// API. This trick works for the use case of this RTest but may not work in other
1.121 +// situations. E.g., in this RTest centrep server always open repositories
1.122 +// from cache. This changes the timing pattern and does not exercise the
1.123 +// cache eviction code path.
1.124 +LOCAL_C void ResetModifiedRepsL()
1.125 + {
1.126 + for (TInt i = RepsToReset.Count() - 1; i >= 0; i--)
1.127 + {
1.128 + CRepository* rep;
1.129 + User::LeaveIfNull( rep = CRepository::NewL(RepsToReset[i]) );
1.130 + rep->Reset();
1.131 + delete rep;
1.132 +
1.133 + RepsToReset.Remove(i);
1.134 + }
1.135 + }
1.136 +
1.137 +LOCAL_C void OpenRepositoryL()
1.138 + {
1.139 + CRepository* repositoryA;
1.140 +
1.141 + TInt r;
1.142 +
1.143 + TRAP(r, CRepository::NewL(TUid::Null()));
1.144 + if(OomTesting && r==KErrNoMemory)
1.145 + User::Leave(KErrNoMemory);
1.146 + TEST2(r, KErrNotFound);
1.147 +
1.148 + repositoryA = CRepository::NewLC(KUidPlatsecTestRepository);
1.149 +
1.150 + TInt a;
1.151 + r = repositoryA->Get(KInt1, a);
1.152 + TEST2(r, KErrNone);
1.153 + TEST(a==KInt1_InitialValue);
1.154 +
1.155 + CleanupStack::PopAndDestroy(repositoryA);
1.156 +
1.157 + }
1.158 +
1.159 +LOCAL_C void GetSetL()
1.160 + {
1.161 + CRepository* repository;
1.162 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.163 +
1.164 + // Remember that this repository need to be reset
1.165 + ::AddRepositoryToReset(KUidPlatsecTestRepository);
1.166 +
1.167 + //
1.168 + // Integer get/set
1.169 + //
1.170 +
1.171 + TInt i = 0;
1.172 +
1.173 + TInt r = repository->Get(KNonExisitent, i);
1.174 + TEST2(r, KErrNotFound);
1.175 + TEST(i==0);
1.176 +
1.177 + // no capability specified so deafult should do and should succeed
1.178 + r = repository->Get(KReal1, i);
1.179 + TEST2(r, KErrArgument);
1.180 + TEST(i==0);
1.181 +
1.182 + // no capability specified so deafult should do and should succeed
1.183 + r = repository->Get(KInt1, i);
1.184 + TEST2(r, KErrNone);
1.185 + TEST(i==KInt1_InitialValue);
1.186 +
1.187 + r = repository->Set(KNonExisitent, 0);
1.188 + TEST2(r, KErrNone);
1.189 +
1.190 + r = repository->Delete(KNonExisitent);
1.191 + TEST2(r, KErrNone);
1.192 +
1.193 + r = repository->Set(KReal1, 0);
1.194 + TEST2(r, KErrArgument);
1.195 +
1.196 + r = repository->Set(KInt1, KInt1_UpdatedValue);
1.197 + TEST2(r, KErrNone);
1.198 +
1.199 + r = repository->Get(KInt1, i);
1.200 + TEST2(r, KErrNone);
1.201 + TEST(i==KInt1_UpdatedValue);
1.202 +
1.203 + r = repository->Get(KIntAlwaysPass, i);
1.204 + // range policy AlwaysPass
1.205 + TEST2(r, KErrNone);
1.206 + TEST(i==KIntAlwaysPass_Value);
1.207 +
1.208 + i=0;
1.209 + r = repository->Get(KIntAlwaysPassFail, i);
1.210 + // range policy overidden
1.211 + TEST2(r, KErrPermissionDenied);
1.212 + TEST(i!=KIntAlwaysPass_Value);
1.213 +
1.214 +
1.215 + //
1.216 + // Real get/set
1.217 + //
1.218 +
1.219 + TReal y = 0;
1.220 +
1.221 + r = repository->Get(KNonExisitent, y);
1.222 + TEST2(r, KErrNotFound);
1.223 + TEST(y==0);
1.224 +
1.225 + r = repository->Get(KInt1, y);
1.226 + TEST2(r, KErrArgument);
1.227 + TEST(y==0);
1.228 +
1.229 + r = repository->Get(KReal1, y);
1.230 + TEST2(r, KErrNone);
1.231 + TEST(y==KReal1_InitialValue);
1.232 +
1.233 + r = repository->Set(KNonExisitent, 0.0);
1.234 + TEST2(r, KErrNone);
1.235 +
1.236 + r = repository->Delete(KNonExisitent);
1.237 + TEST2(r, KErrNone);
1.238 +
1.239 + r = repository->Set(KInt1, 0.0);
1.240 + TEST2(r, KErrArgument);
1.241 +
1.242 + r = repository->Set(KReal1, KReal1_UpdatedValue);
1.243 + TEST2(r, KErrNone);
1.244 +
1.245 + r = repository->Get(KReal1, y);
1.246 + TEST2(r, KErrNone);
1.247 + TEST(y==KReal1_UpdatedValue);
1.248 +
1.249 + //
1.250 + // String get/set
1.251 + //
1.252 +
1.253 + TBuf<20> str;
1.254 +
1.255 + r = repository->Get(KNonExisitent, str);
1.256 + TEST2(r, KErrNotFound);
1.257 + TEST(str.Length()==0);
1.258 +
1.259 + r = repository->Get(KInt1, str);
1.260 + TEST2(r, KErrArgument);
1.261 + TEST(str.Length()==0);
1.262 +
1.263 + r = repository->Get(KString1, str);
1.264 + PlatSec platsec;
1.265 +
1.266 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.267 + {
1.268 + TEST2(r, KErrNone);
1.269 + TEST(str==KString1_InitialValue);
1.270 + }
1.271 + else
1.272 + TEST2(r, KErrPermissionDenied);
1.273 +
1.274 +
1.275 + TBuf<10> tooShort;
1.276 + r = repository->Get(KString1, tooShort);
1.277 +
1.278 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.279 + {
1.280 + TEST2(r, KErrOverflow);
1.281 + TEST(tooShort.Length()==0);
1.282 + }
1.283 + else
1.284 + TEST2(r, KErrPermissionDenied);
1.285 +
1.286 +
1.287 + r = repository->Set(KNonExisitent, str);
1.288 + TEST2(r, KErrNone);
1.289 +
1.290 + r = repository->Delete(KNonExisitent);
1.291 + TEST2(r, KErrNone);
1.292 +
1.293 + r = repository->Set(KInt1, str);
1.294 + TEST2(r, KErrArgument);
1.295 +
1.296 + r = repository->Set(KString1, KString1_UpdatedValue);
1.297 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.298 + {
1.299 + TEST2(r, KErrNone);
1.300 + }
1.301 + else
1.302 + TEST2(r, KErrPermissionDenied);
1.303 +
1.304 + r = repository->Get(KString1, str);
1.305 +
1.306 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.307 + {
1.308 + TEST2(r, KErrNone);
1.309 + TEST(str==KString1_UpdatedValue);
1.310 + }
1.311 + else
1.312 + TEST2(r, KErrPermissionDenied);
1.313 +
1.314 + const TInt KStringLengthTooBig = KMaxUnicodeStringLength + 1;
1.315 + TBuf<KStringLengthTooBig> tooBig;
1.316 + tooBig.SetLength(KStringLengthTooBig);
1.317 + r = repository->Set(KString1, tooBig);
1.318 + TEST2(r, KErrArgument);
1.319 +
1.320 + CleanupStack::PopAndDestroy(repository);
1.321 + }
1.322 +
1.323 +LOCAL_C void CreateSetIntTransactionL()
1.324 + {
1.325 + CRepository* repository;
1.326 + User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
1.327 +
1.328 + // Remember that this repository need to be reset
1.329 + ::AddRepositoryToReset(KUidTransactionTestRepository);
1.330 +
1.331 + //
1.332 + // Integer get/set
1.333 + //
1.334 + TInt r;
1.335 + TInt i = 0;
1.336 + const TInt imax = 0x0ff;
1.337 + TUint32 errorId;
1.338 +
1.339 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.340 + repository->CleanupRollbackTransactionPushL();
1.341 + TEST2(r, KErrNone);
1.342 +
1.343 + // create
1.344 + TInt KIntStartValue = 100;
1.345 + const TUint32 KNewIntBase = 1;
1.346 + for(i=0;i<imax;i++)
1.347 + {
1.348 + r = repository->Create(KNewIntBase+i, KIntStartValue+i);
1.349 + if(OomTesting && (r==KErrNoMemory))
1.350 + User::Leave(KErrNoMemory);
1.351 + else
1.352 + TEST2(r, KErrNone);
1.353 + }
1.354 +
1.355 + r = repository->CommitTransaction(errorId);
1.356 + CleanupStack::Pop();
1.357 + if(OomTesting && r!=KErrNone)
1.358 + {
1.359 + // in OOM test we may have alredy created settings
1.360 + TEST2(r, KErrAlreadyExists);
1.361 + }
1.362 + else
1.363 + TEST2(r, KErrNone);
1.364 +
1.365 + TInt integer;
1.366 + if(!(OomTesting && r==KErrAlreadyExists))
1.367 + {
1.368 + // during OOM tests we have values from Sets rather then Create...
1.369 + for(i=0;i<imax;i++)
1.370 + {
1.371 + r = repository->Get(KNewIntBase+i,integer );
1.372 + TEST2(r, KErrNone);
1.373 + TEST(KIntStartValue+i==integer);
1.374 + }
1.375 + }
1.376 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.377 + TEST2(r, KErrNone);
1.378 +
1.379 + repository->CleanupRollbackTransactionPushL();
1.380 +
1.381 + // set
1.382 + KIntStartValue = 200;
1.383 + for(i=0;i<imax;i++)
1.384 + {
1.385 + r = repository->Set(KNewIntBase+i, KIntStartValue+i);
1.386 + if(OomTesting && (r==KErrNoMemory))
1.387 + User::Leave(KErrNoMemory);
1.388 + else
1.389 + TEST2(r, KErrNone);
1.390 + }
1.391 +
1.392 + r = repository->CommitTransaction(errorId);
1.393 + CleanupStack::Pop();
1.394 + TEST2(r, KErrNone);
1.395 + for(i=0;i<imax;i++)
1.396 + {
1.397 + r = repository->Get(KNewIntBase+i,integer );
1.398 + TEST2(r, KErrNone);
1.399 + TEST(KIntStartValue+i==integer);
1.400 + }
1.401 +
1.402 + // lets check set where some are going to fail
1.403 + // set
1.404 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.405 + repository->CleanupRollbackTransactionPushL();
1.406 + TEST2(r, KErrNone);
1.407 + KIntStartValue = 400;
1.408 + TInt base = KNewIntBase + 0x7f; // half the range ok other half should fail
1.409 + for(i=0;i<imax;i++)
1.410 + {
1.411 + r = repository->Set(base+i, KIntStartValue+i);
1.412 + if(OomTesting && (r==KErrNoMemory))
1.413 + User::Leave(KErrNoMemory);
1.414 + else
1.415 + {
1.416 + if (base + i < 0x100)
1.417 + {
1.418 + TEST2(r, KErrNone);
1.419 + }
1.420 + else if (base + i == 0x100)
1.421 + {
1.422 + TEST2(r, KErrNone);
1.423 + // this causes transaction to fail
1.424 + const TReal KRealValue = 1.234;
1.425 + r = repository->Set(base+i, KRealValue);
1.426 + TEST2(r, KErrArgument);
1.427 + }
1.428 + else
1.429 + {
1.430 + // after transaction has failed, repository returns KErrAbort for every request
1.431 + TEST2(r, KErrAbort);
1.432 + }
1.433 + }
1.434 + }
1.435 +
1.436 + r = repository->CommitTransaction(errorId);
1.437 + TEST2(r, KErrArgument);
1.438 + TEST2(errorId, 0x100);
1.439 + CleanupStack::Pop();
1.440 + // should be able to open again
1.441 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.442 + TEST2(r, KErrNone);
1.443 + repository->RollbackTransaction();
1.444 +
1.445 + // and after the failed transaction it should be in previous state!!
1.446 + KIntStartValue = 200;
1.447 + for(i=0;i<imax;i++)
1.448 + {
1.449 + r = repository->Get(KNewIntBase+i,integer );
1.450 + TEST2(r, KErrNone);
1.451 + TEST(KIntStartValue+i==integer);
1.452 + }
1.453 +
1.454 + // lets clear after ourselves
1.455 + for(i=0;i<imax;i++)
1.456 + {
1.457 + r = repository->Delete(KNewIntBase+i);
1.458 + TEST2(r, KErrNone);
1.459 + }
1.460 +
1.461 + CleanupStack::PopAndDestroy(repository);
1.462 + }
1.463 +
1.464 +
1.465 +LOCAL_C void CreateSetDesTransactionL()
1.466 + {
1.467 + TUint32 errorId;
1.468 + CRepository* repository;
1.469 + User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
1.470 +
1.471 + // Remember that this repository need to be reset
1.472 + ::AddRepositoryToReset(KUidTransactionTestRepository);
1.473 +
1.474 +
1.475 + _LIT(KString1_TestValue, "test string 1");
1.476 + _LIT(KString2_TestValue, "test string 2");
1.477 + _LIT(KString3_TestValue, "test string 3");
1.478 + _LIT(KString4_TestValue, "test string 4");
1.479 + _LIT(KString5_TestValue, "test string 5");
1.480 + _LIT(KString1_UpdatedTestValue, "updated test string 1");
1.481 + _LIT(KString2_UpdatedTestValue, "updated test string 2");
1.482 + //
1.483 + // Descriptor get/set
1.484 + //
1.485 + TInt r;
1.486 +
1.487 +
1.488 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.489 + repository->CleanupRollbackTransactionPushL();
1.490 + TEST2(r, KErrNone);
1.491 +
1.492 + // create
1.493 + r = repository->Create(1, KString1_TestValue);
1.494 + if(OomTesting && (r==KErrNoMemory))
1.495 + User::Leave(KErrNoMemory);
1.496 + else
1.497 + TEST2(r, KErrNone);
1.498 + r = repository->Create(2, KString2_TestValue);
1.499 + if(OomTesting && (r==KErrNoMemory))
1.500 + User::Leave(KErrNoMemory);
1.501 + else
1.502 + TEST2(r, KErrNone);
1.503 + r = repository->Create(3, KString3_TestValue);
1.504 + if(OomTesting && (r==KErrNoMemory))
1.505 + User::Leave(KErrNoMemory);
1.506 + else
1.507 + TEST2(r, KErrNone);
1.508 + r = repository->Create(4, KString4_TestValue);
1.509 + if(OomTesting && (r==KErrNoMemory))
1.510 + User::Leave(KErrNoMemory);
1.511 + else
1.512 + TEST2(r, KErrNone);
1.513 + r = repository->Create(5, KString5_TestValue);
1.514 + if(OomTesting && (r==KErrNoMemory))
1.515 + User::Leave(KErrNoMemory);
1.516 + else
1.517 + TEST2(r, KErrNone);
1.518 +
1.519 + r = repository->CommitTransaction(errorId);
1.520 + CleanupStack::Pop();
1.521 + if(OomTesting && r!=KErrNone)
1.522 + {
1.523 + // in OOM test we may have alredy created settings
1.524 + TEST2(r, KErrAlreadyExists);
1.525 + }
1.526 + else
1.527 + TEST2(r, KErrNone);
1.528 +
1.529 + TBuf<50> buf;
1.530 + if(!OomTesting)
1.531 + {
1.532 + r = repository->Get(1,buf);
1.533 + TEST2(r, KErrNone);
1.534 + TEST(buf==KString1_TestValue);
1.535 + r = repository->Get(2,buf);
1.536 + TEST2(r, KErrNone);
1.537 + TEST(buf==KString2_TestValue);
1.538 + r = repository->Get(3,buf);
1.539 + TEST2(r, KErrNone);
1.540 + TEST(buf==KString3_TestValue);
1.541 + r = repository->Get(4,buf);
1.542 + TEST2(r, KErrNone);
1.543 + TEST(buf==KString4_TestValue);
1.544 + r = repository->Get(5,buf);
1.545 + TEST2(r, KErrNone);
1.546 + TEST(buf==KString5_TestValue);
1.547 + }
1.548 +
1.549 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.550 + repository->CleanupRollbackTransactionPushL();
1.551 + TEST2(r, KErrNone);
1.552 +
1.553 + // set
1.554 + r = repository->Set(1, KString1_UpdatedTestValue);
1.555 + if(OomTesting && (r==KErrNoMemory))
1.556 + User::Leave(KErrNoMemory);
1.557 + else
1.558 + TEST2(r, KErrNone);
1.559 + r = repository->Set(2, KString2_UpdatedTestValue);
1.560 + if(OomTesting && (r==KErrNoMemory))
1.561 + User::Leave(KErrNoMemory);
1.562 + else
1.563 + TEST2(r, KErrNone);
1.564 +
1.565 + r = repository->CommitTransaction(errorId);
1.566 + CleanupStack::Pop();
1.567 + TEST2(r, KErrNone);
1.568 +
1.569 + TBuf<50> buf1,buf2;
1.570 + r = repository->Get(1,buf1);
1.571 + TEST2(r, KErrNone);
1.572 + r = repository->Get(2,buf2);
1.573 + TEST2(r, KErrNone);
1.574 +
1.575 + TEST(buf1==KString1_UpdatedTestValue);
1.576 + TEST(buf2==KString2_UpdatedTestValue);
1.577 +
1.578 + CleanupStack::PopAndDestroy(repository);
1.579 + }
1.580 +
1.581 +
1.582 +LOCAL_C void CreateSetRealTransactionL()
1.583 + {
1.584 + CRepository* repository;
1.585 + User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
1.586 +
1.587 + // Remember that this repository need to be reset
1.588 + ::AddRepositoryToReset(KUidTransactionTestRepository);
1.589 +
1.590 + //
1.591 + // Real transaction get/set
1.592 + //
1.593 + TInt r;
1.594 + TInt i = 0;
1.595 + const TInt imax = 0x0ff;
1.596 +
1.597 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.598 + TEST2(r, KErrNone);
1.599 +
1.600 + // create
1.601 + const TReal KRealStartValue = 100.05;
1.602 + const TUint32 KNewRealBase = 1;
1.603 + for(i=0;i<imax;i++)
1.604 + {
1.605 + r = repository->Create(KNewRealBase+i, KRealStartValue+i);
1.606 + TEST2(r, KErrNone);
1.607 + }
1.608 +
1.609 + TUint32 errorId;
1.610 + r = repository->CommitTransaction(errorId);
1.611 + TEST2(r, KErrNone);
1.612 +
1.613 + TReal real, real2;
1.614 + for(i=0; i<imax; i++)
1.615 + {
1.616 + r = repository->Get((KNewRealBase+i), real );
1.617 + real2 = KRealStartValue+i;
1.618 + TEST2(r, KErrNone);
1.619 + TEST( real2 == real );
1.620 + }
1.621 +
1.622 + CleanupStack::PopAndDestroy(repository);
1.623 + }
1.624 +
1.625 +LOCAL_C void ResetTransactionL()
1.626 + {
1.627 +#ifdef PENDING_REMOVAL
1.628 + // reset operations are not supported in transactions for now.
1.629 + // ResetAll will not ever be: still to decide on individual setting reset
1.630 + // Both are very slow.
1.631 +
1.632 + TUint32 errorId;
1.633 + CRepository* repository;
1.634 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.635 +
1.636 + // Remember that this repository need to be reset
1.637 + ::AddRepositoryToReset(KUidPlatsecTestRepository);
1.638 +
1.639 + TInt r = repository->Set(KInt1, KInt1_UpdatedValue);
1.640 + TEST2(r, KErrNone);
1.641 +
1.642 + TInt x,y;
1.643 + r = repository->Get(KInt1, x);
1.644 + TEST2(r, KErrNone);
1.645 +
1.646 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.647 + TEST2(r, KErrNone);
1.648 +
1.649 + r = repository->Reset(KInt1);
1.650 + TEST2(r, KErrNone);
1.651 +
1.652 + r = repository->CommitTransaction(errorId);
1.653 + TEST2(r, KErrNone);
1.654 +
1.655 + r = repository->Get(KInt1, y);
1.656 + TEST2(r, KErrNone);
1.657 +
1.658 + // did we get what expected after commit?
1.659 + TEST(x!=KInt1_InitialValue);
1.660 + TEST(y==KInt1_InitialValue);
1.661 +
1.662 + CleanupStack::PopAndDestroy(repository);
1.663 +
1.664 + // Repository B
1.665 + // lets prepare for reset
1.666 + User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
1.667 +
1.668 + // Remember that this repository need to be reset
1.669 + ::AddRepositoryToReset(KUidTransactionTestRepository);
1.670 +
1.671 + const TInt KNewSettingAlwaysPass = 0x101;
1.672 +
1.673 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.674 + TEST2(r, KErrNone);
1.675 +
1.676 + TInt i = 0;
1.677 + for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
1.678 + {
1.679 + r = repository->Create(i, i);
1.680 + TEST2(r, KErrNone);
1.681 + }
1.682 +
1.683 +
1.684 + TRequestStatus status = -1;
1.685 + r = repository->NotifyRequest(0, 0, status);
1.686 + TEST2(r, KErrNone);
1.687 +
1.688 + r = repository->CommitTransaction(errorId);
1.689 + TEST2(r, KErrNone);
1.690 +
1.691 + TInt xArray[10];
1.692 + TInt xx=0;
1.693 + for(i=0;i<10;i++)
1.694 + {
1.695 + r = repository->Get(KNewSettingAlwaysPass+i, xArray[i]);
1.696 + TEST2(r, KErrNone);
1.697 + }
1.698 +
1.699 + //and do the reset business now
1.700 + r = repository->StartTransaction(CRepository::EReadWriteTransaction);
1.701 + TEST2(r, KErrNone);
1.702 +
1.703 + r = repository->Reset();
1.704 + TEST2(r, KErrNone);
1.705 +
1.706 + r = repository->CommitTransaction(errorId);
1.707 + TEST2(r, KErrNone);
1.708 +
1.709 + // test reset after commit
1.710 + TEST(status==KNewSettingAlwaysPass);
1.711 +
1.712 + for(i=0;i<10;i++)
1.713 + {
1.714 + TEST(xArray[i]==(KNewSettingAlwaysPass+i));
1.715 + }
1.716 +
1.717 + for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
1.718 + {
1.719 + r = repository->Get(i, xx);
1.720 + TEST2(r, KErrNotFound);
1.721 + }
1.722 +
1.723 + CleanupStack::PopAndDestroy(repository);
1.724 +#endif // PENDING_REMOVAL
1.725 + }
1.726 +
1.727 +LOCAL_C void FindL()
1.728 + {
1.729 + CRepository* repository;
1.730 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.731 +
1.732 + RArray<TUint32> foundIds;
1.733 + CleanupClosePushL(foundIds);
1.734 +
1.735 + TInt r = KErrNone;
1.736 +
1.737 + TRAPD(leaveReason, r = repository->FindL(0, 0, foundIds));
1.738 + if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
1.739 + {
1.740 + CleanupStack::PopAndDestroy(); //foundIds
1.741 + User::Leave(KErrNoMemory);
1.742 + }
1.743 + // Note that we are allowed to find any setting regardless of it's platsec
1.744 + // what we can't do is return the value
1.745 + TEST2(r, KErrNone);
1.746 + TEST(foundIds.Count()==KNumSettings);
1.747 +
1.748 + foundIds.Reset();
1.749 +
1.750 + TRAP(leaveReason, r = repository->FindL(23, 0, foundIds)); // 23 - just a random number, value is not important
1.751 + if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
1.752 + {
1.753 + CleanupStack::PopAndDestroy(); //foundIds
1.754 + User::Leave(KErrNoMemory);
1.755 + }
1.756 + TEST2(r, KErrNone);
1.757 + TEST(foundIds.Count()==KNumSettings);
1.758 +
1.759 + foundIds.Reset();
1.760 +
1.761 + TRAP(leaveReason, r = repository->FindL(0, 2, foundIds));
1.762 + if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
1.763 + {
1.764 + CleanupStack::PopAndDestroy(); //foundIds
1.765 + User::Leave(KErrNoMemory);
1.766 + }
1.767 + TEST2(r, KErrNone);
1.768 + TEST(foundIds.Count()==22);
1.769 +
1.770 + foundIds.Reset();
1.771 +
1.772 + TRAP(leaveReason, r = repository->FindL(4, 6, foundIds));
1.773 + if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
1.774 + {
1.775 + CleanupStack::PopAndDestroy(); //foundIds
1.776 + User::Leave(KErrNoMemory);
1.777 + }
1.778 + TEST2(r, KErrNone);
1.779 + TEST(foundIds.Count()==1);
1.780 +
1.781 + foundIds.Reset();
1.782 +
1.783 + TRAP(leaveReason, r = repository->FindL(15, 15, foundIds));
1.784 + if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
1.785 + {
1.786 + CleanupStack::PopAndDestroy(); //foundIds
1.787 + User::Leave(KErrNoMemory);
1.788 + }
1.789 + TEST2(r, KErrNotFound);
1.790 + TEST(foundIds.Count()==0);
1.791 +
1.792 + CleanupStack::PopAndDestroy(); //foundIds
1.793 + CleanupStack::PopAndDestroy(repository);
1.794 + }
1.795 +
1.796 +LOCAL_C void NotifyL()
1.797 + {
1.798 + CRepository* repository;
1.799 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.800 + // Remember that this repository need to be reset
1.801 + ::AddRepositoryToReset(KUidPlatsecTestRepository);
1.802 +
1.803 + PlatSec platsec;
1.804 +
1.805 + //
1.806 + // Notification on non-existent setting
1.807 + //
1.808 + TRequestStatus intStatus;
1.809 + TInt r = repository->NotifyRequest(KNonExisitent, intStatus);
1.810 + TEST2(r, KErrNotFound);
1.811 +
1.812 +
1.813 + //
1.814 + // Basic notification
1.815 + //
1.816 + r = repository->NotifyRequest(KInt1, intStatus);
1.817 + TEST2(r, KErrNone);
1.818 +
1.819 + TRequestStatus realStatus;
1.820 + r = repository->NotifyRequest(KReal1, realStatus);
1.821 + TEST2(r, KErrNone);
1.822 +
1.823 + TRequestStatus stringStatus;
1.824 + r = repository->NotifyRequest(KString1, stringStatus);
1.825 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.826 + {
1.827 + TEST2(r, KErrNone);
1.828 + }
1.829 + else
1.830 + {
1.831 + TEST2(r, KErrPermissionDenied);
1.832 + }
1.833 +
1.834 +
1.835 + // Setting to the same value should not cause a notification
1.836 + TInt intval;
1.837 + r = repository->Get(KInt1, intval);
1.838 + TEST2(r, KErrNone);
1.839 + r = repository->Set(KInt1, intval);
1.840 + TEST2(r, KErrNone);
1.841 + TEST(intStatus==KRequestPending);
1.842 + TEST(realStatus==KRequestPending);
1.843 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.844 + TEST(stringStatus==KRequestPending);
1.845 + RThread thisThread;
1.846 + TEST(thisThread.RequestCount()==0);
1.847 +
1.848 + // First change to setting should cause notification
1.849 + r = repository->Set(KInt1, 0);
1.850 + TEST2(r, KErrNone);
1.851 + User::WaitForAnyRequest();
1.852 + TEST(intStatus==KInt1);
1.853 + TEST(realStatus==KRequestPending);
1.854 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.855 + TEST(stringStatus==KRequestPending);
1.856 +
1.857 + // Second change to setting should not cause notification
1.858 + intStatus = 7777;
1.859 + r = repository->Set(KInt1, 0);
1.860 + TEST2(r, KErrNone);
1.861 + TEST(intStatus==7777);
1.862 + TEST(realStatus==KRequestPending);
1.863 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.864 + TEST(stringStatus==KRequestPending);
1.865 + TEST(thisThread.RequestCount()==0);
1.866 +
1.867 +
1.868 + // Setting to the same value should not cause a notification
1.869 + TReal realval;
1.870 + r = repository->Get(KReal1, realval);
1.871 + TEST2(r, KErrNone);
1.872 + r = repository->Set(KReal1, realval);
1.873 + TEST2(r, KErrNone);
1.874 + TEST(intStatus==7777);
1.875 + TEST(realStatus==KRequestPending);
1.876 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.877 + TEST(stringStatus==KRequestPending);
1.878 + TEST(thisThread.RequestCount()==0);
1.879 +
1.880 + r = repository->Set(KReal1, 0.0);
1.881 + TEST2(r, KErrNone);
1.882 + User::WaitForAnyRequest();
1.883 + TEST(intStatus==7777);
1.884 + TEST(realStatus==KReal1);
1.885 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.886 + TEST(stringStatus==KRequestPending);
1.887 +
1.888 +
1.889 + // Setting to the same value should not cause a notification
1.890 + realStatus = 8888;
1.891 + TBuf<20> stringval;
1.892 + r = repository->Get(KString1, stringval);
1.893 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.894 + TEST2(r, KErrNone);
1.895 + else
1.896 + TEST2(r, KErrPermissionDenied);
1.897 + r = repository->Set(KString1, stringval);
1.898 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.899 + TEST2(r, KErrNone);
1.900 + else
1.901 + TEST2(r, KErrPermissionDenied);
1.902 + TEST(intStatus==7777);
1.903 + TEST(realStatus==8888);
1.904 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.905 + TEST(stringStatus==KRequestPending);
1.906 + TEST(thisThread.RequestCount()==0);
1.907 +
1.908 + _LIT(KStringValue2, "string2");
1.909 + r = repository->Set(KString1, KStringValue2);
1.910 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.911 + {
1.912 + TEST2(r, KErrNone);
1.913 + User::WaitForAnyRequest();
1.914 + }
1.915 + else
1.916 + TEST2(r, KErrPermissionDenied);
1.917 +
1.918 + TEST(intStatus==7777);
1.919 + TEST(realStatus==8888);
1.920 + if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
1.921 + TEST(stringStatus==KString1);
1.922 +
1.923 +
1.924 + //
1.925 + // Cancelling single notifications
1.926 + //
1.927 + r = repository->NotifyRequest(KInt1, intStatus);
1.928 + TEST2(r, KErrNone);
1.929 + r = repository->NotifyCancel(KInt1);
1.930 + TEST2(r, KErrNone);
1.931 + User::WaitForAnyRequest();
1.932 + TEST(intStatus==KUnspecifiedKey);
1.933 +
1.934 + intStatus = 7777;
1.935 + r = repository->NotifyRequest(KReal1, realStatus);
1.936 + TEST2(r, KErrNone);
1.937 + r = repository->Set(KInt1, 1);
1.938 + TEST2(r, KErrNone);
1.939 + r = repository->Set(KReal1, 1.1);
1.940 + TEST2(r, KErrNone);
1.941 + User::WaitForAnyRequest();
1.942 + TEST(intStatus==7777);
1.943 + TEST(realStatus==KReal1);
1.944 + TEST(thisThread.RequestCount()==0);
1.945 +
1.946 +
1.947 + //
1.948 + // Cancelling all notifications
1.949 + //
1.950 + realStatus = 8888;
1.951 + r = repository->NotifyRequest(KInt1, intStatus);
1.952 + TEST2(r, KErrNone);
1.953 + r = repository->NotifyRequest(KReal1, realStatus);
1.954 + TEST2(r, KErrNone);
1.955 +
1.956 + r = repository->NotifyCancelAll();
1.957 + TEST2(r, KErrNone);
1.958 + User::WaitForAnyRequest();
1.959 + User::WaitForAnyRequest();
1.960 + TEST(intStatus==KUnspecifiedKey);
1.961 + TEST(realStatus==KUnspecifiedKey);
1.962 +
1.963 + intStatus = 7777;
1.964 + realStatus = 8888;
1.965 + r = repository->Set(KInt1, 2);
1.966 + TEST2(r, KErrNone);
1.967 + r = repository->Set(KReal1, 2.2);
1.968 + TEST2(r, KErrNone);
1.969 + TEST(intStatus==7777);
1.970 + TEST(realStatus==8888);
1.971 + TEST(thisThread.RequestCount()==0);
1.972 +
1.973 + //
1.974 + // Group notifications
1.975 + //
1.976 + r = repository->NotifyRequest(0, 0, intStatus);
1.977 + TEST2(r, KErrNone);
1.978 + User::WaitForAnyRequest();
1.979 + // we do not have capabilities for all settings
1.980 + TEST(intStatus==KErrPermissionDenied);
1.981 +
1.982 + CleanupStack::PopAndDestroy(repository);
1.983 + }
1.984 +
1.985 +LOCAL_C void CreateDeleteL()
1.986 + {
1.987 + CRepository* repository;
1.988 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.989 + // Remember that this repository need to be reset
1.990 + ::AddRepositoryToReset(KUidPlatsecTestRepository);
1.991 +
1.992 + TInt x;
1.993 + TInt r = repository->Get(KNewInt, x);
1.994 + TEST2(r, KErrNotFound);
1.995 +
1.996 + const TInt KIntValue = 1234;
1.997 + r = repository->Create(KNewInt, KIntValue);
1.998 + TEST2(r, KErrNone);
1.999 +
1.1000 + r = repository->Get(KNewInt, x);
1.1001 + TEST2(r, KErrNone);
1.1002 + TEST(x==KIntValue);
1.1003 +
1.1004 + r = repository->Delete(KNewInt);
1.1005 + TEST2(r, KErrNone);
1.1006 +
1.1007 + r = repository->Get(KNewInt, x);
1.1008 + TEST2(r, KErrNotFound);
1.1009 +
1.1010 + r = repository->Create(KNewInt, KIntValue);
1.1011 + TEST2(r, KErrNone);
1.1012 +
1.1013 + r = repository->Get(KNewInt, x);
1.1014 + TEST2(r, KErrNone);
1.1015 + TEST(x==KIntValue);
1.1016 +
1.1017 + r = repository->Get(KNewInt, x);
1.1018 + TEST2(r, KErrNone);
1.1019 + TEST(x==KIntValue);
1.1020 +
1.1021 + TReal y;
1.1022 + r = repository->Get(KNewReal, y);
1.1023 + TEST2(r, KErrNotFound);
1.1024 +
1.1025 + const TReal KRealValue = 5678.0;
1.1026 + r = repository->Create(KNewReal, KRealValue);
1.1027 + TEST2(r, KErrNone);
1.1028 +
1.1029 + r = repository->Get(KNewReal, y);
1.1030 + TEST2(r, KErrNone);
1.1031 + TEST(y==KRealValue);
1.1032 +
1.1033 + r = repository->Delete(KNewReal);
1.1034 + TEST2(r, KErrNone);
1.1035 +
1.1036 + r = repository->Get(KNewReal, y);
1.1037 + TEST2(r, KErrNotFound);
1.1038 +
1.1039 + r = repository->Create(KNewReal, KRealValue);
1.1040 + TEST2(r, KErrNone);
1.1041 +
1.1042 + r = repository->Get(KNewReal, y);
1.1043 + TEST2(r, KErrNone);
1.1044 + TEST(y==KRealValue);
1.1045 +
1.1046 + r = repository->Get(KNewReal, y);
1.1047 + TEST2(r, KErrNone);
1.1048 + TEST(y==KRealValue);
1.1049 +
1.1050 + TBuf8<20> z8;
1.1051 + r = repository->Get(KNewString8, z8);
1.1052 + TEST2(r, KErrNotFound);
1.1053 +
1.1054 + _LIT8(KString8Value, "ABCDEF");
1.1055 + r = repository->Create(KNewString8, KString8Value);
1.1056 + TEST2(r, KErrNone);
1.1057 +
1.1058 + r = repository->Get(KNewString8, z8);
1.1059 + TEST2(r, KErrNone);
1.1060 + TEST(z8==KString8Value);
1.1061 +
1.1062 + r = repository->Delete(KNewString8);
1.1063 + TEST2(r, KErrNone);
1.1064 +
1.1065 + r = repository->Get(KNewString8, z8);
1.1066 + TEST2(r, KErrNotFound);
1.1067 +
1.1068 + r = repository->Create(KNewString8, KString8Value);
1.1069 + TEST2(r, KErrNone);
1.1070 +
1.1071 + r = repository->Get(KNewString8, z8);
1.1072 + TEST2(r, KErrNone);
1.1073 + TEST(z8==KString8Value);
1.1074 +
1.1075 + r = repository->Get(KNewString8, z8);
1.1076 + TEST2(r, KErrNone);
1.1077 + TEST(z8==KString8Value);
1.1078 +
1.1079 + TBuf16<20> z16;
1.1080 + r = repository->Get(KNewString16, z16);
1.1081 + TEST2(r, KErrNotFound);
1.1082 +
1.1083 + _LIT(KString16Value, "ghijklmn");
1.1084 + r = repository->Create(KNewString16, KString16Value);
1.1085 + TEST2(r, KErrNone);
1.1086 +
1.1087 + r = repository->Get(KNewString16, z16);
1.1088 + TEST2(r, KErrNone);
1.1089 + TEST(z16==KString16Value);
1.1090 +
1.1091 + r = repository->Delete(KNewString16);
1.1092 + TEST2(r, KErrNone);
1.1093 +
1.1094 + r = repository->Get(KNewString16, z16);
1.1095 + TEST2(r, KErrNotFound);
1.1096 +
1.1097 + r = repository->Create(KNewString16, KString16Value);
1.1098 + TEST2(r, KErrNone);
1.1099 +
1.1100 + r = repository->Get(KNewString16, z16);
1.1101 + TEST2(r, KErrNone);
1.1102 + TEST(z16==KString16Value);
1.1103 +
1.1104 + r = repository->Get(KNewString16, z16);
1.1105 + TEST2(r, KErrNone);
1.1106 + TEST(z16==KString16Value);
1.1107 +
1.1108 + CleanupStack::PopAndDestroy(repository);
1.1109 + }
1.1110 +
1.1111 +LOCAL_C void MultiClientL()
1.1112 + {
1.1113 + CRepository* repository1;
1.1114 + User::LeaveIfNull(repository1 = CRepository::NewLC(KUidPlatsecTestRepository));
1.1115 + CRepository* repository2;
1.1116 + User::LeaveIfNull(repository2 = CRepository::NewLC(KUidPlatsecTestRepository));
1.1117 +
1.1118 + // Remember that this repository need to be reset
1.1119 + ::AddRepositoryToReset(KUidPlatsecTestRepository);
1.1120 +
1.1121 + //
1.1122 + // Get/Set
1.1123 + //
1.1124 + TInt i;
1.1125 + TInt r = repository1->Set(KInt1, 0);
1.1126 + TEST2(r, KErrNone);
1.1127 + r = repository2->Get(KInt1, i);
1.1128 + TEST2(r, KErrNone);
1.1129 + TEST(i==0);
1.1130 +
1.1131 + r = repository2->Set(KInt1, 123);
1.1132 + TEST2(r, KErrNone);
1.1133 + r = repository1->Get(KInt1, i);
1.1134 + TEST2(r, KErrNone);
1.1135 + TEST(i==123);
1.1136 +
1.1137 + //
1.1138 + // Notification
1.1139 + //
1.1140 + TRequestStatus status;
1.1141 + r = repository1->NotifyRequest(KInt1, status);
1.1142 + TEST2(r, KErrNone);
1.1143 +
1.1144 + r = repository2->Set(KInt1, 0);
1.1145 + TEST2(r, KErrNone);
1.1146 + User::WaitForAnyRequest();
1.1147 + TEST(status==KInt1);
1.1148 +
1.1149 + CleanupStack::PopAndDestroy(2);
1.1150 + }
1.1151 +
1.1152 +LOCAL_C void ResetL()
1.1153 + {
1.1154 + CRepository* repository;
1.1155 + User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1.1156 +
1.1157 + TInt x;
1.1158 + TInt r = repository->Get(KInt1, x);
1.1159 + TEST2(r, KErrNone);
1.1160 + TEST(x!=KInt1_InitialValue);
1.1161 +
1.1162 + r = repository->Reset(KInt1);
1.1163 + TEST2(r, KErrNone);
1.1164 +
1.1165 + r = repository->Get(KInt1, x);
1.1166 + TEST2(r, KErrNone);
1.1167 + TEST(x==KInt1_InitialValue);
1.1168 +
1.1169 + CleanupStack::PopAndDestroy(repository);
1.1170 +
1.1171 + // Repository D
1.1172 + User::LeaveIfNull(repository = CRepository::NewLC(KUidResetTestRepository));
1.1173 + // Remember that this repository need to be reset
1.1174 + ::AddRepositoryToReset(KUidResetTestRepository);
1.1175 +
1.1176 +
1.1177 + const TInt KNewSetting1 = 5;
1.1178 + const TInt KNewSetting2 = 6;
1.1179 + r = repository->Create(KNewSetting1, 0);
1.1180 + TEST2(r, KErrNone);
1.1181 + r = repository->Create(KNewSetting2, 0);
1.1182 + TEST2(r, KErrNone);
1.1183 +
1.1184 + r = repository->Create(65, 1);
1.1185 + TEST2(r, KErrNone);
1.1186 +
1.1187 + r = repository->Set(70, 1);
1.1188 + TEST2(r, KErrNone);
1.1189 +
1.1190 + r = repository->Create(80, 1);
1.1191 + TEST2(r, KErrNone);
1.1192 +
1.1193 + r = repository->Create(90, 1);
1.1194 + TEST2(r, KErrNone);
1.1195 +
1.1196 + TRequestStatus status = -1;
1.1197 + r = repository->NotifyRequest(0, 0, status);
1.1198 + TEST2(r, KErrNone);
1.1199 +
1.1200 + r = repository->Reset();
1.1201 + TEST2(r, KErrNone);
1.1202 + TEST(status==KUnspecifiedKey);
1.1203 + RThread thisThread;
1.1204 + TEST(thisThread.RequestCount()==1);
1.1205 +
1.1206 + r = repository->Get(10, x);
1.1207 + TEST2(r, KErrNone);
1.1208 + TEST(x==10);
1.1209 +
1.1210 + r = repository->Get(40, x);
1.1211 + TEST2(r, KErrNone);
1.1212 + TEST(x==0);
1.1213 +
1.1214 + r = repository->Get(50, x);
1.1215 + TEST2(r, KErrNone);
1.1216 + TEST(x==0);
1.1217 +
1.1218 + r = repository->Get(60, x);
1.1219 + TEST2(r, KErrNone);
1.1220 + TEST(x==0);
1.1221 +
1.1222 + r = repository->Get(70, x);
1.1223 + TEST2(r, KErrNone);
1.1224 + TEST(x==0);
1.1225 +
1.1226 + TBuf<10> z;
1.1227 + r = repository->Get(20, z);
1.1228 + TEST2(r, KErrNone);
1.1229 + TEST(z==_L("string"));
1.1230 +
1.1231 + TReal y;
1.1232 + r = repository->Get(30, y);
1.1233 + TEST2(r, KErrNone);
1.1234 + TEST(y==1);
1.1235 +
1.1236 + r = repository->Get(5, x);
1.1237 + TEST2(r, KErrNotFound);
1.1238 + r = repository->Get(6, x);
1.1239 + TEST2(r, KErrNotFound);
1.1240 + r = repository->Get(65, x);
1.1241 + TEST2(r, KErrNotFound);
1.1242 + r = repository->Get(80, x);
1.1243 + TEST2(r, KErrNotFound);
1.1244 + r = repository->Get(90, x);
1.1245 + TEST2(r, KErrNotFound);
1.1246 +
1.1247 + CleanupStack::PopAndDestroy(repository);
1.1248 + }
1.1249 +
1.1250 +LOCAL_C void FuncBasicTestsL()
1.1251 + {
1.1252 + TheTest.Start(_L("Open/Close repository"));
1.1253 + OpenRepositoryL();
1.1254 +
1.1255 + TheTest.Next(_L("Get/Set"));
1.1256 + GetSetL();
1.1257 +
1.1258 + TheTest.Next(_L("Find"));
1.1259 + FindL();
1.1260 +
1.1261 + TheTest.Next(_L("Notify"));
1.1262 + NotifyL();
1.1263 +
1.1264 + TheTest.Next(_L("Create/Delete"));
1.1265 + CreateDeleteL();
1.1266 +
1.1267 + TheTest.Next(_L("Multiple clients"));
1.1268 + MultiClientL();
1.1269 +
1.1270 + TheTest.Next(_L("Restore factory settings"));
1.1271 + ResetL();
1.1272 +
1.1273 + TheTest.End();
1.1274 + }
1.1275 +
1.1276 +LOCAL_C void FuncTransactionTestsL()
1.1277 + {
1.1278 + TheTest.Start(_L("Open/Close repository"));
1.1279 + OpenRepositoryL();
1.1280 +
1.1281 + TheTest.Next(_L("Create/Set Int Transaction"));
1.1282 + CreateSetIntTransactionL();
1.1283 +
1.1284 + TheTest.Next(_L("Create/Set Real Transaction"));
1.1285 + CreateSetRealTransactionL();
1.1286 +
1.1287 + TheTest.Next(_L("Create/Set Descriptor Transaction"));
1.1288 +
1.1289 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1290 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1291 + // of ResetModifiedRepsL which explains why this is done and possible
1.1292 + // undesirable effects.
1.1293 + ::ResetModifiedRepsL();
1.1294 +
1.1295 + CreateSetDesTransactionL();
1.1296 +
1.1297 + TheTest.Next(_L("Restore factory settings"));
1.1298 + ResetTransactionL();
1.1299 +
1.1300 + TheTest.End();
1.1301 + }
1.1302 +
1.1303 +
1.1304 +// ---------------------------------------------------
1.1305 +// OomTest
1.1306 +//
1.1307 +// Function to convert a test into an OOM test
1.1308 +
1.1309 +LOCAL_C void OomTest(void (*testFuncL)())
1.1310 + {
1.1311 + TInt error;
1.1312 + TInt count = 0;
1.1313 +
1.1314 + do
1.1315 + {
1.1316 + User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
1.1317 + User::__DbgMarkStart(RHeap::EUser);
1.1318 + TRAP(error, (testFuncL)());
1.1319 + User::__DbgMarkEnd(RHeap::EUser, 0);
1.1320 + } while(error == KErrNoMemory);
1.1321 +
1.1322 + _LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
1.1323 + __ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
1.1324 +
1.1325 + User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
1.1326 + }
1.1327 +
1.1328 +/**
1.1329 +@SYMTestCaseID SYSLIB-CENREP-CT-0032
1.1330 +@SYMTestCaseDesc BasicPlatsecTestsL() function calls test for the Secure Cenrep (setting).
1.1331 + Methods of CRepository class are called for various combination of different settings
1.1332 + and the results are asserted.
1.1333 +@SYMTestPriority High
1.1334 +@SYMTestActions BasicPlatsecTestsL() method calls test.
1.1335 +@SYMTestExpectedResults The test must not fail.
1.1336 +@SYMPREQ PREQ277
1.1337 + PREQ280
1.1338 +*/
1.1339 +LOCAL_C void BasicPlatsecTestsL()
1.1340 + {
1.1341 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0032 Basic functional tests for PlatSec "));
1.1342 + OomTesting = EFalse;
1.1343 +
1.1344 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1345 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1346 + // of ResetModifiedRepsL which explains why this is done and possible
1.1347 + // undesirable effects.
1.1348 + RepsToReset.AppendL(KUidPlatsecTestRepository);
1.1349 + RepsToReset.AppendL(KUidTransactionTestRepository);
1.1350 + RepsToReset.AppendL(KUidResetTestRepository);
1.1351 + ::ResetModifiedRepsL();
1.1352 +
1.1353 + FuncBasicTestsL();
1.1354 +
1.1355 + TheTest.Next(_L("Basic Out-of-memory tests"));
1.1356 +
1.1357 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1358 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1359 + // of ResetModifiedRepsL which explains why this is done and possible
1.1360 + // undesirable effects.
1.1361 + ::ResetModifiedRepsL();
1.1362 +
1.1363 + OomTesting = ETrue;
1.1364 + TheTest.Next(_L("OOM Open/Close repository"));
1.1365 + OomTest(OpenRepositoryL);
1.1366 +
1.1367 + GetSetL();
1.1368 +
1.1369 + TheTest.Next(_L("OOM Find"));
1.1370 + OomTest(FindL);
1.1371 +
1.1372 + TheTest.End();
1.1373 + }
1.1374 +/**
1.1375 +@SYMTestCaseID SYSLIB-CENREP-CT-0033
1.1376 +@SYMTestCaseDesc TransactionPlatsecTestsL() function calls test for the Secure Cenrep (setting).
1.1377 + Methods of CRepository class are called for various combination of different settings
1.1378 + in a 'transaction' mode and the results are asserted.
1.1379 +@SYMTestPriority High
1.1380 +@SYMTestActions TransactionPlatsecTestsL() method calls test.
1.1381 +@SYMTestExpectedResults The test must not fail.
1.1382 +@SYMPREQ PREQ277
1.1383 + PREQ280
1.1384 +*/
1.1385 +LOCAL_C void TransactionPlatsecTestsL()
1.1386 + {
1.1387 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0033 Transaction functional tests for PlatSec "));
1.1388 + OomTesting = EFalse;
1.1389 +
1.1390 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1391 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1392 + // of ResetModifiedRepsL which explains why this is done and possible
1.1393 + // undesirable effects.
1.1394 + ::ResetModifiedRepsL();
1.1395 +
1.1396 + FuncTransactionTestsL();
1.1397 +
1.1398 + TheTest.Next(_L("Transaction Out-of-memory tests"));
1.1399 +
1.1400 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1401 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1402 + // of ResetModifiedRepsL which explains why this is done and possible
1.1403 + // undesirable effects.
1.1404 + ::ResetModifiedRepsL();
1.1405 +
1.1406 + OomTesting = ETrue;
1.1407 + TheTest.Next(_L("OOM Open/Close repository"));
1.1408 + OomTest(OpenRepositoryL);
1.1409 +
1.1410 + TheTest.Next(_L("OOM Transaction Int"));
1.1411 + OomTest(CreateSetIntTransactionL);
1.1412 +
1.1413 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1414 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1415 + // of ResetModifiedRepsL which explains why this is done and possible
1.1416 + // undesirable effects.
1.1417 + ::ResetModifiedRepsL();
1.1418 +
1.1419 +
1.1420 + TheTest.Next(_L("OOM Transaction Descriptors"));
1.1421 + OomTest(CreateSetDesTransactionL);
1.1422 +
1.1423 + // Instead of wait for cache clear, this test uses the ResetAll API to
1.1424 + // restore keyspaces to original ROM settings. See the notes at implementation
1.1425 + // of ResetModifiedRepsL which explains why this is done and possible
1.1426 + // undesirable effects.
1.1427 + ::ResetModifiedRepsL();
1.1428 +
1.1429 + TheTest.End();
1.1430 + }
1.1431 +
1.1432 +LOCAL_C void ServerPersistenceTest()
1.1433 + {
1.1434 + // Wait for a while after last test and ensure server is still running
1.1435 + User::After(KGeneralDelay);
1.1436 +
1.1437 + _LIT( KCentralRepositoryServerName, "Centralrepository*");
1.1438 + TFullName serverName;
1.1439 + TFindProcess serverFind(KCentralRepositoryServerName);
1.1440 + TEST2(serverFind.Next(serverName), KErrNone);
1.1441 + }
1.1442 +
1.1443 +LOCAL_C void MainL()
1.1444 + {
1.1445 + // allocate slots ahead of time to avoid problems with OOM tests.
1.1446 + RepsToReset.ReserveL(KMaxNumRepsToReset);
1.1447 +
1.1448 + TheTest.Start(_L("Tests for basic PlatSec"));
1.1449 + BasicPlatsecTestsL();
1.1450 +
1.1451 + TheTest.Next(_L("Tests for Transaction PlatSec"));
1.1452 + TransactionPlatsecTestsL();
1.1453 +
1.1454 + TheTest.Next(_L("Server persistence test"));
1.1455 + ServerPersistenceTest();
1.1456 +
1.1457 + TheTest.End();
1.1458 + TheTest.Close();
1.1459 +
1.1460 + RepsToReset.Reset();
1.1461 + }
1.1462 +
1.1463 +TInt E32Main()
1.1464 + {
1.1465 + //
1.1466 + // For the tests to work we need SID policing enforced plus the specific
1.1467 + // capabilities listed below.
1.1468 + //
1.1469 + // These are dependent on the capabilities set in the platform security
1.1470 + // repository test initialisation file 87654321.txt. If the content
1.1471 + // of that file changes then the following clauses may need to be
1.1472 + // updated.
1.1473 + //
1.1474 + if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) ||
1.1475 + !PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) ||
1.1476 + !PlatSec::IsCapabilityEnforced(ECapabilityDRM) ||
1.1477 + !PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) ||
1.1478 + !PlatSec::IsCapabilityEnforced(ECapabilityCommDD))
1.1479 + {
1.1480 + TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings"));
1.1481 + TheTest.End();
1.1482 + TheTest.Close();
1.1483 + return 0;
1.1484 + }
1.1485 +
1.1486 + __UHEAP_MARK;
1.1487 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.1488 + if(!cleanup)
1.1489 + return KErrNoMemory;
1.1490 +
1.1491 + TRAPD(err, MainL());
1.1492 + if (err != KErrNone)
1.1493 + User::Panic(_L("Testing failed: "), err);
1.1494 +
1.1495 + delete cleanup;
1.1496 + __UHEAP_MARKEND;
1.1497 +
1.1498 + return 0;
1.1499 + }