sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef T_SQLOOM_H sl@0: #define T_SQLOOM_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: extern RTest TheTest; sl@0: sl@0: extern TInt TheHandleCount1B; sl@0: extern TInt TheHandleCount2B; sl@0: extern TInt TheAllocatedCellsCountB; sl@0: sl@0: const TSecurityPolicy KDefaultPolicy(ECapability_None); sl@0: const TSecurityPolicy KPolicy1(ECapabilityTrustedUI, ECapabilityDiskAdmin); sl@0: const TSecurityPolicy KPolicy2(ECapabilityTrustedUI); sl@0: const TSecurityPolicy KPolicy3(ECapabilityDiskAdmin); sl@0: sl@0: // These values have been found by performing each OOM test sl@0: // with an allocation limit of 1000 and then taking a value sl@0: // which is just above the allocation failure rate. sl@0: #if defined __WINS__ || defined __WINSCW__ sl@0: const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50; sl@0: const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550; sl@0: const TInt KDoDbOomTestAllocLimitClient = 50; sl@0: const TInt KDoDbOomTestAllocLimitServer = 600; sl@0: const TInt KDoDbOomTest2AllocLimitClient = 50; sl@0: const TInt KDoDbOomTest2AllocLimitServer = 500; sl@0: const TInt KBlobOomTestAllocLimitClient = 20; sl@0: const TInt KBlobOomTestAllocLimitServer = 100; sl@0: const TInt KStmtOomTestAllocLimitClient = 20; sl@0: const TInt KStmtOomTestAllocLimitServer = 100; sl@0: #else //The test running time is above the time limit (2400 sec) set for hardware testing sl@0: const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50/2; sl@0: const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550/2; sl@0: const TInt KDoDbOomTestAllocLimitClient = 50/2; sl@0: const TInt KDoDbOomTestAllocLimitServer = 600/2; sl@0: const TInt KDoDbOomTest2AllocLimitClient = 50/2; sl@0: const TInt KDoDbOomTest2AllocLimitServer = 500/2; sl@0: const TInt KBlobOomTestAllocLimitClient = 20; sl@0: const TInt KBlobOomTestAllocLimitServer = 100/2; sl@0: const TInt KStmtOomTestAllocLimitClient = 20; sl@0: const TInt KStmtOomTestAllocLimitServer = 100; sl@0: #endif sl@0: sl@0: _LIT(KTestDir, "c:\\test\\"); sl@0: _LIT(KTestDb, "c:\\test\\t_sqloom_1.db"); sl@0: _LIT(KSecureTestDb, "c:[21212121]t_sqloom_2.db"); sl@0: _LIT(KAttachDb, "c:\\test\\t_sqloom_3.db"); sl@0: _LIT(KSecureAttachDb, "c:[21212121]t_sqloom_4.db"); sl@0: _LIT(KSecureAttachDb2, "c:[1111CCCC]t_ab.db");//Created outside this test sl@0: _LIT(KSecureDb2, "C:[21212121]t_sqloom_6.db"); sl@0: _LIT(KTestDb2, "C:\\TEST\\t_sqloom_7.db"); sl@0: _LIT(KPrivateTestDb, "c:\\private\\21212121\\t_sqloom_8.db"); sl@0: sl@0: _LIT(KTableName1, "A_tbl"); sl@0: _LIT(KTableName2, "B_table"); sl@0: _LIT(KTableName3, "T_CCCCCCCCCCCCCC"); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: enum TDbAction sl@0: { sl@0: ENotOpenDb, sl@0: EOpenDb sl@0: }; sl@0: sl@0: enum TDbType sl@0: { sl@0: ENonSecureDb, sl@0: ESecureDb sl@0: }; sl@0: sl@0: enum TOomTestType sl@0: { sl@0: EClientSideTest, sl@0: EServerSideTest sl@0: }; sl@0: sl@0: extern TOomTestType TheOomTestType[2]; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: void DeleteTestFiles(); sl@0: void CreateTestDir(); sl@0: void PrepareAttachFromHandle(); sl@0: sl@0: void Check(TInt64 aValue, TInt aLine); sl@0: void Check(TInt64 aValue, TInt64 aExpected, TInt aLine); sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: void MarkHandles(); sl@0: void CheckHandles(); sl@0: void MarkAllocatedCells(); sl@0: void CheckAllocatedCells(); sl@0: sl@0: void PrintEndOfOomTest(TOomTestType aOomTestType, TInt aFailingAllocationNo); sl@0: void SetDbHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo, TBool aDelayed = EFalse); sl@0: void ResetDbHeapFailure(TOomTestType aOomTestType); sl@0: void SetHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo); sl@0: void ResetHeapFailure(TOomTestType aOomTestType); sl@0: sl@0: typedef void (*TDbFuncPtrL)(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType aDbType); sl@0: typedef void (*TStmtFuncPtrL)(RSqlDatabase& aDb, RSqlStatement& aStmt); sl@0: typedef void (*TStmtFuncPtr2L)(RSqlStatement& aStmt); sl@0: typedef void (*TScalarFullSelectFuncPtrL)(RSqlDatabase& aDb); sl@0: typedef void (*TBlobPrepareFuncPtrL)(RSqlDatabase& aDb); sl@0: typedef void (*TBlobTestFuncPtrL)(RSqlDatabase& aDb, const TDesC& aAttachDbName); sl@0: sl@0: void CreateTestSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy); sl@0: void CreateAttachDb(); sl@0: void DbOomTestsL(TDbType aDbType); sl@0: sl@0: #endif//T_SQLOOM_H