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