os/persistentdata/persistentstorage/sql/TEST/t_sqloom.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/TEST/t_sqloom.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,130 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef T_SQLOOM_H
    1.20 +#define T_SQLOOM_H
    1.21 +
    1.22 +#include <e32test.h>
    1.23 +#include <bautils.h>
    1.24 +#include <sqldb.h>
    1.25 +
    1.26 +extern RTest TheTest;
    1.27 +
    1.28 +extern TInt TheHandleCount1B;
    1.29 +extern TInt TheHandleCount2B;
    1.30 +extern TInt TheAllocatedCellsCountB;
    1.31 +
    1.32 +const TSecurityPolicy KDefaultPolicy(ECapability_None);
    1.33 +const TSecurityPolicy KPolicy1(ECapabilityTrustedUI, ECapabilityDiskAdmin);
    1.34 +const TSecurityPolicy KPolicy2(ECapabilityTrustedUI);
    1.35 +const TSecurityPolicy KPolicy3(ECapabilityDiskAdmin);
    1.36 +
    1.37 +// These values have been found by performing each OOM test
    1.38 +// with an allocation limit of 1000 and then taking a value
    1.39 +// which is just above the allocation failure rate.
    1.40 +#if defined __WINS__ ||	defined __WINSCW__
    1.41 +const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50;
    1.42 +const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550;
    1.43 +const TInt KDoDbOomTestAllocLimitClient = 50;
    1.44 +const TInt KDoDbOomTestAllocLimitServer = 600;
    1.45 +const TInt KDoDbOomTest2AllocLimitClient = 50;
    1.46 +const TInt KDoDbOomTest2AllocLimitServer = 500;
    1.47 +const TInt KBlobOomTestAllocLimitClient = 20;
    1.48 +const TInt KBlobOomTestAllocLimitServer = 100;
    1.49 +const TInt KStmtOomTestAllocLimitClient = 20;
    1.50 +const TInt KStmtOomTestAllocLimitServer = 100;
    1.51 +#else	//The test running time is above the time limit (2400 sec) set for hardware testing
    1.52 +const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50/2;
    1.53 +const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550/2;
    1.54 +const TInt KDoDbOomTestAllocLimitClient = 50/2;
    1.55 +const TInt KDoDbOomTestAllocLimitServer = 600/2;
    1.56 +const TInt KDoDbOomTest2AllocLimitClient = 50/2;
    1.57 +const TInt KDoDbOomTest2AllocLimitServer = 500/2;
    1.58 +const TInt KBlobOomTestAllocLimitClient = 20;
    1.59 +const TInt KBlobOomTestAllocLimitServer = 100/2;
    1.60 +const TInt KStmtOomTestAllocLimitClient = 20;
    1.61 +const TInt KStmtOomTestAllocLimitServer = 100;
    1.62 +#endif
    1.63 +
    1.64 +_LIT(KTestDir, "c:\\test\\");
    1.65 +_LIT(KTestDb, "c:\\test\\t_sqloom_1.db");
    1.66 +_LIT(KSecureTestDb, "c:[21212121]t_sqloom_2.db");
    1.67 +_LIT(KAttachDb, "c:\\test\\t_sqloom_3.db");
    1.68 +_LIT(KSecureAttachDb, "c:[21212121]t_sqloom_4.db");
    1.69 +_LIT(KSecureAttachDb2, "c:[1111CCCC]t_ab.db");//Created outside this test
    1.70 +_LIT(KSecureDb2, "C:[21212121]t_sqloom_6.db");
    1.71 +_LIT(KTestDb2, "C:\\TEST\\t_sqloom_7.db");
    1.72 +_LIT(KPrivateTestDb, "c:\\private\\21212121\\t_sqloom_8.db");
    1.73 +
    1.74 +_LIT(KTableName1, "A_tbl");
    1.75 +_LIT(KTableName2, "B_table");
    1.76 +_LIT(KTableName3, "T_CCCCCCCCCCCCCC");
    1.77 +
    1.78 +///////////////////////////////////////////////////////////////////////////////////////
    1.79 +
    1.80 +enum TDbAction
    1.81 +	{
    1.82 +	ENotOpenDb,
    1.83 +	EOpenDb
    1.84 +	};
    1.85 +
    1.86 +enum TDbType
    1.87 +	{
    1.88 +	ENonSecureDb,
    1.89 +	ESecureDb
    1.90 +	};
    1.91 +
    1.92 +enum TOomTestType
    1.93 +	{
    1.94 +	EClientSideTest,
    1.95 +	EServerSideTest
    1.96 +	};
    1.97 +
    1.98 +extern TOomTestType TheOomTestType[2];
    1.99 +
   1.100 +///////////////////////////////////////////////////////////////////////////////////////
   1.101 +
   1.102 +void DeleteTestFiles();
   1.103 +void CreateTestDir();
   1.104 +void PrepareAttachFromHandle();
   1.105 +
   1.106 +void Check(TInt64 aValue, TInt aLine);
   1.107 +void Check(TInt64 aValue, TInt64 aExpected, TInt aLine);
   1.108 +#define TEST(arg) ::Check((arg), __LINE__)
   1.109 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
   1.110 +
   1.111 +void MarkHandles();
   1.112 +void CheckHandles();
   1.113 +void MarkAllocatedCells();
   1.114 +void CheckAllocatedCells();
   1.115 +
   1.116 +void PrintEndOfOomTest(TOomTestType aOomTestType, TInt aFailingAllocationNo);
   1.117 +void SetDbHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo, TBool aDelayed = EFalse);
   1.118 +void ResetDbHeapFailure(TOomTestType aOomTestType);
   1.119 +void SetHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo);
   1.120 +void ResetHeapFailure(TOomTestType aOomTestType);
   1.121 +
   1.122 +typedef void (*TDbFuncPtrL)(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType aDbType);
   1.123 +typedef void (*TStmtFuncPtrL)(RSqlDatabase& aDb, RSqlStatement& aStmt);
   1.124 +typedef void (*TStmtFuncPtr2L)(RSqlStatement& aStmt);
   1.125 +typedef void (*TScalarFullSelectFuncPtrL)(RSqlDatabase& aDb);
   1.126 +typedef void (*TBlobPrepareFuncPtrL)(RSqlDatabase& aDb);
   1.127 +typedef void (*TBlobTestFuncPtrL)(RSqlDatabase& aDb, const TDesC& aAttachDbName);
   1.128 +
   1.129 +void CreateTestSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy);
   1.130 +void CreateAttachDb();
   1.131 +void DbOomTestsL(TDbType aDbType);
   1.132 +
   1.133 +#endif//T_SQLOOM_H