sl@0: // Copyright (c) 2004-2010 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 "t_cenrep_helper.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include "../cenrepsrv/srvreqs.h" sl@0: #include "../common/inc/srvdefs.h" sl@0: #include "../cenrepsrv/srvparams.h" sl@0: sl@0: using namespace NCentralRepositoryConstants; sl@0: sl@0: RTest TheTest(_L("Central Repository Tests")); sl@0: sl@0: TBool OomTesting; sl@0: sl@0: const TUid KUidTestRepository1 = { 0x00000001 }; sl@0: const TUid KUidCreTestRepository1 = { 0x22222221 }; sl@0: const TUid KUidTestRepository2 = { 0x00000002 }; sl@0: sl@0: const TUid KUidCorruptRepository = { 0x00000003 }; sl@0: const TUid KUidResetTestRepository = { 0x00000004 }; sl@0: sl@0: const TUid KUidDriveCRepository = { 0x00000010 }; sl@0: sl@0: const TUid KUidDriveCOnlyRepository = { 0x00000013 }; sl@0: sl@0: const TUid KUidTestRepository3 = { 0x00000103 }; sl@0: sl@0: // sl@0: // Test repository 1 sl@0: // sl@0: sl@0: const TUint32 KNonExisitentSetting = 0; sl@0: sl@0: const TInt KNumSettings = 9; sl@0: sl@0: const TUint32 KInt1 = 1; sl@0: const TInt KInt1_InitialValue = 1; sl@0: const TInt KInt1_UpdatedValue = 73; sl@0: const TUint32 KInt3 = 257; sl@0: const TUint32 KNewInt = 1000; sl@0: sl@0: const TUint32 KReal1 = 2; sl@0: const TReal KReal1_InitialValue = 2.732; sl@0: const TReal KReal1_UpdatedValue = 72.8; sl@0: const TUint32 KReal2 = 8; sl@0: const TReal KReal2_InitialValue = 1.5; sl@0: const TUint32 KReal3 = 17; sl@0: const TUint32 KNewReal = 2000; sl@0: sl@0: const TUint32 KString1 = 5; sl@0: _LIT(KString1_InitialValue, "test\\\"string\""); sl@0: _LIT(KString1_UpdatedValue, "another one"); sl@0: const TUint32 KString2 = 12; sl@0: _LIT8(KString2_8BitValue, "string"); sl@0: sl@0: const TUint32 KString12 = 12; sl@0: const TUint32 KNewString8 = 3000; sl@0: const TUint32 KNewString16 = 4000; sl@0: sl@0: const TUint32 KNewSetting1 = 0x2001; sl@0: const TUint32 KNewSetting2 = 0x2002; sl@0: const TUint32 KNewSetting3 = 0x2003; sl@0: const TUint32 KNewSetting4 = 0x2004; sl@0: const TUint32 KNewSetting5 = 0x2005; sl@0: const TUint32 KNewSetting6 = 0x2006; sl@0: const TUint32 KNewSetting7 = 0x2007; sl@0: const TUint32 KNewSetting8 = 0x2008; sl@0: sl@0: const TInt32 KNewSetting1Value = 4567; sl@0: const TReal KNewSetting2Value = 45.67; sl@0: _LIT(KNewSetting3Value, "a unicode str"); sl@0: _LIT8(KNewSetting4Value, "an ascii str"); sl@0: const TInt32 KNewSetting5Value = 2389; sl@0: const TReal KNewSetting6Value = 23.89; sl@0: _LIT(KNewSetting7Value, "another unicode str"); sl@0: _LIT8(KNewSetting8Value, "another ascii str"); sl@0: sl@0: sl@0: // sl@0: // Test repository 2 sl@0: // sl@0: sl@0: const TInt KIntB1 = 807; sl@0: const TInt KIntB1_InitialValue = 100; sl@0: sl@0: sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macroses and functions sl@0: sl@0: LOCAL_C void CheckL(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: CleanupCDriveL(); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: CleanupCDriveL(); 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: #define TEST(arg) ::CheckL((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: LOCAL_C void KillCentRepServerL() sl@0: { sl@0: _LIT(KCentralRepositoryServerName, "Centralrepositorysrv"); sl@0: _LIT(KProcessKillProcess, "t_processkillprocess.exe"); sl@0: sl@0: TRequestStatus stat; sl@0: RProcess p; sl@0: User::LeaveIfError(p.Create(KProcessKillProcess, KCentralRepositoryServerName)); sl@0: sl@0: // Asynchronous logon: completes when process terminates with process sl@0: // exit code sl@0: p.Logon(stat); sl@0: p.Resume(); sl@0: User::WaitForRequest(stat); sl@0: sl@0: TExitType exitType = p.ExitType(); sl@0: TInt exitReason = p.ExitReason(); sl@0: sl@0: _LIT(KKillServerFailed, "Killing Central Repository Server Failed"); sl@0: __ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KKillServerFailed, exitReason)); sl@0: sl@0: p.Close(); sl@0: User::LeaveIfError(exitReason); sl@0: } sl@0: sl@0: //This function resets the KUidTestRepository1 repository sl@0: //to its intial state to remove any changes made to the repository during sl@0: //previous tests sl@0: LOCAL_C void ResetTestRepositoryL() sl@0: { sl@0: CRepository* repository; sl@0: sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1)); sl@0: TInt r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: //This function restores the state of the files required for this test sl@0: //Existing files are deleted and then the required files are copied sl@0: //back from the Z drive to the c drive sl@0: LOCAL_C void RestoreTestFilesL() sl@0: { sl@0: //Delete all files from C:\\private\\10202BE9\\persists\\ dir sl@0: //and C:\\private\\10202BE9\\ dir sl@0: CleanupCDriveL(); sl@0: sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: sl@0: CFileMan* fm = CFileMan::NewL(fs); sl@0: CleanupStack::PushL(fm); sl@0: sl@0: // _LIT(KPersistTargetPath, "c:\\private\\10202BE9\\persists\\*.txt"); sl@0: _LIT(KPersistTargetPath, "z:\\private\\10202BE9\\*.txt"); sl@0: _LIT(KPersistSourcePath, "Z:\\private\\10202BE9\\*.txc"); sl@0: _LIT(KInstallTargetPath, "C:\\private\\10202BE9\\*.txt"); sl@0: _LIT(KInstallSourcePath, "Z:\\private\\10202BE9\\*.txi"); sl@0: sl@0: //copy test files from Z: to C: sl@0: CopyTestFilesL(*fm,KPersistSourcePath, KPersistTargetPath); sl@0: CopyTestFilesL(*fm,KInstallSourcePath, KInstallTargetPath); sl@0: sl@0: CleanupStack::PopAndDestroy(2); sl@0: sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1297 sl@0: @SYMTestCaseDesc Tests for creation and opening a central repository sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::NewLC(),CRepository::Get() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void OpenRepositoryL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1297 ")); sl@0: CRepository* repositoryA; sl@0: CRepository* repositoryB; sl@0: sl@0: TInt r; sl@0: sl@0: // When an attempt is made to open a central repository in this test the result will sl@0: // be that a new session (+ subsession) will be created with the server. For subsequent sl@0: // central repository openings subsessions are then created under the same server. sl@0: // Note that by placing the CRepository creation calls in the following order we sl@0: // are exercising among other things the following scenarios: sl@0: // 1. Session is opened and first subsession is created. Error occurs, whole session sl@0: // is pulled down. sl@0: // 2. Session is opened and first subsession is successfully created. 2nd subsession sl@0: // is opened. Error occurs with 2nd subsession. 2nd subsession is pulled down. Session sl@0: // and first sub-sesssion remain up. (DEF105089) sl@0: sl@0: TRAP(r, CRepository::NewL(TUid::Null())); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: repositoryB = CRepository::NewLC(KUidTestRepository2); sl@0: sl@0: TRAP(r, CRepository::NewL(KUidCorruptRepository)); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrCorrupt); sl@0: sl@0: repositoryA = CRepository::NewLC(KUidTestRepository1); sl@0: sl@0: TInt a; sl@0: r = repositoryA->Get(KInt1, a); sl@0: TEST2(r, KErrNone); sl@0: TEST(a==KInt1_InitialValue); sl@0: sl@0: r = repositoryB->Get(KIntB1, a); sl@0: TEST2(r, KErrNone); sl@0: TEST(a==KIntB1_InitialValue); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: sl@0: r = repositoryB->Get(KIntB1, a); sl@0: TEST2(r, KErrNone); sl@0: TEST(a==KIntB1_InitialValue); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryB); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1298 sl@0: @SYMTestCaseDesc Tests for CRepository's Integer,Real,String's Get and Set functions sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::Get(),CRepository::Set() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void GetSetL(const TUid& aUid) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1298 ")); sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: _LIT8(KString12_InitialValue, "string"); sl@0: TPtrC8 p8(KString12_InitialValue); sl@0: sl@0: _LIT(KString11_InitialValue, "string"); sl@0: TPtrC p16(KString11_InitialValue); sl@0: sl@0: TBuf8<20> str8; sl@0: TBuf<20> str; sl@0: TInt i = 0; sl@0: sl@0: // sl@0: // Integer get/set sl@0: // sl@0: sl@0: TInt r = repository->Get(KNonExisitentSetting, i); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(i==0); sl@0: sl@0: r = repository->Get(KReal1, i); sl@0: TEST2(r, KErrArgument); sl@0: TEST(i==0); sl@0: sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_InitialValue); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, i); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Set(KNonExisitentSetting, 10); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==10); sl@0: sl@0: r = repository->Delete(KNonExisitentSetting); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Set(KReal1, 0); sl@0: TEST2(r, KErrArgument); sl@0: sl@0: r = repository->Set(KInt1, KInt1_UpdatedValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_UpdatedValue); sl@0: sl@0: r = repository->Get(KInt1,str8); sl@0: TEST2(r, KErrArgument); sl@0: //checks if KInt was modified sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_UpdatedValue); sl@0: sl@0: r = repository->Set(KInt1, KString12_InitialValue); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_UpdatedValue); sl@0: sl@0: r = repository->Get(KInt1,str); sl@0: TEST2(r, KErrArgument); sl@0: //checks if KInt was modified sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_UpdatedValue); sl@0: sl@0: r = repository->Set(KInt1, KString11_InitialValue); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KInt1_UpdatedValue); sl@0: // sl@0: // Real get/set sl@0: // sl@0: sl@0: TReal y = 0; sl@0: sl@0: r = repository->Get(KNonExisitentSetting, y); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(y==0); sl@0: sl@0: r = repository->Get(KInt1, y); sl@0: TEST2(r, KErrArgument); sl@0: TEST(y==0); sl@0: sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_InitialValue); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Set(KNonExisitentSetting, 0.0); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y == 0.0); sl@0: sl@0: r = repository->Delete(KNonExisitentSetting); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Set(KInt1, 0.0); sl@0: TEST2(r, KErrArgument); sl@0: sl@0: r = repository->Set(KReal1, KReal1_UpdatedValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_UpdatedValue); sl@0: sl@0: r = repository->Get(KReal1,str8); sl@0: TEST2(r, KErrArgument); sl@0: //checks if KInt was modified sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_UpdatedValue); sl@0: sl@0: r = repository->Get(KReal1,str); sl@0: TEST2(r, KErrArgument); sl@0: //checks if KInt was modified sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_UpdatedValue); sl@0: sl@0: r = repository->Set(KReal1, KString12_InitialValue); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_UpdatedValue); sl@0: sl@0: r = repository->Set(KReal1, KString11_InitialValue); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KReal1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KReal1_UpdatedValue); sl@0: sl@0: // sl@0: // String get/set sl@0: // sl@0: r = repository->Get(KNonExisitentSetting, str); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(str.Length()==0); sl@0: sl@0: r = repository->Get(KInt1, str); sl@0: TEST2(r, KErrArgument); sl@0: TEST(str.Length()==0); sl@0: sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_InitialValue); sl@0: sl@0: TBuf<10> tooShort; sl@0: r = repository->Get(KString1, tooShort); sl@0: TEST2(r, KErrOverflow); sl@0: TEST(tooShort.Length()==10); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, str); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Set(KNonExisitentSetting, KString1_UpdatedValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNonExisitentSetting, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: r = repository->Delete(KNonExisitentSetting); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Set(KInt1, str); sl@0: TEST2(r, KErrArgument); sl@0: sl@0: r = repository->Set(KString1, KString1_UpdatedValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: //testing the new feature: creating an 8 bit string from ini file. sl@0: r = repository->Get(KString12, str8); sl@0: TEST2(r, KErrNone); sl@0: TEST(str8==KString12_InitialValue); sl@0: sl@0: //get 8-bit string with int sl@0: r = repository->Get(KString12, i); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KString12, str8); sl@0: TEST2(r, KErrNone); sl@0: TEST(str8==KString12_InitialValue); sl@0: sl@0: //get 8-bit string with real sl@0: r = repository->Get(KString12, y); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KString12, str8); sl@0: TEST2(r, KErrNone); sl@0: TEST(str8==KString12_InitialValue); sl@0: sl@0: //set 8-bit string with int sl@0: r = repository->Set(KString12, i); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KString12, str8); sl@0: TEST2(r, KErrNone); sl@0: TEST(str8==KString12_InitialValue); sl@0: sl@0: //set 8-bit string with real sl@0: r = repository->Set(KString12, y); sl@0: TEST2(r, KErrArgument); sl@0: r = repository->Get(KString12, str8); sl@0: TEST2(r, KErrNone); sl@0: TEST(str8==KString12_InitialValue); sl@0: sl@0: sl@0: //get 16-bit string with int sl@0: r = repository->Get(KString1,i); sl@0: TEST2(r, KErrArgument); sl@0: //checks if a string was modified sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: //get 16-bit string with real sl@0: r = repository->Get(KString1,y); sl@0: TEST2(r, KErrArgument); sl@0: //checks if a string was modified sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: //set 16-bit string with int sl@0: r = repository->Set(KString1,i); sl@0: TEST2(r, KErrArgument); sl@0: //checks if a string was modified sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: //set 16-bit string with real sl@0: r = repository->Set(KString1,y); sl@0: TEST2(r, KErrArgument); sl@0: //checks if a string was modified sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: sl@0: const TInt KStringLengthTooBig = KMaxUnicodeStringLength + 1; sl@0: TBuf tooBig; sl@0: tooBig.SetLength(KStringLengthTooBig); sl@0: r = repository->Set(KString1, tooBig); sl@0: TEST2(r, KErrArgument); sl@0: sl@0: //- Test null descriptors sl@0: r = repository->Set(KString1, KNullDesC); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KNullDesC); sl@0: sl@0: r = repository->Set(KString1, KString1_UpdatedValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check set is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KString1, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_UpdatedValue); sl@0: //- sl@0: sl@0: // Check that the SetGetParameters interface returns KErrNotSupported in the default macro configuration sl@0: #if !defined(__CENTREP_SERVER_PERFTEST__) && !defined(__CENTREP_SERVER_MEMTEST__) && !defined(__CENTREP_SERVER_CACHETEST__) sl@0: TIpcArgs args; sl@0: r = SetGetParameters(args); sl@0: TEST2(r, KErrNotSupported); sl@0: #endif sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1299 sl@0: @SYMTestCaseDesc Tests for CRepository class's find operations sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::FindL(),CRepository::FindEqL(),CRepository::FindNeqL() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void FindL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1299 ")); sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: RArray foundIds; sl@0: sl@0: TInt r = KErrNone; sl@0: TInt leaveCode = KErrNone; sl@0: TRAP(leaveCode, r = repository->FindL(0, 0, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings); sl@0: foundIds.Reset(); sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindL sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r = repository->FindL(23, 0, foundIds)); // 23 - just a random number, value is not important sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r=repository->FindL(0, 2, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==6); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r=repository->FindL(4, 6, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==2); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindL(15, 15, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindEqL for Int sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KInt1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KInt1); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, 0, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindEqL for Real sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KReal2_InitialValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==2); sl@0: TEST(foundIds[0]==KReal2); sl@0: TEST(foundIds[1]==KReal3); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, 7.7, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindEqL for String sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KString1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KString1); sl@0: foundIds.Reset(); sl@0: sl@0: _LIT(KFoo, "foo"); sl@0: sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindEqL for String8 sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KString2_8BitValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KString2); sl@0: foundIds.Reset(); sl@0: sl@0: _LIT8(KFoo8, "foo"); sl@0: sl@0: TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo8, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindNeqL for Int sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindNeqL(0, 0, KInt1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==8); sl@0: TEST2(foundIds.Find(KInt1), KErrNotFound); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindNeqL(25, 25, KInt1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindNeqL for Real sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindNeqL(0, 0, KReal1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==8); sl@0: TEST2(foundIds.Find(KReal1), KErrNotFound); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode,r= repository->FindNeqL(25, 25, KReal1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindNeqL for String sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==8); sl@0: TEST2(foundIds.Find(KString1), KErrNotFound); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString1_UpdatedValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: /***************************************************************************************/ sl@0: //Tests for FindNeqL for String8 sl@0: /***************************************************************************************/ sl@0: TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString2_8BitValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==8); sl@0: TEST2(foundIds.Find(KString2), KErrNotFound); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString2_8BitValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1300 sl@0: @SYMTestCaseDesc CRepository class functionality test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Test for CRepository::NotifyRequest() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void NotifyL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1300 ")); sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: TInt r = KErrNone; sl@0: TInt intval; sl@0: TRequestStatus intStatus; sl@0: TRequestStatus realStatus; sl@0: TRequestStatus stringStatus; sl@0: RThread thisThread; sl@0: sl@0: // sl@0: // Notification on non-existent setting sl@0: // sl@0: r = repository->NotifyRequest(KNonExisitentSetting, intStatus); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // sl@0: // Basic notification sl@0: // sl@0: r = repository->NotifyRequest(KInt1, intStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->NotifyRequest(KReal1, realStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->NotifyRequest(KString1, stringStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: sl@0: // Setting to the same value should not cause a notification sl@0: r = repository->Get(KInt1, intval); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KInt1, intval); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==KRequestPending); sl@0: TEST(realStatus==KRequestPending); sl@0: TEST(stringStatus==KRequestPending); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: // First change to setting should cause notification sl@0: r = repository->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KInt1); sl@0: TEST(realStatus==KRequestPending); sl@0: TEST(stringStatus==KRequestPending); sl@0: sl@0: // Second change to setting should not cause notification sl@0: intStatus = 7777; sl@0: r = repository->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==KRequestPending); sl@0: TEST(stringStatus==KRequestPending); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: sl@0: // Setting to the same value should not cause a notification sl@0: TReal realval; sl@0: r = repository->Get(KReal1, realval); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal1, realval); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==KRequestPending); sl@0: TEST(stringStatus==KRequestPending); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: r = repository->Set(KReal1, 0.0); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==KReal1); sl@0: TEST(stringStatus==KRequestPending); sl@0: sl@0: sl@0: // Setting to the same value should not cause a notification sl@0: realStatus = 8888; sl@0: TBuf<20> stringval; sl@0: r = repository->Get(KString1, stringval); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KString1, stringval); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==8888); sl@0: TEST(stringStatus==KRequestPending); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: _LIT(KStringValue2, "string2"); sl@0: r = repository->Set(KString1, KStringValue2); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==8888); sl@0: TEST(stringStatus==KString1); sl@0: sl@0: sl@0: // sl@0: // Cancelling single notifications sl@0: // sl@0: r = repository->NotifyRequest(KInt1, intStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyCancel(KInt1); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: sl@0: intStatus = 7777; sl@0: r = repository->NotifyRequest(KReal1, realStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KInt1, 1); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal1, 1.1); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==KReal1); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: sl@0: // sl@0: // Cancelling all notifications sl@0: // sl@0: realStatus = 8888; sl@0: r = repository->NotifyRequest(KInt1, intStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyRequest(KReal1, realStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->NotifyCancelAll(); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: TEST(realStatus==KUnspecifiedKey); sl@0: sl@0: intStatus = 7777; sl@0: realStatus = 8888; sl@0: r = repository->Set(KInt1, 2); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal1, 2.2); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==7777); sl@0: TEST(realStatus==8888); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: sl@0: // sl@0: // Group notifications sl@0: // sl@0: r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Set(KInt3, 3); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==KRequestPending); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: r = repository->Set(KInt1, 3); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KInt1); sl@0: sl@0: r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Set(KReal1, 3.3); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KReal1); sl@0: sl@0: sl@0: // sl@0: // Cancelling group notifications sl@0: // sl@0: r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyCancel(0, ~(KInt1+KReal1)); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: sl@0: r = repository->Set(KInt1, 3); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: r = repository->NotifyRequest(KInt1, intStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyRequest(0, ~(KInt1+KReal1), realStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyCancelAll(); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: User::WaitForAnyRequest(); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: TEST(realStatus==KUnspecifiedKey); sl@0: sl@0: r = repository->Set(KInt1, 4); sl@0: TEST2(r, KErrNone); sl@0: TEST(intStatus==KUnspecifiedKey); sl@0: TEST(realStatus==KUnspecifiedKey); sl@0: TEST(thisThread.RequestCount()==0); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3400 sl@0: @SYMTestCaseDesc CRepository class functionality test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Negative tests exercising CRepository::NotifyCancel() functions sl@0: Tests check that central repository notifier works properly when sl@0: client cancels multiple, non-existent notifications, and also sl@0: multiple and non-existent group notificatins in a variety of combinations. sl@0: @SYMTestExpectedResults There are 2 main points that we need to check in this test: sl@0: 1) when we are cancelling multiple notifications server-side function should sl@0: always return KErrNone or KErrNotFound preventing client requests from waitng sl@0: indefinitely sl@0: 2) IPC handling function should convert any error returned from the server sl@0: to KErrNone so that the client-side function NotifyCancel always returns KErrNone sl@0: (for more nformation on this requirement see DEF061504) sl@0: @SYMDEF INC102413 sl@0: */ sl@0: LOCAL_C void CancelNotificationsL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3400 ")); sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: TInt r = KErrNone; sl@0: TRequestStatus intStatus; sl@0: TRequestStatus realStatus1; sl@0: TRequestStatus realStatus2; sl@0: TRequestStatus realStatus3; sl@0: RThread thisThread; sl@0: sl@0: // sl@0: // Cancelling non-existent notifications sl@0: // sl@0: r = repository->NotifyCancel(KInt1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // sl@0: // Cancelling multiple notifications sl@0: // This test step checks that NotifyCancel function returns correct sl@0: // value KErrNone regardless of the number of registered notifiers sl@0: // sl@0: r = repository->NotifyRequest(KReal1, realStatus1); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyRequest(KReal2, realStatus2); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyRequest(KReal3, realStatus3); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->NotifyCancel(KReal3); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyCancel(KReal2); sl@0: TEST2(r, KErrNone); sl@0: r = repository->NotifyCancel(KReal1); sl@0: TEST2(r, KErrNone); sl@0: TEST2(thisThread.RequestCount(),3); sl@0: User::WaitForAnyRequest(); sl@0: TEST(realStatus3==KUnspecifiedKey); sl@0: User::WaitForAnyRequest(); sl@0: TEST(realStatus2==KUnspecifiedKey); sl@0: User::WaitForAnyRequest(); sl@0: TEST(realStatus1==KUnspecifiedKey); sl@0: TEST2(thisThread.RequestCount(),0); sl@0: sl@0: // check that all notificatioins were actually cancelled and we will not sl@0: // get a notification when we change the settings sl@0: realStatus1 = 7777; sl@0: realStatus2 = 8888; sl@0: realStatus3 = 9999; sl@0: r = repository->NotifyRequest(KInt1, intStatus); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal1, 1.0); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal2, 2.0); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KReal3, 3.0); sl@0: TEST2(r, KErrNone); sl@0: r = repository->Set(KInt1, 2); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(realStatus1==7777); sl@0: TEST(realStatus2==8888); sl@0: TEST(realStatus3==9999); sl@0: TEST(intStatus==KInt1); sl@0: TEST2(thisThread.RequestCount(),0); sl@0: sl@0: // sl@0: // Cancelling all notifications when no notifications exist sl@0: // sl@0: r = repository->NotifyCancelAll(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // sl@0: // Cancelling group notifications where some of the notifications have not been set up sl@0: // sl@0: //first make sure that all the settings exist sl@0: r = repository->Set(KReal1, 2.0); sl@0: r = repository->Set(KReal2, 3.0); sl@0: r = repository->Set(KReal3, 4.0); sl@0: //This mask notify request sets up notifies for a number of keys including KReal1 and KReal2 sl@0: r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus1); sl@0: TEST2(r, KErrNone); sl@0: //This mask notify request cancels notifies for a number of keys including KReal1 and KReal3 sl@0: r = repository->NotifyCancel(0, ~(KReal1+KReal3)); sl@0: TEST2(r, KErrNone); sl@0: //check that notification request for the setting KReal1 has not been cancelled sl@0: r = repository->Set(KReal1, 1.0); sl@0: User::WaitForAnyRequest(); sl@0: TEST2(r, KErrNone); sl@0: TEST(realStatus1==KReal1); sl@0: sl@0: // sl@0: // Cancelling multiple group notifications sl@0: // sl@0: //set up notification requests for 2 different groups of settings and then cancel them sl@0: // one by one in the reverse order checking that we get an expected return value sl@0: //This mask notify request sets up notifies for a number of keys including KInt1 and KReal3 sl@0: r = repository->NotifyRequest(0, ~(KInt1+KReal3), realStatus1); sl@0: TEST2(r, KErrNone); sl@0: //This mask notify request sets up notifies for a number of keys including KReal1 and KReal2 sl@0: r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus2); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //This mask notify request cancels notifies for a number of keys including KReal1 and KReal2 sl@0: r = repository->NotifyCancel(0, ~(KReal1+KReal2)); sl@0: TEST2(r, KErrNone); sl@0: //This mask notify request cancels notifies for a number of keys including KInt1 and KReal3 sl@0: r = repository->NotifyCancel(0, ~(KInt1+KReal3)); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: User::WaitForAnyRequest(); sl@0: TEST(realStatus1==KUnspecifiedKey); sl@0: TEST(realStatus2==KUnspecifiedKey); sl@0: sl@0: // sl@0: // Cancelling non-existent group notifications sl@0: // sl@0: r = repository->NotifyCancel(0, ~(KInt1+KReal3)); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //restore the repository value for the later tests to use sl@0: r = repository->Set(KInt1, 1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1301 sl@0: @SYMTestCaseDesc Tests for creation and deletion of new settings for CRepository class sl@0: @SYMTestPriority High sl@0: @SYMTestActions Test for CRepository::Create(),CRepository::Delete() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void CreateDeleteL(const TUid& aUid) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1301 ")); sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: TInt x; sl@0: TReal y; sl@0: TBuf8<20> z8; sl@0: TBuf16<20> z16; sl@0: sl@0: /***************************************************************************************/ sl@0: //test int create sl@0: /***************************************************************************************/ sl@0: TInt r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: const TInt KIntValue = 1234; sl@0: r = repository->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==KIntValue); sl@0: sl@0: r = repository->Delete(KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: sl@0: // test int create - second run sl@0: r = repository->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==KIntValue); sl@0: sl@0: r = repository->Delete(KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: sl@0: /***************************************************************************************/ sl@0: //test real create sl@0: /***************************************************************************************/ sl@0: sl@0: r = repository->Get(KNewReal, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: const TReal KRealValue = 5678.0; sl@0: r = repository->Create(KNewReal, KRealValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewReal, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KRealValue); sl@0: sl@0: r = repository->Delete(KNewReal); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewReal, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: //create real - second run sl@0: r = repository->Create(KNewReal, KRealValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewReal, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KRealValue); sl@0: sl@0: r = repository->Delete(KNewReal); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewReal, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: /***************************************************************************************/ sl@0: //test string8 create sl@0: /***************************************************************************************/ sl@0: sl@0: r = repository->Get(KNewString8, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: _LIT8(KString8Value, "ABCDEF"); sl@0: r = repository->Create(KNewString8, KString8Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString8, z8); sl@0: TEST2(r, KErrNone); sl@0: TEST(z8==KString8Value); sl@0: sl@0: r = repository->Delete(KNewString8); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString8, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Create(KNewString8, KString8Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString8, z8); sl@0: TEST2(r, KErrNone); sl@0: TEST(z8==KString8Value); sl@0: sl@0: r = repository->Delete(KNewString8); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: //second run sl@0: r = repository->Get(KNewString8, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: /***************************************************************************************/ sl@0: //test string16 create sl@0: /***************************************************************************************/ sl@0: sl@0: r = repository->Get(KNewString16, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: _LIT(KString16Value, "ghijklmn"); sl@0: r = repository->Create(KNewString16, KString16Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString16, z16); sl@0: TEST2(r, KErrNone); sl@0: TEST(z16==KString16Value); sl@0: sl@0: r = repository->Delete(KNewString16); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString16, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Create(KNewString16, KString16Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString16, z16); sl@0: TEST2(r, KErrNone); sl@0: TEST(z16==KString16Value); sl@0: sl@0: r = repository->Delete(KNewString16); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: r = repository->Get(KNewString16, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: sl@0: /***************************************************************************************/ sl@0: //test create all kinds and delete with mask sl@0: /***************************************************************************************/ sl@0: sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: //first check that none of the settings exist in the repository sl@0: r = repository->Get(KNewSetting1, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting2, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting3, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting4, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting5, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting6, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting7, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting8, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: //now create all of the new settings sl@0: x = KNewSetting1Value; sl@0: r = repository->Create(KNewSetting1, x); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting2, KNewSetting2Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting3, KNewSetting3Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting4, KNewSetting4Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: x = KNewSetting5Value; sl@0: r = repository->Create(KNewSetting5, x); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting6, KNewSetting6Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting7, KNewSetting7Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Create(KNewSetting8, KNewSetting8Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close and reopen rep to check create is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: //check that the new settings exist in the repository sl@0: r = repository->Get(KNewSetting1, x); sl@0: TEST(x == KNewSetting1Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting2, y); sl@0: TEST(y == KNewSetting2Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting3, z16); sl@0: TEST(z16 == KNewSetting3Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting4, z8); sl@0: TEST(z8 == KNewSetting4Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting5, x); sl@0: TEST(x == KNewSetting5Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting6, y); sl@0: TEST(y == KNewSetting6Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting7, z16); sl@0: TEST(z16 == KNewSetting7Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KNewSetting8, z8); sl@0: TEST(z8 == KNewSetting8Value); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // delete the settings sl@0: TUint32 errorKey = 0; sl@0: r = repository->Delete(0x00002000, 0xFFFFFF00, errorKey); sl@0: TEST2(errorKey, KUnspecifiedKey); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // close and reopen rep to check delete is persisted sl@0: CleanupStack::PopAndDestroy(repository); sl@0: User::LeaveIfNull(repository = CRepository::NewLC(aUid)); sl@0: sl@0: //check that none of the settings exist in the repository sl@0: r = repository->Get(KNewSetting1, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting2, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting3, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting4, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting5, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting6, y); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting7, z16); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Get(KNewSetting8, z8); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1302 sl@0: @SYMTestCaseDesc Multi client test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::Get(),CRepository::Set() functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void MultiClientL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1302 ")); sl@0: CRepository* repository1; sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: CRepository* repository2; sl@0: User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: // sl@0: // Get/Set sl@0: // sl@0: TInt i; sl@0: TInt r = repository1->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: r = repository2->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==0); sl@0: sl@0: r = repository2->Set(KInt1, 123); sl@0: TEST2(r, KErrNone); sl@0: r = repository1->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==123); sl@0: sl@0: // sl@0: // Notification sl@0: // sl@0: TRequestStatus status; sl@0: r = repository1->NotifyRequest(KInt1, status); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository2->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(status==KInt1); sl@0: sl@0: CleanupStack::PopAndDestroy(2); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1303 sl@0: @SYMTestCaseDesc Tests for resetting the new changes on CRepository sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::Reset() function sl@0: Tests for reset on a single setting that exists in the original ROM-based settings. sl@0: Tests for reset for a single setting that does not exist in the original ROM-based settings. sl@0: Tests for repository-wide reset for a repository that exists on ROM. sl@0: Tests for repository-wide reset for a repository that does not exist on ROM. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void ResetL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1303 ")); sl@0: CRepository* repositoryA; sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: // sl@0: // Test reset on a single setting that exists in the sl@0: // original ROM-based settings (we'll use KInt1) sl@0: // sl@0: sl@0: // Ensure KInt1 is set to a different value to its initial value sl@0: TInt r = repositoryA->Set(KInt1, KInt1_InitialValue+10); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: TRequestStatus s; sl@0: r = repositoryA->NotifyRequest(KInt1, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryA->Reset(KInt1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: RThread thisThread; sl@0: sl@0: TEST2(thisThread.RequestCount(), 1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s==KInt1); sl@0: sl@0: // Check KInt1 now has the right value sl@0: TInt x; sl@0: r = repositoryA->Get(KInt1, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==KInt1_InitialValue); sl@0: sl@0: // A second reset should not generate notification sl@0: // as value has not changed sl@0: r = repositoryA->NotifyRequest(KInt1, s); sl@0: TEST2(r, KErrNone); sl@0: r = repositoryA->Reset(KInt1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // sl@0: // Test reset for a single setting that does not exist sl@0: // in the original ROM-based settings. sl@0: // sl@0: const TInt KIntValue = 1234; sl@0: r = repositoryA->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: r = repositoryA->NotifyRequest(KNewInt, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryA->Reset(KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: TEST2(thisThread.RequestCount(), 1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s==KNewInt); sl@0: sl@0: // Check KNewInt has been deleted sl@0: r = repositoryA->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::WaitForAnyRequest(); //cancellation of request sl@0: TEST2(thisThread.RequestCount(), 0); sl@0: sl@0: // sl@0: // Test reset for a single setting in a repository that sl@0: // does not exist on ROM. sl@0: // sl@0: const TInt KSettingKey = KNonExisitentSetting; sl@0: const TInt KInitialValue = 10; sl@0: sl@0: CRepository* repositoryB; sl@0: User::LeaveIfNull(repositoryB = CRepository::NewLC(KUidDriveCOnlyRepository)); sl@0: sl@0: r = repositoryB->Create(KSettingKey, KInitialValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: r = repositoryB->NotifyRequest(KSettingKey, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryB->Reset(KSettingKey); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: TEST2(thisThread.RequestCount(), 1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s==KSettingKey); sl@0: sl@0: // Check KSettingKey has been deleted sl@0: r = repositoryB->Get(KSettingKey, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryB); sl@0: // sl@0: // Test repository-wide reset for a repository sl@0: // that exists on ROM. sl@0: // sl@0: CRepository* repositoryC; sl@0: User::LeaveIfNull(repositoryC = CRepository::NewLC(KUidResetTestRepository)); sl@0: sl@0: const TInt KNewSetting1 = 5; sl@0: const TInt KNewSetting2 = 6; sl@0: r = repositoryC->Create(KNewSetting1, 0); sl@0: TEST2(r, KErrNone); sl@0: r = repositoryC->Create(KNewSetting2, 0); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->Create(65, 1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->Set(70, 1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->Create(80, 1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->Create(90, 1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->NotifyRequest(0, 0, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryC->Reset(); sl@0: TEST2(r, KErrNone); sl@0: TEST(thisThread.RequestCount()==1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s==KUnspecifiedKey); sl@0: sl@0: r = repositoryC->Get(10, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==10); sl@0: sl@0: r = repositoryC->Get(40, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==0); sl@0: sl@0: r = repositoryC->Get(50, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==0); sl@0: sl@0: r = repositoryC->Get(60, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==0); sl@0: sl@0: r = repositoryC->Get(70, x); sl@0: TEST2(r, KErrNone); sl@0: TEST(x==0); sl@0: sl@0: TBuf<10> z; sl@0: r = repositoryC->Get(20, z); sl@0: TEST2(r, KErrNone); sl@0: TEST(z==_L("string")); sl@0: sl@0: TReal y; sl@0: r = repositoryC->Get(30, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==1); sl@0: sl@0: r = repositoryC->Get(5, x); sl@0: TEST2(r, KErrNotFound); sl@0: r = repositoryC->Get(6, x); sl@0: TEST2(r, KErrNotFound); sl@0: r = repositoryC->Get(65, x); sl@0: TEST2(r, KErrNotFound); sl@0: r = repositoryC->Get(80, x); sl@0: TEST2(r, KErrNotFound); sl@0: r = repositoryC->Get(90, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryC); sl@0: sl@0: // sl@0: // Test repository-wide reset for a repository sl@0: // that does not exist on ROM. sl@0: // sl@0: CRepository* repositoryD; sl@0: User::LeaveIfNull(repositoryD = CRepository::NewLC(KUidDriveCOnlyRepository)); sl@0: sl@0: r = repositoryD->Create(KSettingKey, KInitialValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: r = repositoryD->NotifyRequest(KSettingKey, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryD->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: TEST(thisThread.RequestCount()==1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s==KUnspecifiedKey); sl@0: sl@0: // Check KSettingKey has been deleted sl@0: r = repositoryD->Get(KSettingKey, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // Recreate KSettingKey sl@0: r = repositoryD->Create(KSettingKey, 10); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Reset KSettingKey only sl@0: r = repositoryD->Reset(KSettingKey); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check KSettingKey has been deleted sl@0: r = repositoryD->Get(KSettingKey, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryD); sl@0: } sl@0: sl@0: LOCAL_C void ResetCreL() sl@0: { sl@0: CRepository* repositoryA; sl@0: TInt r = KErrNone; sl@0: TRequestStatus s; sl@0: TInt x; sl@0: RThread thisThread; sl@0: sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // test for .cre file sl@0: // Test reset on a single setting that exists in the sl@0: // original ROM-based settings (we'll use KInt1) sl@0: // sl@0: sl@0: // Ensure KInt1 is set to a different value to its initial value sl@0: r = repositoryA->Set(KInt1, KInt1_InitialValue+10); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: r = repositoryA->NotifyRequest(KInt1, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryA->Reset(KInt1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: TEST2(thisThread.RequestCount(), 1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s == KInt1); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // Check KInt1 now has the right value sl@0: r = repositoryA->Get(KInt1, x); sl@0: TEST2(r, KErrNone); sl@0: TEST2(x, KInt1_InitialValue); sl@0: sl@0: // A second reset should not generate notification sl@0: // as value has not changed sl@0: r = repositoryA->NotifyRequest(KInt1, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryA->Reset(KInt1); sl@0: TEST2(r, KErrNone); sl@0: TEST2(thisThread.RequestCount(), 0); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: // sl@0: // Test reset for a single setting that does not exist sl@0: // in the original ROM-based settings. sl@0: // sl@0: const TInt KIntValue = 1234; sl@0: r = repositoryA->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::WaitForAnyRequest();//this is the cancellation of last notify request sl@0: TEST2(thisThread.RequestCount(), 0); sl@0: sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // We're testing we get a notification on a reset as well sl@0: r = repositoryA->NotifyRequest(KNewInt, s); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repositoryA->Reset(KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check we got a notifiation sl@0: TEST2(thisThread.RequestCount(), 1); sl@0: User::WaitForAnyRequest(); sl@0: TEST(s == KNewInt); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // Check KNewInt has been deleted sl@0: r = repositoryA->Get(KNewInt, x); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1)); sl@0: sl@0: // Reset entire repository sl@0: r = repositoryA->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repositoryA); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1304 sl@0: @SYMTestCaseDesc Tests for initialising file searching sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::Get() function sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void IniFileSearching() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1304 ")); sl@0: const TInt KSettingKey = 1; sl@0: sl@0: _LIT(KDriveZ, "drive z"); sl@0: sl@0: const TInt KBufLen = 7; // = Max of 3 above string lengths sl@0: sl@0: // sl@0: // File on drive C should take precedence sl@0: // sl@0: CRepository* repository = CRepository::NewL(KUidDriveCRepository); sl@0: sl@0: TBuf str; sl@0: TInt r = repository->Get(KSettingKey, str); sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KDriveZ); sl@0: sl@0: delete repository; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1305 sl@0: @SYMTestCaseDesc Tests for creating new repository on drive C: sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CRepository::NewL() function sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void RepositoryOnDriveC() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1305 ")); sl@0: const TInt KSettingKey = KNonExisitentSetting; sl@0: const TInt KInitialValue = 10; sl@0: sl@0: CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: TInt val; sl@0: TInt r = repository->Get(KSettingKey, val); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: r = repository->Create(KSettingKey, KInitialValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KSettingKey, val); sl@0: TEST2(r, KErrNone); sl@0: TEST(val==KInitialValue); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: repository = CRepository::NewL(KUidDriveCOnlyRepository); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: r = repository->Get(KSettingKey, val); sl@0: TEST2(r, KErrNone); sl@0: TEST(val==KInitialValue); sl@0: sl@0: r = repository->Set(KSettingKey, KInitialValue+1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KSettingKey, val); sl@0: TEST2(r, KErrNone); sl@0: TEST(val==KInitialValue+1); sl@0: sl@0: r = repository->Delete(KSettingKey); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: repository = CRepository::NewL(KUidDriveCOnlyRepository); sl@0: CleanupStack::PushL(repository); sl@0: sl@0: r = repository->Get(KSettingKey, val); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1656 sl@0: @SYMTestCaseDesc Notify-only client optimization test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for on-demand loading in API calls after in-session sl@0: unloading of repositories. Also tests for notification functionality. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMPREQ PREQ1228 sl@0: */ sl@0: LOCAL_C void NotifyOnlyL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1656 ")); sl@0: CRepository* repository1; sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: // check that functions work sl@0: TInt i; sl@0: TInt r = repository1->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==1); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: r = repository1->Set(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: const TInt KIntValue = 1234; sl@0: r = repository1->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: RArray foundIds; sl@0: TInt leaveCode = KErrNone; sl@0: TRAP(leaveCode, r= repository1->FindEqL(0, 0, KIntValue, foundIds)); sl@0: if (leaveCode != KErrNone) sl@0: r = leaveCode ; sl@0: if(OomTesting && r==KErrNoMemory) sl@0: { sl@0: foundIds.Close(); sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KNewInt); sl@0: foundIds.Reset(); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: r = repository1->Delete(KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: sl@0: // check that multiple clients work sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: r = repository1->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==1); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: CRepository* repository2; sl@0: User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: r = repository2->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==1); sl@0: sl@0: r = repository1->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==1); sl@0: sl@0: CleanupStack::PopAndDestroy(2); sl@0: sl@0: // check that notifications work sl@0: User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1)); sl@0: TRequestStatus status1; sl@0: r = repository1->NotifyRequest(KInt1, status1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1)); sl@0: r = repository2->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(status1==KInt1); sl@0: sl@0: r = repository1->NotifyRequest(KInt1, status1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupRepositoryCache(); sl@0: sl@0: r = repository2->Set(KInt1, 2); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(status1==KInt1); sl@0: sl@0: r = repository1->NotifyRequest(KInt1, status1); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CRepository* repository3; sl@0: User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1)); sl@0: TRequestStatus status3; sl@0: r = repository3->NotifyRequest(KInt1, status3); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository2->Set(KInt1, 0); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(status1==KInt1); sl@0: TEST(status3==KInt1); sl@0: sl@0: r = repository1->NotifyRequest(KInt1, status1); sl@0: TEST2(r, KErrNone); sl@0: r = repository3->NotifyRequest(KInt1, status3); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupRepositoryCache(); sl@0: sl@0: r = repository2->Set(KInt1, 1); sl@0: TEST2(r, KErrNone); sl@0: User::WaitForAnyRequest(); sl@0: TEST(status1==KInt1); sl@0: TEST(status3==KInt1); sl@0: sl@0: CleanupStack::PopAndDestroy(3); sl@0: // Kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1)); sl@0: sl@0: r = repository3->Get(KInt1, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==1); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4113 sl@0: @SYMTestCaseDesc Validates meta data is not lost before a transaction is committed sl@0: when deleting a range of settings. sl@0: @SYMTestPriority High sl@0: @SYMTestActions 1) Start a transaction. sl@0: 2) Delete a setting using the delete range function. sl@0: 3) Create a new setting (using the deleted key) sl@0: 4) Commit the transaction. sl@0: 5) Check the metadata of the setting. sl@0: @SYMTestExpectedResults When deleting a range of settings in a keyspace, and then sl@0: creating a new setting (with a key of a previously deleted setting) sl@0: the meta data should not be reset to 0, it should take on the default sl@0: metadata, if it exists. sl@0: @SYMDEF DEF144530 sl@0: */ sl@0: LOCAL_C void RangeDeleteMetaL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4113 ")); sl@0: sl@0: TUint32 partialKey = 0x0000004; sl@0: TUint32 mask = 0xFFFFFFF; sl@0: TUint32 meta = 0; sl@0: TUint32 expectedMeta = 0x10; // 16 sl@0: TUint32 keyCount = 0; sl@0: TUint32 expectedKeyCount = 1; sl@0: TUint32 error; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewL(KUidTestRepository3)); // 00000103.txt sl@0: sl@0: repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: sl@0: // Only want to delete 1 specific key, using the range delete function. sl@0: TInt ret = repository->Delete(partialKey, mask, error); sl@0: // We don't care about 'error' if 'ret==KErrNone'. sl@0: TEST2(ret, KErrNone); sl@0: sl@0: // Create a new setting that is the same key and type as the deleted one. sl@0: ret = repository->Create(partialKey, 200); sl@0: TEST2(ret, KErrNone); sl@0: sl@0: ret = repository->CommitTransaction(keyCount); sl@0: TEST2(ret, KErrNone); sl@0: // Confirm only 1 setting was updated. sl@0: TEST2(keyCount, expectedKeyCount); sl@0: sl@0: // Check the meta data of the newly created setting. It should be the sl@0: // the same as the defaultmeta value in the keyspace. sl@0: ret = repository->GetMeta(partialKey, meta); sl@0: TEST2(ret, KErrNone); sl@0: TEST2(meta, expectedMeta); sl@0: sl@0: delete repository; sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0494 sl@0: @SYMTestCaseDesc Tests the various functions on CentralRepository sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests the get/set,find,notify,create/delete, sl@0: file searching in repository,the repository on drive c only sl@0: Tests for multiple clients,for restoring factory settings. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void FuncTestsL() sl@0: { sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0494 Open/Close repository ")); sl@0: OpenRepositoryL(); sl@0: sl@0: TheTest.Next(_L("Get/Set .ini")); sl@0: GetSetL(KUidTestRepository1); sl@0: sl@0: TheTest.Next(_L("Get/Set .cre")); sl@0: GetSetL(KUidCreTestRepository1); sl@0: sl@0: TheTest.Next(_L("Find")); sl@0: FindL(); sl@0: sl@0: TheTest.Next(_L("Notify")); sl@0: NotifyL(); sl@0: sl@0: TheTest.Next(_L("Create/Delete .ini")); sl@0: CreateDeleteL(KUidTestRepository1); sl@0: sl@0: TheTest.Next(_L("Create/Delete .cre")); sl@0: CreateDeleteL(KUidCreTestRepository1); sl@0: sl@0: TheTest.Next(_L("Initialisation file searching")); sl@0: IniFileSearching(); sl@0: sl@0: TheTest.Next(_L("Repository on Drive C only")); sl@0: RepositoryOnDriveC(); sl@0: sl@0: TheTest.Next(_L("Multiple clients")); sl@0: MultiClientL(); sl@0: sl@0: TheTest.Next(_L("Restore factory settings")); sl@0: ResetL(); sl@0: sl@0: TheTest.Next(_L("Restore factory settings from binary based rep")); sl@0: ResetCreL(); sl@0: sl@0: TheTest.Next(_L("Negative testing for the notification cancelling")); sl@0: CancelNotificationsL(); sl@0: sl@0: TheTest.Next(_L("Notify-only client optimizations")); sl@0: NotifyOnlyL(); sl@0: sl@0: TheTest.Next(_L("Meta data after a Range Delete in transaction")); sl@0: RangeDeleteMetaL(); sl@0: sl@0: TheTest.End(); sl@0: } sl@0: sl@0: /** sl@0: OomTest sl@0: Function to convert a test into an OOM test sl@0: sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0495 sl@0: @SYMTestCaseDesc Out of memory test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for running out of memory sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void OomTest(void (*testFuncL)()) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0495 ")); sl@0: TInt error; sl@0: TInt count = 0; sl@0: sl@0: do sl@0: { sl@0: User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count); sl@0: User::__DbgMarkStart(RHeap::EUser); sl@0: sl@0: // find out the number of open handles sl@0: TInt startProcessHandleCount; sl@0: TInt startThreadHandleCount; sl@0: RThread().HandleCount(startProcessHandleCount, startThreadHandleCount); sl@0: sl@0: TRAP(error, (testFuncL)()); sl@0: sl@0: // check that no handles have leaked sl@0: TInt endProcessHandleCount; sl@0: TInt endThreadHandleCount; sl@0: RThread().HandleCount(endProcessHandleCount, endThreadHandleCount); sl@0: sl@0: TEST2(endProcessHandleCount, startProcessHandleCount); sl@0: TEST2(endThreadHandleCount, startThreadHandleCount); sl@0: sl@0: User::__DbgMarkEnd(RHeap::EUser, 0); sl@0: } while(error == KErrNoMemory); sl@0: sl@0: _LIT(KTestFailed, "Out of memory test failure on iteration %d\n"); sl@0: __ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count)); sl@0: sl@0: User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1); sl@0: } sl@0: sl@0: LOCAL_C void OomTestsL() sl@0: { sl@0: TheTest.Start(_L("Open/Close repository")); sl@0: OomTest(OpenRepositoryL); sl@0: sl@0: TheTest.Next(_L("GetSet for KUidTestRepository1")); sl@0: GetSetL(KUidTestRepository1); sl@0: TheTest.Next(_L("GetSet for KUidCreTestRepository1")); sl@0: GetSetL(KUidCreTestRepository1); sl@0: sl@0: TheTest.Next(_L("Find")); sl@0: OomTest(FindL); sl@0: sl@0: TheTest.End(); sl@0: } sl@0: sl@0: //This function tests the replacement of RFile with RFileBuf in CIniFileOut class (inifile.h) sl@0: //It shows that there is approx. 20% (LUBBOCK) performance boost when using simple "Set" sl@0: //operations. It may be even better when using "Commit" functionality. sl@0: static void PerformanceTestL() sl@0: { sl@0: CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository); sl@0: CleanupStack::PushL(repository); sl@0: //Test settings IDs sl@0: const TUint KIntId = 101; sl@0: const TUint KRealId = 102; sl@0: const TUint KDes16Id = 103; sl@0: const TUint KDes8Id = 104; sl@0: //Create test settings sl@0: TInt err = repository->Create(KIntId, 1); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Create(KRealId, 1.1); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Create(KDes16Id, _L16("DES16")); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Create(KDes8Id, _L8("DES8")); sl@0: TEST2(err, KErrNone); sl@0: //Performance test sl@0: TBuf16<32> buf16; sl@0: TBuf8<32> buf8; sl@0: TUint timeStart = User::TickCount(); sl@0: for(TInt i=0;i<500;++i) sl@0: { sl@0: buf16.Zero(); sl@0: buf16.AppendNum(i); sl@0: buf8.Zero(); sl@0: buf8.AppendNum(i); sl@0: sl@0: TInt err = repository->Set(KIntId, i); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Set(KRealId, (TReal)i); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Set(KDes16Id, buf16); sl@0: TEST2(err, KErrNone); sl@0: err = repository->Set(KDes8Id, buf8); sl@0: TEST2(err, KErrNone); sl@0: } sl@0: TUint timeEnd = User::TickCount(); sl@0: CleanupStack::PopAndDestroy(repository); sl@0: TheTest.Printf(_L("\nPerformanceTestL - %d ticks\n"), timeEnd-timeStart); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0497 sl@0: @SYMTestCaseDesc CentralRepository functionality test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Wrapper function calling up test functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void MainL() sl@0: { sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0497 Functional tests ")); sl@0: OomTesting = EFalse; sl@0: // Existance of caching functionality invalidates some tests and sl@0: // makes them fail. So cleanup cace. sl@0: RestoreTestFilesL(); sl@0: FuncTestsL(); sl@0: sl@0: TheTest.Next(_L("Out-of-memory tests")); sl@0: OomTesting = ETrue; sl@0: //Reset the KUidTestRepository1 which was modified by the previous test sl@0: //and is used in the next test. sl@0: ResetTestRepositoryL(); sl@0: OomTestsL(); sl@0: sl@0: TheTest.Next(_L("Performance test")); sl@0: PerformanceTestL(); sl@0: sl@0: TheTest.Next(_L("Clean out C: files")); sl@0: CleanupCDriveL(); sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); 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: if (err != KErrNone) sl@0: User::Panic(_L("Testing failed: "), err); sl@0: sl@0: delete cleanup; sl@0: __UHEAP_MARKEND; sl@0: sl@0: return 0; sl@0: }