os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_fotaUT.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) 2008-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 <e32test.h>
sl@0
    17
#include <f32file.h>
sl@0
    18
#include <badesca.h>
sl@0
    19
sl@0
    20
#include "srvrepos_noc.h"
sl@0
    21
#include "srvres.h"
sl@0
    22
#include "cachemgr.h"
sl@0
    23
#include "sessnotf.h"
sl@0
    24
#include "t_cenrep_helper.h"
sl@0
    25
sl@0
    26
#include "testexecute/SWI/src/tui.h"
sl@0
    27
#include <swi/launcher.h>
sl@0
    28
#include "swi/sisregistrysession.h"
sl@0
    29
#include "swi/sisregistrypackage.h"
sl@0
    30
#include "swi/sisregistryentry.h"
sl@0
    31
sl@0
    32
sl@0
    33
RTest TheTest(_L("Central Repository FOTx Unit Tests"));
sl@0
    34
sl@0
    35
_LIT(KCachedVersionFile,"C:\\private\\10202be9\\romversion\\romversion_info.txt");
sl@0
    36
_LIT(KModified2RepositoryCre,"z:\\private\\10202be9\\10033333_modified2.cre");
sl@0
    37
_LIT(KPersistsRepositoryCre,"C:\\private\\10202be9\\persists\\10033333.cre");
sl@0
    38
_LIT(KStoredSWIRepository,"z:\\private\\10202be9\\10033333_modified3.cre");
sl@0
    39
_LIT(KSWIInstallRepository,"C:\\private\\10202be9\\10033333.cre");
sl@0
    40
_LIT(KModifiedSwVersion, "z:\\private\\10202be9\\sw_modified.txt");
sl@0
    41
_LIT(KStoredRepository,"z:\\private\\10202be9\\10033340_reserved.cre");
sl@0
    42
_LIT(KStoredRepository2,"z:\\private\\10202be9\\10033341_orig.cre");
sl@0
    43
_LIT(KPersistsBasedRepository,"C:\\private\\10202be9\\persists\\10033340.cre");
sl@0
    44
_LIT(KPersistsBasedRepository2,"C:\\private\\10202be9\\persists\\10033341.cre");
sl@0
    45
sl@0
    46
_LIT(KRomRepositoryCre1,"z:\\private\\10202be9\\10043336_persists.cre");
sl@0
    47
_LIT(KRomRepositoryCre2,"z:\\private\\10202be9\\10043337_persists.cre");
sl@0
    48
_LIT(KRomRepositoryCre3,"z:\\private\\10202be9\\10043338_persists.cre");
sl@0
    49
_LIT(KPersistsRepositoryCre1,"C:\\private\\10202be9\\persists\\10043336.cre");
sl@0
    50
_LIT(KPersistsRepositoryCre2,"C:\\private\\10202be9\\persists\\10043337.cre");
sl@0
    51
_LIT(KPersistsRepositoryCre3,"C:\\private\\10202be9\\persists\\10043338.cre");
sl@0
    52
sl@0
    53
sl@0
    54
_LIT(KSisFile,"z:\\private\\10202be9\\RF1.sis");
sl@0
    55
_LIT(KSisFile2,"z:\\private\\10202be9\\RF4.sis");
sl@0
    56
sl@0
    57
const TUid KUidRomRepositoryList[]   = {0x10033333,0x10033340,0x10033341,0x10043336,0x10043337,0x10043338};
sl@0
    58
const TUint32 KNewSettingList[]      = {1000,1001,0x2300,0x02010000};
sl@0
    59
const TUint32 KModifiedSettingList[] = {0x04010200,0x04010400,0x03010100};
sl@0
    60
const TUint32 KDeletedSettingList[]  = {0x03010500,0x04010100,0x02010300};
sl@0
    61
const TUint32 KSWIBasedSettingList[] = {0x08010100};
sl@0
    62
const TInt KSettingValueList[]       = {1234,1111,12345,10,200,400};
sl@0
    63
sl@0
    64
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    65
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    66
//Test macroses and functions
sl@0
    67
sl@0
    68
LOCAL_C void DeleteFilesL()
sl@0
    69
	{
sl@0
    70
	_LIT( KOldInstallFiles, "c:\\private\\10202BE9\\*.cre" );
sl@0
    71
	_LIT( KOldPersistsFiles, "c:\\private\\10202BE9\\persists\\100*.cre" );
sl@0
    72
	_LIT( KOldRomVersionFiles, "c:\\private\\10202BE9\\romversion\\romversion_info.t*" );
sl@0
    73
	CFileMan* fm = CFileMan::NewL( TServerResources::iFs );
sl@0
    74
	CleanupStack::PushL( fm );
sl@0
    75
sl@0
    76
	TInt r = fm->Delete( KOldInstallFiles );
sl@0
    77
	if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
    78
		User::Leave(r);
sl@0
    79
	r = fm->Delete( KOldPersistsFiles);
sl@0
    80
	if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
    81
		User::Leave(r);
sl@0
    82
	r = fm->Delete( KOldRomVersionFiles,CFileMan::ERecurse);
sl@0
    83
	if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
    84
		User::Leave(r);
sl@0
    85
sl@0
    86
	CleanupStack::PopAndDestroy( fm );
sl@0
    87
	}
sl@0
    88
sl@0
    89
LOCAL_C void Check( TInt aValue, TInt aLine )
sl@0
    90
	{
sl@0
    91
	if ( !aValue )
sl@0
    92
		{
sl@0
    93
		TheTest( EFalse, aLine );
sl@0
    94
		}
sl@0
    95
	}
sl@0
    96
sl@0
    97
LOCAL_C void Check( TInt aValue, TInt aExpected, TInt aLine )
sl@0
    98
	{
sl@0
    99
	if ( aValue != aExpected )
sl@0
   100
		{
sl@0
   101
		RDebug::Print( _L( "*** Expected error: %d, got: %d\r\n"), aExpected, aValue );
sl@0
   102
		TheTest( EFalse, aLine );
sl@0
   103
		}
sl@0
   104
	}
sl@0
   105
sl@0
   106
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   107
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   108
sl@0
   109
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   110
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   111
sl@0
   112
LOCAL_C void CleanUp()
sl@0
   113
	{
sl@0
   114
	// If cache manager is initialized and used before, we flush it
sl@0
   115
	if (TServerResources::iCacheManager)
sl@0
   116
		{
sl@0
   117
		TServerResources::iCacheManager->FlushCache();
sl@0
   118
		}
sl@0
   119
	// To get rid of the iOpenRepositories array leaking problem during OOM testing.
sl@0
   120
	TServerResources::iObserver->CloseiOpenRepositories();
sl@0
   121
	TServerResources::iObserver->Reset();
sl@0
   122
	// To get rid of the array leaking problems during OOM testing.
sl@0
   123
	TServerResources::iOwnerIdLookUpTable.Reset();
sl@0
   124
	User::After(KGeneralDelay);
sl@0
   125
	}
sl@0
   126
sl@0
   127
LOCAL_C void PerformSWIinstallL(const TDesC& aSisFileName)
sl@0
   128
{
sl@0
   129
//********************************************************
sl@0
   130
//Requires stub file to be set up before it will work
sl@0
   131
//requires techview
sl@0
   132
//********************************************************
sl@0
   133
   	using namespace Swi;
sl@0
   134
   	TUI* Ui = new(ELeave) TUI();
sl@0
   135
   	CInstallPrefs* prefs = CInstallPrefs::NewLC();
sl@0
   136
   	TInt err = Launcher::Install(*Ui, aSisFileName, *prefs);
sl@0
   137
   	delete Ui;
sl@0
   138
 	TEST2(err, KErrNone);
sl@0
   139
   	CleanupStack::PopAndDestroy();//prefs
sl@0
   140
sl@0
   141
    User::After(KGeneralDelay);
sl@0
   142
sl@0
   143
	// If cache manager is initialized and used before, we flush it
sl@0
   144
	CleanUp();
sl@0
   145
}
sl@0
   146
sl@0
   147
LOCAL_C void UserModifyRepositoryL()
sl@0
   148
{
sl@0
   149
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   150
	CleanupStack::PushL(notifier);
sl@0
   151
sl@0
   152
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   153
    CleanupStack::PushL(repository);
sl@0
   154
sl@0
   155
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   156
sl@0
   157
    User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction));
sl@0
   158
sl@0
   159
	TInt err = repository->TransactionDeleteL(KDeletedSettingList[0]);
sl@0
   160
	TEST2(err,KErrNone);
sl@0
   161
sl@0
   162
	err = repository->TransactionCreateL(KNewSettingList[1],KSettingValueList[0],NULL);
sl@0
   163
	TEST2(err,KErrNone);
sl@0
   164
	err = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL);
sl@0
   165
	TEST2(err,KErrNone);
sl@0
   166
	err = repository->TransactionDeleteL(KDeletedSettingList[2]);
sl@0
   167
 	TEST2(err,KErrNone);
sl@0
   168
 	err = repository->TransactionDeleteL(KNewSettingList[1]);//remove a setting added by the user
sl@0
   169
 	TEST2(err,KErrNone);
sl@0
   170
	err = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]);
sl@0
   171
	TEST2(err,KErrNone);
sl@0
   172
sl@0
   173
	TUint32 tempKeyInfo;
sl@0
   174
	User::LeaveIfError(repository->CommitTransaction(tempKeyInfo));
sl@0
   175
sl@0
   176
	repository->Close();
sl@0
   177
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   178
}
sl@0
   179
sl@0
   180
LOCAL_C void UserModifyRepository2L()
sl@0
   181
{
sl@0
   182
	//Have the user add,delete and modify some entries
sl@0
   183
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   184
	CleanupStack::PushL(notifier);
sl@0
   185
sl@0
   186
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   187
    CleanupStack::PushL(repository);
sl@0
   188
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   189
sl@0
   190
    User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction));
sl@0
   191
   	//0x03010500 has been deleted by user in modified persisted repository.
sl@0
   192
    //but this rom based deleted setting, should have been reinstated by the SWI, which also contains it.
sl@0
   193
	TInt settingValue = 0;
sl@0
   194
	TInt r = repository->Get(KDeletedSettingList[2], settingValue);
sl@0
   195
	TEST(r == KErrNone);
sl@0
   196
sl@0
   197
	//delete the SWI and rom based setting, it should be reinstated after the rom update.
sl@0
   198
	r = repository->TransactionDeleteL(KDeletedSettingList[2]);
sl@0
   199
 	TEST2(r,KErrNone);
sl@0
   200
	//
sl@0
   201
	//Modify setting
sl@0
   202
	r = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]);
sl@0
   203
	TEST2(r,KErrNone);
sl@0
   204
	//Add and delete a user setting
sl@0
   205
	r = repository->TransactionCreateL(KNewSettingList[1],KSettingValueList[0],NULL);
sl@0
   206
	TEST2(r,KErrNone);
sl@0
   207
	 r = repository->TransactionDeleteL(KNewSettingList[1]);//remove a setting added by the user
sl@0
   208
 	TEST2(r,KErrNone);
sl@0
   209
 	//Add a user setting
sl@0
   210
	r = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL);
sl@0
   211
	TEST2(r,KErrNone);
sl@0
   212
sl@0
   213
	TUint32 tempKeyInfo;
sl@0
   214
	User::LeaveIfError(repository->CommitTransaction(tempKeyInfo));
sl@0
   215
	repository->Close();
sl@0
   216
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   217
}
sl@0
   218
sl@0
   219
LOCAL_C void VerifyCorrectMergingL(TInt aVerifySwi = EFalse)
sl@0
   220
{
sl@0
   221
	//Check the merge content for correctness.
sl@0
   222
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   223
	CleanupStack::PushL(notifier);
sl@0
   224
sl@0
   225
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   226
    CleanupStack::PushL(repository);
sl@0
   227
sl@0
   228
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   229
sl@0
   230
	//Get the rom based user deleted setting, it should have been reinstated.
sl@0
   231
	TInt settingValue = 0;
sl@0
   232
	TInt r = repository->Get(KDeletedSettingList[2], settingValue);
sl@0
   233
	TEST(r == KErrNone);
sl@0
   234
	//Get the user based deleted setting, it should still be missing.
sl@0
   235
	r = repository->Get(KNewSettingList[1], settingValue);
sl@0
   236
	TEST(r == KErrNotFound);
sl@0
   237
	//Get the user added setting.
sl@0
   238
	r = repository->Get(KNewSettingList[2], settingValue);
sl@0
   239
	TEST(r == KErrNone);
sl@0
   240
	//Get user modified settings. It should contain the user modification
sl@0
   241
	r = repository->Get(KModifiedSettingList[2], settingValue);
sl@0
   242
	TEST(r == KErrNone);
sl@0
   243
	TEST(settingValue == KSettingValueList[2]);
sl@0
   244
sl@0
   245
	if(aVerifySwi)
sl@0
   246
	{
sl@0
   247
	//Get SWI modified settings for a clean rom value. It should contain the SWI modification
sl@0
   248
	settingValue = 0;
sl@0
   249
	r = repository->Get(KModifiedSettingList[0], settingValue);
sl@0
   250
	TEST(r == KErrNone);
sl@0
   251
	TEST(settingValue == KSettingValueList[2]);
sl@0
   252
	//Get SWI added setting
sl@0
   253
	r = repository->Get(KNewSettingList[0], settingValue);
sl@0
   254
	TEST(r == KErrNone);
sl@0
   255
	}
sl@0
   256
	repository->Close();
sl@0
   257
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   258
}
sl@0
   259
sl@0
   260
/**
sl@0
   261
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4025
sl@0
   262
@SYMTestCaseDesc		This test verifies that a locally persisted copy of the rom version file
sl@0
   263
						is created after a call to CheckROMReflashL
sl@0
   264
@SYMTestPriority		High
sl@0
   265
@SYMTestActions			Remove locally persisted rom version file.
sl@0
   266
						Call CheckROMReflashL to simulate a reboot of cenrep.
sl@0
   267
						Check that locally persisted copy of rom version file is created.
sl@0
   268
@SYMTestExpectedResults Persisted copy of rom version file has been created.
sl@0
   269
@SYMCR					CR1198
sl@0
   270
*/
sl@0
   271
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4025L()
sl@0
   272
{
sl@0
   273
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4025 " ) );
sl@0
   274
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   275
sl@0
   276
	// Remove locally stored rom version file if it exists
sl@0
   277
	TInt err = fm->Delete(KCachedVersionFile);
sl@0
   278
	if((err != KErrNotFound) && (err != KErrNone))
sl@0
   279
	  {
sl@0
   280
	  RDebug::Print( _L( "*** UnExpected error: %d\r\n"), err );
sl@0
   281
	  TheTest( EFalse, __LINE__ );
sl@0
   282
	  }
sl@0
   283
sl@0
   284
	delete fm;//fm
sl@0
   285
	CServerRepository::CheckROMReflashL();
sl@0
   286
	User::After(KGeneralDelay);//Allow the filesystem to write the files.
sl@0
   287
sl@0
   288
	TEntry entry;
sl@0
   289
	TEST(TServerResources::iFs.Entry(KCachedVersionFile,entry) == KErrNone);
sl@0
   290
sl@0
   291
}
sl@0
   292
sl@0
   293
/**
sl@0
   294
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4026
sl@0
   295
@SYMTestCaseDesc		This test verifies that when the locally persisted copy of the rom version file
sl@0
   296
						is equal to the rom version file then no merging takes place.
sl@0
   297
@SYMTestPriority		High
sl@0
   298
@SYMTestActions			Remove a rom based setting.
sl@0
   299
						Call CheckROMReflashL to simulate a reboot of cenrep.
sl@0
   300
						Check that the deleted value hasnt been reinstated.
sl@0
   301
@SYMTestExpectedResults Deleted value hasnt been reinstated, demonstrating that no merge took place.
sl@0
   302
@SYMCR					CR1198
sl@0
   303
*/
sl@0
   304
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4026L()
sl@0
   305
{
sl@0
   306
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4026 " ) );
sl@0
   307
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   308
sl@0
   309
	//Initial cleanup
sl@0
   310
	fm->Delete(KPersistsRepositoryCre);
sl@0
   311
	delete fm;//fm
sl@0
   312
sl@0
   313
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   314
	CleanupStack::PushL(notifier);
sl@0
   315
sl@0
   316
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   317
    CleanupStack::PushL(repository);
sl@0
   318
sl@0
   319
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   320
sl@0
   321
	//Attempt to retrieve a setting before deleting it.
sl@0
   322
    User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction));
sl@0
   323
	TInt settingValue = 0;
sl@0
   324
	TInt r = repository->Get(KDeletedSettingList[0], settingValue);
sl@0
   325
	TEST(r == KErrNone);
sl@0
   326
sl@0
   327
	repository->TransactionDeleteL(KDeletedSettingList[0]);
sl@0
   328
	TUint32 tempKeyInfo;
sl@0
   329
	User::LeaveIfError(repository->CommitTransaction(tempKeyInfo));
sl@0
   330
sl@0
   331
	repository->Close();
sl@0
   332
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   333
sl@0
   334
	//Dont Copy modified stored rom version info so that no rom update should take place
sl@0
   335
sl@0
   336
	// flush cache
sl@0
   337
	CleanUp();
sl@0
   338
sl@0
   339
	CServerRepository::CheckROMReflashL();
sl@0
   340
sl@0
   341
	notifier = new(ELeave)CSessionNotifier;
sl@0
   342
	CleanupStack::PushL(notifier);
sl@0
   343
sl@0
   344
    repository = new(ELeave) CServerRepository();
sl@0
   345
    CleanupStack::PushL(repository);
sl@0
   346
sl@0
   347
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   348
sl@0
   349
	r = repository->Get(KDeletedSettingList[0], settingValue);
sl@0
   350
	TEST(r == KErrNotFound);//It hasnt been reinstated.
sl@0
   351
sl@0
   352
	repository->Close();
sl@0
   353
sl@0
   354
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   355
sl@0
   356
	// If cache manager is initialized and used before, we flush it
sl@0
   357
	CleanUp();
sl@0
   358
}
sl@0
   359
sl@0
   360
/**
sl@0
   361
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4027
sl@0
   362
@SYMTestCaseDesc		This test verifies that after a rom flash, rom and user modified values are merged correctly.
sl@0
   363
@SYMTestPriority		High
sl@0
   364
@SYMTestActions			Open a repository and create two settings.
sl@0
   365
						Delete a rom based setting.
sl@0
   366
						Delete on of the new settings.
sl@0
   367
						Remove a rom based setting.
sl@0
   368
						Modify a rom based setting.
sl@0
   369
						Call CheckROMReflashL to simulate a reboot of cenrep.
sl@0
   370
						Check that the deleted rom base value has been reinstated.
sl@0
   371
						Check that the deleted user setting hasnt been reinstated.
sl@0
   372
sl@0
   373
@SYMTestExpectedResults Deleted user value hasnt been reinstated.
sl@0
   374
						Deleted rom based value has been reinstated.
sl@0
   375
						Other User added setting is present.
sl@0
   376
						User modified setting contains user value.
sl@0
   377
@SYMCR					CR1198
sl@0
   378
*/
sl@0
   379
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4027L()
sl@0
   380
{
sl@0
   381
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4027 " ) );//Force a rom update for this repository.
sl@0
   382
sl@0
   383
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   384
	CleanupStack::PushL(fm);
sl@0
   385
sl@0
   386
	//Initial cleanup
sl@0
   387
	fm->Delete(KPersistsRepositoryCre);
sl@0
   388
sl@0
   389
	//Copy of modified stored rom version info
sl@0
   390
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   391
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   392
	User::After(KGeneralDelay);
sl@0
   393
sl@0
   394
	UserModifyRepositoryL();
sl@0
   395
sl@0
   396
	// flush the cache manager contents.
sl@0
   397
	CleanUp();
sl@0
   398
sl@0
   399
	CServerRepository::CheckROMReflashL();
sl@0
   400
sl@0
   401
	VerifyCorrectMergingL(EFalse);
sl@0
   402
sl@0
   403
	//Final Cleanup
sl@0
   404
	fm->Delete(KPersistsRepositoryCre);
sl@0
   405
sl@0
   406
	CleanupStack::PopAndDestroy();//fm
sl@0
   407
sl@0
   408
	// If cache manager is initialized and used before, we flush it
sl@0
   409
	CleanUp();
sl@0
   410
}
sl@0
   411
sl@0
   412
/**
sl@0
   413
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4028
sl@0
   414
@SYMTestCaseDesc		This test verifies that repositories that exist in persists directory but have
sl@0
   415
						no basis in install or rom are removed after a rom update.
sl@0
   416
@SYMTestPriority		High
sl@0
   417
@SYMTestActions			Copy a repository into the persists directory that has no rom or SWI equivalent.
sl@0
   418
						Call CheckROMReflashL to simulate a reboot of cenrep.
sl@0
   419
						Verify that the persisted repository is removed.
sl@0
   420
sl@0
   421
@SYMTestExpectedResults Persisted repository is removed during rom update.
sl@0
   422
@SYMCR					CR1198
sl@0
   423
*/
sl@0
   424
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4028L()
sl@0
   425
{
sl@0
   426
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4028 " ) );
sl@0
   427
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   428
	CleanupStack::PushL(fm);
sl@0
   429
sl@0
   430
	//Initial cleanup
sl@0
   431
	fm->Delete(KPersistsBasedRepository);
sl@0
   432
sl@0
   433
	//Place a repository in persists that has no basis in SWI or rom and it should be removed.
sl@0
   434
	//by the rom update as it will look like a rom based repository that has been removed by
sl@0
   435
	//the update.
sl@0
   436
sl@0
   437
	//Copy the repository that isnt in SWI or ROM to persists
sl@0
   438
	//Copy 100333340_reserved to 100333340.cre persists
sl@0
   439
	User::LeaveIfError(fm->Copy(KStoredRepository,KPersistsBasedRepository,CFileMan::EOverWrite));
sl@0
   440
	User::LeaveIfError(fm->Attribs(KPersistsBasedRepository,0,KEntryAttReadOnly,TTime(0)));
sl@0
   441
	User::After(KGeneralDelay);
sl@0
   442
	//Copy of modified stored rom version info
sl@0
   443
sl@0
   444
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   445
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   446
	User::After(KGeneralDelay);
sl@0
   447
	CleanupStack::PopAndDestroy();//fm
sl@0
   448
sl@0
   449
	CServerRepository::CheckROMReflashL();
sl@0
   450
	TEntry entry;
sl@0
   451
sl@0
   452
	TEST(TServerResources::iFs.Entry(KPersistsBasedRepository,entry) == KErrNotFound);
sl@0
   453
sl@0
   454
}
sl@0
   455
sl@0
   456
/**
sl@0
   457
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4029
sl@0
   458
@SYMTestCaseDesc		This test verifies that a repository is merged correctly with SWI and user changes after a rom update.
sl@0
   459
@SYMTestPriority		High
sl@0
   460
@SYMTestActions			Copy a prepared repository into the persists directory that contains clean
sl@0
   461
						settings that do not exist in its rom equivalent,missing settings that exist in
sl@0
   462
						its rom equivalent and user modified settings that differ from its rom equivalent.
sl@0
   463
						Perform an SWI install to modify and add some settings.
sl@0
   464
						The user adds,deletes and modifies some settings.
sl@0
   465
						Copy a modified rom version file over the locally persisted rom version file.
sl@0
   466
						Call CheckROMReflashL to simulate a reboot of cenrep.
sl@0
   467
@SYMTestExpectedResults Verify that the persisted repository clean settings that do not exist in rom equivalent are removed.
sl@0
   468
						Verify that settings in the rom repository that are not in the persisted repository are added.
sl@0
   469
						Verify that user modified settings retain user values.
sl@0
   470
						Verify that the rom based user deleted setting are reinstated.
sl@0
   471
						Verify that the user based deleted setting is not present.
sl@0
   472
						Verify the user added setting exists.
sl@0
   473
@SYMCR					CR1198
sl@0
   474
*/
sl@0
   475
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4029L()
sl@0
   476
{
sl@0
   477
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4029 " ) );
sl@0
   478
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   479
	CleanupStack::PushL(fm);
sl@0
   480
sl@0
   481
	//Initial cleanup
sl@0
   482
	fm->Delete(KPersistsRepositoryCre);
sl@0
   483
sl@0
   484
	//Merge User, Rom and SWI settings.
sl@0
   485
	//Need to copy a repository into the persists, that has a variance from the rom based
sl@0
   486
	//repository to give the impression that some of the rom based entries have been modified,
sl@0
   487
	// removed and added by the rom update.
sl@0
   488
	//Copy a modified repository
sl@0
   489
sl@0
   490
	User::LeaveIfError(fm->Copy(KModified2RepositoryCre,KPersistsRepositoryCre,CFileMan::EOverWrite));
sl@0
   491
	User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre,0,KEntryAttReadOnly,TTime(0)));
sl@0
   492
	User::After(KGeneralDelay);
sl@0
   493
	//Have SWI add and modify some entries.
sl@0
   494
    TFileName SisFileName;
sl@0
   495
    SisFileName.Copy(KSisFile);
sl@0
   496
sl@0
   497
    PerformSWIinstallL(SisFileName);
sl@0
   498
	User::After(KGeneralDelay*5);
sl@0
   499
sl@0
   500
	UserModifyRepository2L();
sl@0
   501
sl@0
   502
	//flush cachemanager contents
sl@0
   503
	CleanUp();
sl@0
   504
sl@0
   505
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   506
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   507
	User::After(KGeneralDelay);
sl@0
   508
sl@0
   509
	CleanupStack::PopAndDestroy();//fm
sl@0
   510
sl@0
   511
	CServerRepository::CheckROMReflashL();
sl@0
   512
sl@0
   513
	VerifyCorrectMergingL(ETrue);
sl@0
   514
sl@0
   515
	// If cache manager is initialized and used before, we flush it
sl@0
   516
	CleanUp();
sl@0
   517
}
sl@0
   518
sl@0
   519
/**
sl@0
   520
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4030
sl@0
   521
@SYMTestCaseDesc		A repository is removed from the ROM but has an SWI, it remains on the C:\
sl@0
   522
						but all clean settings that do not exist in the SWI install file are removed.
sl@0
   523
@SYMTestPriority		High
sl@0
   524
@SYMTestActions			Copy a prepared repository into the persists directory that has no basis
sl@0
   525
						in ROM.
sl@0
   526
						Perform an SWI, that adds new keys to the persisted repository.
sl@0
   527
						Have the user create a new entry.
sl@0
   528
						Have the user modify a rom based entry.
sl@0
   529
						Update the locally persisted rom version file.
sl@0
   530
						Call CheckROMReflashL to simulate a centrep reboot.
sl@0
   531
@SYMTestExpectedResults Verify the user modified rom based setting exists.
sl@0
   532
						Verify that a clean rom based setting is removed.
sl@0
   533
						Verify that a sample of the SWI based setting exists.
sl@0
   534
@SYMCR					CR1198
sl@0
   535
*/
sl@0
   536
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4030L()
sl@0
   537
{
sl@0
   538
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4030 " ) );
sl@0
   539
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   540
	CleanupStack::PushL(fm);
sl@0
   541
sl@0
   542
	//Initial cleanup
sl@0
   543
	DeleteFilesL();
sl@0
   544
sl@0
   545
	//Remove ROM and Merge User and SWI settings.
sl@0
   546
	//Need to copy a prepared repository into the persists,that has more entries than the SWI based
sl@0
   547
	//repository to simulate that some of the rom based entries have been removed,
sl@0
   548
	//by the rom update. All the clean entries should be removed, leaving only user modified ones and common SWI ones.
sl@0
   549
	User::LeaveIfError(fm->Copy(KStoredRepository2,KPersistsBasedRepository2,CFileMan::EOverWrite));
sl@0
   550
	User::LeaveIfError(fm->Attribs(KPersistsBasedRepository2,0,KEntryAttReadOnly,TTime(0)));
sl@0
   551
	User::After(KGeneralDelay);
sl@0
   552
	//Have SWI add some entries 0x08010100-500.
sl@0
   553
    TFileName SisFileName;
sl@0
   554
    SisFileName.Copy(KSisFile2);
sl@0
   555
sl@0
   556
    PerformSWIinstallL(SisFileName);
sl@0
   557
	User::After(KGeneralDelay*2);
sl@0
   558
sl@0
   559
	//Have the user add and modify some rom based entries
sl@0
   560
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   561
	CleanupStack::PushL(notifier);
sl@0
   562
sl@0
   563
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   564
    CleanupStack::PushL(repository);
sl@0
   565
    repository->OpenL(KUidRomRepositoryList[2],*notifier);
sl@0
   566
sl@0
   567
    User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction));
sl@0
   568
   	//
sl@0
   569
	//Modify setting
sl@0
   570
	TInt r = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]);
sl@0
   571
	TEST2(r,KErrNone);
sl@0
   572
sl@0
   573
 	//Add a setting
sl@0
   574
	r = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL);
sl@0
   575
	TEST2(r,KErrNone);
sl@0
   576
sl@0
   577
 	//Get some clean rom based settings to show they are present
sl@0
   578
 	TInt settingValue = 0;
sl@0
   579
	r = repository->Get(KModifiedSettingList[0], settingValue);
sl@0
   580
	TEST(r == KErrNone);
sl@0
   581
sl@0
   582
 	//Get some clean rom based settings to show they are present
sl@0
   583
 	settingValue = 0;
sl@0
   584
	r = repository->Get(KModifiedSettingList[1], settingValue);
sl@0
   585
	TEST(r == KErrNone);
sl@0
   586
sl@0
   587
	TUint32 tempKeyInfo;
sl@0
   588
	User::LeaveIfError(repository->CommitTransaction(tempKeyInfo));
sl@0
   589
	repository->Close();
sl@0
   590
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   591
sl@0
   592
	// If cache manager is initialized and used before, we flush it
sl@0
   593
	CleanUp();
sl@0
   594
sl@0
   595
	//Copy of modified stored rom version info
sl@0
   596
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   597
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   598
	User::After(KGeneralDelay);
sl@0
   599
	CleanupStack::PopAndDestroy();//fm
sl@0
   600
sl@0
   601
	CServerRepository::CheckROMReflashL();
sl@0
   602
sl@0
   603
	//Check the merge content for correctness.
sl@0
   604
	notifier = new(ELeave)CSessionNotifier;
sl@0
   605
	CleanupStack::PushL(notifier);
sl@0
   606
sl@0
   607
    repository = new(ELeave) CServerRepository();
sl@0
   608
    CleanupStack::PushL(repository);
sl@0
   609
    repository->OpenL(KUidRomRepositoryList[2],*notifier);
sl@0
   610
sl@0
   611
	//Get the rom based user modified setting it should still be there
sl@0
   612
	settingValue = 0;
sl@0
   613
	r = repository->Get(KModifiedSettingList[2], settingValue);
sl@0
   614
	TEST(r == KErrNone);
sl@0
   615
sl@0
   616
	//Get the rom only based clean setting, it should still be missing.
sl@0
   617
	r = repository->Get(KModifiedSettingList[0], settingValue);
sl@0
   618
	TEST(r == KErrNotFound);
sl@0
   619
sl@0
   620
	//Get the rom only based clean setting, it should still be missing.
sl@0
   621
	r = repository->Get(KModifiedSettingList[1], settingValue);
sl@0
   622
	TEST(r == KErrNotFound);
sl@0
   623
sl@0
   624
	//Get SWI based setting. It should be there
sl@0
   625
	r = repository->Get(KSWIBasedSettingList[0], settingValue);
sl@0
   626
	TEST(r == KErrNone);
sl@0
   627
sl@0
   628
	//Get user based setting. It should be there
sl@0
   629
	r = repository->Get(KNewSettingList[2], settingValue);
sl@0
   630
	TEST(r == KErrNone);
sl@0
   631
	repository->Close();
sl@0
   632
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   633
sl@0
   634
	// If cache manager is initialized and used before, we flush it
sl@0
   635
	CleanUp();
sl@0
   636
}
sl@0
   637
sl@0
   638
/**
sl@0
   639
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4031
sl@0
   640
@SYMTestCaseDesc		Test that repository settings that are altered by SWI value are not overwritten by a rom flash.
sl@0
   641
						SWI values dominate ROM values.
sl@0
   642
@SYMTestPriority		High
sl@0
   643
@SYMTestActions			Copy a prepared repository into the persists directory and into the install directory.
sl@0
   644
						There exists and equivalent rom based version of this repository with different values.
sl@0
   645
						Update the locally persisted rom version file.
sl@0
   646
						Call CheckROMReflashL to simulate a centrep reboot.
sl@0
   647
@SYMTestExpectedResults Verify the user modified rom based setting exists.
sl@0
   648
						Verify that some settings that exists within ROM and SWI has SWI values.
sl@0
   649
@SYMCR					CR1198
sl@0
   650
*/
sl@0
   651
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4031L()
sl@0
   652
{
sl@0
   653
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4031 " ) );
sl@0
   654
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   655
	CleanupStack::PushL(fm);
sl@0
   656
sl@0
   657
	//Initial cleanup
sl@0
   658
	fm->Delete(KPersistsRepositoryCre);
sl@0
   659
	fm->Delete(KSWIInstallRepository);
sl@0
   660
sl@0
   661
	//Simulate an SWI install by having the modified repository in the install and persists directory.
sl@0
   662
	User::LeaveIfError(fm->Copy(KStoredSWIRepository,KPersistsRepositoryCre,CFileMan::EOverWrite));
sl@0
   663
	User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre,0,KEntryAttReadOnly,TTime(0)));
sl@0
   664
	User::After(KGeneralDelay);
sl@0
   665
	User::LeaveIfError(fm->Copy(KStoredSWIRepository,KSWIInstallRepository,CFileMan::EOverWrite));
sl@0
   666
	User::LeaveIfError(fm->Attribs(KSWIInstallRepository,0,KEntryAttReadOnly,TTime(0)));
sl@0
   667
	User::After(KGeneralDelay);
sl@0
   668
sl@0
   669
	//Copy of modified stored rom version info
sl@0
   670
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   671
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   672
	User::After(KGeneralDelay);
sl@0
   673
	CleanupStack::PopAndDestroy();//fm
sl@0
   674
sl@0
   675
	CServerRepository::CheckROMReflashL();
sl@0
   676
sl@0
   677
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   678
	CleanupStack::PushL(notifier);
sl@0
   679
sl@0
   680
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   681
    CleanupStack::PushL(repository);
sl@0
   682
    repository->OpenL(KUidRomRepositoryList[0],*notifier);
sl@0
   683
sl@0
   684
   	//Get the rom based user modified setting it should still be there
sl@0
   685
	TInt settingValue = 0;
sl@0
   686
	TInt r = repository->Get(KModifiedSettingList[0], settingValue);
sl@0
   687
	TEST(r == KErrNone);
sl@0
   688
	TEST(settingValue == KSettingValueList[4]);
sl@0
   689
sl@0
   690
	//Get the rom and SWI setting it should have SWI value
sl@0
   691
	r = repository->Get(KModifiedSettingList[1], settingValue);
sl@0
   692
	TEST(r == KErrNone);
sl@0
   693
	TEST(settingValue == KSettingValueList[5]);
sl@0
   694
sl@0
   695
	//Get the rom and SWI setting it should have SWI value
sl@0
   696
	r = repository->Get(KModifiedSettingList[2], settingValue);
sl@0
   697
	TEST(r == KErrNone);
sl@0
   698
	TEST(settingValue == KSettingValueList[2]);
sl@0
   699
sl@0
   700
	repository->Close();
sl@0
   701
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   702
sl@0
   703
	// If cache manager is initialized and used before, we flush it
sl@0
   704
	CleanUp();
sl@0
   705
}
sl@0
   706
sl@0
   707
/**
sl@0
   708
@SYMTestCaseID			SYSLIB-CENTRALREPOSITORY-UT-4032
sl@0
   709
@SYMTestCaseDesc		This test checks that after a rom flash that contains a corrupt repository.
sl@0
   710
						The corrupt repository is skipped and the non corrupt repositories are processed as normal.
sl@0
   711
@SYMTestPriority		High
sl@0
   712
@SYMTestActions			Copy 3 prepared repositories into persists dir.
sl@0
   713
						Two user new settings are added[1000,1001].
sl@0
   714
						One user setting is deleted [1001].
sl@0
   715
						One rom setting is deleted [0x04010100].
sl@0
   716
						One rom setting is modified [0x04010200].
sl@0
   717
						Copy modified rom version file over local persisted version
sl@0
   718
						Call CheckRomFlash
sl@0
   719
@SYMTestExpectedResults Verfiy that the corrupt repository 10043337 is skipped and the other repositories are processed.
sl@0
   720
@SYMCR					CR1198
sl@0
   721
*/
sl@0
   722
LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4032L()
sl@0
   723
{
sl@0
   724
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4032 " ) );
sl@0
   725
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   726
	CleanupStack::PushL(fm);
sl@0
   727
sl@0
   728
	//Initial cleanup
sl@0
   729
	fm->Delete(KPersistsRepositoryCre1);
sl@0
   730
	fm->Delete(KPersistsRepositoryCre2);
sl@0
   731
	fm->Delete(KPersistsRepositoryCre3);
sl@0
   732
	//Copy of modified stored rom version info
sl@0
   733
sl@0
   734
	//Copy 10043336,10043337 and 10043338 prepared repositories into persists directory.
sl@0
   735
	//These repositories have a two user added,1 user deleted,1 rom deleted and 1 rom modified settings.
sl@0
   736
	User::LeaveIfError(fm->Copy(KRomRepositoryCre1,KPersistsRepositoryCre1,CFileMan::EOverWrite));
sl@0
   737
	User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre1,0,KEntryAttReadOnly,TTime(0)));
sl@0
   738
	User::LeaveIfError(fm->Copy(KRomRepositoryCre2,KPersistsRepositoryCre2,CFileMan::EOverWrite));
sl@0
   739
	User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre2,0,KEntryAttReadOnly,TTime(0)));
sl@0
   740
	User::LeaveIfError(fm->Copy(KRomRepositoryCre3,KPersistsRepositoryCre3,CFileMan::EOverWrite));
sl@0
   741
	User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre3,0,KEntryAttReadOnly,TTime(0)));
sl@0
   742
	User::After(KGeneralDelay);
sl@0
   743
sl@0
   744
	//Copy of modified stored rom version info
sl@0
   745
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   746
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   747
	User::After(KGeneralDelay);
sl@0
   748
	CleanupStack::PopAndDestroy();//fm
sl@0
   749
sl@0
   750
	CServerRepository::CheckROMReflashL();
sl@0
   751
sl@0
   752
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   753
	CleanupStack::PushL(notifier);
sl@0
   754
sl@0
   755
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   756
    CleanupStack::PushL(repository);
sl@0
   757
sl@0
   758
    TInt ii = 3;
sl@0
   759
	while(ii < 6)
sl@0
   760
		{
sl@0
   761
    	repository->OpenL(KUidRomRepositoryList[ii],*notifier);
sl@0
   762
		 //Get the user added setting it should still be there
sl@0
   763
		TInt settingValue = 0;
sl@0
   764
		TInt r = repository->Get(KNewSettingList[0], settingValue);
sl@0
   765
		TEST(r == KErrNone);
sl@0
   766
sl@0
   767
		//Get the rom added value
sl@0
   768
		r = repository->Get(KNewSettingList[3], settingValue);
sl@0
   769
		if(ii == 4)//Corrupted rom repository is skipped, so it wont have been added
sl@0
   770
			{
sl@0
   771
			TEST2(r, KErrNotFound);
sl@0
   772
			}
sl@0
   773
		else
sl@0
   774
			{
sl@0
   775
			TEST2(r, KErrNone);
sl@0
   776
			}
sl@0
   777
sl@0
   778
		//Get the rom deleted value, it will have been reinstated
sl@0
   779
		r = repository->Get(KDeletedSettingList[1], settingValue);
sl@0
   780
		if(ii == 4)//Corrupted rom repository is skipped, so it wont have been added
sl@0
   781
			{
sl@0
   782
			TEST2(r, KErrNotFound);
sl@0
   783
			}
sl@0
   784
		else
sl@0
   785
			{
sl@0
   786
			TEST2(r, KErrNone);
sl@0
   787
			}
sl@0
   788
sl@0
   789
		//Get the user added and deleted value, it shouldnt be there.
sl@0
   790
		r = repository->Get(KNewSettingList[1], settingValue);
sl@0
   791
		TEST2(r, KErrNotFound);
sl@0
   792
sl@0
   793
		// Close repository
sl@0
   794
		repository->Close();
sl@0
   795
		ii++;
sl@0
   796
		}
sl@0
   797
sl@0
   798
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   799
sl@0
   800
	// If cache manager is initialized and used before, we flush it
sl@0
   801
	CleanUp();
sl@0
   802
}
sl@0
   803
sl@0
   804
/**
sl@0
   805
@SYMTestCaseID			PDS-CENTRALREPOSITORY-UT-4083
sl@0
   806
@SYMTestCaseDesc		This test verifies that after a rom flash, rom and user modified values are merged correctly
sl@0
   807
						and all policies/meta are set correctly
sl@0
   808
@SYMTestPriority		High
sl@0
   809
@SYMTestActions			The test is used to simulate the rom flashing.It starts with 2 ROM keyspaces, the 2nd rom keyspace
sl@0
   810
						CADACADA been the "updated" ROM keyspace. The test starts with loading old rom keyspace, modify
sl@0
   811
						keyspace and then persisted under the "updated" ROM keyspace UID. So next time when we open
sl@0
   812
						the "updated" ROM keyspace, a remerging will happen. The properites of the keyspace and the
sl@0
   813
						individual settings are verified wrt the policies and metadata
sl@0
   814
@SYMTestExpectedResults The merging is correct with policies and meta specified in new ROM correctly applied to the 
sl@0
   815
						persisted file
sl@0
   816
@SYMDEF					INC134085
sl@0
   817
*/
sl@0
   818
sl@0
   819
//class to allow direct access to TSecurityPolicy class
sl@0
   820
class TCompiledSecurityPolicy
sl@0
   821
{
sl@0
   822
public:
sl@0
   823
	TCompiledSecurityPolicy(TSecurityPolicy aPolicy):iPolicy(aPolicy){}
sl@0
   824
	TBool IsTypeFail()
sl@0
   825
		{
sl@0
   826
		return iPolicy.iType==TSecurityPolicy::ETypeFail;
sl@0
   827
		}
sl@0
   828
	TBool IsTypePass()
sl@0
   829
		{
sl@0
   830
		return iPolicy.iType==TSecurityPolicy::ETypePass;		
sl@0
   831
		}
sl@0
   832
public:		
sl@0
   833
TSecurityPolicy iPolicy;	
sl@0
   834
};
sl@0
   835
sl@0
   836
LOCAL_C void INC134085L()
sl@0
   837
	{
sl@0
   838
	TheTest.Next( _L( " @SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4083 " ) );
sl@0
   839
	CFileMan* fm = CFileMan::NewL(TServerResources::iFs);
sl@0
   840
	CleanupStack::PushL(fm);
sl@0
   841
sl@0
   842
	//orig_rom Test Uid
sl@0
   843
	const TUid KTestUid={0xCABACABA};
sl@0
   844
	//updated_rom Test Uid
sl@0
   845
	const TUid KUpdatedRomUid={0xCADACADA};
sl@0
   846
sl@0
   847
	//Initial cleanup
sl@0
   848
	_LIT(KPersistsRepositoryCre,"C:\\private\\10202be9\\persists\\cadacada.cre");	
sl@0
   849
	fm->Delete(KPersistsRepositoryCre);
sl@0
   850
sl@0
   851
	//Copy of modified stored rom version info
sl@0
   852
	User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite));
sl@0
   853
	User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0)));
sl@0
   854
	User::After(KGeneralDelay);
sl@0
   855
sl@0
   856
sl@0
   857
	//-------------------------Modify one of the settings--------------------------------
sl@0
   858
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   859
	CleanupStack::PushL(notifier);
sl@0
   860
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   861
    CleanupStack::PushL(repository);
sl@0
   862
sl@0
   863
	//Need to reset the Uid to the new ROM value to ensure when persisting it is persisted
sl@0
   864
	//under the new ROM Uid value in order to simulate the ROM Reflash later
sl@0
   865
    repository->OpenL(KTestUid,*notifier);
sl@0
   866
    repository->iUid=KUpdatedRomUid;
sl@0
   867
    repository->iRepository->SetUid(KUpdatedRomUid);
sl@0
   868
	TServerResources::iObserver->RemoveObserver(KTestUid,repository,0);
sl@0
   869
	TServerResources::iObserver->RemoveSharedRepositoryInfo(KTestUid);
sl@0
   870
		
sl@0
   871
   	TServerResources::iObserver->AddObserverL(KUpdatedRomUid, repository);
sl@0
   872
	TServerResources::iObserver->AddSharedRepositoryInfoL(KUpdatedRomUid); 
sl@0
   873
sl@0
   874
    //set a string key
sl@0
   875
    TBuf8<100> KTestString;
sl@0
   876
    KTestString.Copy(_L("voicemailboxnumber"));
sl@0
   877
  	User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction));
sl@0
   878
	TInt err = repository->TransactionSetL(1,KTestString);
sl@0
   879
	TEST2(err,KErrNone);
sl@0
   880
	//a old ROM setting that has been modified by the user remains there even
sl@0
   881
	//when the new ROM does not contain that setting
sl@0
   882
	err = repository->TransactionSetL(0x300,5);
sl@0
   883
	TEST2(err,KErrNone);	
sl@0
   884
	TUint32 tempKeyInfo;
sl@0
   885
	User::LeaveIfError(repository->CommitTransaction(tempKeyInfo));
sl@0
   886
sl@0
   887
	repository->Close();
sl@0
   888
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   889
	
sl@0
   890
	//--------------------------Simulate the ROM Reflash---------------------------------
sl@0
   891
	// flush the cache manager contents.
sl@0
   892
	CleanUp();
sl@0
   893
	CServerRepository::CheckROMReflashL();
sl@0
   894
sl@0
   895
	
sl@0
   896
	//--------------------------Validate the merging--------------------------------------
sl@0
   897
	notifier-new (ELeave)CSessionNotifier;
sl@0
   898
	CleanupStack::PushL(notifier);
sl@0
   899
    repository = new(ELeave) CServerRepository();
sl@0
   900
    CleanupStack::PushL(repository);
sl@0
   901
    repository->OpenL(KUpdatedRomUid,*notifier);
sl@0
   902
    
sl@0
   903
    //validate the keyspace global properties
sl@0
   904
    RSettingsArray& settings=repository->iRepository->iSimRep->SettingsArray();
sl@0
   905
    TEST2(settings.Count(),22);
sl@0
   906
    RArray<TUint32>& deletedArray=repository->iRepository->iSimRep->DeletedSettingsArray();
sl@0
   907
    TEST2(deletedArray.Count(),0)    ;
sl@0
   908
    RRangePolicyArray& rangePolicy=repository->iRepository->iSimRep->RangePolicyArray();
sl@0
   909
    TEST2(rangePolicy.Count(),1);
sl@0
   910
    RPointerArray<TSettingsAccessPolicy>& individualPolicy=repository->iRepository->iSimRep->SinglePolicyArray();
sl@0
   911
    TEST2(individualPolicy.Count(),20);    
sl@0
   912
sl@0
   913
    RDefaultMetaArray& rangeMeta=repository->iRepository->iSimRep->RangeMetaArray();
sl@0
   914
    TEST2(rangeMeta.Count(),1);    
sl@0
   915
    for (TInt i=0;i<settings.Count();i++)
sl@0
   916
    	{
sl@0
   917
    	TUint32 key=settings[i].Key();
sl@0
   918
sl@0
   919
    	//-------------validate the meta------------    	
sl@0
   920
    	//validate the meta only the modfiied setting will be not clean
sl@0
   921
    	if (key!=1 && key!=0x300)
sl@0
   922
       		TEST(settings[i].IsClean());
sl@0
   923
    	else
sl@0
   924
       		TEST(!settings[i].IsClean());
sl@0
   925
    	TUint32 meta=settings[i].Meta();
sl@0
   926
    	if (key==0 || key==0x11)
sl@0
   927
    		TEST(settings[i].Meta()==0x81000000);
sl@0
   928
    	//settings that have been modified
sl@0
   929
    	else if (key==1)
sl@0
   930
    		TEST(settings[i].Meta()==0x01000000);
sl@0
   931
    	//settings that used the range defined meta
sl@0
   932
    	else if (key==0x300)
sl@0
   933
    		TEST(settings[i].Meta()==300);
sl@0
   934
    	else
sl@0
   935
    		TEST(settings[i].Meta()==0x80000000);
sl@0
   936
    	
sl@0
   937
    	//------------validate the security policies-----
sl@0
   938
    	TCompiledSecurityPolicy r_tsp(*(settings[i].GetReadAccessPolicy()));
sl@0
   939
    	TEST(r_tsp.IsTypePass());
sl@0
   940
    	TCompiledSecurityPolicy w_tsp(*(settings[i].GetWriteAccessPolicy()));
sl@0
   941
    	if (key==5 || key==9 || key==16 || key==22)
sl@0
   942
    		TEST(w_tsp.IsTypeFail());    	
sl@0
   943
    	
sl@0
   944
    	}
sl@0
   945
      
sl@0
   946
    repository->Close();
sl@0
   947
	CleanupStack::PopAndDestroy(2);//repository, notifier
sl@0
   948
	CleanupStack::PopAndDestroy();//fm
sl@0
   949
sl@0
   950
	// If cache manager is initialized and used before, we flush it
sl@0
   951
	CleanUp();	
sl@0
   952
	}
sl@0
   953
sl@0
   954
LOCAL_C void FuncTestsL()
sl@0
   955
	{
sl@0
   956
	SYSLIB_CENTRALREPOSITORY_UT_4025L();
sl@0
   957
	SYSLIB_CENTRALREPOSITORY_UT_4026L();
sl@0
   958
	SYSLIB_CENTRALREPOSITORY_UT_4027L();
sl@0
   959
	SYSLIB_CENTRALREPOSITORY_UT_4028L();
sl@0
   960
	SYSLIB_CENTRALREPOSITORY_UT_4029L();
sl@0
   961
	SYSLIB_CENTRALREPOSITORY_UT_4030L();
sl@0
   962
	SYSLIB_CENTRALREPOSITORY_UT_4031L();
sl@0
   963
	SYSLIB_CENTRALREPOSITORY_UT_4032L();
sl@0
   964
	INC134085L();
sl@0
   965
	}
sl@0
   966
sl@0
   967
LOCAL_C void DoTestsL()
sl@0
   968
	{
sl@0
   969
sl@0
   970
	TheTest.Start( _L( "FOTA functionality" ) );
sl@0
   971
	FuncTestsL();
sl@0
   972
	TheTest.End();
sl@0
   973
sl@0
   974
	}
sl@0
   975
sl@0
   976
LOCAL_C void MainL()
sl@0
   977
	{
sl@0
   978
	__UHEAP_MARK;
sl@0
   979
	TheTest.Start( _L( "Fota Tests" ) );
sl@0
   980
sl@0
   981
	// create and install the active scheduler we need
sl@0
   982
	CActiveScheduler* s = new(ELeave) CActiveScheduler;
sl@0
   983
	CleanupStack::PushL( s );
sl@0
   984
	CActiveScheduler::Install( s );
sl@0
   985
sl@0
   986
	TServerResources::InitialiseL();
sl@0
   987
sl@0
   988
	DeleteFilesL();
sl@0
   989
sl@0
   990
	DoTestsL();
sl@0
   991
sl@0
   992
	DeleteFilesL();
sl@0
   993
	TServerResources::Close();
sl@0
   994
sl@0
   995
	// Cleanup the scheduler
sl@0
   996
	CleanupStack::PopAndDestroy( s );
sl@0
   997
sl@0
   998
	TheTest.End();
sl@0
   999
	TheTest.Close();
sl@0
  1000
	__UHEAP_MARKEND;
sl@0
  1001
	}
sl@0
  1002
sl@0
  1003
TInt E32Main()
sl@0
  1004
	{
sl@0
  1005
	__UHEAP_MARK;
sl@0
  1006
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
  1007
	if ( !cleanup )
sl@0
  1008
		return KErrNoMemory;
sl@0
  1009
sl@0
  1010
	TRAPD( err, MainL()  );
sl@0
  1011
	TEST2(err, KErrNone);
sl@0
  1012
sl@0
  1013
	delete cleanup;
sl@0
  1014
	__UHEAP_MARKEND;
sl@0
  1015
sl@0
  1016
	return 0;
sl@0
  1017
	}
sl@0
  1018