sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "srvrepos_noc.h" sl@0: #include "srvres.h" sl@0: #include "cachemgr.h" sl@0: #include "sessnotf.h" sl@0: #include "t_cenrep_helper.h" sl@0: sl@0: #include "testexecute/SWI/src/tui.h" sl@0: #include sl@0: #include "swi/sisregistrysession.h" sl@0: #include "swi/sisregistrypackage.h" sl@0: #include "swi/sisregistryentry.h" sl@0: sl@0: sl@0: RTest TheTest(_L("Central Repository FOTx Unit Tests")); sl@0: sl@0: _LIT(KCachedVersionFile,"C:\\private\\10202be9\\romversion\\romversion_info.txt"); sl@0: _LIT(KModified2RepositoryCre,"z:\\private\\10202be9\\10033333_modified2.cre"); sl@0: _LIT(KPersistsRepositoryCre,"C:\\private\\10202be9\\persists\\10033333.cre"); sl@0: _LIT(KStoredSWIRepository,"z:\\private\\10202be9\\10033333_modified3.cre"); sl@0: _LIT(KSWIInstallRepository,"C:\\private\\10202be9\\10033333.cre"); sl@0: _LIT(KModifiedSwVersion, "z:\\private\\10202be9\\sw_modified.txt"); sl@0: _LIT(KStoredRepository,"z:\\private\\10202be9\\10033340_reserved.cre"); sl@0: _LIT(KStoredRepository2,"z:\\private\\10202be9\\10033341_orig.cre"); sl@0: _LIT(KPersistsBasedRepository,"C:\\private\\10202be9\\persists\\10033340.cre"); sl@0: _LIT(KPersistsBasedRepository2,"C:\\private\\10202be9\\persists\\10033341.cre"); sl@0: sl@0: _LIT(KRomRepositoryCre1,"z:\\private\\10202be9\\10043336_persists.cre"); sl@0: _LIT(KRomRepositoryCre2,"z:\\private\\10202be9\\10043337_persists.cre"); sl@0: _LIT(KRomRepositoryCre3,"z:\\private\\10202be9\\10043338_persists.cre"); sl@0: _LIT(KPersistsRepositoryCre1,"C:\\private\\10202be9\\persists\\10043336.cre"); sl@0: _LIT(KPersistsRepositoryCre2,"C:\\private\\10202be9\\persists\\10043337.cre"); sl@0: _LIT(KPersistsRepositoryCre3,"C:\\private\\10202be9\\persists\\10043338.cre"); sl@0: sl@0: sl@0: _LIT(KSisFile,"z:\\private\\10202be9\\RF1.sis"); sl@0: _LIT(KSisFile2,"z:\\private\\10202be9\\RF4.sis"); sl@0: sl@0: const TUid KUidRomRepositoryList[] = {0x10033333,0x10033340,0x10033341,0x10043336,0x10043337,0x10043338}; sl@0: const TUint32 KNewSettingList[] = {1000,1001,0x2300,0x02010000}; sl@0: const TUint32 KModifiedSettingList[] = {0x04010200,0x04010400,0x03010100}; sl@0: const TUint32 KDeletedSettingList[] = {0x03010500,0x04010100,0x02010300}; sl@0: const TUint32 KSWIBasedSettingList[] = {0x08010100}; sl@0: const TInt KSettingValueList[] = {1234,1111,12345,10,200,400}; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macroses and functions sl@0: sl@0: LOCAL_C void DeleteFilesL() sl@0: { sl@0: _LIT( KOldInstallFiles, "c:\\private\\10202BE9\\*.cre" ); sl@0: _LIT( KOldPersistsFiles, "c:\\private\\10202BE9\\persists\\100*.cre" ); sl@0: _LIT( KOldRomVersionFiles, "c:\\private\\10202BE9\\romversion\\romversion_info.t*" ); sl@0: CFileMan* fm = CFileMan::NewL( TServerResources::iFs ); sl@0: CleanupStack::PushL( fm ); sl@0: sl@0: TInt r = fm->Delete( KOldInstallFiles ); sl@0: if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound ) sl@0: User::Leave(r); sl@0: r = fm->Delete( KOldPersistsFiles); sl@0: if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound ) sl@0: User::Leave(r); sl@0: r = fm->Delete( KOldRomVersionFiles,CFileMan::ERecurse); sl@0: if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound ) sl@0: User::Leave(r); sl@0: sl@0: CleanupStack::PopAndDestroy( fm ); sl@0: } sl@0: sl@0: LOCAL_C void Check( TInt aValue, TInt aLine ) sl@0: { sl@0: if ( !aValue ) sl@0: { sl@0: TheTest( EFalse, aLine ); sl@0: } sl@0: } sl@0: sl@0: LOCAL_C void Check( TInt aValue, TInt aExpected, TInt aLine ) sl@0: { sl@0: if ( aValue != aExpected ) sl@0: { sl@0: RDebug::Print( _L( "*** Expected error: %d, got: %d\r\n"), aExpected, aValue ); sl@0: TheTest( EFalse, aLine ); sl@0: } sl@0: } sl@0: sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: LOCAL_C void CleanUp() sl@0: { sl@0: // If cache manager is initialized and used before, we flush it sl@0: if (TServerResources::iCacheManager) sl@0: { sl@0: TServerResources::iCacheManager->FlushCache(); sl@0: } sl@0: // To get rid of the iOpenRepositories array leaking problem during OOM testing. sl@0: TServerResources::iObserver->CloseiOpenRepositories(); sl@0: TServerResources::iObserver->Reset(); sl@0: // To get rid of the array leaking problems during OOM testing. sl@0: TServerResources::iOwnerIdLookUpTable.Reset(); sl@0: User::After(KGeneralDelay); sl@0: } sl@0: sl@0: LOCAL_C void PerformSWIinstallL(const TDesC& aSisFileName) sl@0: { sl@0: //******************************************************** sl@0: //Requires stub file to be set up before it will work sl@0: //requires techview sl@0: //******************************************************** sl@0: using namespace Swi; sl@0: TUI* Ui = new(ELeave) TUI(); sl@0: CInstallPrefs* prefs = CInstallPrefs::NewLC(); sl@0: TInt err = Launcher::Install(*Ui, aSisFileName, *prefs); sl@0: delete Ui; sl@0: TEST2(err, KErrNone); sl@0: CleanupStack::PopAndDestroy();//prefs sl@0: sl@0: User::After(KGeneralDelay); sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: LOCAL_C void UserModifyRepositoryL() sl@0: { sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction)); sl@0: sl@0: TInt err = repository->TransactionDeleteL(KDeletedSettingList[0]); sl@0: TEST2(err,KErrNone); sl@0: sl@0: err = repository->TransactionCreateL(KNewSettingList[1],KSettingValueList[0],NULL); sl@0: TEST2(err,KErrNone); sl@0: err = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL); sl@0: TEST2(err,KErrNone); sl@0: err = repository->TransactionDeleteL(KDeletedSettingList[2]); sl@0: TEST2(err,KErrNone); sl@0: err = repository->TransactionDeleteL(KNewSettingList[1]);//remove a setting added by the user sl@0: TEST2(err,KErrNone); sl@0: err = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]); sl@0: TEST2(err,KErrNone); sl@0: sl@0: TUint32 tempKeyInfo; sl@0: User::LeaveIfError(repository->CommitTransaction(tempKeyInfo)); sl@0: sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: } sl@0: sl@0: LOCAL_C void UserModifyRepository2L() sl@0: { sl@0: //Have the user add,delete and modify some entries sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction)); sl@0: //0x03010500 has been deleted by user in modified persisted repository. sl@0: //but this rom based deleted setting, should have been reinstated by the SWI, which also contains it. sl@0: TInt settingValue = 0; sl@0: TInt r = repository->Get(KDeletedSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: //delete the SWI and rom based setting, it should be reinstated after the rom update. sl@0: r = repository->TransactionDeleteL(KDeletedSettingList[2]); sl@0: TEST2(r,KErrNone); sl@0: // sl@0: //Modify setting sl@0: r = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]); sl@0: TEST2(r,KErrNone); sl@0: //Add and delete a user setting sl@0: r = repository->TransactionCreateL(KNewSettingList[1],KSettingValueList[0],NULL); sl@0: TEST2(r,KErrNone); sl@0: r = repository->TransactionDeleteL(KNewSettingList[1]);//remove a setting added by the user sl@0: TEST2(r,KErrNone); sl@0: //Add a user setting sl@0: r = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL); sl@0: TEST2(r,KErrNone); sl@0: sl@0: TUint32 tempKeyInfo; sl@0: User::LeaveIfError(repository->CommitTransaction(tempKeyInfo)); sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: } sl@0: sl@0: LOCAL_C void VerifyCorrectMergingL(TInt aVerifySwi = EFalse) sl@0: { sl@0: //Check the merge content for correctness. sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: //Get the rom based user deleted setting, it should have been reinstated. sl@0: TInt settingValue = 0; sl@0: TInt r = repository->Get(KDeletedSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: //Get the user based deleted setting, it should still be missing. sl@0: r = repository->Get(KNewSettingList[1], settingValue); sl@0: TEST(r == KErrNotFound); sl@0: //Get the user added setting. sl@0: r = repository->Get(KNewSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: //Get user modified settings. It should contain the user modification sl@0: r = repository->Get(KModifiedSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: TEST(settingValue == KSettingValueList[2]); sl@0: sl@0: if(aVerifySwi) sl@0: { sl@0: //Get SWI modified settings for a clean rom value. It should contain the SWI modification sl@0: settingValue = 0; sl@0: r = repository->Get(KModifiedSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: TEST(settingValue == KSettingValueList[2]); sl@0: //Get SWI added setting sl@0: r = repository->Get(KNewSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: } sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4025 sl@0: @SYMTestCaseDesc This test verifies that a locally persisted copy of the rom version file sl@0: is created after a call to CheckROMReflashL sl@0: @SYMTestPriority High sl@0: @SYMTestActions Remove locally persisted rom version file. sl@0: Call CheckROMReflashL to simulate a reboot of cenrep. sl@0: Check that locally persisted copy of rom version file is created. sl@0: @SYMTestExpectedResults Persisted copy of rom version file has been created. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4025L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4025 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: sl@0: // Remove locally stored rom version file if it exists sl@0: TInt err = fm->Delete(KCachedVersionFile); sl@0: if((err != KErrNotFound) && (err != KErrNone)) sl@0: { sl@0: RDebug::Print( _L( "*** UnExpected error: %d\r\n"), err ); sl@0: TheTest( EFalse, __LINE__ ); sl@0: } sl@0: sl@0: delete fm;//fm sl@0: CServerRepository::CheckROMReflashL(); sl@0: User::After(KGeneralDelay);//Allow the filesystem to write the files. sl@0: sl@0: TEntry entry; sl@0: TEST(TServerResources::iFs.Entry(KCachedVersionFile,entry) == KErrNone); sl@0: sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4026 sl@0: @SYMTestCaseDesc This test verifies that when the locally persisted copy of the rom version file sl@0: is equal to the rom version file then no merging takes place. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Remove a rom based setting. sl@0: Call CheckROMReflashL to simulate a reboot of cenrep. sl@0: Check that the deleted value hasnt been reinstated. sl@0: @SYMTestExpectedResults Deleted value hasnt been reinstated, demonstrating that no merge took place. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4026L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4026 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: delete fm;//fm sl@0: sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: //Attempt to retrieve a setting before deleting it. sl@0: User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction)); sl@0: TInt settingValue = 0; sl@0: TInt r = repository->Get(KDeletedSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: repository->TransactionDeleteL(KDeletedSettingList[0]); sl@0: TUint32 tempKeyInfo; sl@0: User::LeaveIfError(repository->CommitTransaction(tempKeyInfo)); sl@0: sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: //Dont Copy modified stored rom version info so that no rom update should take place sl@0: sl@0: // flush cache sl@0: CleanUp(); sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: r = repository->Get(KDeletedSettingList[0], settingValue); sl@0: TEST(r == KErrNotFound);//It hasnt been reinstated. sl@0: sl@0: repository->Close(); sl@0: sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4027 sl@0: @SYMTestCaseDesc This test verifies that after a rom flash, rom and user modified values are merged correctly. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Open a repository and create two settings. sl@0: Delete a rom based setting. sl@0: Delete on of the new settings. sl@0: Remove a rom based setting. sl@0: Modify a rom based setting. sl@0: Call CheckROMReflashL to simulate a reboot of cenrep. sl@0: Check that the deleted rom base value has been reinstated. sl@0: Check that the deleted user setting hasnt been reinstated. sl@0: sl@0: @SYMTestExpectedResults Deleted user value hasnt been reinstated. sl@0: Deleted rom based value has been reinstated. sl@0: Other User added setting is present. sl@0: User modified setting contains user value. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4027L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4027 " ) );//Force a rom update for this repository. sl@0: sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: sl@0: //Copy of modified stored rom version info sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: sl@0: UserModifyRepositoryL(); sl@0: sl@0: // flush the cache manager contents. sl@0: CleanUp(); sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: VerifyCorrectMergingL(EFalse); sl@0: sl@0: //Final Cleanup sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4028 sl@0: @SYMTestCaseDesc This test verifies that repositories that exist in persists directory but have sl@0: no basis in install or rom are removed after a rom update. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy a repository into the persists directory that has no rom or SWI equivalent. sl@0: Call CheckROMReflashL to simulate a reboot of cenrep. sl@0: Verify that the persisted repository is removed. sl@0: sl@0: @SYMTestExpectedResults Persisted repository is removed during rom update. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4028L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4028 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsBasedRepository); sl@0: sl@0: //Place a repository in persists that has no basis in SWI or rom and it should be removed. sl@0: //by the rom update as it will look like a rom based repository that has been removed by sl@0: //the update. sl@0: sl@0: //Copy the repository that isnt in SWI or ROM to persists sl@0: //Copy 100333340_reserved to 100333340.cre persists sl@0: User::LeaveIfError(fm->Copy(KStoredRepository,KPersistsBasedRepository,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsBasedRepository,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: //Copy of modified stored rom version info sl@0: sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: TEntry entry; sl@0: sl@0: TEST(TServerResources::iFs.Entry(KPersistsBasedRepository,entry) == KErrNotFound); sl@0: sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4029 sl@0: @SYMTestCaseDesc This test verifies that a repository is merged correctly with SWI and user changes after a rom update. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy a prepared repository into the persists directory that contains clean sl@0: settings that do not exist in its rom equivalent,missing settings that exist in sl@0: its rom equivalent and user modified settings that differ from its rom equivalent. sl@0: Perform an SWI install to modify and add some settings. sl@0: The user adds,deletes and modifies some settings. sl@0: Copy a modified rom version file over the locally persisted rom version file. sl@0: Call CheckROMReflashL to simulate a reboot of cenrep. sl@0: @SYMTestExpectedResults Verify that the persisted repository clean settings that do not exist in rom equivalent are removed. sl@0: Verify that settings in the rom repository that are not in the persisted repository are added. sl@0: Verify that user modified settings retain user values. sl@0: Verify that the rom based user deleted setting are reinstated. sl@0: Verify that the user based deleted setting is not present. sl@0: Verify the user added setting exists. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4029L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4029 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: sl@0: //Merge User, Rom and SWI settings. sl@0: //Need to copy a repository into the persists, that has a variance from the rom based sl@0: //repository to give the impression that some of the rom based entries have been modified, sl@0: // removed and added by the rom update. sl@0: //Copy a modified repository sl@0: sl@0: User::LeaveIfError(fm->Copy(KModified2RepositoryCre,KPersistsRepositoryCre,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: //Have SWI add and modify some entries. sl@0: TFileName SisFileName; sl@0: SisFileName.Copy(KSisFile); sl@0: sl@0: PerformSWIinstallL(SisFileName); sl@0: User::After(KGeneralDelay*5); sl@0: sl@0: UserModifyRepository2L(); sl@0: sl@0: //flush cachemanager contents sl@0: CleanUp(); sl@0: sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: VerifyCorrectMergingL(ETrue); sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4030 sl@0: @SYMTestCaseDesc A repository is removed from the ROM but has an SWI, it remains on the C:\ sl@0: but all clean settings that do not exist in the SWI install file are removed. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy a prepared repository into the persists directory that has no basis sl@0: in ROM. sl@0: Perform an SWI, that adds new keys to the persisted repository. sl@0: Have the user create a new entry. sl@0: Have the user modify a rom based entry. sl@0: Update the locally persisted rom version file. sl@0: Call CheckROMReflashL to simulate a centrep reboot. sl@0: @SYMTestExpectedResults Verify the user modified rom based setting exists. sl@0: Verify that a clean rom based setting is removed. sl@0: Verify that a sample of the SWI based setting exists. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4030L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4030 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: DeleteFilesL(); sl@0: sl@0: //Remove ROM and Merge User and SWI settings. sl@0: //Need to copy a prepared repository into the persists,that has more entries than the SWI based sl@0: //repository to simulate that some of the rom based entries have been removed, sl@0: //by the rom update. All the clean entries should be removed, leaving only user modified ones and common SWI ones. sl@0: User::LeaveIfError(fm->Copy(KStoredRepository2,KPersistsBasedRepository2,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsBasedRepository2,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: //Have SWI add some entries 0x08010100-500. sl@0: TFileName SisFileName; sl@0: SisFileName.Copy(KSisFile2); sl@0: sl@0: PerformSWIinstallL(SisFileName); sl@0: User::After(KGeneralDelay*2); sl@0: sl@0: //Have the user add and modify some rom based entries sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: repository->OpenL(KUidRomRepositoryList[2],*notifier); sl@0: sl@0: User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction)); sl@0: // sl@0: //Modify setting sl@0: TInt r = repository->TransactionSetL(KModifiedSettingList[2],KSettingValueList[2]); sl@0: TEST2(r,KErrNone); sl@0: sl@0: //Add a setting sl@0: r = repository->TransactionCreateL(KNewSettingList[2],KSettingValueList[0],NULL); sl@0: TEST2(r,KErrNone); sl@0: sl@0: //Get some clean rom based settings to show they are present sl@0: TInt settingValue = 0; sl@0: r = repository->Get(KModifiedSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: //Get some clean rom based settings to show they are present sl@0: settingValue = 0; sl@0: r = repository->Get(KModifiedSettingList[1], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: TUint32 tempKeyInfo; sl@0: User::LeaveIfError(repository->CommitTransaction(tempKeyInfo)); sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: sl@0: //Copy of modified stored rom version info sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: //Check the merge content for correctness. sl@0: notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: repository->OpenL(KUidRomRepositoryList[2],*notifier); sl@0: sl@0: //Get the rom based user modified setting it should still be there sl@0: settingValue = 0; sl@0: r = repository->Get(KModifiedSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: //Get the rom only based clean setting, it should still be missing. sl@0: r = repository->Get(KModifiedSettingList[0], settingValue); sl@0: TEST(r == KErrNotFound); sl@0: sl@0: //Get the rom only based clean setting, it should still be missing. sl@0: r = repository->Get(KModifiedSettingList[1], settingValue); sl@0: TEST(r == KErrNotFound); sl@0: sl@0: //Get SWI based setting. It should be there sl@0: r = repository->Get(KSWIBasedSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: //Get user based setting. It should be there sl@0: r = repository->Get(KNewSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4031 sl@0: @SYMTestCaseDesc Test that repository settings that are altered by SWI value are not overwritten by a rom flash. sl@0: SWI values dominate ROM values. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy a prepared repository into the persists directory and into the install directory. sl@0: There exists and equivalent rom based version of this repository with different values. sl@0: Update the locally persisted rom version file. sl@0: Call CheckROMReflashL to simulate a centrep reboot. sl@0: @SYMTestExpectedResults Verify the user modified rom based setting exists. sl@0: Verify that some settings that exists within ROM and SWI has SWI values. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4031L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4031 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: fm->Delete(KSWIInstallRepository); sl@0: sl@0: //Simulate an SWI install by having the modified repository in the install and persists directory. sl@0: User::LeaveIfError(fm->Copy(KStoredSWIRepository,KPersistsRepositoryCre,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: User::LeaveIfError(fm->Copy(KStoredSWIRepository,KSWIInstallRepository,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KSWIInstallRepository,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: sl@0: //Copy of modified stored rom version info sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: repository->OpenL(KUidRomRepositoryList[0],*notifier); sl@0: sl@0: //Get the rom based user modified setting it should still be there sl@0: TInt settingValue = 0; sl@0: TInt r = repository->Get(KModifiedSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: TEST(settingValue == KSettingValueList[4]); sl@0: sl@0: //Get the rom and SWI setting it should have SWI value sl@0: r = repository->Get(KModifiedSettingList[1], settingValue); sl@0: TEST(r == KErrNone); sl@0: TEST(settingValue == KSettingValueList[5]); sl@0: sl@0: //Get the rom and SWI setting it should have SWI value sl@0: r = repository->Get(KModifiedSettingList[2], settingValue); sl@0: TEST(r == KErrNone); sl@0: TEST(settingValue == KSettingValueList[2]); sl@0: sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4032 sl@0: @SYMTestCaseDesc This test checks that after a rom flash that contains a corrupt repository. sl@0: The corrupt repository is skipped and the non corrupt repositories are processed as normal. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy 3 prepared repositories into persists dir. sl@0: Two user new settings are added[1000,1001]. sl@0: One user setting is deleted [1001]. sl@0: One rom setting is deleted [0x04010100]. sl@0: One rom setting is modified [0x04010200]. sl@0: Copy modified rom version file over local persisted version sl@0: Call CheckRomFlash sl@0: @SYMTestExpectedResults Verfiy that the corrupt repository 10043337 is skipped and the other repositories are processed. sl@0: @SYMCR CR1198 sl@0: */ sl@0: LOCAL_C void SYSLIB_CENTRALREPOSITORY_UT_4032L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4032 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //Initial cleanup sl@0: fm->Delete(KPersistsRepositoryCre1); sl@0: fm->Delete(KPersistsRepositoryCre2); sl@0: fm->Delete(KPersistsRepositoryCre3); sl@0: //Copy of modified stored rom version info sl@0: sl@0: //Copy 10043336,10043337 and 10043338 prepared repositories into persists directory. sl@0: //These repositories have a two user added,1 user deleted,1 rom deleted and 1 rom modified settings. sl@0: User::LeaveIfError(fm->Copy(KRomRepositoryCre1,KPersistsRepositoryCre1,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre1,0,KEntryAttReadOnly,TTime(0))); sl@0: User::LeaveIfError(fm->Copy(KRomRepositoryCre2,KPersistsRepositoryCre2,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre2,0,KEntryAttReadOnly,TTime(0))); sl@0: User::LeaveIfError(fm->Copy(KRomRepositoryCre3,KPersistsRepositoryCre3,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KPersistsRepositoryCre3,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: sl@0: //Copy of modified stored rom version info sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: TInt ii = 3; sl@0: while(ii < 6) sl@0: { sl@0: repository->OpenL(KUidRomRepositoryList[ii],*notifier); sl@0: //Get the user added setting it should still be there sl@0: TInt settingValue = 0; sl@0: TInt r = repository->Get(KNewSettingList[0], settingValue); sl@0: TEST(r == KErrNone); sl@0: sl@0: //Get the rom added value sl@0: r = repository->Get(KNewSettingList[3], settingValue); sl@0: if(ii == 4)//Corrupted rom repository is skipped, so it wont have been added sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrNone); sl@0: } sl@0: sl@0: //Get the rom deleted value, it will have been reinstated sl@0: r = repository->Get(KDeletedSettingList[1], settingValue); sl@0: if(ii == 4)//Corrupted rom repository is skipped, so it wont have been added sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrNone); sl@0: } sl@0: sl@0: //Get the user added and deleted value, it shouldnt be there. sl@0: r = repository->Get(KNewSettingList[1], settingValue); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // Close repository sl@0: repository->Close(); sl@0: ii++; sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4083 sl@0: @SYMTestCaseDesc This test verifies that after a rom flash, rom and user modified values are merged correctly sl@0: and all policies/meta are set correctly sl@0: @SYMTestPriority High sl@0: @SYMTestActions The test is used to simulate the rom flashing.It starts with 2 ROM keyspaces, the 2nd rom keyspace sl@0: CADACADA been the "updated" ROM keyspace. The test starts with loading old rom keyspace, modify sl@0: keyspace and then persisted under the "updated" ROM keyspace UID. So next time when we open sl@0: the "updated" ROM keyspace, a remerging will happen. The properites of the keyspace and the sl@0: individual settings are verified wrt the policies and metadata sl@0: @SYMTestExpectedResults The merging is correct with policies and meta specified in new ROM correctly applied to the sl@0: persisted file sl@0: @SYMDEF INC134085 sl@0: */ sl@0: sl@0: //class to allow direct access to TSecurityPolicy class sl@0: class TCompiledSecurityPolicy sl@0: { sl@0: public: sl@0: TCompiledSecurityPolicy(TSecurityPolicy aPolicy):iPolicy(aPolicy){} sl@0: TBool IsTypeFail() sl@0: { sl@0: return iPolicy.iType==TSecurityPolicy::ETypeFail; sl@0: } sl@0: TBool IsTypePass() sl@0: { sl@0: return iPolicy.iType==TSecurityPolicy::ETypePass; sl@0: } sl@0: public: sl@0: TSecurityPolicy iPolicy; sl@0: }; sl@0: sl@0: LOCAL_C void INC134085L() sl@0: { sl@0: TheTest.Next( _L( " @SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4083 " ) ); sl@0: CFileMan* fm = CFileMan::NewL(TServerResources::iFs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: //orig_rom Test Uid sl@0: const TUid KTestUid={0xCABACABA}; sl@0: //updated_rom Test Uid sl@0: const TUid KUpdatedRomUid={0xCADACADA}; sl@0: sl@0: //Initial cleanup sl@0: _LIT(KPersistsRepositoryCre,"C:\\private\\10202be9\\persists\\cadacada.cre"); sl@0: fm->Delete(KPersistsRepositoryCre); sl@0: sl@0: //Copy of modified stored rom version info sl@0: User::LeaveIfError(fm->Copy(KModifiedSwVersion,KCachedVersionFile,CFileMan::EOverWrite)); sl@0: User::LeaveIfError(fm->Attribs(KCachedVersionFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: sl@0: sl@0: //-------------------------Modify one of the settings-------------------------------- sl@0: CSessionNotifier* notifier = new(ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: CServerRepository* repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: //Need to reset the Uid to the new ROM value to ensure when persisting it is persisted sl@0: //under the new ROM Uid value in order to simulate the ROM Reflash later sl@0: repository->OpenL(KTestUid,*notifier); sl@0: repository->iUid=KUpdatedRomUid; sl@0: repository->iRepository->SetUid(KUpdatedRomUid); sl@0: TServerResources::iObserver->RemoveObserver(KTestUid,repository,0); sl@0: TServerResources::iObserver->RemoveSharedRepositoryInfo(KTestUid); sl@0: sl@0: TServerResources::iObserver->AddObserverL(KUpdatedRomUid, repository); sl@0: TServerResources::iObserver->AddSharedRepositoryInfoL(KUpdatedRomUid); sl@0: sl@0: //set a string key sl@0: TBuf8<100> KTestString; sl@0: KTestString.Copy(_L("voicemailboxnumber")); sl@0: User::LeaveIfError(repository->StartTransaction(EReadWriteTransaction)); sl@0: TInt err = repository->TransactionSetL(1,KTestString); sl@0: TEST2(err,KErrNone); sl@0: //a old ROM setting that has been modified by the user remains there even sl@0: //when the new ROM does not contain that setting sl@0: err = repository->TransactionSetL(0x300,5); sl@0: TEST2(err,KErrNone); sl@0: TUint32 tempKeyInfo; sl@0: User::LeaveIfError(repository->CommitTransaction(tempKeyInfo)); sl@0: sl@0: repository->Close(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: sl@0: //--------------------------Simulate the ROM Reflash--------------------------------- sl@0: // flush the cache manager contents. sl@0: CleanUp(); sl@0: CServerRepository::CheckROMReflashL(); sl@0: sl@0: sl@0: //--------------------------Validate the merging-------------------------------------- sl@0: notifier-new (ELeave)CSessionNotifier; sl@0: CleanupStack::PushL(notifier); sl@0: repository = new(ELeave) CServerRepository(); sl@0: CleanupStack::PushL(repository); sl@0: repository->OpenL(KUpdatedRomUid,*notifier); sl@0: sl@0: //validate the keyspace global properties sl@0: RSettingsArray& settings=repository->iRepository->iSimRep->SettingsArray(); sl@0: TEST2(settings.Count(),22); sl@0: RArray& deletedArray=repository->iRepository->iSimRep->DeletedSettingsArray(); sl@0: TEST2(deletedArray.Count(),0) ; sl@0: RRangePolicyArray& rangePolicy=repository->iRepository->iSimRep->RangePolicyArray(); sl@0: TEST2(rangePolicy.Count(),1); sl@0: RPointerArray& individualPolicy=repository->iRepository->iSimRep->SinglePolicyArray(); sl@0: TEST2(individualPolicy.Count(),20); sl@0: sl@0: RDefaultMetaArray& rangeMeta=repository->iRepository->iSimRep->RangeMetaArray(); sl@0: TEST2(rangeMeta.Count(),1); sl@0: for (TInt i=0;iClose(); sl@0: CleanupStack::PopAndDestroy(2);//repository, notifier sl@0: CleanupStack::PopAndDestroy();//fm sl@0: sl@0: // If cache manager is initialized and used before, we flush it sl@0: CleanUp(); sl@0: } sl@0: sl@0: LOCAL_C void FuncTestsL() sl@0: { sl@0: SYSLIB_CENTRALREPOSITORY_UT_4025L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4026L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4027L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4028L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4029L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4030L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4031L(); sl@0: SYSLIB_CENTRALREPOSITORY_UT_4032L(); sl@0: INC134085L(); sl@0: } sl@0: sl@0: LOCAL_C void DoTestsL() sl@0: { sl@0: sl@0: TheTest.Start( _L( "FOTA functionality" ) ); sl@0: FuncTestsL(); sl@0: TheTest.End(); sl@0: sl@0: } sl@0: sl@0: LOCAL_C void MainL() sl@0: { sl@0: __UHEAP_MARK; sl@0: TheTest.Start( _L( "Fota Tests" ) ); sl@0: sl@0: // create and install the active scheduler we need sl@0: CActiveScheduler* s = new(ELeave) CActiveScheduler; sl@0: CleanupStack::PushL( s ); sl@0: CActiveScheduler::Install( s ); sl@0: sl@0: TServerResources::InitialiseL(); sl@0: sl@0: DeleteFilesL(); sl@0: sl@0: DoTestsL(); sl@0: sl@0: DeleteFilesL(); sl@0: TServerResources::Close(); sl@0: sl@0: // Cleanup the scheduler sl@0: CleanupStack::PopAndDestroy( s ); sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: if ( !cleanup ) sl@0: return KErrNoMemory; sl@0: sl@0: TRAPD( err, MainL() ); sl@0: TEST2(err, KErrNone); sl@0: sl@0: delete cleanup; sl@0: __UHEAP_MARKEND; sl@0: sl@0: return 0; sl@0: } sl@0: