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