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