os/persistentdata/persistentstorage/sql/TEST/t_sqloom.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef T_SQLOOM_H
sl@0
    17
#define T_SQLOOM_H
sl@0
    18
sl@0
    19
#include <e32test.h>
sl@0
    20
#include <bautils.h>
sl@0
    21
#include <sqldb.h>
sl@0
    22
sl@0
    23
extern RTest TheTest;
sl@0
    24
sl@0
    25
extern TInt TheHandleCount1B;
sl@0
    26
extern TInt TheHandleCount2B;
sl@0
    27
extern TInt TheAllocatedCellsCountB;
sl@0
    28
sl@0
    29
const TSecurityPolicy KDefaultPolicy(ECapability_None);
sl@0
    30
const TSecurityPolicy KPolicy1(ECapabilityTrustedUI, ECapabilityDiskAdmin);
sl@0
    31
const TSecurityPolicy KPolicy2(ECapabilityTrustedUI);
sl@0
    32
const TSecurityPolicy KPolicy3(ECapabilityDiskAdmin);
sl@0
    33
sl@0
    34
// These values have been found by performing each OOM test
sl@0
    35
// with an allocation limit of 1000 and then taking a value
sl@0
    36
// which is just above the allocation failure rate.
sl@0
    37
#if defined __WINS__ ||	defined __WINSCW__
sl@0
    38
const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50;
sl@0
    39
const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550;
sl@0
    40
const TInt KDoDbOomTestAllocLimitClient = 50;
sl@0
    41
const TInt KDoDbOomTestAllocLimitServer = 600;
sl@0
    42
const TInt KDoDbOomTest2AllocLimitClient = 50;
sl@0
    43
const TInt KDoDbOomTest2AllocLimitServer = 500;
sl@0
    44
const TInt KBlobOomTestAllocLimitClient = 20;
sl@0
    45
const TInt KBlobOomTestAllocLimitServer = 100;
sl@0
    46
const TInt KStmtOomTestAllocLimitClient = 20;
sl@0
    47
const TInt KStmtOomTestAllocLimitServer = 100;
sl@0
    48
#else	//The test running time is above the time limit (2400 sec) set for hardware testing
sl@0
    49
const TInt KDoCreateDatabaseOomTestAllocLimitClient = 50/2;
sl@0
    50
const TInt KDoCreateDatabaseOomTestAllocLimitServer = 550/2;
sl@0
    51
const TInt KDoDbOomTestAllocLimitClient = 50/2;
sl@0
    52
const TInt KDoDbOomTestAllocLimitServer = 600/2;
sl@0
    53
const TInt KDoDbOomTest2AllocLimitClient = 50/2;
sl@0
    54
const TInt KDoDbOomTest2AllocLimitServer = 500/2;
sl@0
    55
const TInt KBlobOomTestAllocLimitClient = 20;
sl@0
    56
const TInt KBlobOomTestAllocLimitServer = 100/2;
sl@0
    57
const TInt KStmtOomTestAllocLimitClient = 20;
sl@0
    58
const TInt KStmtOomTestAllocLimitServer = 100;
sl@0
    59
#endif
sl@0
    60
sl@0
    61
_LIT(KTestDir, "c:\\test\\");
sl@0
    62
_LIT(KTestDb, "c:\\test\\t_sqloom_1.db");
sl@0
    63
_LIT(KSecureTestDb, "c:[21212121]t_sqloom_2.db");
sl@0
    64
_LIT(KAttachDb, "c:\\test\\t_sqloom_3.db");
sl@0
    65
_LIT(KSecureAttachDb, "c:[21212121]t_sqloom_4.db");
sl@0
    66
_LIT(KSecureAttachDb2, "c:[1111CCCC]t_ab.db");//Created outside this test
sl@0
    67
_LIT(KSecureDb2, "C:[21212121]t_sqloom_6.db");
sl@0
    68
_LIT(KTestDb2, "C:\\TEST\\t_sqloom_7.db");
sl@0
    69
_LIT(KPrivateTestDb, "c:\\private\\21212121\\t_sqloom_8.db");
sl@0
    70
sl@0
    71
_LIT(KTableName1, "A_tbl");
sl@0
    72
_LIT(KTableName2, "B_table");
sl@0
    73
_LIT(KTableName3, "T_CCCCCCCCCCCCCC");
sl@0
    74
sl@0
    75
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    76
sl@0
    77
enum TDbAction
sl@0
    78
	{
sl@0
    79
	ENotOpenDb,
sl@0
    80
	EOpenDb
sl@0
    81
	};
sl@0
    82
sl@0
    83
enum TDbType
sl@0
    84
	{
sl@0
    85
	ENonSecureDb,
sl@0
    86
	ESecureDb
sl@0
    87
	};
sl@0
    88
sl@0
    89
enum TOomTestType
sl@0
    90
	{
sl@0
    91
	EClientSideTest,
sl@0
    92
	EServerSideTest
sl@0
    93
	};
sl@0
    94
sl@0
    95
extern TOomTestType TheOomTestType[2];
sl@0
    96
sl@0
    97
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    98
sl@0
    99
void DeleteTestFiles();
sl@0
   100
void CreateTestDir();
sl@0
   101
void PrepareAttachFromHandle();
sl@0
   102
sl@0
   103
void Check(TInt64 aValue, TInt aLine);
sl@0
   104
void Check(TInt64 aValue, TInt64 aExpected, TInt aLine);
sl@0
   105
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   106
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   107
sl@0
   108
void MarkHandles();
sl@0
   109
void CheckHandles();
sl@0
   110
void MarkAllocatedCells();
sl@0
   111
void CheckAllocatedCells();
sl@0
   112
sl@0
   113
void PrintEndOfOomTest(TOomTestType aOomTestType, TInt aFailingAllocationNo);
sl@0
   114
void SetDbHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo, TBool aDelayed = EFalse);
sl@0
   115
void ResetDbHeapFailure(TOomTestType aOomTestType);
sl@0
   116
void SetHeapFailure(TOomTestType aOomTestType, TInt aFailingAllocationNo);
sl@0
   117
void ResetHeapFailure(TOomTestType aOomTestType);
sl@0
   118
sl@0
   119
typedef void (*TDbFuncPtrL)(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType aDbType);
sl@0
   120
typedef void (*TStmtFuncPtrL)(RSqlDatabase& aDb, RSqlStatement& aStmt);
sl@0
   121
typedef void (*TStmtFuncPtr2L)(RSqlStatement& aStmt);
sl@0
   122
typedef void (*TScalarFullSelectFuncPtrL)(RSqlDatabase& aDb);
sl@0
   123
typedef void (*TBlobPrepareFuncPtrL)(RSqlDatabase& aDb);
sl@0
   124
typedef void (*TBlobTestFuncPtrL)(RSqlDatabase& aDb, const TDesC& aAttachDbName);
sl@0
   125
sl@0
   126
void CreateTestSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy);
sl@0
   127
void CreateAttachDb();
sl@0
   128
void DbOomTestsL(TDbType aDbType);
sl@0
   129
sl@0
   130
#endif//T_SQLOOM_H