os/persistentdata/persistentstorage/centralrepository/test/t_cenrep.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2010 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 "../cenrepsrv/srvreqs.h"
    21 #include "../common/inc/srvdefs.h"
    22 #include "../cenrepsrv/srvparams.h"
    23 
    24 using namespace NCentralRepositoryConstants;
    25 
    26 RTest TheTest(_L("Central Repository Tests"));
    27 
    28 TBool OomTesting;
    29 
    30 const TUid KUidTestRepository1 = { 0x00000001 };
    31 const TUid KUidCreTestRepository1 = { 0x22222221 };
    32 const TUid KUidTestRepository2 = { 0x00000002 };
    33 
    34 const TUid KUidCorruptRepository = { 0x00000003 };
    35 const TUid KUidResetTestRepository = { 0x00000004 };
    36 
    37 const TUid KUidDriveCRepository = { 0x00000010 };
    38 
    39 const TUid KUidDriveCOnlyRepository = { 0x00000013 };
    40 
    41 const TUid KUidTestRepository3 = { 0x00000103 };
    42 
    43 //
    44 // Test repository 1
    45 //
    46 
    47 const TUint32 KNonExisitentSetting = 0;
    48 
    49 const TInt KNumSettings = 9;
    50 
    51 const TUint32 KInt1 = 1;
    52 const TInt KInt1_InitialValue = 1;
    53 const TInt KInt1_UpdatedValue = 73;
    54 const TUint32 KInt3 = 257;
    55 const TUint32 KNewInt = 1000;
    56 
    57 const TUint32 KReal1 = 2;
    58 const TReal KReal1_InitialValue = 2.732;
    59 const TReal KReal1_UpdatedValue = 72.8;
    60 const TUint32 KReal2 = 8;
    61 const TReal KReal2_InitialValue = 1.5;
    62 const TUint32 KReal3 = 17;
    63 const TUint32 KNewReal = 2000;
    64 
    65 const TUint32 KString1 = 5;
    66 _LIT(KString1_InitialValue, "test\\\"string\"");
    67 _LIT(KString1_UpdatedValue, "another one");
    68 const TUint32 KString2 = 12;
    69 _LIT8(KString2_8BitValue, "string");
    70 
    71 const TUint32 KString12 = 12;
    72 const TUint32 KNewString8 = 3000;
    73 const TUint32 KNewString16 = 4000;
    74 
    75 const TUint32 KNewSetting1 = 0x2001;
    76 const TUint32 KNewSetting2 = 0x2002;
    77 const TUint32 KNewSetting3 = 0x2003;
    78 const TUint32 KNewSetting4 = 0x2004;
    79 const TUint32 KNewSetting5 = 0x2005;
    80 const TUint32 KNewSetting6 = 0x2006;
    81 const TUint32 KNewSetting7 = 0x2007;
    82 const TUint32 KNewSetting8 = 0x2008;
    83 
    84 const TInt32 KNewSetting1Value = 4567;
    85 const TReal KNewSetting2Value = 45.67;
    86 _LIT(KNewSetting3Value, "a unicode str");
    87 _LIT8(KNewSetting4Value, "an ascii str");
    88 const TInt32 KNewSetting5Value = 2389;
    89 const TReal KNewSetting6Value = 23.89;
    90 _LIT(KNewSetting7Value, "another unicode str");
    91 _LIT8(KNewSetting8Value, "another ascii str");
    92 
    93 
    94 //
    95 // Test repository 2
    96 //
    97 
    98 const TInt KIntB1 = 807;
    99 const TInt KIntB1_InitialValue = 100;
   100 
   101 
   102 
   103 ///////////////////////////////////////////////////////////////////////////////////////
   104 ///////////////////////////////////////////////////////////////////////////////////////
   105 //Test macroses and functions
   106 
   107 LOCAL_C void CheckL(TInt aValue, TInt aLine)
   108 	{
   109 	if(!aValue)
   110 		{
   111 		CleanupCDriveL();
   112 		TheTest(EFalse, aLine);
   113 		}
   114 	}
   115 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
   116 	{
   117 	if(aValue != aExpected)
   118 		{
   119 		CleanupCDriveL();
   120 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
   121 		TheTest(EFalse, aLine);
   122 		}
   123 	}
   124 #define TEST(arg) ::CheckL((arg), __LINE__)
   125 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
   126 
   127 ///////////////////////////////////////////////////////////////////////////////////////
   128 ///////////////////////////////////////////////////////////////////////////////////////
   129 
   130 LOCAL_C void KillCentRepServerL()
   131 	{
   132 	_LIT(KCentralRepositoryServerName, "Centralrepositorysrv");
   133 	_LIT(KProcessKillProcess, "t_processkillprocess.exe");
   134 	
   135 	TRequestStatus stat;    
   136 	RProcess p;
   137 	User::LeaveIfError(p.Create(KProcessKillProcess, KCentralRepositoryServerName));
   138 
   139 	// Asynchronous logon: completes when process terminates with process 
   140 	// exit code
   141 	p.Logon(stat);
   142 	p.Resume();
   143 	User::WaitForRequest(stat);
   144 
   145 	TExitType exitType = p.ExitType();
   146 	TInt exitReason = p.ExitReason();
   147 	
   148 	_LIT(KKillServerFailed, "Killing Central Repository Server Failed");
   149 	__ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KKillServerFailed, exitReason));
   150 
   151 	p.Close();
   152 	User::LeaveIfError(exitReason);
   153 	}
   154 
   155 //This function resets the KUidTestRepository1 repository
   156 //to its intial state to remove any changes made to the repository during
   157 //previous tests
   158 LOCAL_C void ResetTestRepositoryL()
   159 	{
   160 	CRepository* repository;
   161 
   162 	User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
   163 	TInt r = repository->Reset();
   164 	TEST2(r, KErrNone);
   165 	CleanupStack::PopAndDestroy(repository);
   166 	}
   167 
   168 //This function restores the state of the files required for this test
   169 //Existing files are deleted and then the required files are copied
   170 //back from the Z drive to the c drive
   171 LOCAL_C void RestoreTestFilesL()
   172 	{
   173 	//Delete all files from C:\\private\\10202BE9\\persists\\ dir
   174 	//and C:\\private\\10202BE9\\ dir
   175 	CleanupCDriveL();
   176 
   177 	RFs fs;
   178 	User::LeaveIfError(fs.Connect());
   179 	CleanupClosePushL(fs);
   180 
   181 	CFileMan* fm = CFileMan::NewL(fs);
   182 	CleanupStack::PushL(fm);
   183 
   184 //	_LIT(KPersistTargetPath, "c:\\private\\10202BE9\\persists\\*.txt");
   185 	_LIT(KPersistTargetPath, "z:\\private\\10202BE9\\*.txt");
   186 	_LIT(KPersistSourcePath, "Z:\\private\\10202BE9\\*.txc");
   187 	_LIT(KInstallTargetPath, "C:\\private\\10202BE9\\*.txt");
   188 	_LIT(KInstallSourcePath, "Z:\\private\\10202BE9\\*.txi");
   189 
   190 	//copy test files from Z: to C:
   191 	CopyTestFilesL(*fm,KPersistSourcePath, KPersistTargetPath);
   192 	CopyTestFilesL(*fm,KInstallSourcePath, KInstallTargetPath);
   193 
   194 	CleanupStack::PopAndDestroy(2);
   195 
   196 	}
   197 
   198 
   199 /**
   200 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1297
   201 @SYMTestCaseDesc		Tests for creation and opening a central repository
   202 @SYMTestPriority		High
   203 @SYMTestActions			Tests for CRepository::NewLC(),CRepository::Get() functions
   204 @SYMTestExpectedResults Test must not fail
   205 @SYMREQ					REQ0000
   206 */
   207 LOCAL_C void OpenRepositoryL()
   208 	{
   209 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1297 "));
   210 	CRepository* repositoryA;
   211 	CRepository* repositoryB;
   212 
   213 	TInt r;
   214 
   215 	// When an attempt is made to open a central repository in this test the result will
   216 	// be that a new session (+ subsession) will be created with the server. For subsequent
   217 	// central repository openings subsessions are then created under the same server.
   218 	// Note that by placing the CRepository creation calls in the following order we
   219 	// are exercising among other things the following scenarios:
   220 	// 1. Session is opened and first subsession is created. Error occurs, whole session
   221 	// is pulled down.
   222 	// 2. Session is opened and first subsession is successfully created. 2nd subsession
   223 	// is opened. Error occurs with 2nd subsession. 2nd subsession is pulled down. Session
   224 	// and first sub-sesssion remain up. (DEF105089)
   225 
   226 	TRAP(r, CRepository::NewL(TUid::Null()));
   227 	if(OomTesting && r==KErrNoMemory)
   228 		User::Leave(KErrNoMemory);
   229 	TEST2(r, KErrNotFound);
   230 
   231 	repositoryB = CRepository::NewLC(KUidTestRepository2);
   232 
   233 	TRAP(r, CRepository::NewL(KUidCorruptRepository));
   234 	if(OomTesting && r==KErrNoMemory)
   235 		User::Leave(KErrNoMemory);
   236 	TEST2(r, KErrCorrupt);
   237 
   238  	repositoryA = CRepository::NewLC(KUidTestRepository1);
   239 
   240 	TInt a;
   241 	r = repositoryA->Get(KInt1, a);
   242 	TEST2(r, KErrNone);
   243 	TEST(a==KInt1_InitialValue);
   244 
   245 	r = repositoryB->Get(KIntB1, a);
   246 	TEST2(r, KErrNone);
   247 	TEST(a==KIntB1_InitialValue);
   248 
   249 	CleanupStack::PopAndDestroy(repositoryA);
   250 
   251 	r = repositoryB->Get(KIntB1, a);
   252 	TEST2(r, KErrNone);
   253 	TEST(a==KIntB1_InitialValue);
   254 
   255 	CleanupStack::PopAndDestroy(repositoryB);
   256 	}
   257 
   258 /**
   259 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1298
   260 @SYMTestCaseDesc		Tests for CRepository's Integer,Real,String's Get and Set functions
   261 @SYMTestPriority		High
   262 @SYMTestActions			Tests for CRepository::Get(),CRepository::Set() functions
   263 @SYMTestExpectedResults Test must not fail
   264 @SYMREQ					REQ0000
   265 */
   266 LOCAL_C void GetSetL(const TUid& aUid)
   267 	{
   268 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1298 "));
   269 	CRepository* repository;
   270 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   271 
   272 	_LIT8(KString12_InitialValue, "string");
   273 	TPtrC8 p8(KString12_InitialValue);
   274 
   275 	_LIT(KString11_InitialValue, "string");
   276 	TPtrC p16(KString11_InitialValue);
   277 
   278 	TBuf8<20> str8;
   279 	TBuf<20> str;
   280 	TInt i = 0;
   281 
   282 	//
   283 	// Integer get/set
   284 	//
   285 
   286 	TInt r = repository->Get(KNonExisitentSetting, i);
   287 	TEST2(r, KErrNotFound);
   288 	TEST(i==0);
   289 
   290 	r = repository->Get(KReal1, i);
   291 	TEST2(r, KErrArgument);
   292 	TEST(i==0);
   293 
   294 	r = repository->Get(KInt1, i);
   295 	TEST2(r, KErrNone);
   296 	TEST(i==KInt1_InitialValue);
   297 
   298 	r = repository->Get(KNonExisitentSetting, i);
   299 	TEST2(r, KErrNotFound);
   300 
   301 	r = repository->Set(KNonExisitentSetting, 10);
   302 	TEST2(r, KErrNone);
   303 
   304 	//close and reopen rep to check set is persisted
   305 	CleanupStack::PopAndDestroy(repository);
   306 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   307 
   308 	r = repository->Get(KNonExisitentSetting, i);
   309 	TEST2(r, KErrNone);
   310 	TEST(i==10);
   311 
   312 	r = repository->Delete(KNonExisitentSetting);
   313 	TEST2(r, KErrNone);
   314 
   315 	r = repository->Set(KReal1, 0);
   316 	TEST2(r, KErrArgument);
   317 
   318 	r = repository->Set(KInt1, KInt1_UpdatedValue);
   319 	TEST2(r, KErrNone);
   320 
   321 	//close and reopen rep to check set is persisted
   322 	CleanupStack::PopAndDestroy(repository);
   323 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   324 
   325 	r = repository->Get(KInt1, i);
   326 	TEST2(r, KErrNone);
   327 	TEST(i==KInt1_UpdatedValue);
   328 
   329 	r = repository->Get(KInt1,str8);
   330 	TEST2(r, KErrArgument);
   331 	//checks if KInt was modified
   332 	r = repository->Get(KInt1, i);
   333 	TEST2(r, KErrNone);
   334 	TEST(i==KInt1_UpdatedValue);
   335 
   336 	r = repository->Set(KInt1, KString12_InitialValue);
   337 	TEST2(r, KErrArgument);
   338 	r = repository->Get(KInt1, i);
   339 	TEST2(r, KErrNone);
   340 	TEST(i==KInt1_UpdatedValue);
   341 
   342 	r = repository->Get(KInt1,str);
   343 	TEST2(r, KErrArgument);
   344 	//checks if KInt was modified
   345 	r = repository->Get(KInt1, i);
   346 	TEST2(r, KErrNone);
   347 	TEST(i==KInt1_UpdatedValue);
   348 
   349 	r = repository->Set(KInt1, KString11_InitialValue);
   350 	TEST2(r, KErrArgument);
   351 	r = repository->Get(KInt1, i);
   352 	TEST2(r, KErrNone);
   353 	TEST(i==KInt1_UpdatedValue);
   354 	//
   355 	// Real get/set
   356 	//
   357 
   358 	TReal y = 0;
   359 
   360 	r = repository->Get(KNonExisitentSetting, y);
   361 	TEST2(r, KErrNotFound);
   362 	TEST(y==0);
   363 
   364 	r = repository->Get(KInt1, y);
   365 	TEST2(r, KErrArgument);
   366 	TEST(y==0);
   367 
   368 	r = repository->Get(KReal1, y);
   369 	TEST2(r, KErrNone);
   370 	TEST(y==KReal1_InitialValue);
   371 
   372 	r = repository->Get(KNonExisitentSetting, y);
   373 	TEST2(r, KErrNotFound);
   374 
   375 	r = repository->Set(KNonExisitentSetting, 0.0);
   376 	TEST2(r, KErrNone);
   377 
   378 	//close and reopen rep to check set is persisted
   379 	CleanupStack::PopAndDestroy(repository);
   380 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   381 
   382 	r = repository->Get(KNonExisitentSetting, y);
   383 	TEST2(r, KErrNone);
   384 	TEST(y == 0.0);
   385 
   386 	r = repository->Delete(KNonExisitentSetting);
   387 	TEST2(r, KErrNone);
   388 
   389 	r = repository->Set(KInt1, 0.0);
   390 	TEST2(r, KErrArgument);
   391 
   392 	r = repository->Set(KReal1, KReal1_UpdatedValue);
   393 	TEST2(r, KErrNone);
   394 
   395 	//close and reopen rep to check set is persisted
   396 	CleanupStack::PopAndDestroy(repository);
   397 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   398 
   399 	r = repository->Get(KReal1, y);
   400 	TEST2(r, KErrNone);
   401 	TEST(y==KReal1_UpdatedValue);
   402 
   403 	r = repository->Get(KReal1,str8);
   404 	TEST2(r, KErrArgument);
   405 	//checks if KInt was modified
   406 	r = repository->Get(KReal1, y);
   407 	TEST2(r, KErrNone);
   408 	TEST(y==KReal1_UpdatedValue);
   409 
   410 	r = repository->Get(KReal1,str);
   411 	TEST2(r, KErrArgument);
   412 	//checks if KInt was modified
   413 	r = repository->Get(KReal1, y);
   414 	TEST2(r, KErrNone);
   415 	TEST(y==KReal1_UpdatedValue);
   416 
   417 	r = repository->Set(KReal1, KString12_InitialValue);
   418 	TEST2(r, KErrArgument);
   419 	r = repository->Get(KReal1, y);
   420 	TEST2(r, KErrNone);
   421 	TEST(y==KReal1_UpdatedValue);
   422 
   423 	r = repository->Set(KReal1, KString11_InitialValue);
   424 	TEST2(r, KErrArgument);
   425 	r = repository->Get(KReal1, y);
   426 	TEST2(r, KErrNone);
   427 	TEST(y==KReal1_UpdatedValue);
   428 
   429 	//
   430 	// String get/set
   431 	//
   432 	r = repository->Get(KNonExisitentSetting, str);
   433 	TEST2(r, KErrNotFound);
   434 	TEST(str.Length()==0);
   435 
   436 	r = repository->Get(KInt1, str);
   437 	TEST2(r, KErrArgument);
   438 	TEST(str.Length()==0);
   439 
   440 	r = repository->Get(KString1, str);
   441 	TEST2(r, KErrNone);
   442 	TEST(str==KString1_InitialValue);
   443 
   444 	TBuf<10> tooShort;
   445 	r = repository->Get(KString1, tooShort);
   446 	TEST2(r, KErrOverflow);
   447 	TEST(tooShort.Length()==10);
   448 
   449 	r = repository->Get(KNonExisitentSetting, str);
   450 	TEST2(r, KErrNotFound);
   451 
   452 	r = repository->Set(KNonExisitentSetting, KString1_UpdatedValue);
   453 	TEST2(r, KErrNone);
   454 
   455 	//close and reopen rep to check set is persisted
   456 	CleanupStack::PopAndDestroy(repository);
   457 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   458 
   459 	r = repository->Get(KNonExisitentSetting, str);
   460 	TEST2(r, KErrNone);
   461 	TEST(str==KString1_UpdatedValue);
   462 
   463 	r = repository->Delete(KNonExisitentSetting);
   464 	TEST2(r, KErrNone);
   465 
   466 	r = repository->Set(KInt1, str);
   467 	TEST2(r, KErrArgument);
   468 
   469 	r = repository->Set(KString1, KString1_UpdatedValue);
   470 	TEST2(r, KErrNone);
   471 
   472 	//close and reopen rep to check set is persisted
   473 	CleanupStack::PopAndDestroy(repository);
   474 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   475 
   476 	r = repository->Get(KString1, str);
   477 	TEST2(r, KErrNone);
   478 	TEST(str==KString1_UpdatedValue);
   479 
   480 	//testing the new feature: creating an 8 bit string from ini file.
   481 	r = repository->Get(KString12, str8);
   482 	TEST2(r, KErrNone);
   483 	TEST(str8==KString12_InitialValue);
   484 
   485 	//get 8-bit string with int
   486 	r = repository->Get(KString12, i);
   487 	TEST2(r, KErrArgument);
   488 	r = repository->Get(KString12, str8);
   489 	TEST2(r, KErrNone);
   490 	TEST(str8==KString12_InitialValue);
   491 
   492 	//get 8-bit string with real
   493 	r = repository->Get(KString12, y);
   494 	TEST2(r, KErrArgument);
   495 	r = repository->Get(KString12, str8);
   496 	TEST2(r, KErrNone);
   497 	TEST(str8==KString12_InitialValue);
   498 
   499 	//set 8-bit string with int
   500 	r = repository->Set(KString12, i);
   501 	TEST2(r, KErrArgument);
   502 	r = repository->Get(KString12, str8);
   503 	TEST2(r, KErrNone);
   504 	TEST(str8==KString12_InitialValue);
   505 
   506 	//set 8-bit string with real
   507 	r = repository->Set(KString12, y);
   508 	TEST2(r, KErrArgument);
   509 	r = repository->Get(KString12, str8);
   510 	TEST2(r, KErrNone);
   511 	TEST(str8==KString12_InitialValue);
   512 
   513 
   514 	//get 16-bit string with int
   515 	r = repository->Get(KString1,i);
   516 	TEST2(r, KErrArgument);
   517 	//checks if a string was modified
   518 	r = repository->Get(KString1, str);
   519 	TEST2(r, KErrNone);
   520 	TEST(str==KString1_UpdatedValue);
   521 
   522 	//get 16-bit string with real
   523 	r = repository->Get(KString1,y);
   524 	TEST2(r, KErrArgument);
   525 	//checks if a string was modified
   526 	r = repository->Get(KString1, str);
   527 	TEST2(r, KErrNone);
   528 	TEST(str==KString1_UpdatedValue);
   529 
   530 	//set 16-bit string with int
   531 	r = repository->Set(KString1,i);
   532 	TEST2(r, KErrArgument);
   533 	//checks if a string was modified
   534 	r = repository->Get(KString1, str);
   535 	TEST2(r, KErrNone);
   536 	TEST(str==KString1_UpdatedValue);
   537 
   538 	//set 16-bit string with real
   539 	r = repository->Set(KString1,y);
   540 	TEST2(r, KErrArgument);
   541 	//checks if a string was modified
   542 	r = repository->Get(KString1, str);
   543 	TEST2(r, KErrNone);
   544 	TEST(str==KString1_UpdatedValue);
   545 
   546 	const TInt KStringLengthTooBig = KMaxUnicodeStringLength  + 1;
   547 	TBuf<KStringLengthTooBig> tooBig;
   548 	tooBig.SetLength(KStringLengthTooBig);
   549 	r = repository->Set(KString1, tooBig);
   550 	TEST2(r, KErrArgument);
   551 
   552 	//- Test null descriptors
   553 	r = repository->Set(KString1, KNullDesC);
   554 	TEST2(r, KErrNone);
   555 
   556 	CleanupStack::PopAndDestroy(repository);
   557 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   558 
   559 	r = repository->Get(KString1, str);
   560 	TEST2(r, KErrNone);
   561 	TEST(str==KNullDesC);
   562 
   563 	r = repository->Set(KString1, KString1_UpdatedValue);
   564 	TEST2(r, KErrNone);
   565 
   566 	//close and reopen rep to check set is persisted
   567 	CleanupStack::PopAndDestroy(repository);
   568 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
   569 
   570 	r = repository->Get(KString1, str);
   571 	TEST2(r, KErrNone);
   572 	TEST(str==KString1_UpdatedValue);
   573 	//-
   574 
   575 	// Check that the SetGetParameters interface returns KErrNotSupported in the default macro configuration
   576 #if !defined(__CENTREP_SERVER_PERFTEST__) && !defined(__CENTREP_SERVER_MEMTEST__) && !defined(__CENTREP_SERVER_CACHETEST__)
   577 	TIpcArgs args;
   578 	r = SetGetParameters(args);
   579 	TEST2(r, KErrNotSupported);
   580 #endif
   581 
   582 	CleanupStack::PopAndDestroy(repository);
   583 	}
   584 
   585 /**
   586 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1299
   587 @SYMTestCaseDesc		Tests for CRepository class's find operations
   588 @SYMTestPriority		High
   589 @SYMTestActions			Tests for CRepository::FindL(),CRepository::FindEqL(),CRepository::FindNeqL() functions
   590 @SYMTestExpectedResults Test must not fail
   591 @SYMREQ					REQ0000
   592 */
   593 LOCAL_C void FindL()
   594 	{
   595 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1299 "));
   596 	CRepository* repository;
   597 	User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
   598 
   599 	RArray<TUint32> foundIds;
   600 
   601 	TInt r = KErrNone;
   602 	TInt leaveCode = KErrNone;
   603 	TRAP(leaveCode, r = repository->FindL(0, 0, foundIds));
   604 	if (leaveCode != KErrNone)
   605 		r = leaveCode ;
   606 
   607 	if(OomTesting && r==KErrNoMemory)
   608 		{
   609 		foundIds.Close();
   610 		User::Leave(KErrNoMemory);
   611 		}
   612 
   613 	TEST2(r, KErrNone);
   614 	TEST(foundIds.Count()==KNumSettings);
   615 	foundIds.Reset();
   616 
   617 	/***************************************************************************************/
   618 	//Tests for FindL
   619 	/***************************************************************************************/
   620 	TRAP(leaveCode, r = repository->FindL(23, 0, foundIds));  // 23 - just a random number, value is not important
   621 	if (leaveCode != KErrNone)
   622 		r = leaveCode ;
   623 	if(OomTesting && r==KErrNoMemory)
   624 	{
   625 		foundIds.Close();
   626 		User::Leave(KErrNoMemory);
   627 		}
   628 	TEST2(r, KErrNone);
   629 	TEST(foundIds.Count()==KNumSettings);
   630 	foundIds.Reset();
   631 
   632 
   633 	TRAP(leaveCode, r=repository->FindL(0, 2, foundIds));
   634 	if (leaveCode != KErrNone)
   635 		r = leaveCode ;
   636 	if(OomTesting && r==KErrNoMemory)
   637 	{
   638 		foundIds.Close();
   639 		User::Leave(KErrNoMemory);
   640 		}
   641 	TEST2(r, KErrNone);
   642 	TEST(foundIds.Count()==6);
   643 	foundIds.Reset();
   644 
   645 
   646 	TRAP(leaveCode, r=repository->FindL(4, 6, foundIds));
   647 	if (leaveCode != KErrNone)
   648 		r = leaveCode ;
   649 	if(OomTesting && r==KErrNoMemory)
   650 		{
   651 		foundIds.Close();
   652 		User::Leave(KErrNoMemory);
   653 		}
   654 	TEST2(r, KErrNone);
   655 	TEST(foundIds.Count()==2);
   656 	foundIds.Reset();
   657 
   658 
   659 
   660 	TRAP(leaveCode, r= repository->FindL(15, 15, foundIds));
   661 	if (leaveCode != KErrNone)
   662 		r = leaveCode ;
   663 	if(OomTesting && r==KErrNoMemory)
   664 		{
   665 		foundIds.Close();
   666 		User::Leave(KErrNoMemory);
   667 		}
   668 	TEST2(r, KErrNotFound);
   669 	TEST(foundIds.Count()==0);
   670 
   671 
   672 	/***************************************************************************************/
   673 	//Tests for FindEqL for Int
   674 	/***************************************************************************************/
   675 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KInt1_UpdatedValue, foundIds));
   676 	if (leaveCode != KErrNone)
   677 		r = leaveCode ;
   678 	if(OomTesting && r==KErrNoMemory)
   679 		{
   680 		foundIds.Close();
   681 		User::Leave(KErrNoMemory);
   682 		}
   683 	TEST2(r, KErrNone);
   684 	TEST(foundIds.Count()==1);
   685 	TEST(foundIds[0]==KInt1);
   686 	foundIds.Reset();
   687 
   688 
   689 	TRAP(leaveCode, r= repository->FindEqL(0, 0, 0, foundIds));
   690 	if (leaveCode != KErrNone)
   691 		r = leaveCode ;
   692 	if(OomTesting && r==KErrNoMemory)
   693 		{
   694 		foundIds.Close();
   695 		User::Leave(KErrNoMemory);
   696 		}
   697 	TEST2(r, KErrNotFound);
   698 	TEST(foundIds.Count()==0);
   699 
   700 
   701 	/***************************************************************************************/
   702 	//Tests for FindEqL for Real
   703 	/***************************************************************************************/
   704 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KReal2_InitialValue, foundIds));
   705 	if (leaveCode != KErrNone)
   706 		r = leaveCode ;
   707 	if(OomTesting && r==KErrNoMemory)
   708 		{
   709 		foundIds.Close();
   710 		User::Leave(KErrNoMemory);
   711 		}
   712 	TEST2(r, KErrNone);
   713 	TEST(foundIds.Count()==2);
   714 	TEST(foundIds[0]==KReal2);
   715 	TEST(foundIds[1]==KReal3);
   716 	foundIds.Reset();
   717 
   718 
   719 	TRAP(leaveCode, r= repository->FindEqL(0, 0, 7.7, foundIds));
   720 	if (leaveCode != KErrNone)
   721 		r = leaveCode ;
   722 	if(OomTesting && r==KErrNoMemory)
   723 		{
   724 		foundIds.Close();
   725 		User::Leave(KErrNoMemory);
   726 		}
   727 	TEST2(r, KErrNotFound);
   728 	TEST(foundIds.Count()==0);
   729 
   730 
   731 	/***************************************************************************************/
   732 	//Tests for FindEqL for String
   733 	/***************************************************************************************/
   734 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KString1_UpdatedValue, foundIds));
   735 	if (leaveCode != KErrNone)
   736 		r = leaveCode ;
   737 	if(OomTesting && r==KErrNoMemory)
   738 		{
   739 		foundIds.Close();
   740 		User::Leave(KErrNoMemory);
   741 		}
   742 	TEST2(r, KErrNone);
   743 	TEST(foundIds.Count()==1);
   744 	TEST(foundIds[0]==KString1);
   745 	foundIds.Reset();
   746 
   747 	_LIT(KFoo, "foo");
   748 
   749 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo, foundIds));
   750 	if (leaveCode != KErrNone)
   751 		r = leaveCode ;
   752 	if(OomTesting && r==KErrNoMemory)
   753 		{
   754 		foundIds.Close();
   755 		User::Leave(KErrNoMemory);
   756 		}
   757 	TEST2(r, KErrNotFound);
   758 	TEST(foundIds.Count()==0);
   759 
   760 	/***************************************************************************************/
   761 	//Tests for FindEqL for String8
   762 	/***************************************************************************************/
   763 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KString2_8BitValue, foundIds));
   764 	if (leaveCode != KErrNone)
   765 		r = leaveCode ;
   766 	if(OomTesting && r==KErrNoMemory)
   767 		{
   768 		foundIds.Close();
   769 		User::Leave(KErrNoMemory);
   770 		}
   771 	TEST2(r, KErrNone);
   772 	TEST(foundIds.Count()==1);
   773 	TEST(foundIds[0]==KString2);
   774 	foundIds.Reset();
   775 
   776 	_LIT8(KFoo8, "foo");
   777 
   778 	TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo8, foundIds));
   779 	if (leaveCode != KErrNone)
   780 		r = leaveCode ;
   781 	if(OomTesting && r==KErrNoMemory)
   782 		{
   783 		foundIds.Close();
   784 		User::Leave(KErrNoMemory);
   785 		}
   786 	TEST2(r, KErrNotFound);
   787 	TEST(foundIds.Count()==0);
   788 
   789 	/***************************************************************************************/
   790 	//Tests for FindNeqL for Int
   791 	/***************************************************************************************/
   792 	TRAP(leaveCode, r= repository->FindNeqL(0, 0, KInt1_UpdatedValue, foundIds));
   793 	if (leaveCode != KErrNone)
   794 		r = leaveCode ;
   795 	if(OomTesting && r==KErrNoMemory)
   796 		{
   797 		foundIds.Close();
   798 		User::Leave(KErrNoMemory);
   799 		}
   800 	TEST2(r, KErrNone);
   801 	TEST(foundIds.Count()==8);
   802 	TEST2(foundIds.Find(KInt1), KErrNotFound);
   803 	foundIds.Reset();
   804 
   805 
   806 	TRAP(leaveCode, r= repository->FindNeqL(25, 25, KInt1_UpdatedValue, foundIds));
   807 	if (leaveCode != KErrNone)
   808 		r = leaveCode ;
   809 	if(OomTesting && r==KErrNoMemory)
   810 		{
   811 		foundIds.Close();
   812 		User::Leave(KErrNoMemory);
   813 		}
   814 	TEST2(r, KErrNotFound);
   815 	TEST(foundIds.Count()==0);
   816 
   817 
   818 	/***************************************************************************************/
   819 	//Tests for FindNeqL for Real
   820 	/***************************************************************************************/
   821 	TRAP(leaveCode, r= repository->FindNeqL(0, 0, KReal1_UpdatedValue, foundIds));
   822 	if (leaveCode != KErrNone)
   823 		r = leaveCode ;
   824 	if(OomTesting && r==KErrNoMemory)
   825 		{
   826 		foundIds.Close();
   827 		User::Leave(KErrNoMemory);
   828 		}
   829 	TEST2(r, KErrNone);
   830 	TEST(foundIds.Count()==8);
   831 	TEST2(foundIds.Find(KReal1), KErrNotFound);
   832 	foundIds.Reset();
   833 
   834 
   835 	TRAP(leaveCode,r= repository->FindNeqL(25, 25, KReal1_UpdatedValue, foundIds));
   836 	if (leaveCode != KErrNone)
   837 		r = leaveCode ;
   838 	if(OomTesting && r==KErrNoMemory)
   839 		{
   840 		foundIds.Close();
   841 		User::Leave(KErrNoMemory);
   842 		}
   843 	TEST2(r, KErrNotFound);
   844 	TEST(foundIds.Count()==0);
   845 
   846 
   847 	/***************************************************************************************/
   848 	//Tests for FindNeqL for String
   849 	/***************************************************************************************/
   850 	TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString1_UpdatedValue, foundIds));
   851 	if (leaveCode != KErrNone)
   852 		r = leaveCode ;
   853 	if(OomTesting && r==KErrNoMemory)
   854 		{
   855 		foundIds.Close();
   856 		User::Leave(KErrNoMemory);
   857 		}
   858 	TEST2(r, KErrNone);
   859 	TEST(foundIds.Count()==8);
   860 	TEST2(foundIds.Find(KString1), KErrNotFound);
   861 	foundIds.Reset();
   862 
   863 
   864 	TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString1_UpdatedValue, foundIds));
   865 	if (leaveCode != KErrNone)
   866 		r = leaveCode ;
   867 	if(OomTesting && r==KErrNoMemory)
   868 		{
   869 		foundIds.Close();
   870 		User::Leave(KErrNoMemory);
   871 		}
   872 	TEST2(r, KErrNotFound);
   873 	TEST(foundIds.Count()==0);
   874 
   875 	/***************************************************************************************/
   876 	//Tests for FindNeqL for String8
   877 	/***************************************************************************************/
   878 	TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString2_8BitValue, foundIds));
   879 	if (leaveCode != KErrNone)
   880 		r = leaveCode ;
   881 	if(OomTesting && r==KErrNoMemory)
   882 		{
   883 		foundIds.Close();
   884 		User::Leave(KErrNoMemory);
   885 		}
   886 	TEST2(r, KErrNone);
   887 	TEST(foundIds.Count()==8);
   888 	TEST2(foundIds.Find(KString2), KErrNotFound);
   889 	foundIds.Reset();
   890 
   891 
   892 	TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString2_8BitValue, foundIds));
   893 	if (leaveCode != KErrNone)
   894 		r = leaveCode ;
   895 	if(OomTesting && r==KErrNoMemory)
   896 		{
   897 		foundIds.Close();
   898 		User::Leave(KErrNoMemory);
   899 		}
   900 	TEST2(r, KErrNotFound);
   901 	TEST(foundIds.Count()==0);
   902 
   903 	CleanupStack::PopAndDestroy(repository);
   904 	}
   905 
   906 /**
   907 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1300
   908 @SYMTestCaseDesc		CRepository class functionality test
   909 @SYMTestPriority		High
   910 @SYMTestActions			Test for CRepository::NotifyRequest() functions
   911 @SYMTestExpectedResults Test must not fail
   912 @SYMREQ					REQ0000
   913 */
   914 LOCAL_C void NotifyL()
   915 	{
   916 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1300 "));
   917 	CRepository* repository;
   918 	User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
   919 
   920 	TInt r = KErrNone;
   921 	TInt intval;
   922 	TRequestStatus intStatus;
   923 	TRequestStatus realStatus;
   924 	TRequestStatus stringStatus;
   925 	RThread thisThread;
   926 
   927 	//
   928 	// Notification on non-existent setting
   929 	//
   930 	r = repository->NotifyRequest(KNonExisitentSetting, intStatus);
   931 	TEST2(r, KErrNotFound);
   932 
   933 	//
   934 	// Basic notification
   935 	//
   936 	r = repository->NotifyRequest(KInt1, intStatus);
   937 	TEST2(r, KErrNone);
   938 
   939 	r = repository->NotifyRequest(KReal1, realStatus);
   940 	TEST2(r, KErrNone);
   941 
   942 	r = repository->NotifyRequest(KString1, stringStatus);
   943 	TEST2(r, KErrNone);
   944 
   945 
   946 	// Setting to the same value should not cause a notification
   947 	r = repository->Get(KInt1, intval);
   948 	TEST2(r, KErrNone);
   949 	r = repository->Set(KInt1, intval);
   950 	TEST2(r, KErrNone);
   951 	TEST(intStatus==KRequestPending);
   952 	TEST(realStatus==KRequestPending);
   953 	TEST(stringStatus==KRequestPending);
   954 	TEST(thisThread.RequestCount()==0);
   955 
   956 	// First change to setting should cause notification
   957 	r = repository->Set(KInt1, 0);
   958 	TEST2(r, KErrNone);
   959 	User::WaitForAnyRequest();
   960 	TEST(intStatus==KInt1);
   961 	TEST(realStatus==KRequestPending);
   962 	TEST(stringStatus==KRequestPending);
   963 
   964 	// Second change to setting should not cause notification
   965 	intStatus = 7777;
   966 	r = repository->Set(KInt1, 0);
   967 	TEST2(r, KErrNone);
   968 	TEST(intStatus==7777);
   969 	TEST(realStatus==KRequestPending);
   970 	TEST(stringStatus==KRequestPending);
   971 	TEST(thisThread.RequestCount()==0);
   972 
   973 
   974 	// Setting to the same value should not cause a notification
   975 	TReal realval;
   976 	r = repository->Get(KReal1, realval);
   977 	TEST2(r, KErrNone);
   978 	r = repository->Set(KReal1, realval);
   979 	TEST2(r, KErrNone);
   980 	TEST(intStatus==7777);
   981 	TEST(realStatus==KRequestPending);
   982 	TEST(stringStatus==KRequestPending);
   983 	TEST(thisThread.RequestCount()==0);
   984 
   985 	r = repository->Set(KReal1, 0.0);
   986 	TEST2(r, KErrNone);
   987 	User::WaitForAnyRequest();
   988 	TEST(intStatus==7777);
   989 	TEST(realStatus==KReal1);
   990 	TEST(stringStatus==KRequestPending);
   991 
   992 
   993 	// Setting to the same value should not cause a notification
   994 	realStatus = 8888;
   995 	TBuf<20> stringval;
   996 	r = repository->Get(KString1, stringval);
   997 	TEST2(r, KErrNone);
   998 	r = repository->Set(KString1, stringval);
   999 	TEST2(r, KErrNone);
  1000 	TEST(intStatus==7777);
  1001 	TEST(realStatus==8888);
  1002 	TEST(stringStatus==KRequestPending);
  1003 	TEST(thisThread.RequestCount()==0);
  1004 
  1005 	_LIT(KStringValue2, "string2");
  1006 	r = repository->Set(KString1, KStringValue2);
  1007 	TEST2(r, KErrNone);
  1008 	User::WaitForAnyRequest();
  1009 	TEST(intStatus==7777);
  1010 	TEST(realStatus==8888);
  1011 	TEST(stringStatus==KString1);
  1012 
  1013 
  1014 	//
  1015 	// Cancelling single notifications
  1016 	//
  1017 	r = repository->NotifyRequest(KInt1, intStatus);
  1018 	TEST2(r, KErrNone);
  1019 	r = repository->NotifyCancel(KInt1);
  1020 	TEST2(r, KErrNone);
  1021 	User::WaitForAnyRequest();
  1022 	TEST(intStatus==KUnspecifiedKey);
  1023 
  1024 	intStatus = 7777;
  1025 	r = repository->NotifyRequest(KReal1, realStatus);
  1026 	TEST2(r, KErrNone);
  1027 	r = repository->Set(KInt1, 1);
  1028 	TEST2(r, KErrNone);
  1029 	r = repository->Set(KReal1, 1.1);
  1030 	TEST2(r, KErrNone);
  1031 	User::WaitForAnyRequest();
  1032 	TEST(intStatus==7777);
  1033 	TEST(realStatus==KReal1);
  1034 	TEST(thisThread.RequestCount()==0);
  1035 
  1036 
  1037 	//
  1038 	// Cancelling all notifications
  1039 	//
  1040 	realStatus = 8888;
  1041 	r = repository->NotifyRequest(KInt1, intStatus);
  1042 	TEST2(r, KErrNone);
  1043 	r = repository->NotifyRequest(KReal1, realStatus);
  1044 	TEST2(r, KErrNone);
  1045 
  1046 	r = repository->NotifyCancelAll();
  1047 	TEST2(r, KErrNone);
  1048 	User::WaitForAnyRequest();
  1049 	User::WaitForAnyRequest();
  1050 	TEST(intStatus==KUnspecifiedKey);
  1051 	TEST(realStatus==KUnspecifiedKey);
  1052 
  1053 	intStatus = 7777;
  1054 	realStatus = 8888;
  1055 	r = repository->Set(KInt1, 2);
  1056 	TEST2(r, KErrNone);
  1057 	r = repository->Set(KReal1, 2.2);
  1058 	TEST2(r, KErrNone);
  1059 	TEST(intStatus==7777);
  1060 	TEST(realStatus==8888);
  1061 	TEST(thisThread.RequestCount()==0);
  1062 
  1063 
  1064 	//
  1065 	// Group notifications
  1066 	//
  1067 	r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
  1068 	TEST2(r, KErrNone);
  1069 
  1070 	r = repository->Set(KInt3, 3);
  1071 	TEST2(r, KErrNone);
  1072 	TEST(intStatus==KRequestPending);
  1073 	TEST(thisThread.RequestCount()==0);
  1074 
  1075 	r = repository->Set(KInt1, 3);
  1076 	TEST2(r, KErrNone);
  1077 	User::WaitForAnyRequest();
  1078 	TEST(intStatus==KInt1);
  1079 
  1080 	r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
  1081 	TEST2(r, KErrNone);
  1082 
  1083 	r = repository->Set(KReal1, 3.3);
  1084 	TEST2(r, KErrNone);
  1085 	User::WaitForAnyRequest();
  1086 	TEST(intStatus==KReal1);
  1087 
  1088 
  1089 	//
  1090 	// Cancelling group notifications
  1091 	//
  1092 	r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
  1093 	TEST2(r, KErrNone);
  1094 	r = repository->NotifyCancel(0, ~(KInt1+KReal1));
  1095 	TEST2(r, KErrNone);
  1096 	User::WaitForAnyRequest();
  1097 	TEST(intStatus==KUnspecifiedKey);
  1098 
  1099 	r = repository->Set(KInt1, 3);
  1100 	TEST2(r, KErrNone);
  1101 	TEST(intStatus==KUnspecifiedKey);
  1102 	TEST(thisThread.RequestCount()==0);
  1103 
  1104 	r = repository->NotifyRequest(KInt1, intStatus);
  1105 	TEST2(r, KErrNone);
  1106 	r = repository->NotifyRequest(0, ~(KInt1+KReal1), realStatus);
  1107 	TEST2(r, KErrNone);
  1108 	r = repository->NotifyCancelAll();
  1109 	TEST2(r, KErrNone);
  1110 	User::WaitForAnyRequest();
  1111 	User::WaitForAnyRequest();
  1112 	TEST(intStatus==KUnspecifiedKey);
  1113 	TEST(realStatus==KUnspecifiedKey);
  1114 
  1115 	r = repository->Set(KInt1, 4);
  1116 	TEST2(r, KErrNone);
  1117 	TEST(intStatus==KUnspecifiedKey);
  1118 	TEST(realStatus==KUnspecifiedKey);
  1119 	TEST(thisThread.RequestCount()==0);
  1120 
  1121 	CleanupStack::PopAndDestroy(repository);
  1122 	}
  1123 
  1124 /**
  1125 @SYMTestCaseID         	SYSLIB-CENTRALREPOSITORY-CT-3400
  1126 @SYMTestCaseDesc        CRepository class functionality test
  1127 @SYMTestPriority        High
  1128 @SYMTestActions         Negative tests exercising CRepository::NotifyCancel() functions
  1129 						Tests check that central repository notifier works properly when
  1130 						client cancels multiple, non-existent notifications, and also
  1131 						multiple and non-existent group notificatins in a variety of combinations.
  1132 @SYMTestExpectedResults There are 2 main points that we need to check in this test:
  1133 						1) when we are cancelling multiple notifications server-side function should
  1134 						always return KErrNone or KErrNotFound preventing client requests from waitng
  1135 						indefinitely
  1136 						2) IPC handling function should convert any error returned from the server
  1137 						to KErrNone so that the client-side function NotifyCancel always returns KErrNone
  1138 						(for more nformation on this requirement see DEF061504)
  1139 @SYMDEF               	INC102413
  1140 */
  1141 LOCAL_C void CancelNotificationsL()
  1142 	{
  1143 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3400 "));
  1144 	CRepository* repository;
  1145 	User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
  1146 
  1147 	TInt r = KErrNone;
  1148 	TRequestStatus intStatus;
  1149 	TRequestStatus realStatus1;
  1150 	TRequestStatus realStatus2;
  1151 	TRequestStatus realStatus3;
  1152 	RThread thisThread;
  1153 
  1154 	//
  1155 	// Cancelling non-existent notifications
  1156 	//
  1157 	r = repository->NotifyCancel(KInt1);
  1158 	TEST2(r, KErrNone);
  1159 
  1160 	//
  1161 	// Cancelling multiple notifications
  1162 	// This test step checks that NotifyCancel function returns correct
  1163 	// value KErrNone regardless of the number of registered notifiers
  1164 	//
  1165 	r = repository->NotifyRequest(KReal1, realStatus1);
  1166 	TEST2(r, KErrNone);
  1167 	r = repository->NotifyRequest(KReal2, realStatus2);
  1168 	TEST2(r, KErrNone);
  1169 	r = repository->NotifyRequest(KReal3, realStatus3);
  1170 	TEST2(r, KErrNone);
  1171 
  1172 	r = repository->NotifyCancel(KReal3);
  1173 	TEST2(r, KErrNone);
  1174 	r = repository->NotifyCancel(KReal2);
  1175 	TEST2(r, KErrNone);
  1176 	r = repository->NotifyCancel(KReal1);
  1177 	TEST2(r, KErrNone);
  1178 	TEST2(thisThread.RequestCount(),3);
  1179 	User::WaitForAnyRequest();
  1180 	TEST(realStatus3==KUnspecifiedKey);
  1181 	User::WaitForAnyRequest();
  1182 	TEST(realStatus2==KUnspecifiedKey);
  1183 	User::WaitForAnyRequest();
  1184 	TEST(realStatus1==KUnspecifiedKey);
  1185 	TEST2(thisThread.RequestCount(),0);
  1186 
  1187 	// check that all notificatioins were actually cancelled and we will not
  1188 	// get a notification when we change the settings
  1189 	realStatus1 = 7777;
  1190 	realStatus2 = 8888;
  1191 	realStatus3 = 9999;
  1192 	r = repository->NotifyRequest(KInt1, intStatus);
  1193 	TEST2(r, KErrNone);
  1194 	r = repository->Set(KReal1, 1.0);
  1195 	TEST2(r, KErrNone);
  1196 	r = repository->Set(KReal2, 2.0);
  1197 	TEST2(r, KErrNone);
  1198 	r = repository->Set(KReal3, 3.0);
  1199 	TEST2(r, KErrNone);
  1200 	r = repository->Set(KInt1, 2);
  1201 	TEST2(r, KErrNone);
  1202 	User::WaitForAnyRequest();
  1203 	TEST(realStatus1==7777);
  1204 	TEST(realStatus2==8888);
  1205 	TEST(realStatus3==9999);
  1206 	TEST(intStatus==KInt1);
  1207 	TEST2(thisThread.RequestCount(),0);
  1208 
  1209 	//
  1210 	// Cancelling all notifications when no notifications exist
  1211 	//
  1212 	r = repository->NotifyCancelAll();
  1213 	TEST2(r, KErrNone);
  1214 
  1215 	//
  1216 	// Cancelling group notifications where some of the notifications have not been set up
  1217 	//
  1218 	//first make sure that all the settings exist
  1219 	r = repository->Set(KReal1, 2.0);
  1220 	r = repository->Set(KReal2, 3.0);
  1221 	r = repository->Set(KReal3, 4.0);
  1222 	//This mask notify request sets up notifies for a number of keys including KReal1 and KReal2
  1223 	r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus1);
  1224 	TEST2(r, KErrNone);
  1225 	//This mask notify request cancels notifies for a number of keys including KReal1 and KReal3
  1226 	r = repository->NotifyCancel(0, ~(KReal1+KReal3));
  1227 	TEST2(r, KErrNone);
  1228 	//check that notification request for the setting KReal1 has not been cancelled
  1229 	r = repository->Set(KReal1, 1.0);
  1230 	User::WaitForAnyRequest();
  1231 	TEST2(r, KErrNone);
  1232 	TEST(realStatus1==KReal1);
  1233 
  1234 	//
  1235 	// Cancelling multiple group notifications
  1236 	//
  1237 	//set up notification requests for 2 different groups of settings and then cancel them
  1238 	// one by one in the reverse order checking that we get an expected return value
  1239 	//This mask notify request sets up notifies for a number of keys including KInt1 and KReal3
  1240 	r = repository->NotifyRequest(0, ~(KInt1+KReal3), realStatus1);
  1241 	TEST2(r, KErrNone);
  1242 	//This mask notify request sets up notifies for a number of keys including KReal1 and KReal2
  1243 	r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus2);
  1244 	TEST2(r, KErrNone);
  1245 
  1246 	//This mask notify request cancels notifies for a number of keys including KReal1 and KReal2
  1247 	r = repository->NotifyCancel(0, ~(KReal1+KReal2));
  1248 	TEST2(r, KErrNone);
  1249 	//This mask notify request cancels notifies for a number of keys including KInt1 and KReal3
  1250 	r = repository->NotifyCancel(0, ~(KInt1+KReal3));
  1251 	TEST2(r, KErrNone);
  1252 	User::WaitForAnyRequest();
  1253 	User::WaitForAnyRequest();
  1254 	TEST(realStatus1==KUnspecifiedKey);
  1255 	TEST(realStatus2==KUnspecifiedKey);
  1256 
  1257 	//
  1258 	// Cancelling non-existent group notifications
  1259 	//
  1260 	r = repository->NotifyCancel(0, ~(KInt1+KReal3));
  1261 	TEST2(r, KErrNone);
  1262 
  1263 	//restore the repository value for the later tests to use
  1264 	r = repository->Set(KInt1, 1);
  1265 	TEST2(r, KErrNone);
  1266 
  1267 	CleanupStack::PopAndDestroy(repository);
  1268 	}
  1269 
  1270 /**
  1271 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1301
  1272 @SYMTestCaseDesc		Tests for creation and deletion of new settings for CRepository class
  1273 @SYMTestPriority		High
  1274 @SYMTestActions			Test for CRepository::Create(),CRepository::Delete() functions
  1275 @SYMTestExpectedResults Test must not fail
  1276 @SYMREQ					REQ0000
  1277 */
  1278 LOCAL_C void CreateDeleteL(const TUid& aUid)
  1279 	{
  1280 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1301 "));
  1281 	CRepository* repository;
  1282 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1283 
  1284 	TInt x;
  1285 	TReal y;
  1286 	TBuf8<20> z8;
  1287 	TBuf16<20> z16;
  1288 
  1289 	/***************************************************************************************/
  1290 	//test int create
  1291 	/***************************************************************************************/
  1292 	TInt r = repository->Get(KNewInt, x);
  1293 	TEST2(r, KErrNotFound);
  1294 
  1295 	const TInt KIntValue = 1234;
  1296 	r = repository->Create(KNewInt, KIntValue);
  1297 	TEST2(r, KErrNone);
  1298 
  1299 	//close and reopen rep to check create is persisted
  1300 	CleanupStack::PopAndDestroy(repository);
  1301 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1302 
  1303 	r = repository->Get(KNewInt, x);
  1304 	TEST2(r, KErrNone);
  1305 	TEST(x==KIntValue);
  1306 
  1307 	r = repository->Delete(KNewInt);
  1308 	TEST2(r, KErrNone);
  1309 
  1310 	r = repository->Get(KNewInt, x);
  1311 	TEST2(r, KErrNotFound);
  1312 
  1313 	// close and reopen rep to check delete is persisted
  1314 	CleanupStack::PopAndDestroy(repository);
  1315 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1316 	r = repository->Get(KNewInt, x);
  1317 	TEST2(r, KErrNotFound);
  1318 
  1319 
  1320 	// test int create - second run
  1321 	r = repository->Create(KNewInt, KIntValue);
  1322 	TEST2(r, KErrNone);
  1323 
  1324 	//close and reopen rep to check create is persisted
  1325 	CleanupStack::PopAndDestroy(repository);
  1326 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1327 
  1328 	r = repository->Get(KNewInt, x);
  1329 	TEST2(r, KErrNone);
  1330 	TEST(x==KIntValue);
  1331 
  1332 	r = repository->Delete(KNewInt);
  1333 	TEST2(r, KErrNone);
  1334 
  1335 	// close and reopen rep to check delete is persisted
  1336 	CleanupStack::PopAndDestroy(repository);
  1337 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1338 
  1339 	r = repository->Get(KNewInt, x);
  1340 	TEST2(r, KErrNotFound);
  1341 
  1342 
  1343 	/***************************************************************************************/
  1344 	//test real create
  1345 	/***************************************************************************************/
  1346 
  1347 	r = repository->Get(KNewReal, y);
  1348 	TEST2(r, KErrNotFound);
  1349 
  1350 	const TReal KRealValue = 5678.0;
  1351 	r = repository->Create(KNewReal, KRealValue);
  1352 	TEST2(r, KErrNone);
  1353 
  1354 	//close and reopen rep to check create is persisted
  1355 	CleanupStack::PopAndDestroy(repository);
  1356 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1357 
  1358 	r = repository->Get(KNewReal, y);
  1359 	TEST2(r, KErrNone);
  1360 	TEST(y==KRealValue);
  1361 
  1362 	r = repository->Delete(KNewReal);
  1363 	TEST2(r, KErrNone);
  1364 
  1365 	// close and reopen rep to check delete is persisted
  1366 	CleanupStack::PopAndDestroy(repository);
  1367 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1368 
  1369 	r = repository->Get(KNewReal, y);
  1370 	TEST2(r, KErrNotFound);
  1371 
  1372 	//create real - second run
  1373 	r = repository->Create(KNewReal, KRealValue);
  1374 	TEST2(r, KErrNone);
  1375 
  1376 	//close and reopen rep to check create is persisted
  1377 	CleanupStack::PopAndDestroy(repository);
  1378 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1379 
  1380 	r = repository->Get(KNewReal, y);
  1381 	TEST2(r, KErrNone);
  1382 	TEST(y==KRealValue);
  1383 
  1384 	r = repository->Delete(KNewReal);
  1385 	TEST2(r, KErrNone);
  1386 
  1387 	// close and reopen rep to check delete is persisted
  1388 	CleanupStack::PopAndDestroy(repository);
  1389 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1390 
  1391 	r = repository->Get(KNewReal, x);
  1392 	TEST2(r, KErrNotFound);
  1393 
  1394 	/***************************************************************************************/
  1395 	//test string8 create
  1396 	/***************************************************************************************/
  1397 
  1398 	r = repository->Get(KNewString8, z8);
  1399 	TEST2(r, KErrNotFound);
  1400 
  1401 	_LIT8(KString8Value, "ABCDEF");
  1402 	r = repository->Create(KNewString8, KString8Value);
  1403 	TEST2(r, KErrNone);
  1404 
  1405 	//close and reopen rep to check create is persisted
  1406 	CleanupStack::PopAndDestroy(repository);
  1407 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1408 
  1409 	r = repository->Get(KNewString8, z8);
  1410 	TEST2(r, KErrNone);
  1411 	TEST(z8==KString8Value);
  1412 
  1413 	r = repository->Delete(KNewString8);
  1414 	TEST2(r, KErrNone);
  1415 
  1416 	// close and reopen rep to check delete is persisted
  1417 	CleanupStack::PopAndDestroy(repository);
  1418 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1419 
  1420 	r = repository->Get(KNewString8, z8);
  1421 	TEST2(r, KErrNotFound);
  1422 
  1423 	r = repository->Create(KNewString8, KString8Value);
  1424 	TEST2(r, KErrNone);
  1425 
  1426 	//close and reopen rep to check create is persisted
  1427 	CleanupStack::PopAndDestroy(repository);
  1428 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1429 
  1430 	r = repository->Get(KNewString8, z8);
  1431 	TEST2(r, KErrNone);
  1432 	TEST(z8==KString8Value);
  1433 
  1434 	r = repository->Delete(KNewString8);
  1435 	TEST2(r, KErrNone);
  1436 
  1437 	// close and reopen rep to check delete is persisted
  1438 	CleanupStack::PopAndDestroy(repository);
  1439 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1440 
  1441 	//second run
  1442 	r = repository->Get(KNewString8, x);
  1443 	TEST2(r, KErrNotFound);
  1444 
  1445 	/***************************************************************************************/
  1446 	//test string16 create
  1447 	/***************************************************************************************/
  1448 
  1449 	r = repository->Get(KNewString16, z16);
  1450 	TEST2(r, KErrNotFound);
  1451 
  1452 	_LIT(KString16Value, "ghijklmn");
  1453 	r = repository->Create(KNewString16, KString16Value);
  1454 	TEST2(r, KErrNone);
  1455 
  1456 	//close and reopen rep to check create is persisted
  1457 	CleanupStack::PopAndDestroy(repository);
  1458 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1459 
  1460 	r = repository->Get(KNewString16, z16);
  1461 	TEST2(r, KErrNone);
  1462 	TEST(z16==KString16Value);
  1463 
  1464 	r = repository->Delete(KNewString16);
  1465 	TEST2(r, KErrNone);
  1466 
  1467 	// close and reopen rep to check delete is persisted
  1468 	CleanupStack::PopAndDestroy(repository);
  1469 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1470 
  1471 	r = repository->Get(KNewString16, z16);
  1472 	TEST2(r, KErrNotFound);
  1473 
  1474 	r = repository->Create(KNewString16, KString16Value);
  1475 	TEST2(r, KErrNone);
  1476 
  1477 	//close and reopen rep to check create is persisted
  1478 	CleanupStack::PopAndDestroy(repository);
  1479 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1480 
  1481 	r = repository->Get(KNewString16, z16);
  1482 	TEST2(r, KErrNone);
  1483 	TEST(z16==KString16Value);
  1484 
  1485 	r = repository->Delete(KNewString16);
  1486 	TEST2(r, KErrNone);
  1487 
  1488 	CleanupStack::PopAndDestroy(repository);
  1489 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1490 
  1491 	r = repository->Get(KNewString16, x);
  1492 	TEST2(r, KErrNotFound);
  1493 
  1494 	CleanupStack::PopAndDestroy(repository);
  1495 
  1496 	/***************************************************************************************/
  1497 	//test create all kinds and delete with mask
  1498 	/***************************************************************************************/
  1499 
  1500 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1501 
  1502 	//first check that none of the settings exist in the repository
  1503 	r = repository->Get(KNewSetting1, x);
  1504 	TEST2(r, KErrNotFound);
  1505 
  1506 	r = repository->Get(KNewSetting2, y);
  1507 	TEST2(r, KErrNotFound);
  1508 
  1509 	r = repository->Get(KNewSetting3, z8);
  1510 	TEST2(r, KErrNotFound);
  1511 
  1512 	r = repository->Get(KNewSetting4, z16);
  1513 	TEST2(r, KErrNotFound);
  1514 
  1515 	r = repository->Get(KNewSetting5, x);
  1516 	TEST2(r, KErrNotFound);
  1517 
  1518 	r = repository->Get(KNewSetting6, y);
  1519 	TEST2(r, KErrNotFound);
  1520 
  1521 	r = repository->Get(KNewSetting7, z8);
  1522 	TEST2(r, KErrNotFound);
  1523 
  1524 	r = repository->Get(KNewSetting8, z16);
  1525 	TEST2(r, KErrNotFound);
  1526 
  1527 	//now create all of the new settings
  1528 	x = KNewSetting1Value;
  1529 	r = repository->Create(KNewSetting1, x);
  1530 	TEST2(r, KErrNone);
  1531 
  1532 	r = repository->Create(KNewSetting2, KNewSetting2Value);
  1533 	TEST2(r, KErrNone);
  1534 
  1535 	r = repository->Create(KNewSetting3, KNewSetting3Value);
  1536 	TEST2(r, KErrNone);
  1537 
  1538 	r = repository->Create(KNewSetting4, KNewSetting4Value);
  1539 	TEST2(r, KErrNone);
  1540 
  1541 	x = KNewSetting5Value;
  1542 	r = repository->Create(KNewSetting5, x);
  1543 	TEST2(r, KErrNone);
  1544 
  1545 	r = repository->Create(KNewSetting6, KNewSetting6Value);
  1546 	TEST2(r, KErrNone);
  1547 
  1548 	r = repository->Create(KNewSetting7, KNewSetting7Value);
  1549 	TEST2(r, KErrNone);
  1550 
  1551 	r = repository->Create(KNewSetting8, KNewSetting8Value);
  1552 	TEST2(r, KErrNone);
  1553 
  1554 	//close and reopen rep to check create is persisted
  1555 	CleanupStack::PopAndDestroy(repository);
  1556 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1557 
  1558 	//check that the new settings exist in the repository
  1559 	r = repository->Get(KNewSetting1, x);
  1560 	TEST(x == KNewSetting1Value);
  1561 	TEST2(r, KErrNone);
  1562 
  1563 	r = repository->Get(KNewSetting2, y);
  1564 	TEST(y == KNewSetting2Value);
  1565 	TEST2(r, KErrNone);
  1566 
  1567 	r = repository->Get(KNewSetting3, z16);
  1568 	TEST(z16 == KNewSetting3Value);
  1569 	TEST2(r, KErrNone);
  1570 
  1571 	r = repository->Get(KNewSetting4, z8);
  1572 	TEST(z8 == KNewSetting4Value);
  1573 	TEST2(r, KErrNone);
  1574 
  1575 	r = repository->Get(KNewSetting5, x);
  1576 	TEST(x == KNewSetting5Value);
  1577 	TEST2(r, KErrNone);
  1578 
  1579 	r = repository->Get(KNewSetting6, y);
  1580 	TEST(y == KNewSetting6Value);
  1581 	TEST2(r, KErrNone);
  1582 
  1583 	r = repository->Get(KNewSetting7, z16);
  1584 	TEST(z16 == KNewSetting7Value);
  1585 	TEST2(r, KErrNone);
  1586 
  1587 	r = repository->Get(KNewSetting8, z8);
  1588 	TEST(z8 == KNewSetting8Value);
  1589 	TEST2(r, KErrNone);
  1590 
  1591 	// delete the settings
  1592 	TUint32 errorKey = 0;
  1593 	r = repository->Delete(0x00002000, 0xFFFFFF00, errorKey);
  1594 	TEST2(errorKey, KUnspecifiedKey);
  1595 	TEST2(r, KErrNone);
  1596 
  1597 	// close and reopen rep to check delete is persisted
  1598 	CleanupStack::PopAndDestroy(repository);
  1599 	User::LeaveIfNull(repository = CRepository::NewLC(aUid));
  1600 
  1601 	//check that none of the settings exist in the repository
  1602 	r = repository->Get(KNewSetting1, x);
  1603 	TEST2(r, KErrNotFound);
  1604 
  1605 	r = repository->Get(KNewSetting2, y);
  1606 	TEST2(r, KErrNotFound);
  1607 
  1608 	r = repository->Get(KNewSetting3, z16);
  1609 	TEST2(r, KErrNotFound);
  1610 
  1611 	r = repository->Get(KNewSetting4, z8);
  1612 	TEST2(r, KErrNotFound);
  1613 
  1614 	r = repository->Get(KNewSetting5, x);
  1615 	TEST2(r, KErrNotFound);
  1616 
  1617 	r = repository->Get(KNewSetting6, y);
  1618 	TEST2(r, KErrNotFound);
  1619 
  1620 	r = repository->Get(KNewSetting7, z16);
  1621 	TEST2(r, KErrNotFound);
  1622 
  1623 	r = repository->Get(KNewSetting8, z8);
  1624 	TEST2(r, KErrNotFound);
  1625 
  1626 	CleanupStack::PopAndDestroy(repository);
  1627 	}
  1628 
  1629 /**
  1630 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1302
  1631 @SYMTestCaseDesc		Multi client test
  1632 @SYMTestPriority		High
  1633 @SYMTestActions			Tests for CRepository::Get(),CRepository::Set() functions
  1634 @SYMTestExpectedResults Test must not fail
  1635 @SYMREQ					REQ0000
  1636 */
  1637 LOCAL_C void MultiClientL()
  1638 	{
  1639 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1302 "));
  1640 	CRepository* repository1;
  1641 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  1642 	CRepository* repository2;
  1643 	User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
  1644 
  1645 	//
  1646 	// Get/Set
  1647 	//
  1648 	TInt i;
  1649 	TInt r = repository1->Set(KInt1, 0);
  1650 	TEST2(r, KErrNone);
  1651 	r = repository2->Get(KInt1, i);
  1652 	TEST2(r, KErrNone);
  1653 	TEST(i==0);
  1654 
  1655 	r = repository2->Set(KInt1, 123);
  1656 	TEST2(r, KErrNone);
  1657 	r = repository1->Get(KInt1, i);
  1658 	TEST2(r, KErrNone);
  1659 	TEST(i==123);
  1660 
  1661 	//
  1662 	// Notification
  1663 	//
  1664 	TRequestStatus status;
  1665 	r = repository1->NotifyRequest(KInt1, status);
  1666 	TEST2(r, KErrNone);
  1667 
  1668 	r = repository2->Set(KInt1, 0);
  1669 	TEST2(r, KErrNone);
  1670 	User::WaitForAnyRequest();
  1671 	TEST(status==KInt1);
  1672 
  1673 	CleanupStack::PopAndDestroy(2);
  1674 	}
  1675 
  1676 /**
  1677 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1303
  1678 @SYMTestCaseDesc		Tests for resetting the new changes on CRepository
  1679 @SYMTestPriority		High
  1680 @SYMTestActions			Tests for CRepository::Reset() function
  1681 						Tests for reset on a single setting that exists in the original ROM-based settings.
  1682 						Tests for reset for a single setting that does not exist in the original ROM-based settings.
  1683 						Tests for repository-wide reset for a repository that exists on ROM.
  1684 						Tests for repository-wide reset for a repository that does not exist on ROM.
  1685 @SYMTestExpectedResults Test must not fail
  1686 @SYMREQ					REQ0000
  1687 */
  1688 LOCAL_C void ResetL()
  1689 	{
  1690 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1303 "));
  1691 	CRepository* repositoryA;
  1692 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidTestRepository1));
  1693 
  1694 	//
  1695 	// Test reset on a single setting that exists in the
  1696 	// original ROM-based settings (we'll use KInt1)
  1697 	//
  1698 
  1699 	// Ensure KInt1 is set to a different value to its initial value
  1700 	TInt r = repositoryA->Set(KInt1, KInt1_InitialValue+10);
  1701 	TEST2(r, KErrNone);
  1702 
  1703 	// We're testing we get a notification on a reset as well
  1704 	TRequestStatus s;
  1705 	r = repositoryA->NotifyRequest(KInt1, s);
  1706 	TEST2(r, KErrNone);
  1707 
  1708 	r = repositoryA->Reset(KInt1);
  1709 	TEST2(r, KErrNone);
  1710 
  1711 	// Check we got a notifiation
  1712 	RThread thisThread;
  1713 
  1714 	TEST2(thisThread.RequestCount(), 1);
  1715 	User::WaitForAnyRequest();
  1716 	TEST(s==KInt1);
  1717 
  1718 	// Check KInt1 now has the right value
  1719 	TInt x;
  1720 	r = repositoryA->Get(KInt1, x);
  1721 	TEST2(r, KErrNone);
  1722 	TEST(x==KInt1_InitialValue);
  1723 
  1724 	// A second reset should not generate notification
  1725 	// as value has not changed
  1726 	r = repositoryA->NotifyRequest(KInt1, s);
  1727 	TEST2(r, KErrNone);
  1728 	r = repositoryA->Reset(KInt1);
  1729 	TEST2(r, KErrNone);
  1730 
  1731 	//
  1732 	// Test reset for a single setting that does not exist
  1733 	// in the original ROM-based settings.
  1734 	//
  1735 	const TInt KIntValue = 1234;
  1736 	r = repositoryA->Create(KNewInt, KIntValue);
  1737 	TEST2(r, KErrNone);
  1738 
  1739 	// We're testing we get a notification on a reset as well
  1740 	r = repositoryA->NotifyRequest(KNewInt, s);
  1741 	TEST2(r, KErrNone);
  1742 
  1743 	r = repositoryA->Reset(KNewInt);
  1744 	TEST2(r, KErrNone);
  1745 
  1746 	// Check we got a notifiation
  1747 	TEST2(thisThread.RequestCount(), 1);
  1748 	User::WaitForAnyRequest();
  1749 	TEST(s==KNewInt);
  1750 
  1751 	// Check KNewInt has been deleted
  1752 	r = repositoryA->Get(KNewInt, x);
  1753 	TEST2(r, KErrNotFound);
  1754 
  1755 	CleanupStack::PopAndDestroy(repositoryA);
  1756 	User::WaitForAnyRequest(); //cancellation of request
  1757 	TEST2(thisThread.RequestCount(), 0);
  1758 
  1759 	//
  1760 	// Test reset for a single setting in a repository that
  1761 	// does not exist on ROM.
  1762 	//
  1763 	const TInt KSettingKey = KNonExisitentSetting;
  1764 	const TInt KInitialValue = 10;
  1765 
  1766 	CRepository* repositoryB;
  1767 	User::LeaveIfNull(repositoryB = CRepository::NewLC(KUidDriveCOnlyRepository));
  1768 
  1769 	r = repositoryB->Create(KSettingKey, KInitialValue);
  1770 	TEST2(r, KErrNone);
  1771 
  1772 	// We're testing we get a notification on a reset as well
  1773 	r = repositoryB->NotifyRequest(KSettingKey, s);
  1774 	TEST2(r, KErrNone);
  1775 
  1776 	r = repositoryB->Reset(KSettingKey);
  1777 	TEST2(r, KErrNone);
  1778 
  1779 	// Check we got a notifiation
  1780 	TEST2(thisThread.RequestCount(), 1);
  1781 	User::WaitForAnyRequest();
  1782 	TEST(s==KSettingKey);
  1783 
  1784 	// Check KSettingKey has been deleted
  1785 	r = repositoryB->Get(KSettingKey, x);
  1786 	TEST2(r, KErrNotFound);
  1787 
  1788 	CleanupStack::PopAndDestroy(repositoryB);
  1789 	//
  1790 	// Test repository-wide reset for a repository
  1791 	// that exists on ROM.
  1792 	//
  1793 	CRepository* repositoryC;
  1794 	User::LeaveIfNull(repositoryC = CRepository::NewLC(KUidResetTestRepository));
  1795 
  1796 	const TInt KNewSetting1 = 5;
  1797 	const TInt KNewSetting2 = 6;
  1798 	r = repositoryC->Create(KNewSetting1, 0);
  1799 	TEST2(r, KErrNone);
  1800 	r = repositoryC->Create(KNewSetting2, 0);
  1801 	TEST2(r, KErrNone);
  1802 
  1803 	r = repositoryC->Create(65, 1);
  1804 	TEST2(r, KErrNone);
  1805 
  1806 	r = repositoryC->Set(70, 1);
  1807 	TEST2(r, KErrNone);
  1808 
  1809 	r = repositoryC->Create(80, 1);
  1810 	TEST2(r, KErrNone);
  1811 
  1812 	r = repositoryC->Create(90, 1);
  1813 	TEST2(r, KErrNone);
  1814 
  1815 	r = repositoryC->NotifyRequest(0, 0, s);
  1816 	TEST2(r, KErrNone);
  1817 
  1818 	r = repositoryC->Reset();
  1819 	TEST2(r, KErrNone);
  1820 	TEST(thisThread.RequestCount()==1);
  1821 	User::WaitForAnyRequest();
  1822 	TEST(s==KUnspecifiedKey);
  1823 
  1824 	r = repositoryC->Get(10, x);
  1825 	TEST2(r, KErrNone);
  1826 	TEST(x==10);
  1827 
  1828 	r = repositoryC->Get(40, x);
  1829 	TEST2(r, KErrNone);
  1830 	TEST(x==0);
  1831 
  1832 	r = repositoryC->Get(50, x);
  1833 	TEST2(r, KErrNone);
  1834 	TEST(x==0);
  1835 
  1836 	r = repositoryC->Get(60, x);
  1837 	TEST2(r, KErrNone);
  1838 	TEST(x==0);
  1839 
  1840 	r = repositoryC->Get(70, x);
  1841 	TEST2(r, KErrNone);
  1842 	TEST(x==0);
  1843 
  1844 	TBuf<10> z;
  1845 	r = repositoryC->Get(20, z);
  1846 	TEST2(r, KErrNone);
  1847 	TEST(z==_L("string"));
  1848 
  1849 	TReal y;
  1850 	r = repositoryC->Get(30, y);
  1851 	TEST2(r, KErrNone);
  1852 	TEST(y==1);
  1853 
  1854 	r = repositoryC->Get(5, x);
  1855 	TEST2(r, KErrNotFound);
  1856 	r = repositoryC->Get(6, x);
  1857 	TEST2(r, KErrNotFound);
  1858 	r = repositoryC->Get(65, x);
  1859 	TEST2(r, KErrNotFound);
  1860 	r = repositoryC->Get(80, x);
  1861 	TEST2(r, KErrNotFound);
  1862 	r = repositoryC->Get(90, x);
  1863 	TEST2(r, KErrNotFound);
  1864 
  1865 	CleanupStack::PopAndDestroy(repositoryC);
  1866 
  1867 	//
  1868 	// Test repository-wide reset for a repository
  1869 	// that does not exist on ROM.
  1870 	//
  1871 	CRepository* repositoryD;
  1872 	User::LeaveIfNull(repositoryD = CRepository::NewLC(KUidDriveCOnlyRepository));
  1873 
  1874 	r = repositoryD->Create(KSettingKey, KInitialValue);
  1875 	TEST2(r, KErrNone);
  1876 
  1877 	// We're testing we get a notification on a reset as well
  1878 	r = repositoryD->NotifyRequest(KSettingKey, s);
  1879 	TEST2(r, KErrNone);
  1880 
  1881 	r = repositoryD->Reset();
  1882 	TEST2(r, KErrNone);
  1883 
  1884 	// Check we got a notifiation
  1885 	TEST(thisThread.RequestCount()==1);
  1886 	User::WaitForAnyRequest();
  1887 	TEST(s==KUnspecifiedKey);
  1888 
  1889 	// Check KSettingKey has been deleted
  1890 	r = repositoryD->Get(KSettingKey, x);
  1891 	TEST2(r, KErrNotFound);
  1892 
  1893 	// Recreate KSettingKey
  1894 	r = repositoryD->Create(KSettingKey, 10);
  1895 	TEST2(r, KErrNone);
  1896 
  1897 	// Reset KSettingKey only
  1898 	r = repositoryD->Reset(KSettingKey);
  1899 	TEST2(r, KErrNone);
  1900 
  1901 	// Check KSettingKey has been deleted
  1902 	r = repositoryD->Get(KSettingKey, x);
  1903 	TEST2(r, KErrNotFound);
  1904 
  1905 	CleanupStack::PopAndDestroy(repositoryD);
  1906 	}
  1907 
  1908 LOCAL_C void ResetCreL()
  1909 	{
  1910 	CRepository* repositoryA;
  1911 	TInt r = KErrNone;
  1912 	TRequestStatus s;
  1913 	TInt x;
  1914 	RThread thisThread;
  1915 
  1916 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1917 
  1918 	// test for .cre file
  1919 	// Test reset on a single setting that exists in the
  1920 	// original ROM-based settings (we'll use KInt1)
  1921 	//
  1922 
  1923 	// Ensure KInt1 is set to a different value to its initial value
  1924 	r = repositoryA->Set(KInt1, KInt1_InitialValue+10);
  1925 	TEST2(r, KErrNone);
  1926 
  1927 	CleanupStack::PopAndDestroy(repositoryA);
  1928 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1929 
  1930 	// We're testing we get a notification on a reset as well
  1931 	r = repositoryA->NotifyRequest(KInt1, s);
  1932 	TEST2(r, KErrNone);
  1933 
  1934 	r = repositoryA->Reset(KInt1);
  1935 	TEST2(r, KErrNone);
  1936 
  1937 	// Check we got a notifiation
  1938 	TEST2(thisThread.RequestCount(), 1);
  1939 	User::WaitForAnyRequest();
  1940 	TEST(s == KInt1);
  1941 
  1942 	CleanupStack::PopAndDestroy(repositoryA);
  1943 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1944 
  1945 	// Check KInt1 now has the right value
  1946 	r = repositoryA->Get(KInt1, x);
  1947 	TEST2(r, KErrNone);
  1948 	TEST2(x, KInt1_InitialValue);
  1949 
  1950 	// A second reset should not generate notification
  1951 	// as value has not changed
  1952 	r = repositoryA->NotifyRequest(KInt1, s);
  1953 	TEST2(r, KErrNone);
  1954 
  1955 	r = repositoryA->Reset(KInt1);
  1956 	TEST2(r, KErrNone);
  1957 	TEST2(thisThread.RequestCount(), 0);
  1958 
  1959 	CleanupStack::PopAndDestroy(repositoryA);
  1960 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1961 	//
  1962 	// Test reset for a single setting that does not exist
  1963 	// in the original ROM-based settings.
  1964 	//
  1965 	const TInt KIntValue = 1234;
  1966 	r = repositoryA->Create(KNewInt, KIntValue);
  1967 	TEST2(r, KErrNone);
  1968 
  1969 	CleanupStack::PopAndDestroy(repositoryA);
  1970 	User::WaitForAnyRequest();//this is the cancellation of last notify request
  1971 	TEST2(thisThread.RequestCount(), 0);
  1972 
  1973 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1974 
  1975 	// We're testing we get a notification on a reset as well
  1976 	r = repositoryA->NotifyRequest(KNewInt, s);
  1977 	TEST2(r, KErrNone);
  1978 
  1979 	r = repositoryA->Reset(KNewInt);
  1980 	TEST2(r, KErrNone);
  1981 
  1982 	// Check we got a notifiation
  1983 	TEST2(thisThread.RequestCount(), 1);
  1984 	User::WaitForAnyRequest();
  1985 	TEST(s == KNewInt);
  1986 
  1987 	CleanupStack::PopAndDestroy(repositoryA);
  1988 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1989 
  1990 	// Check KNewInt has been deleted
  1991 	r = repositoryA->Get(KNewInt, x);
  1992 	TEST2(r, KErrNotFound);
  1993 
  1994 	CleanupStack::PopAndDestroy(repositoryA);
  1995 	User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
  1996 
  1997 	// Reset entire repository
  1998 	r = repositoryA->Reset();
  1999 	TEST2(r, KErrNone);
  2000 
  2001 	CleanupStack::PopAndDestroy(repositoryA);
  2002 	}
  2003 
  2004 /**
  2005 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1304
  2006 @SYMTestCaseDesc		Tests for initialising file searching
  2007 @SYMTestPriority		High
  2008 @SYMTestActions			Tests for CRepository::Get() function
  2009 @SYMTestExpectedResults Test must not fail
  2010 @SYMREQ					REQ0000
  2011 */
  2012 LOCAL_C void IniFileSearching()
  2013 	{
  2014 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1304 "));
  2015 	const TInt KSettingKey = 1;
  2016 
  2017 	_LIT(KDriveZ, "drive z");
  2018 
  2019 	const TInt KBufLen = 7; // = Max of 3 above string lengths
  2020 
  2021 	//
  2022 	// File on drive C should take precedence
  2023 	//
  2024 	CRepository* repository = CRepository::NewL(KUidDriveCRepository);
  2025 
  2026 	TBuf<KBufLen> str;
  2027 	TInt r = repository->Get(KSettingKey, str);
  2028 	TEST2(r, KErrNone);
  2029 	TEST(str==KDriveZ); 
  2030 
  2031 	delete repository;
  2032 	}
  2033 
  2034 /**
  2035 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1305
  2036 @SYMTestCaseDesc		Tests for creating new repository on drive C:
  2037 @SYMTestPriority		High
  2038 @SYMTestActions			Tests for CRepository::NewL() function
  2039 @SYMTestExpectedResults Test must not fail
  2040 @SYMREQ					REQ0000
  2041 */
  2042 LOCAL_C void RepositoryOnDriveC()
  2043 	{
  2044 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1305 "));
  2045 	const TInt KSettingKey = KNonExisitentSetting;
  2046 	const TInt KInitialValue = 10;
  2047 
  2048 	CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository);
  2049 	CleanupStack::PushL(repository);
  2050 
  2051 	TInt val;
  2052 	TInt r = repository->Get(KSettingKey, val);
  2053 	TEST2(r, KErrNotFound);
  2054 
  2055 	r = repository->Create(KSettingKey, KInitialValue);
  2056 	TEST2(r, KErrNone);
  2057 
  2058 	r = repository->Get(KSettingKey, val);
  2059 	TEST2(r, KErrNone);
  2060 	TEST(val==KInitialValue);
  2061 
  2062 	CleanupStack::PopAndDestroy(repository);
  2063 	repository = CRepository::NewL(KUidDriveCOnlyRepository);
  2064 	CleanupStack::PushL(repository);
  2065 
  2066 	r = repository->Get(KSettingKey, val);
  2067 	TEST2(r, KErrNone);
  2068 	TEST(val==KInitialValue);
  2069 
  2070 	r = repository->Set(KSettingKey, KInitialValue+1);
  2071 	TEST2(r, KErrNone);
  2072 
  2073 	r = repository->Get(KSettingKey, val);
  2074 	TEST2(r, KErrNone);
  2075 	TEST(val==KInitialValue+1);
  2076 
  2077 	r = repository->Delete(KSettingKey);
  2078 	TEST2(r, KErrNone);
  2079 
  2080 	CleanupStack::PopAndDestroy(repository);
  2081 	repository = CRepository::NewL(KUidDriveCOnlyRepository);
  2082 	CleanupStack::PushL(repository);
  2083 
  2084 	r = repository->Get(KSettingKey, val);
  2085 	TEST2(r, KErrNotFound);
  2086 
  2087 	CleanupStack::PopAndDestroy(repository);
  2088 	}
  2089 
  2090 /**
  2091 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-1656
  2092 @SYMTestCaseDesc		Notify-only client optimization test
  2093 @SYMTestPriority		High
  2094 @SYMTestActions			Tests for on-demand loading in API calls after in-session
  2095 						unloading of repositories. Also tests for notification functionality.
  2096 @SYMTestExpectedResults Test must not fail
  2097 @SYMPREQ				PREQ1228
  2098 */
  2099 LOCAL_C void NotifyOnlyL()
  2100 	{
  2101 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1656 "));
  2102 	CRepository* repository1;
  2103 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2104 
  2105 	// check that functions work
  2106 	TInt i;
  2107 	TInt r = repository1->Get(KInt1, i);
  2108 	TEST2(r, KErrNone);
  2109 	TEST(i==1);
  2110 	
  2111 	CleanupStack::PopAndDestroy();
  2112 	// Kill the server to force clearing the cache
  2113 	KillCentRepServerL();
  2114 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2115 
  2116 	r = repository1->Set(KInt1, i);
  2117 	TEST2(r, KErrNone);
  2118 	
  2119 	CleanupStack::PopAndDestroy();
  2120 	// Kill the server to force clearing the cache
  2121 	KillCentRepServerL();
  2122 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2123 
  2124 	const TInt KIntValue = 1234;
  2125 	r = repository1->Create(KNewInt, KIntValue);
  2126 	TEST2(r, KErrNone);
  2127 	
  2128 	CleanupStack::PopAndDestroy();
  2129 	// Kill the server to force clearing the cache
  2130 	KillCentRepServerL();
  2131 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2132 
  2133 	RArray<TUint32> foundIds;
  2134 	TInt leaveCode = KErrNone;
  2135 	TRAP(leaveCode, r= repository1->FindEqL(0, 0, KIntValue, foundIds));
  2136 	if (leaveCode != KErrNone)
  2137 		r = leaveCode ;
  2138 	if(OomTesting && r==KErrNoMemory)
  2139 		{
  2140 		foundIds.Close();
  2141 		User::Leave(KErrNoMemory);
  2142 		}
  2143 	TEST2(r, KErrNone);
  2144 	TEST(foundIds.Count()==1);
  2145 	TEST(foundIds[0]==KNewInt);
  2146 	foundIds.Reset();
  2147 
  2148 	CleanupStack::PopAndDestroy();
  2149 	// Kill the server to force clearing the cache
  2150 	KillCentRepServerL();
  2151 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2152 
  2153 	r = repository1->Delete(KNewInt);
  2154 	TEST2(r, KErrNone);
  2155 
  2156 	CleanupStack::PopAndDestroy();
  2157 
  2158 	// check that multiple clients work
  2159 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2160 
  2161 	r = repository1->Get(KInt1, i);
  2162 	TEST2(r, KErrNone);
  2163 	TEST(i==1);
  2164 
  2165 	CleanupStack::PopAndDestroy();
  2166 	// Kill the server to force clearing the cache
  2167 	KillCentRepServerL();
  2168 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2169 
  2170 	CRepository* repository2;
  2171 	User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
  2172 
  2173 	r = repository2->Get(KInt1, i);
  2174 	TEST2(r, KErrNone);
  2175 	TEST(i==1);
  2176 
  2177 	r = repository1->Get(KInt1, i);
  2178 	TEST2(r, KErrNone);
  2179 	TEST(i==1);
  2180 
  2181 	CleanupStack::PopAndDestroy(2);
  2182 
  2183 	// check that notifications work
  2184 	User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
  2185 	TRequestStatus status1;
  2186 	r = repository1->NotifyRequest(KInt1, status1);
  2187 	TEST2(r, KErrNone);
  2188 
  2189 	User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
  2190 	r = repository2->Set(KInt1, 0);
  2191 	TEST2(r, KErrNone);
  2192 	User::WaitForAnyRequest();
  2193 	TEST(status1==KInt1);
  2194 	
  2195 	r = repository1->NotifyRequest(KInt1, status1);
  2196 	TEST2(r, KErrNone);
  2197 
  2198 	CleanupRepositoryCache();
  2199 
  2200 	r = repository2->Set(KInt1, 2);
  2201 	TEST2(r, KErrNone);
  2202 	User::WaitForAnyRequest();
  2203 	TEST(status1==KInt1);
  2204 	
  2205 	r = repository1->NotifyRequest(KInt1, status1);
  2206 	TEST2(r, KErrNone);
  2207 	
  2208 	CRepository* repository3;
  2209 	User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1));
  2210 	TRequestStatus status3;
  2211 	r = repository3->NotifyRequest(KInt1, status3);
  2212 	TEST2(r, KErrNone);
  2213 
  2214 	r = repository2->Set(KInt1, 0);
  2215 	TEST2(r, KErrNone);
  2216 	User::WaitForAnyRequest();
  2217 	TEST(status1==KInt1);
  2218 	TEST(status3==KInt1);
  2219 	
  2220 	r = repository1->NotifyRequest(KInt1, status1);
  2221 	TEST2(r, KErrNone);
  2222 	r = repository3->NotifyRequest(KInt1, status3);
  2223 	TEST2(r, KErrNone);
  2224 
  2225 	CleanupRepositoryCache();
  2226 
  2227 	r = repository2->Set(KInt1, 1);
  2228 	TEST2(r, KErrNone);
  2229 	User::WaitForAnyRequest();
  2230 	TEST(status1==KInt1);
  2231 	TEST(status3==KInt1);
  2232 
  2233 	CleanupStack::PopAndDestroy(3);
  2234 	// Kill the server to force clearing the cache
  2235 	KillCentRepServerL();
  2236 	User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1));
  2237 
  2238 	r = repository3->Get(KInt1, i);
  2239 	TEST2(r, KErrNone);
  2240 	TEST(i==1);
  2241 
  2242 	CleanupStack::PopAndDestroy();
  2243 	}
  2244 
  2245 /**
  2246 @SYMTestCaseID          PDS-CENTRALREPOSITORY-CT-4113
  2247 @SYMTestCaseDesc        Validates meta data is not lost before a transaction is committed
  2248                         when deleting a range of settings.
  2249 @SYMTestPriority        High
  2250 @SYMTestActions         1) Start a transaction.
  2251                         2) Delete a setting using the delete range function.
  2252                         3) Create a new setting (using the deleted key)
  2253                         4) Commit the transaction.
  2254                         5) Check the metadata of the setting.                     
  2255 @SYMTestExpectedResults When deleting a range of settings in a keyspace, and then 
  2256                         creating a new setting (with a key of a previously deleted setting)
  2257                         the meta data should not be reset to 0, it should take on the default
  2258                         metadata, if it exists.
  2259 @SYMDEF                 DEF144530
  2260 */
  2261 LOCAL_C void RangeDeleteMetaL()
  2262     {
  2263     TheTest.Next(_L(" @SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4113 "));
  2264 
  2265     TUint32 partialKey   = 0x0000004;
  2266     TUint32 mask         = 0xFFFFFFF;
  2267     TUint32 meta = 0;
  2268     TUint32 expectedMeta = 0x10; // 16 
  2269     TUint32 keyCount = 0;
  2270     TUint32 expectedKeyCount = 1;
  2271     TUint32 error;
  2272 
  2273     CRepository* repository;
  2274     User::LeaveIfNull(repository = CRepository::NewL(KUidTestRepository3)); // 00000103.txt
  2275     
  2276     repository->StartTransaction(CRepository::EReadWriteTransaction);
  2277 
  2278     // Only want to delete 1 specific key, using the range delete function.
  2279     TInt ret = repository->Delete(partialKey, mask, error);
  2280     // We don't care about 'error' if 'ret==KErrNone'.
  2281     TEST2(ret, KErrNone);  
  2282     
  2283     // Create a new setting that is the same key and type as the deleted one.
  2284     ret = repository->Create(partialKey, 200); 
  2285     TEST2(ret, KErrNone);
  2286     
  2287     ret = repository->CommitTransaction(keyCount);
  2288     TEST2(ret, KErrNone);
  2289     // Confirm only 1 setting was updated.
  2290     TEST2(keyCount, expectedKeyCount);
  2291     
  2292     // Check the meta data of the newly created setting. It should be the 
  2293     // the same as the defaultmeta value in the keyspace.
  2294     ret = repository->GetMeta(partialKey, meta);
  2295     TEST2(ret, KErrNone);
  2296     TEST2(meta, expectedMeta);
  2297     
  2298     delete repository;
  2299     }
  2300 
  2301 
  2302 /**
  2303 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-0494
  2304 @SYMTestCaseDesc		Tests the various functions on CentralRepository
  2305 @SYMTestPriority		High
  2306 @SYMTestActions			Tests the get/set,find,notify,create/delete,
  2307 						file searching in repository,the repository on drive c only
  2308 						Tests for multiple clients,for restoring factory settings.
  2309 @SYMTestExpectedResults Test must not fail
  2310 @SYMREQ					REQ0000
  2311 */
  2312 LOCAL_C void FuncTestsL()
  2313 	{
  2314 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0494 Open/Close repository "));
  2315 	OpenRepositoryL();
  2316 
  2317 	TheTest.Next(_L("Get/Set .ini"));
  2318 	GetSetL(KUidTestRepository1);
  2319 
  2320 	TheTest.Next(_L("Get/Set .cre"));
  2321 	GetSetL(KUidCreTestRepository1);
  2322 
  2323 	TheTest.Next(_L("Find"));
  2324 	FindL();
  2325 
  2326 	TheTest.Next(_L("Notify"));
  2327 	NotifyL();
  2328 
  2329 	TheTest.Next(_L("Create/Delete .ini"));
  2330 	CreateDeleteL(KUidTestRepository1);
  2331 
  2332 	TheTest.Next(_L("Create/Delete .cre"));
  2333 	CreateDeleteL(KUidCreTestRepository1);
  2334 
  2335 	TheTest.Next(_L("Initialisation file searching"));
  2336 	IniFileSearching();
  2337 
  2338 	TheTest.Next(_L("Repository on Drive C only"));
  2339 	RepositoryOnDriveC();
  2340 
  2341 	TheTest.Next(_L("Multiple clients"));
  2342 	MultiClientL();
  2343 
  2344 	TheTest.Next(_L("Restore factory settings"));
  2345 	ResetL();
  2346 
  2347 	TheTest.Next(_L("Restore factory settings from binary based rep"));
  2348 	ResetCreL();
  2349 
  2350 	TheTest.Next(_L("Negative testing for the notification cancelling"));
  2351 	CancelNotificationsL();
  2352 
  2353 	TheTest.Next(_L("Notify-only client optimizations"));
  2354 	NotifyOnlyL();
  2355 	
  2356 	TheTest.Next(_L("Meta data after a Range Delete in transaction"));
  2357     RangeDeleteMetaL();
  2358     
  2359 	TheTest.End();
  2360 	}
  2361 
  2362 /**
  2363 OomTest
  2364 Function to convert a test into an OOM test
  2365 
  2366 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-0495
  2367 @SYMTestCaseDesc		Out of memory test
  2368 @SYMTestPriority		High
  2369 @SYMTestActions			Tests for running out of memory
  2370 @SYMTestExpectedResults Test must not fail
  2371 @SYMREQ					REQ0000
  2372 */
  2373 LOCAL_C void OomTest(void (*testFuncL)())
  2374 	{
  2375 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0495 "));
  2376 	TInt error;
  2377 	TInt count = 0;
  2378 
  2379 	do
  2380 		{
  2381 		User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
  2382 		User::__DbgMarkStart(RHeap::EUser);
  2383 
  2384   		// find out the number of open handles
  2385 		TInt startProcessHandleCount;
  2386 		TInt startThreadHandleCount;
  2387 		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
  2388 
  2389 		TRAP(error, (testFuncL)());
  2390 
  2391 		// check that no handles have leaked
  2392 		TInt endProcessHandleCount;
  2393 		TInt endThreadHandleCount;
  2394 		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
  2395 
  2396 		TEST2(endProcessHandleCount, startProcessHandleCount);
  2397 		TEST2(endThreadHandleCount, startThreadHandleCount);
  2398 
  2399 		User::__DbgMarkEnd(RHeap::EUser, 0);
  2400 		} while(error == KErrNoMemory);
  2401 
  2402 	_LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
  2403 	__ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
  2404 
  2405 	User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
  2406 	}
  2407 
  2408 LOCAL_C void OomTestsL()
  2409 	{
  2410 	TheTest.Start(_L("Open/Close repository"));
  2411 	OomTest(OpenRepositoryL);
  2412 
  2413 	TheTest.Next(_L("GetSet for KUidTestRepository1"));
  2414 	GetSetL(KUidTestRepository1);
  2415 	TheTest.Next(_L("GetSet for KUidCreTestRepository1"));
  2416 	GetSetL(KUidCreTestRepository1);
  2417 
  2418 	TheTest.Next(_L("Find"));
  2419 	OomTest(FindL);
  2420 
  2421 	TheTest.End();
  2422 	}
  2423 
  2424 //This function tests the replacement of RFile with RFileBuf in CIniFileOut class (inifile.h)
  2425 //It shows that there is approx. 20% (LUBBOCK) performance boost when using simple "Set"
  2426 //operations. It may be even better when using "Commit" functionality.
  2427 static void PerformanceTestL()
  2428 	{
  2429 	CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository);
  2430 	CleanupStack::PushL(repository);
  2431 	//Test settings IDs
  2432 	const TUint KIntId = 101;
  2433 	const TUint KRealId = 102;
  2434 	const TUint KDes16Id = 103;
  2435 	const TUint KDes8Id = 104;
  2436 	//Create test settings
  2437 	TInt err = repository->Create(KIntId, 1);
  2438 	TEST2(err, KErrNone);
  2439 	err = repository->Create(KRealId, 1.1);
  2440 	TEST2(err, KErrNone);
  2441 	err = repository->Create(KDes16Id, _L16("DES16"));
  2442 	TEST2(err, KErrNone);
  2443 	err = repository->Create(KDes8Id, _L8("DES8"));
  2444 	TEST2(err, KErrNone);
  2445 	//Performance test
  2446 	TBuf16<32> buf16;
  2447 	TBuf8<32> buf8;
  2448 	TUint timeStart = User::TickCount();
  2449 	for(TInt i=0;i<500;++i)
  2450 		{
  2451 		buf16.Zero();
  2452 		buf16.AppendNum(i);
  2453 		buf8.Zero();
  2454 		buf8.AppendNum(i);
  2455 
  2456 		TInt err = repository->Set(KIntId, i);
  2457 		TEST2(err, KErrNone);
  2458 		err = repository->Set(KRealId, (TReal)i);
  2459 		TEST2(err, KErrNone);
  2460 		err = repository->Set(KDes16Id, buf16);
  2461 		TEST2(err, KErrNone);
  2462 		err = repository->Set(KDes8Id, buf8);
  2463 		TEST2(err, KErrNone);
  2464 		}
  2465 	TUint timeEnd = User::TickCount();
  2466 	CleanupStack::PopAndDestroy(repository);
  2467 	TheTest.Printf(_L("\nPerformanceTestL - %d ticks\n"), timeEnd-timeStart);
  2468 	}
  2469 
  2470 /**
  2471 @SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-CT-0497
  2472 @SYMTestCaseDesc		CentralRepository functionality test
  2473 @SYMTestPriority		High
  2474 @SYMTestActions			Wrapper function calling up test functions
  2475 @SYMTestExpectedResults Test must not fail
  2476 @SYMREQ					REQ0000
  2477 */
  2478 LOCAL_C void MainL()
  2479 	{
  2480 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0497 Functional tests "));
  2481 	OomTesting = EFalse;
  2482 	// Existance of caching functionality invalidates some tests and
  2483 	// makes them fail. So cleanup cace.
  2484 	RestoreTestFilesL();
  2485 	FuncTestsL();
  2486 
  2487 	TheTest.Next(_L("Out-of-memory tests"));
  2488 	OomTesting = ETrue;
  2489 	//Reset the KUidTestRepository1 which was modified by the previous test
  2490 	//and is used in the next test.
  2491 	ResetTestRepositoryL();
  2492 	OomTestsL();
  2493 
  2494 	TheTest.Next(_L("Performance test"));
  2495 	PerformanceTestL();
  2496 
  2497 	TheTest.Next(_L("Clean out C: files"));
  2498 	CleanupCDriveL();
  2499 
  2500 	TheTest.End();
  2501 	TheTest.Close();
  2502 	}
  2503 
  2504 TInt E32Main()
  2505 	{
  2506 	__UHEAP_MARK;
  2507 	CTrapCleanup* cleanup = CTrapCleanup::New();
  2508 	if(!cleanup)
  2509 		return KErrNoMemory;
  2510 
  2511 	TRAPD(err, MainL());
  2512 	if (err != KErrNone)
  2513 		User::Panic(_L("Testing failed: "), err);
  2514 
  2515 	delete cleanup;
  2516 	__UHEAP_MARKEND;
  2517 
  2518 	return 0;
  2519 	}