sl@0: // Copyright (c) 2004-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 "t_cenrep_helper.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "e32math.h" 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 PREQ752 Tests")); sl@0: sl@0: TBool OomTesting; sl@0: sl@0: const TUid KUidPlatsecTestRepository = { 0x00000100 }; sl@0: const TUid KUidCorruptHeaderRepository = { 0xBADBADBA }; sl@0: const TUid KUidCorruptSettingRepository = { 0x00000003 }; sl@0: sl@0: // sl@0: // Repository A sl@0: // sl@0: sl@0: const TUint32 KNonExistent = 0; sl@0: sl@0: const TInt KNumSettings = 26; sl@0: const TInt KNumUnprotectedSettings = 11; sl@0: const TUint32 KUnprotectedSettingsMask = 0xFF000000 ; sl@0: const TUint32 KInt1 = 1; sl@0: const TInt KInt1_InitialValue = 1; sl@0: const TUint32 KNewInt = 1000; sl@0: const TInt KIntValue = 1234; sl@0: sl@0: const TUint32 KReal1 = 2; sl@0: const TReal KReal1_InitialValue = 2.732; sl@0: const TUint32 KReal2 = 8; sl@0: const TReal KReal2_InitialValue = 1.5; sl@0: const TUint32 KReal3 = 17; sl@0: sl@0: const TUint32 KString1 = 5; sl@0: _LIT(KString1_InitialValue, "test\\\"string\""); sl@0: sl@0: const TUint32 KLongString = 0x300 ; sl@0: sl@0: const TUint32 KMoveSource = 0x02000000 ; sl@0: const TUint32 KMoveTarget = 0x02000001 ; sl@0: const TUint32 KMoveSourceDoesntExist = 0x01000000 ; sl@0: const TUint32 KMoveTargetExists = 0x03000000 ; sl@0: const TUint32 KMoveForbidden = 0x04000000 ; sl@0: const TUint32 KMoveMask = 0xFF0000FF ; sl@0: sl@0: _LIT(KCreFile, "c:\\private\\10202BE9\\persists\\00000100.cre"); sl@0: _LIT(KZCorruptSettingFile, "z:\\private\\10202BE9\\00000003.txt"); sl@0: _LIT(KZCorruptHeaderFile, "z:\\private\\10202BE9\\00000bad.cre"); sl@0: sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macroses and functions 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: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: CleanupCDriveL(); 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: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0080 sl@0: @SYMTestCaseDesc Tests reach through Find operations during transactions. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Start a transaction and attempt Find operations. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void FindL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0080 ")); sl@0: TInt r; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: PlatSec platsec; sl@0: sl@0: // Test we can do some FindL's in a transaction sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadTransaction); sl@0: repository->CleanupRollbackTransactionPushL(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: RArray foundIds; sl@0: CleanupClosePushL(foundIds); sl@0: sl@0: TRAPD(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: sl@0: // Note that we are allowed to find any setting regardless of it's platsec sl@0: // what we can't do is return the value sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumUnprotectedSettings); sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindL(23, KUnprotectedSettingsMask, foundIds)); // 23 - just a random number, value is not important sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumUnprotectedSettings); sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask | 2, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==7); sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindL(4, KUnprotectedSettingsMask | 6, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindL(15, 15, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KInt1); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 0, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KReal2_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) 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: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 7.7, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==0); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KString1); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: _LIT(KFoo, "foo"); sl@0: TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KFoo, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==7); sl@0: TEST2(foundIds.Find(KInt1), KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(25, 25, KInt1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KReal1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==7); sl@0: TEST2(foundIds.Find(KReal1), KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(25, 25, KReal1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==7); sl@0: TEST2(foundIds.Find(KString1), KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: TRAP(leaveReason, r = repository->FindNeqL(25, 25, KString1_InitialValue, foundIds)); sl@0: if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory)) sl@0: { sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: User::Leave(KErrNoMemory); sl@0: } sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: CleanupStack::PopAndDestroy(); //foundIds sl@0: sl@0: TUint32 errorId; sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: CleanupStack::Pop(); // CleanupRollbackTransaction sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0081 sl@0: @SYMTestCaseDesc Tests reach through Find operations during transactions which create and delete settings. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Start various transactions with creates and deletes of settings and attempt Find operations on those settings. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void FindWithCreateDeleteL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0081 ")); sl@0: TInt r; sl@0: TUint32 errorId; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: RArray foundIds; sl@0: sl@0: PlatSec platsec; sl@0: sl@0: // Test that transaction operations that change settings work with find sl@0: sl@0: // Do a create in a transaction and check find operation sl@0: sl@0: // Begin transaction for create operation sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Creates new setting sl@0: r = repository->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try to find KIntValue - should be there now sl@0: r = repository->FindEqL(0, 0, KIntValue, foundIds); sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KNewInt); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: // Check num of settings - should now be KNumSettings+1 sl@0: r = repository->FindL(0, 0, foundIds); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings+1); sl@0: foundIds.Reset(); sl@0: sl@0: // Commit transaction - this makes KNewInt persistent sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check that transaction operation succeeded sl@0: sl@0: // Try to find KIntValue - should be there now sl@0: r = repository->FindEqL(0, 0, KIntValue, foundIds); sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==1); sl@0: TEST(foundIds[0]==KNewInt); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: // Check num of settings - should still be KNumSettings+1 sl@0: r = repository->FindL(0, 0, foundIds); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings+1); sl@0: foundIds.Reset(); sl@0: sl@0: // Do a delete in a transaction and check find operation sl@0: sl@0: // Begin transaction operation to delete KNewInt sl@0: r = repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Delete KNewInt sl@0: r = repository->Delete( KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try to find KIntValue, should not be there sl@0: r = repository->FindEqL(0, 0, KIntValue, foundIds); sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: // Check num of settings - should be KNumSettings sl@0: r = repository->FindL(0, 0, foundIds); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings); sl@0: foundIds.Reset(); sl@0: sl@0: // Commit transaction - make removal of KNewInt persistent sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check that transaction operation succeeded sl@0: sl@0: // Try to find KIntValue - should be gone now sl@0: r = repository->FindEqL(0, 0, KIntValue, foundIds); sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(r, KErrPermissionDenied); sl@0: } sl@0: foundIds.Reset(); sl@0: sl@0: // Check num of settings - should be back to KNumSettings sl@0: r = repository->FindL(0, 0, foundIds); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==KNumSettings); sl@0: foundIds.Reset(); sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0082 sl@0: @SYMTestCaseDesc Tests reach through Get operations during transactions. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Start a transaction and attempt Get operations. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void Get() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0082 ")); sl@0: TInt r; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: // Test we can do some Get's in a transaction sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: TInt y; sl@0: r = repository->Get(KInt1, y); sl@0: TEST2(r, KErrNone); sl@0: TEST(y==KInt1_InitialValue); sl@0: sl@0: TReal real1; sl@0: r = repository->Get(KReal1, real1); sl@0: TEST2(r, KErrNone); sl@0: TEST(real1==KReal1_InitialValue); sl@0: sl@0: TBuf<20> str; sl@0: r = repository->Get(KNonExistent, 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: PlatSec platsec; sl@0: if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement)) sl@0: { sl@0: TEST2(r, KErrNone); sl@0: TEST(str==KString1_InitialValue); sl@0: } sl@0: else sl@0: TEST2(r, KErrPermissionDenied); sl@0: sl@0: TUint32 errorId; sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0083 sl@0: @SYMTestCaseDesc Tests reach through Get operations during transactions which create and delete settings. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Start various transactions with creates and deletes of settings and attempt Get operations on those settings. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void GetWithCreateDeleteL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0083 ")); sl@0: TInt r; sl@0: TUint32 errorId; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: // Test that transaction operations that change settings work with new get sl@0: // which works independently of a transaction sl@0: sl@0: // Do a create in a transaction and check find operation sl@0: sl@0: // Begin transaction for create operation sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Create new setting sl@0: r = repository->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try to get KIntValue - should appear to be there sl@0: TInt i; sl@0: r = repository->Get(KNewInt, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KIntValue); sl@0: sl@0: // Commit transaction - KNewInt will be made persistent sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check that transaction operation succeeded sl@0: sl@0: // Try to get KIntValue - should be there now sl@0: r = repository->Get(KNewInt, i); sl@0: TEST2(r, KErrNone); sl@0: TEST(i==KIntValue); sl@0: sl@0: // Do a delete in a transaction and check find operation sl@0: sl@0: // Begin transaction operation to delete KNewInt sl@0: r = repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Delete KNewInt sl@0: r = repository->Delete( KNewInt); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try to get KIntValue - should appear to be gone sl@0: r = repository->Get(KNewInt, i); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // Commit transaction - so removal of KIntValue is persistent sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Check that transaction operation succeeded sl@0: sl@0: // Try to get KIntValue - should be gone now sl@0: r = repository->Get(KNewInt, i); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0084 sl@0: @SYMTestCaseDesc Tests transaction operations. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Test empty transaction, failed transactions and rollback of transaction. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void GeneralTransactionL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0084 ")); sl@0: TInt r; sl@0: TUint32 errorId; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: // Do an empty transaction sl@0: sl@0: // Begin transaction sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Commit transaction sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try 2 successive calls to begin a transaction sl@0: r = repository->StartTransaction(CRepository::EReadTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Try to create new setting, sl@0: r = repository->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Rollback unrequired transaction sl@0: repository->RollbackTransaction(); sl@0: sl@0: // Check that new setting was not created sl@0: TInt getValue; sl@0: r = repository->Get(KNewInt, getValue); sl@0: TEST2(r, KErrNotFound); sl@0: sl@0: sl@0: // Check that correct Id is returned for failed transaction sl@0: sl@0: r = repository->StartTransaction(CRepository::EReadWriteTransaction); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // do several creates with an illegal one in the middle sl@0: TInt KIntStartValue = 100; sl@0: const TUint32 KNewIntBase = 1000; sl@0: TInt i = 0; sl@0: const TInt imax = 0x0ff; sl@0: const TInt imiddle = 0x080; sl@0: for(i=0;iCreate(KNewIntBase+i, KIntStartValue+i); sl@0: TEST2(r, KErrNone); sl@0: } sl@0: sl@0: // Illegal create of existing setting - should fail transaction sl@0: r = repository->Create(KReal1, KReal1_InitialValue); sl@0: TEST2(r, KErrAlreadyExists); sl@0: sl@0: for(i=imiddle;iCreate(KNewIntBase+i, KIntStartValue+i); sl@0: // after transaction has failed, KErrAbort should be returned by all methods sl@0: TEST2(r, KErrAbort); sl@0: } sl@0: sl@0: r = repository->CommitTransaction(errorId); sl@0: TEST2(r, KErrAlreadyExists); sl@0: TEST2(errorId, KReal1); sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0086 sl@0: @SYMTestCaseDesc Tests move operations. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Move keys or groups of keys within keyspace. Ensure security policies are correctly enforced and that errors are correctly reported. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void MoveL() sl@0: // Initial test of move stuff JMG 08/11/2005 sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0086 ")); sl@0: TInt r; sl@0: TUint32 errId ; sl@0: CRepository* repository; sl@0: sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: // sl@0: // 1. Simple Move Operation sl@0: // sl@0: sl@0: // Confirm that source keys exist sl@0: RArray foundIds; sl@0: r = repository->FindL(KMoveSource, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==5); sl@0: foundIds.Reset(); sl@0: sl@0: // Confirm that target keys don't exist! sl@0: r = repository->FindL(KMoveTarget, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: // Move a set of keys sl@0: r = repository->Move(KMoveSource, KMoveTarget, KMoveMask, errId) ; sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Confirm that target keys now exist sl@0: r = repository->FindL(KMoveTarget, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==5); sl@0: foundIds.Reset(); sl@0: sl@0: // Confirm that source keys no longer exist! sl@0: r = repository->FindL(KMoveSource, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: // Move keys back again [For our later convenience :-)] sl@0: r = repository->Move(KMoveTarget, KMoveSource, KMoveMask, errId) ; sl@0: TEST2(r, KErrNone); sl@0: r = repository->FindL(KMoveSource, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNone); sl@0: TEST(foundIds.Count()==5); sl@0: foundIds.Reset(); sl@0: sl@0: sl@0: // sl@0: // 2. Move Operation where target already exists sl@0: // sl@0: r = repository->Move(KMoveSource, KMoveTargetExists, KMoveMask, errId) ; sl@0: TEST2(r, KErrAlreadyExists); sl@0: errId &= KMoveMask ; sl@0: TEST(errId == KMoveTargetExists) ; sl@0: sl@0: sl@0: // sl@0: // 3. Move Operation where source doesn't exist sl@0: // sl@0: sl@0: // Confirm that source keys don't exist. sl@0: r = repository->FindL(KMoveSourceDoesntExist, KMoveMask, foundIds); sl@0: if(OomTesting && r==KErrNoMemory) sl@0: User::Leave(KErrNoMemory); sl@0: TEST2(r, KErrNotFound); sl@0: TEST(foundIds.Count()==0); sl@0: foundIds.Reset(); sl@0: sl@0: // Attempt move and check result sl@0: r = repository->Move(KMoveSourceDoesntExist, KMoveTarget, KMoveMask, errId) ; sl@0: TEST2(r, KErrNotFound); sl@0: errId &= KMoveMask ; sl@0: TEST2(errId, KMoveSourceDoesntExist) ; sl@0: sl@0: sl@0: // sl@0: // 4. Move Operation where client doesn't have capabilities to write sl@0: // to target range. sl@0: // sl@0: sl@0: // Attempt move and check result sl@0: r = repository->Move(KMoveSource, KMoveForbidden, KMoveMask, errId) ; sl@0: TEST2(r, KErrPermissionDenied); sl@0: errId &= KMoveMask ; sl@0: TEST2(errId, KMoveForbidden) ; sl@0: sl@0: // sl@0: // 5. Move Operation where client doesn't have capabilities to read sl@0: // from source range. sl@0: // sl@0: sl@0: // Attempt move and check result sl@0: r = repository->Move(KMoveForbidden, KMoveTarget, KMoveMask, errId) ; sl@0: TEST2(r, KErrPermissionDenied); sl@0: errId &= KMoveMask ; sl@0: TEST2(errId, KMoveForbidden) ; sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: // Close the repository sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0087 sl@0: @SYMTestCaseDesc Tests handling of long (>256 character) strings. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Attempt to write and then read back a long string sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMPREQ PREQ752 sl@0: */ sl@0: sl@0: LOCAL_C void LongStringL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0087 ")); sl@0: TInt r; sl@0: TUint16 eric ; sl@0: sl@0: CRepository* repository; sl@0: User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: sl@0: HBufC* longSetString = HBufC::NewLC(KMaxUnicodeStringLength); sl@0: TPtr setStr(longSetString->Des()) ; sl@0: HBufC* longGetString = HBufC::NewLC(KMaxUnicodeStringLength); sl@0: TPtr getStr(longGetString->Des()) ; sl@0: sl@0: for (r = 0; r < KMaxUnicodeStringLength; r++) sl@0: { sl@0: eric = (TInt16)Math::Random(); sl@0: setStr.Append(eric) ; sl@0: } sl@0: sl@0: r = repository->Set(KLongString, setStr); sl@0: TEST2(r, KErrNone); sl@0: sl@0: r = repository->Get(KLongString, getStr); sl@0: TEST2(r, KErrNone); sl@0: TEST(getStr==setStr); sl@0: sl@0: // Restore repository sl@0: r = repository->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: CleanupStack::PopAndDestroy(longGetString) ; sl@0: CleanupStack::PopAndDestroy(longSetString) ; sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: sl@0: /* sl@0: @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0098 sl@0: @SYMTestCaseDesc Tests robustness. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Handle corrupt files and settings correctly sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ4093 sl@0: */ sl@0: LOCAL_C void REQ4093L() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0098 ")); 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: CRepository* rep; sl@0: sl@0: // Open corrupt header ROM file sl@0: TheTest.Printf(_L("\nOpen corrupt header ROM file\n")); sl@0: TRAPD(errH, rep=CRepository::NewLC(KUidCorruptHeaderRepository)); sl@0: TEST2(errH, KErrCorrupt); sl@0: // Open corrupt setting ROM file sl@0: TheTest.Printf(_L("\nOpen corrupt setting ROM file\n")); sl@0: TRAPD(errS,rep=CRepository::NewLC(KUidCorruptSettingRepository)); sl@0: TEST2(errS, KErrCorrupt); sl@0: sl@0: // Edit repos with new setting sl@0: TheTest.Printf(_L("\nEdit repos with new setting\n")); sl@0: User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: TInt r = rep->Create(KNewInt, KIntValue); sl@0: TEST2(r, KErrNone); sl@0: TInt newInt; sl@0: r=rep->Get(KNewInt, newInt); sl@0: TEST2(r, KErrNone); sl@0: CleanupStack::PopAndDestroy(rep); sl@0: sl@0: // Existance of caching functionality invalidates some tests and sl@0: // makes them fail, so kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: sl@0: // Copy corrupt header file in rep dir as C: file sl@0: // Corrupt file has KNewInt and corrupt header sl@0: TheTest.Printf(_L("\nCopy corrupt header file into persists dir\n")); sl@0: User::LeaveIfError(fm->Copy(KZCorruptHeaderFile, KCreFile)); sl@0: sl@0: // Reset read-only bit sl@0: User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0))); sl@0: //need to delete .cre file to preserve test's old behaviour sl@0: User::LeaveIfError(fm->Delete(KCreFile)); sl@0: User::After(KGeneralDelay); sl@0: sl@0: // Open repos, should find corrupt header and use ROM file sl@0: User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: // If we can't find KNewInt, this proves that we are using ROM file sl@0: r=rep->Get(KNewInt, newInt); sl@0: TEST2(r, KErrNotFound); sl@0: // Test that file is deleted sl@0: TheTest.Printf(_L("\nCheck corrupt header file deleted from persists dir\n")); sl@0: TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse); sl@0: // Close repository sl@0: CleanupStack::PopAndDestroy(rep); sl@0: sl@0: // Existance of caching functionality invalidates some tests and sl@0: // makes them fail, so kill the server to force clearing the cache sl@0: KillCentRepServerL(); sl@0: sl@0: // Copy file with corrupt setting into C: sl@0: TheTest.Printf(_L("\nCopy corrupt setting file into persists dir\n")); sl@0: User::LeaveIfError(fm->Copy(KZCorruptSettingFile, KCreFile)); sl@0: // Reset read-only bit sl@0: User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0))); sl@0: User::After(KGeneralDelay); sl@0: // Open repos, should find corrupt setting and use ROM file sl@0: User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository)); sl@0: // Test that file is deleted sl@0: TheTest.Printf(_L("\nCheck corrupt setting file deleted from persists dir\n")); sl@0: TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse); sl@0: sl@0: // Restore repository sl@0: r = rep->Reset(); sl@0: TEST2(r, KErrNone); sl@0: sl@0: //close repository sl@0: CleanupStack::PopAndDestroy(3); //rep, fs,fm sl@0: } sl@0: sl@0: LOCAL_C void FuncTestsL() sl@0: { sl@0: TheTest.Start(_L("Transaction commands")); sl@0: GeneralTransactionL(); sl@0: sl@0: TheTest.Next(_L("Find during transaction")); sl@0: FindL(); sl@0: sl@0: TheTest.Next(_L("Find during transaction with create/delete")); sl@0: FindWithCreateDeleteL(); sl@0: sl@0: TheTest.Next(_L("Get during transaction")); sl@0: Get(); sl@0: sl@0: TheTest.Next(_L("Get during transaction with create/delete")); sl@0: GetWithCreateDeleteL(); sl@0: sl@0: TheTest.Next(_L("Move")) ; sl@0: MoveL() ; sl@0: sl@0: TheTest.Next(_L("Long String")) ; sl@0: LongStringL() ; sl@0: sl@0: TheTest.Next(_L("REQ4093 tests")); sl@0: REQ4093L() ; sl@0: sl@0: sl@0: TheTest.End(); sl@0: } sl@0: sl@0: sl@0: // --------------------------------------------------- sl@0: // OomTest sl@0: // sl@0: // Function to convert a test into an OOM test sl@0: sl@0: LOCAL_C void OomTest(void (*testFuncL)()) sl@0: { 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: TRAP(error, (testFuncL)()); 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("Find")); sl@0: sl@0: OomTest(FindL); sl@0: sl@0: TheTest.End(); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void MainL() sl@0: { sl@0: TheTest.Start(_L("Functional tests")); sl@0: OomTesting = EFalse; sl@0: FuncTestsL(); sl@0: sl@0: TheTest.Next(_L("Out-of-memory tests")); sl@0: OomTesting = ETrue; sl@0: OomTestsL(); 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: // sl@0: // For the tests to work we need SID policing enforced plus the specific sl@0: // capabilities listed below. sl@0: // sl@0: // These are dependent on the capabilities set in the platform security sl@0: // repository test initialisation file 87654321.txt. If the content sl@0: // of that file changes then the following clauses may need to be sl@0: // updated. sl@0: // sl@0: if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) || sl@0: !PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) || sl@0: !PlatSec::IsCapabilityEnforced(ECapabilityDRM) || sl@0: !PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) || sl@0: !PlatSec::IsCapabilityEnforced(ECapabilityCommDD)) sl@0: { sl@0: TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings")); sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: return 0; sl@0: } 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: }