os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_rfs.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>  // RTest
    19 #include <e32debug.h> // RDebug::Printf
    20 #include <f32file.h>  // RFs
    21 
    22 #include "../cenrepsrv/srvparams.h" //KServerUid3
    23 
    24 //using namespace NCentralRepositoryConstants;
    25 
    26 _LIT(KSoftReset, "--SoftReset");
    27 
    28 RTest TheTest(_L("Central Repository RFS Test"));
    29 
    30 const TUid KUidRfsRepository = { 0xffffffff };
    31 const TUid KUidRfsRepositoryInstallOnlyDefaultFile = { 0xfffffffe };
    32 const TUid KUidRfsRepositoryDefaultRfsOn = { 0xfffffffa };
    33 
    34 typedef enum
    35 	{
    36 	ERomOnly = 0x01,
    37 	ERomAndInstall,
    38 	EInstallOnly,
    39 	ENoRomOrInstall
    40 	} TRepositoryFileState;
    41 
    42 const TUint32 KInt1 = 1;
    43 const TInt KInt1_UpdatedValue = 73;
    44 const TReal KReal1_InitialValue = 2.732;
    45 const TUint32 KNewInt = 1000;
    46 const TUint32 KNewInt2 = 0x0FFF; // outside range meta (in default meta)
    47 const TUint32 KNewInt3 = 0x1000; // inside range meta
    48 const TUint32 KReal1 = 2;
    49 const TReal KReal1_InstallValue = 4.53;
    50 const TReal KReal1_UpdatedValue = 7.32;
    51 const TUint32 KString1 = 5;
    52 _LIT(KString1_InitialValue, "test\\\"string\"");
    53 _LIT(KString1_UpdatedValue, "another one");
    54 
    55 
    56 LOCAL_C void CheckL(TInt aValue, TInt aLine)
    57 	{
    58 	if(!aValue)
    59 		{
    60 		CleanupCDriveL();
    61 		TheTest(EFalse, aLine);
    62 		}
    63 	}
    64 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
    65 	{
    66 	if(aValue != aExpected)
    67 		{
    68 		CleanupCDriveL();
    69 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    70 		TheTest(EFalse, aLine);
    71 		}
    72 	}
    73 #define TEST(arg) ::CheckL((arg), __LINE__)
    74 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
    75 
    76 // This function kills the C32exe.exe process. This commsdat process will
    77 // interfere with the test if not killed. In a nutshell, some of the test cases 
    78 // will kill and then wait for 2 seconds and restart the centrep server 
    79 // with --SoftReset option. During that 2 seconds wait sometimes C32exe.exe 
    80 // will use centrep API, thus starting the server normally without --SoftReset.
    81 LOCAL_C void KillC32Exe()
    82     {
    83     _LIT( KC32ServerName, "c32exe");
    84     KillProcess(KC32ServerName); // Don't need to check the return code, it always return KErrNone anyway.
    85     User::After(KGeneralDelay);
    86     }
    87 
    88 //This function restores the state of the files required for this test
    89 //Existing files are deleted and then the required files are copied
    90 //back from the Z drive to the c drive
    91 LOCAL_C void RestoreRFSTestFilesL(TRepositoryFileState aState)
    92 	{
    93 	//Delete all files from C:\\private\\10202BE9\\persists\\ dir
    94 	//and C:\\private\\10202BE9\\ dir
    95 	CleanupCDriveL();
    96 	RFs fs;
    97 	User::LeaveIfError(fs.Connect());
    98 	CleanupClosePushL(fs);
    99 
   100 	CFileMan* fm = CFileMan::NewL(fs);
   101 	CleanupStack::PushL(fm);
   102 
   103 	_LIT(KPersistTargetPath, "C:\\private\\10202BE9\\persists\\ffffffff.txt");
   104 	_LIT(KInstallTargetPath, "C:\\private\\10202BE9\\ffffffff.txt");
   105 	_LIT(KPersistTargetPath1,"C:\\private\\10202BE9\\persists\\fffffffe.txt");
   106 	_LIT(KPersistTargetPath2,"C:\\private\\10202BE9\\persists\\fffffffd.txt");
   107 	_LIT(KInstallTargetPath1,"C:\\private\\10202BE9\\fffffffe.txt");
   108 	_LIT(KRFSTestFileSourcePath, "Z:\\private\\10202BE9\\ffffffff.txc");
   109 
   110 	switch(aState)
   111 	{
   112 		case ERomOnly:
   113 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath);
   114 			break;
   115 
   116 		case ERomAndInstall:
   117 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath);
   118 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KInstallTargetPath);
   119 			break;
   120 
   121 		case EInstallOnly:
   122 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath1);
   123 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KInstallTargetPath1);
   124 			break;
   125 
   126 		case ENoRomOrInstall:
   127 			CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath2);
   128 			break;
   129 
   130 		default:
   131 			break;
   132 	}
   133 
   134 	CleanupStack::PopAndDestroy(2);
   135 
   136 	}
   137 
   138 //
   139 // Start the server process or thread
   140 //
   141 LOCAL_C TInt ReStartServerInSoftResetMode()
   142 	{
   143 	const TUidType serverUid(KNullUid, KNullUid, KServerUid3);
   144 
   145 	//
   146 	// EPOC and EKA2 is easy, we just create a new server process. Simultaneous
   147 	// launching of two such processes should be detected when the second one
   148 	// attempts to create the server object, failing with KErrAlreadyExists.
   149 	//
   150 	RProcess server;
   151 	TInt r=server.Create(KServerImg,
   152 						 KSoftReset,
   153 						 serverUid);
   154 
   155 	if (r != KErrNone)
   156 		{
   157 		return r;
   158 		}
   159 
   160 	TRequestStatus stat;
   161 	server.Rendezvous(stat);
   162 
   163 	if (stat != KRequestPending)
   164 		{
   165 		server.Kill(0);		// abort startup
   166 		}
   167 	else
   168 		{
   169 		server.Resume();	// logon OK - start the server
   170 		}
   171 
   172 	User::WaitForRequest(stat);		// wait for start or death
   173 	// we can't use the 'exit reason' if the server panicked as this
   174 	// is the panic 'reason' and may be '0' which cannot be distinguished
   175 	// from KErrNone
   176 	r = (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
   177 
   178 	server.Close();
   179 	return r;
   180 	}
   181 
   182 
   183 LOCAL_C void RestoreFactorySettingsTestL()
   184 	{
   185 	TheTest.Start(_L("ResetAllRepositoriesTestL"));
   186 	TInt r;
   187 	TInt i;
   188 	TBuf<20> str;
   189 
   190 	TheTest.Next(_L("Open repository to ensure server is running"));
   191 	CRepository* repository = CRepository::NewLC(KUidRfsRepository);
   192 
   193 	TheTest.Next(_L("Add a Setting"));
   194 	const TInt KIntValue = 1234;
   195 	r = repository->Create(KNewInt, KIntValue);
   196 	TEST2(r, KErrNone);
   197 
   198 	TheTest.Next(_L("Delete a Setting"));
   199 	r = repository->Delete(KReal1);
   200 	TEST2(r, KErrNone);
   201 
   202 	TheTest.Next(_L("Modify a Setting"));
   203 	r = repository->Set(KInt1, KInt1_UpdatedValue);
   204 	TEST2(r, KErrNone);
   205 
   206 	TheTest.Next(_L("Modify a String Setting"));
   207 	r = repository->Set(KString1, KString1_UpdatedValue);
   208 
   209 	TEST2(r, KErrNone);
   210 	// Close repository
   211 	CleanupStack::PopAndDestroy(repository);
   212 
   213 	TheTest.Next(_L("Kill the server process"));
   214 	_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
   215 	r = KillProcess(KCentralRepositoryServerName);
   216 	TEST2(r,KErrNone);
   217 
   218 	User::After(KGeneralDelay);
   219 
   220 	TheTest.Next(_L("Manually start central respository"));
   221 	ReStartServerInSoftResetMode();
   222 
   223 	TheTest.Next(_L("Re-create the repository to ensure server is running"));
   224 	repository = CRepository::NewLC(KUidRfsRepository);
   225 
   226 	TheTest.Next(_L("Get 'Added' value"));
   227 	r = repository->Get(KNewInt, i);
   228 	TEST2(r, KErrNone);
   229 
   230 	TReal real;
   231 	TheTest.Next(_L("Get 'Deleted' value"));
   232 	r = repository->Get(KReal1, real);
   233 	TEST2(r, KErrNone);
   234 	TEST(real == KReal1_InitialValue);
   235 
   236 	TheTest.Next(_L("Get 'Modified' value"));
   237 	r = repository->Get(KInt1, i);
   238 	TEST2(r, KErrNone);
   239 	TEST(i == KInt1_UpdatedValue);
   240 
   241 	r = repository->Get(KString1, str);
   242 	TEST2(r, KErrNone);
   243 	TEST(str==KString1_InitialValue);
   244 
   245 	// Close repository
   246 	CleanupStack::PopAndDestroy(repository);
   247 
   248 	TheTest.End();
   249 	}
   250 
   251 
   252 
   253 /**
   254 @SYMTestCaseID 	 SYSLIB-CENTRALREPOSITORY-CT-3341
   255 @SYMTestCaseDesc Restore factory Settings from Rom file.
   256 @SYMTestPriority High
   257 @SYMTestActions  Ensure that the repository file only exists on the Rom.
   258 				 Open the repository and modify a setting.  Force RFS
   259 				 and check that the repository is restored against the ROM file
   260 @SYMTestExpectedResults The test repository should be reset against the ROM file
   261 @SYMDEF 		 PDEF099108
   262 */
   263 LOCAL_C void RFSRomOnlyL()
   264 	{
   265 
   266 	//restore all test files - this ensures we have a repository file
   267 	//only on the z:
   268 	RestoreRFSTestFilesL(ERomOnly);
   269 
   270 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3341 ResetAllRepositoriesTestL "));
   271 	TInt r, intVal;
   272 	TReal realVal;
   273 
   274 	TheTest.Next(_L("Open repository to ensure server is running"));
   275 	CRepository* repository = CRepository::NewLC(KUidRfsRepository);
   276 
   277 	TheTest.Next(_L("Modify a Setting"));
   278 	r = repository->Set(KInt1, KInt1_UpdatedValue);
   279 	TEST2(r, KErrNone);
   280 
   281 	//verify the update
   282 	r = repository->Get(KInt1, intVal);
   283 	TEST2(r, KErrNone);
   284 	TEST(intVal == KInt1_UpdatedValue);
   285 
   286 	TheTest.Next(_L("Modify a Setting"));
   287 	r = repository->Set(KReal1, KReal1_UpdatedValue);
   288 	TEST2(r, KErrNone);
   289 
   290 	//verify the update
   291 	r = repository->Get(KReal1, realVal);
   292 	TEST2(r, KErrNone);
   293 	TEST(realVal == KReal1_UpdatedValue);
   294 
   295 	// Close repository
   296 	CleanupStack::PopAndDestroy(repository);
   297 
   298 	//Kill the server
   299 	TheTest.Next(_L("Kill the server process"));
   300 	_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
   301 	r = KillProcess(KCentralRepositoryServerName);
   302 	TEST2(r,KErrNone);
   303 
   304 	User::After(KGeneralDelay);
   305 
   306 	//Restart the server in soft reset mode to force a
   307 	//repository reset
   308 	TheTest.Next(_L("Manually start central respository"));
   309 	ReStartServerInSoftResetMode();
   310 
   311 	//Open the repository
   312 	repository = CRepository::NewLC(KUidRfsRepository);
   313 
   314 	//Verify that the real value is reset against the value in the Rom version of
   315 	//the repository file
   316 	TheTest.Next(_L("Get 'Modified' value"));
   317 	r = repository->Get(KReal1, realVal);
   318 	TEST2(r, KErrNone);
   319 	TEST(realVal == KReal1_InitialValue);
   320 
   321 	// Close repository
   322 	CleanupStack::PopAndDestroy(repository);
   323 
   324 	TheTest.End();
   325 	}
   326 
   327 
   328 
   329 /**
   330 @SYMTestCaseID 	 SYSLIB-CENTRALREPOSITORY-CT-3342
   331 @SYMTestCaseDesc Restore factory Settings from merged repository.
   332 @SYMTestPriority High
   333 @SYMTestActions  Ensure that the repository file  exists in both the Rom and install
   334 					directories.
   335 				 Open the repository and modify a setting.  Force RFS
   336 				 and check that the repository is restored against the merged repository
   337 @SYMTestExpectedResults The test repository should be reset against the merged repository
   338 @SYMDEF 		 PDEF099108
   339 */
   340 LOCAL_C void RFSRomAndInstallL()
   341 	{
   342 
   343 	//restore all test files - this ensures we have a c: and z: file
   344 	//for the test repository which causes a repository merge
   345 	RestoreRFSTestFilesL(ERomAndInstall);
   346 
   347 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3342 ResetAllRepositoriesTestL "));
   348 	TInt r;
   349 	TReal realVal;
   350 	TBuf<20> strVal;
   351 
   352 	TheTest.Next(_L("Open repository to ensure server is running"));
   353 	CRepository* repository = CRepository::NewLC(KUidRfsRepository);
   354 
   355 	TheTest.Next(_L("Modify a Setting"));
   356 	r = repository->Set(KReal1, KReal1_UpdatedValue);
   357 	TEST2(r, KErrNone);
   358 
   359 	//verify the update
   360 	r = repository->Get(KReal1, realVal);
   361 	TEST2(r, KErrNone);
   362 	TEST(realVal == KReal1_UpdatedValue);
   363 
   364 	// Close repository
   365 	CleanupStack::PopAndDestroy(repository);
   366 
   367 	//Kill the server
   368 	TheTest.Next(_L("Kill the server process"));
   369 	_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
   370 	r = KillProcess(KCentralRepositoryServerName);
   371 	TEST2(r,KErrNone);
   372 
   373 	User::After(KGeneralDelay);
   374 
   375 	//Restart the server in soft reset mode to force a
   376 	//repository reset
   377 	TheTest.Next(_L("Manually start central respository"));
   378 	ReStartServerInSoftResetMode();
   379 
   380 	//Open the repository
   381 	repository = CRepository::NewLC(KUidRfsRepository);
   382 
   383 	//Verify that the string value, which is only found in the ROM file is
   384 	//present in the merged repository
   385 	r = repository->Get(KString1, strVal);
   386 	TEST2(r, KErrNone);
   387 	TEST(strVal==KString1_InitialValue);
   388 
   389 	//verify that the Real value has been reset against the value in the install
   390 	//repository file
   391 	TheTest.Next(_L("Get 'Modified' value"));
   392 	r = repository->Get(KReal1, realVal);
   393 	TEST2(r, KErrNone);
   394 	TEST(realVal == KReal1_InstallValue);
   395 
   396 	// Close repository
   397 	CleanupStack::PopAndDestroy(repository);
   398 
   399 	TheTest.End();
   400 	}
   401 
   402 
   403 /**
   404 @SYMTestCaseID 	 SYSLIB-CENTRALREPOSITORY-CT-3343
   405 @SYMTestCaseDesc Restore factory Settings from Install file.
   406 @SYMTestPriority High
   407 @SYMTestActions  Ensure that the repository file only exists in the Install directory.
   408 				 Open the repository and modify a setting.  Force RFS
   409 				 and check that the repository is restored against the Install file
   410 @SYMTestExpectedResults The test repository should be reset against the Install file
   411 @SYMDEF 		 PDEF099108
   412 */
   413 LOCAL_C void RFSInstallOnlyL()
   414 	{
   415 
   416 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3343 ResetAllRepositoriesTestL "));
   417 	TInt r;
   418 	TReal realVal;
   419 	TBuf<20> strVal;
   420 
   421 	//restore all test files - this ensures we have a repository file
   422 	//only on the c:
   423 	RestoreRFSTestFilesL(EInstallOnly);
   424 
   425 	TheTest.Next(_L("Open repository to ensure server is running"));
   426 	CRepository* repository = CRepository::NewLC(KUidRfsRepositoryInstallOnlyDefaultFile);
   427 
   428 	TheTest.Next(_L("Modify a Setting"));
   429 	r = repository->Set(KReal1, KReal1_UpdatedValue);
   430 	TEST2(r, KErrNone);
   431 
   432 	//verify the update
   433 	r = repository->Get(KReal1, realVal);
   434 	TEST2(r, KErrNone);
   435 	TEST(realVal == KReal1_UpdatedValue);
   436 
   437 	// Close repository
   438 	CleanupStack::PopAndDestroy(repository);
   439 
   440 	//Kill the server
   441 	TheTest.Next(_L("Kill the server process"));
   442 	_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
   443 	r = KillProcess(KCentralRepositoryServerName);
   444 	TEST2(r,KErrNone);
   445 
   446 	User::After(KGeneralDelay);
   447 
   448 	//Restart the server in soft reset mode to force a
   449 	//repository reset
   450 	TheTest.Next(_L("Manually start central respository"));
   451 	ReStartServerInSoftResetMode();
   452 
   453 	//Open the repository
   454 	repository = CRepository::NewLC(KUidRfsRepositoryInstallOnlyDefaultFile);
   455 
   456 	//verify that the Real value has been reset against the value in the install
   457 	//repository file
   458 	TheTest.Next(_L("Get 'Modified' value"));
   459 	r = repository->Get(KReal1, realVal);
   460 	TEST2(r, KErrNone);
   461 	TEST(realVal == KReal1_InstallValue);
   462 
   463 	// Close repository
   464 	CleanupStack::PopAndDestroy(repository);
   465 
   466 	TheTest.End();
   467 	}
   468 
   469 /**
   470 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-3435
   471 @SYMTestCaseDesc		PDEF105203: Start-up Settings: New access point remains after restoring factory setting
   472 @SYMTestPriority		High
   473 @SYMTestActions			Create a new setting inside a range with range meta RFS bit set, create another setting
   474 						outside the range, restart server in RFS mode, check to see the setting created outside
   475 						the range still exists, check to see the setting created inside the range has been deleted.
   476 						Repeat same steps with another repository which has default meta having RFS on and range meta
   477 						having RFS off, check to see the setting created outside the range has been deleted, check to
   478 						see the setting created inside the range still exists.
   479 @SYMTestExpectedResults Test must not fail
   480 @SYMDEF					PDEF105203
   481 */
   482 LOCAL_C void PDEF105203()
   483 	{
   484 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3435 PDEF105203: Start-up Settings: New access point remains after restoring factory setting "));
   485 	TInt r;
   486 	TInt i;
   487 
   488 	TheTest.Next(_L("Open repository to ensure server is running"));
   489 	CRepository* repository = CRepository::NewLC(KUidRfsRepository);
   490 
   491 	TheTest.Next(_L("Create a new setting outside RFSable range meta area"));
   492 	const TInt KIntValue = 999;
   493 	r = repository->Create(KNewInt2, KIntValue);
   494 	TEST2(r, KErrNone);
   495 
   496 	TheTest.Next(_L("Create a new setting in RFSable range meta area"));
   497 	r = repository->Create(KNewInt3, KIntValue);
   498 	TEST2(r, KErrNone);
   499 
   500 	// Close repository
   501 	CleanupStack::PopAndDestroy(repository);
   502 
   503 	TheTest.Next(_L("Kill the server process"));
   504 	_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
   505 	r = KillProcess(KCentralRepositoryServerName);
   506 	TEST2(r,KErrNone);
   507 
   508 	User::After(KGeneralDelay);
   509 
   510 	TheTest.Next(_L("Manually start central respository"));
   511 	ReStartServerInSoftResetMode();
   512 
   513 	TheTest.Next(_L("Re-create the repository to ensure server is running"));
   514 	repository = CRepository::NewLC(KUidRfsRepository);
   515 
   516 	TheTest.Next(_L("Get 'created' value outside range meta"));
   517 	r = repository->Get(KNewInt2, i);
   518 	TEST2(r, KErrNone); // should still exist
   519 	TEST(i == KIntValue);
   520 
   521 	TheTest.Next(_L("Get 'created' value inside range meta"));
   522 	r = repository->Get(KNewInt3, i);
   523 	TEST2(r, KErrNotFound); // should have been deleted
   524 
   525 	// Close repository
   526 	CleanupStack::PopAndDestroy(repository);
   527 
   528 	repository = CRepository::NewLC(KUidRfsRepositoryDefaultRfsOn);
   529 
   530 	TheTest.Next(_L("Create a new setting in RFSable default meta area"));
   531 	const TInt KIntValue2 = 990;
   532 	r = repository->Create(KNewInt2, KIntValue2);
   533 	TEST2(r, KErrNone);
   534 
   535 	TheTest.Next(_L("Create a new setting in non-RFSable range meta area"));
   536 	r = repository->Create(KNewInt3, KIntValue2);
   537 	TEST2(r, KErrNone);
   538 
   539 	// Close repository
   540 	CleanupStack::PopAndDestroy(repository);
   541 
   542 	TheTest.Next(_L("Kill the server process"));
   543 	r = KillProcess(KCentralRepositoryServerName);
   544 	TEST2(r,KErrNone);
   545 
   546 	User::After(KGeneralDelay);
   547 
   548 	TheTest.Next(_L("Manually start central respository"));
   549 	ReStartServerInSoftResetMode();
   550 
   551 	TheTest.Next(_L("Re-create the repository to ensure server is running"));
   552 	repository = CRepository::NewLC(KUidRfsRepositoryDefaultRfsOn);
   553 
   554 	TheTest.Next(_L("Get 'created' value outside range meta"));
   555 	r = repository->Get(KNewInt2, i);
   556 	TEST2(r, KErrNotFound); // should have been deleted
   557 
   558 	TheTest.Next(_L("Get 'created' value inside range meta"));
   559 	r = repository->Get(KNewInt3, i);
   560 	TEST2(r, KErrNone); // should still exist
   561 	TEST(i == KIntValue2);
   562 
   563 	// Close repository
   564 	CleanupStack::PopAndDestroy(repository);
   565 
   566 	TheTest.End();
   567 	}
   568 
   569 /**
   570 @SYMTestCaseID			PDS-CENTRALREPOSITORY-CT-4082		
   571 @SYMTestCaseDesc		Test for PDEF133672: Cannot remove restored access points
   572 @SYMTestPriority		High
   573 @SYMTestActions			Create a repository, delete settings with RFS meta and reset repository, 
   574 						then try to delete the settings again. 
   575 @SYMTestExpectedResults When deleting settings after reset, KErrAlreadyExists should not return.
   576 @SYMDEF					PDEF133672
   577 */	
   578 LOCAL_C void PDEF133672L()
   579 	{
   580 	TheTest.Start(_L("Test for PDEF133671"));
   581 	
   582 	const TUid KReposUid = {0xCCCCCC99};
   583 
   584 	const TInt KTestId1 = {0x00000001};
   585 	const TInt KTestId2 = {0x0000000A};
   586 	
   587 	CRepository* repos=NULL;
   588 		
   589 	repos = CRepository::NewLC(KReposUid);
   590 		
   591 	User::LeaveIfNull(repos);
   592 		
   593 	TInt r;
   594 	
   595 	r = repos->Delete(KTestId1);
   596 	TEST2(r, KErrNone);
   597 	r = repos->Delete(KTestId2);
   598 	TEST2(r, KErrNone);
   599 	
   600 	TheTest.Next(_L("try reset single settings"));
   601 	r = repos->Reset(KTestId1);
   602 	TEST2(r, KErrNone);
   603 	r = repos->Reset(KTestId2);
   604 	TEST2(r, KErrNone);
   605 		
   606 	r = repos->Delete(KTestId1);
   607 	TEST2(r, KErrNone);
   608 	r = repos->Delete(KTestId2);
   609 	TEST2(r, KErrNone);
   610 	
   611 	TheTest.Next(_L("try reset whole repository"));
   612 	r = repos->Reset();
   613 			
   614 	r = repos->Delete(KTestId1);
   615 	TEST2(r, KErrNone);
   616 	r = repos->Delete(KTestId2);
   617 	TEST2(r, KErrNone);
   618 		
   619 	CleanupStack::PopAndDestroy();
   620 
   621 	TheTest.End();
   622 	}
   623 
   624 /**
   625 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-0497-0001
   626 @SYMTestCaseDesc		CentralRepository functionality test
   627 @SYMTestPriority		High
   628 @SYMTestActions			Wrapper function calling up test functions
   629 @SYMTestExpectedResults Test must not fail
   630 @SYMREQ					REQ0000
   631 */
   632 LOCAL_C void MainL()
   633 	{
   634 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0497-0001 Restore Factory Settings tests "));
   635 	CleanupCDriveL();
   636 	KillC32Exe(); //Need to kill C32Exe as it is interfering with the test.
   637 	RestoreFactorySettingsTestL();
   638 	PDEF105203();
   639 	RFSRomOnlyL();
   640 	RFSRomAndInstallL();
   641 	RFSInstallOnlyL();
   642 	PDEF133672L();
   643 	CleanupCDriveL();
   644 
   645 	TheTest.End();
   646 	TheTest.Close();
   647 	}
   648 
   649 TInt E32Main()
   650 	{
   651 	__UHEAP_MARK;
   652 	CTrapCleanup* cleanup = CTrapCleanup::New();
   653 	if(!cleanup)
   654 		return KErrNoMemory;
   655 
   656 	TRAPD(err, MainL());
   657 	if (err != KErrNone)
   658 		User::Panic(_L("Testing failed: "), err);
   659 
   660 	delete cleanup;
   661 	__UHEAP_MARKEND;
   662 
   663 	return 0;
   664 	}