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