os/persistentdata/persistentstorage/sql/TEST/t_sqloom6.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2010 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
#include <e32test.h>
sl@0
    17
#include <s32buf.h>
sl@0
    18
#include <bautils.h>
sl@0
    19
#include <sqldb.h>
sl@0
    20
#include <stdio.h>
sl@0
    21
#include <stdlib.h>
sl@0
    22
#include "SqlResourceTester.h"      //TSqlResourceTester
sl@0
    23
#include "sqlite3.h"
sl@0
    24
#include "SqliteSymbian.h"
sl@0
    25
sl@0
    26
//In order to be able to compile the test, the following variables are defined (used inside the OS porting layer, 
sl@0
    27
//when _SQLPROFILER macro is defined)
sl@0
    28
#ifdef _SQLPROFILER
sl@0
    29
TInt TheSqlSrvProfilerFileRead = 0;
sl@0
    30
TInt TheSqlSrvProfilerFileWrite = 0;
sl@0
    31
TInt TheSqlSrvProfilerFileSync = 0;
sl@0
    32
TInt TheSqlSrvProfilerFileSetSize = 0;
sl@0
    33
#endif
sl@0
    34
sl@0
    35
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    36
sl@0
    37
RTest TheTest(_L("t_sqloom6 test"));
sl@0
    38
sl@0
    39
_LIT(KTestDir, "c:\\test\\");
sl@0
    40
_LIT(KDbFile, "c:\\test\\t_sqloom6.db");
sl@0
    41
sl@0
    42
static RSqlDatabase TheDb;
sl@0
    43
static RSqlStatement TheStmt;
sl@0
    44
sl@0
    45
static TInt TheProcessHandleCount = 0;
sl@0
    46
static TInt TheThreadHandleCount = 0;
sl@0
    47
static TInt TheAllocatedCellsCount = 0;
sl@0
    48
sl@0
    49
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    50
sl@0
    51
void DestroyTestEnv()
sl@0
    52
	{
sl@0
    53
	TheStmt.Close();
sl@0
    54
	TheDb.Close();
sl@0
    55
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
    56
    sqlite3SymbianLibFinalize();
sl@0
    57
    CloseSTDLIB();
sl@0
    58
	}
sl@0
    59
sl@0
    60
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    61
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    62
//Test macros and functions
sl@0
    63
void Check(TInt aValue, TInt aLine)
sl@0
    64
	{
sl@0
    65
	if(!aValue)
sl@0
    66
		{
sl@0
    67
		DestroyTestEnv();
sl@0
    68
		RDebug::Print(_L("*** Expresssion evaluated to false\r\n"));
sl@0
    69
		TheTest(EFalse, aLine);
sl@0
    70
		}
sl@0
    71
	}
sl@0
    72
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    73
	{
sl@0
    74
	if(aValue != aExpected)
sl@0
    75
		{
sl@0
    76
		DestroyTestEnv();
sl@0
    77
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    78
		TheTest(EFalse, aLine);
sl@0
    79
		}
sl@0
    80
	}
sl@0
    81
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    82
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    83
sl@0
    84
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    85
sl@0
    86
static void MarkHandles()
sl@0
    87
    {
sl@0
    88
    RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
sl@0
    89
    }
sl@0
    90
sl@0
    91
static void MarkAllocatedCells()
sl@0
    92
    {
sl@0
    93
    TheAllocatedCellsCount = User::CountAllocCells();
sl@0
    94
    }
sl@0
    95
sl@0
    96
static void CheckAllocatedCells()
sl@0
    97
    {
sl@0
    98
    TInt allocatedCellsCount = User::CountAllocCells();
sl@0
    99
    TEST2(allocatedCellsCount, TheAllocatedCellsCount);
sl@0
   100
    }
sl@0
   101
sl@0
   102
static void CheckHandles()
sl@0
   103
    {
sl@0
   104
    TInt endProcessHandleCount;
sl@0
   105
    TInt endThreadHandleCount;
sl@0
   106
    
sl@0
   107
    RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   108
sl@0
   109
    TEST2(TheProcessHandleCount, endProcessHandleCount);
sl@0
   110
    TEST2(TheThreadHandleCount, endThreadHandleCount);
sl@0
   111
    }
sl@0
   112
sl@0
   113
static void OomPreStep(TInt aFailingAllocationNo)
sl@0
   114
    {
sl@0
   115
    MarkHandles();
sl@0
   116
    MarkAllocatedCells();
sl@0
   117
    __UHEAP_MARK;
sl@0
   118
    TSqlResourceTester::Mark();
sl@0
   119
    TSqlResourceTester::SetHeapFailure(RHeap::EBurstFailNext, aFailingAllocationNo);
sl@0
   120
    }
sl@0
   121
sl@0
   122
static void OomPostStep()
sl@0
   123
    {
sl@0
   124
    __UHEAP_RESET;
sl@0
   125
    TSqlResourceTester::SetHeapFailure(RHeap::ENone, 0);
sl@0
   126
    TSqlResourceTester::Check();
sl@0
   127
    CheckAllocatedCells();
sl@0
   128
    CheckHandles();
sl@0
   129
    }
sl@0
   130
sl@0
   131
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   132
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   133
sl@0
   134
void CreateTestEnv()
sl@0
   135
    {
sl@0
   136
    RFs fs;
sl@0
   137
    TInt err = fs.Connect();
sl@0
   138
    TEST2(err, KErrNone);
sl@0
   139
sl@0
   140
    err = fs.MkDir(KTestDir);
sl@0
   141
    TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   142
sl@0
   143
    err = fs.CreatePrivatePath(EDriveC);
sl@0
   144
    TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   145
    
sl@0
   146
    fs.Close();
sl@0
   147
sl@0
   148
    sqlite3SymbianLibInit();
sl@0
   149
    }
sl@0
   150
sl@0
   151
//Creates a UTF8 encoded database with:
sl@0
   152
// - One table with three colums: A(ColumnName1234567890, Col2, Col3);
sl@0
   153
// - One record in the table with values: ('A1234567890', 'A12345', '');
sl@0
   154
void CreateTestDb(const TDesC& aDbName)
sl@0
   155
    {
sl@0
   156
    TBuf8<100> dbName8;
sl@0
   157
    dbName8.Copy(aDbName);
sl@0
   158
    sqlite3* db = 0;
sl@0
   159
    int rc = sqlite3_open((const char*)dbName8.PtrZ(), &db);
sl@0
   160
    TEST2(rc, SQLITE_OK);
sl@0
   161
    rc = sqlite3_exec(db, "CREATE TABLE A(ColumnName1234567890 TEXT, Col2 LONG TEXT, Col3 SMALL TEXT)", 0, 0, 0);
sl@0
   162
    TEST2(rc, SQLITE_OK);
sl@0
   163
    rc = sqlite3_exec(db, "INSERT INTO A VALUES('A1234567890', 'A12345', '')", 0, 0, 0);
sl@0
   164
    TEST2(rc, SQLITE_OK);
sl@0
   165
    sqlite3_close(db);
sl@0
   166
    }
sl@0
   167
sl@0
   168
/**
sl@0
   169
@SYMTestCaseID          PDS-SQL-CT-4176
sl@0
   170
@SYMTestCaseDesc        RSqlStatement::ColumnName() OOM test.
sl@0
   171
@SYMTestPriority        High
sl@0
   172
@SYMTestActions         The test runs RSqlStatement::ColumnName() in an OOM simulation loop.
sl@0
   173
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   174
                         - burst OOM simulation is used;
sl@0
   175
                         - UTF8 encoded database is used;
sl@0
   176
                         - only SQL server side OOM simulation is performed;
sl@0
   177
                         The purpose of the test is to verify that the ColumnName() call behaves correctly 
sl@0
   178
                         when the related sqlite3_column_name16() call performed by the SQL server fails 
sl@0
   179
                         with "no memory".
sl@0
   180
@SYMTestExpectedResults Test must not fail
sl@0
   181
@SYMDEF                 DEF145033
sl@0
   182
*/  
sl@0
   183
void ColumnNameOomTest()
sl@0
   184
    {
sl@0
   185
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   186
    //stream objects, the allocated memory cells are not counted.
sl@0
   187
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   188
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   189
    //and they will not be deallocated when the statement object is closed. 
sl@0
   190
    //But the result of the RSqlStatement::ColumnName() operation is checked. If there is a failed memory
sl@0
   191
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   192
    
sl@0
   193
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   194
    
sl@0
   195
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   196
sl@0
   197
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   198
    
sl@0
   199
    TInt err = TheDb.Open(KDbFile);
sl@0
   200
    TEST2(err, KErrNone);
sl@0
   201
    
sl@0
   202
    TInt failingAllocationNo = 0;
sl@0
   203
    err = KErrNoMemory;
sl@0
   204
    while(err == KErrNoMemory)
sl@0
   205
        {
sl@0
   206
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   207
        OomPreStep(failingAllocationNo);
sl@0
   208
        
sl@0
   209
        err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   210
        if(err != KErrNone)
sl@0
   211
            {
sl@0
   212
            goto LabelOomPostStep;
sl@0
   213
            }
sl@0
   214
        
sl@0
   215
        TPtrC name;
sl@0
   216
        err = TheStmt.ColumnName(0, name);
sl@0
   217
        if(err != KErrNone)
sl@0
   218
            {
sl@0
   219
            goto LabelStmtClose;
sl@0
   220
            }
sl@0
   221
        TEST(name == _L("ColumnName1234567890"));
sl@0
   222
        
sl@0
   223
        err = TheStmt.ColumnName(1, name);
sl@0
   224
        if(err != KErrNone)
sl@0
   225
            {
sl@0
   226
            goto LabelStmtClose;
sl@0
   227
            }
sl@0
   228
        TEST(name == _L("Col2"));
sl@0
   229
        
sl@0
   230
        err = TheStmt.ColumnName(2, name);
sl@0
   231
        if(err != KErrNone)
sl@0
   232
            {
sl@0
   233
            goto LabelStmtClose;
sl@0
   234
            }
sl@0
   235
        TEST(name == _L("Col3"));
sl@0
   236
        
sl@0
   237
LabelStmtClose:        
sl@0
   238
        TheStmt.Close();
sl@0
   239
        
sl@0
   240
LabelOomPostStep:        
sl@0
   241
        OomPostStep();
sl@0
   242
        }
sl@0
   243
sl@0
   244
    TheDb.Close();
sl@0
   245
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   246
    
sl@0
   247
    TEST2(err, KErrNone);   
sl@0
   248
    TheTest.Printf(_L("\r\n===RSqlStatement::ColumnName() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   249
    }
sl@0
   250
sl@0
   251
/**
sl@0
   252
@SYMTestCaseID          PDS-SQL-CT-4177
sl@0
   253
@SYMTestCaseDesc        RSqlStatement::ParameterName() OOM test.
sl@0
   254
@SYMTestPriority        High
sl@0
   255
@SYMTestActions         The test runs RSqlStatement::ParameterName() in an OOM simulation loop.
sl@0
   256
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   257
                         - burst OOM simulation is used;
sl@0
   258
                         - UTF8 encoded database is used;
sl@0
   259
                         - only SQL server side OOM simulation is performed;
sl@0
   260
                         The purpose of the test is to verify that the ParameterName() call behaves correctly 
sl@0
   261
                         if the related sqlite3_bind_parameter_name() call performed by the SQL server fails 
sl@0
   262
                         with "no memory".
sl@0
   263
@SYMTestExpectedResults Test must not fail
sl@0
   264
@SYMDEF                 DEF145033
sl@0
   265
*/  
sl@0
   266
void ParameterNameOomTest()
sl@0
   267
    {
sl@0
   268
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   269
    //stream objects, the allocated memory cells are not counted.
sl@0
   270
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   271
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   272
    //and they will not be deallocated when the statement object is closed. 
sl@0
   273
    //But the result of the RSqlStatement::ParameterName() operation is checked. If there is a failed memory
sl@0
   274
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   275
    
sl@0
   276
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   277
    
sl@0
   278
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   279
sl@0
   280
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   281
    
sl@0
   282
    TInt err = TheDb.Open(KDbFile);
sl@0
   283
    TEST2(err, KErrNone);
sl@0
   284
    
sl@0
   285
    TInt failingAllocationNo = 0;
sl@0
   286
    err = KErrNoMemory;
sl@0
   287
    while(err == KErrNoMemory)
sl@0
   288
        {
sl@0
   289
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   290
        OomPreStep(failingAllocationNo);
sl@0
   291
        
sl@0
   292
        err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Col2 != :Prm1234567890 AND Col3 != :Prm2 AND ColumnName1234567890 != ?"));
sl@0
   293
        if(err != KErrNone)
sl@0
   294
            {
sl@0
   295
            goto LabelOomPostStep;
sl@0
   296
            }
sl@0
   297
        
sl@0
   298
        TPtrC name;
sl@0
   299
        err = TheStmt.ParameterName(0, name);
sl@0
   300
        if(err != KErrNone)
sl@0
   301
            {
sl@0
   302
            goto LabelStmtClose;
sl@0
   303
            }
sl@0
   304
        TEST(name == _L(":Prm1234567890"));
sl@0
   305
        
sl@0
   306
        err = TheStmt.ParameterName(1, name);
sl@0
   307
        if(err != KErrNone)
sl@0
   308
            {
sl@0
   309
            goto LabelStmtClose;
sl@0
   310
            }
sl@0
   311
        TEST(name == _L(":Prm2"));
sl@0
   312
        
sl@0
   313
        err = TheStmt.ParameterName(2, name);
sl@0
   314
        if(err != KErrNone)
sl@0
   315
            {
sl@0
   316
            goto LabelStmtClose;
sl@0
   317
            }
sl@0
   318
        TEST(name == _L("?2"));
sl@0
   319
        
sl@0
   320
LabelStmtClose:        
sl@0
   321
        TheStmt.Close();
sl@0
   322
        
sl@0
   323
LabelOomPostStep:        
sl@0
   324
        OomPostStep();
sl@0
   325
        }
sl@0
   326
sl@0
   327
    TheDb.Close();
sl@0
   328
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   329
    
sl@0
   330
    TEST2(err, KErrNone);   
sl@0
   331
    TheTest.Printf(_L("\r\n===RSqlStatement::ColumnName() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   332
    }
sl@0
   333
sl@0
   334
/**
sl@0
   335
@SYMTestCaseID          PDS-SQL-CT-4178
sl@0
   336
@SYMTestCaseDesc        RSqlStatement::ColumnText() OOM test.
sl@0
   337
@SYMTestPriority        High
sl@0
   338
@SYMTestActions         The test runs RSqlStatement::ColumnText() in an OOM simulation loop.
sl@0
   339
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   340
                         - burst OOM simulation is used;
sl@0
   341
                         - UTF8 encoded database is used;
sl@0
   342
                         - only SQL server side OOM simulation is performed;
sl@0
   343
                         The purpose of the test is to verify that the ColumnText() call behaves correctly 
sl@0
   344
                         when the related sqlite3_column_text16() call performed by the SQL server fails 
sl@0
   345
                         with "no memory" (or the sqlite3_column_bytes16() call).
sl@0
   346
@SYMTestExpectedResults Test must not fail
sl@0
   347
@SYMDEF                 DEF145033
sl@0
   348
*/  
sl@0
   349
void ColumnTextOomTest()
sl@0
   350
    {
sl@0
   351
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   352
    //stream objects, the allocated memory cells are not counted.
sl@0
   353
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   354
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   355
    //and they will not be deallocated when the statement object is closed. 
sl@0
   356
    //But the result of the RSqlStatement::ColumnText() operation is checked. If there is a failed memory
sl@0
   357
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   358
    
sl@0
   359
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   360
    
sl@0
   361
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   362
sl@0
   363
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   364
    
sl@0
   365
    TInt err = TheDb.Open(KDbFile);
sl@0
   366
    TEST2(err, KErrNone);
sl@0
   367
    
sl@0
   368
    TInt failingAllocationNo = 0;
sl@0
   369
    err = KErrNoMemory;
sl@0
   370
    while(err == KErrNoMemory)
sl@0
   371
        {
sl@0
   372
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   373
        OomPreStep(failingAllocationNo);
sl@0
   374
        
sl@0
   375
        err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   376
        if(err != KErrNone)
sl@0
   377
            {
sl@0
   378
            goto LabelOomPostStep;
sl@0
   379
            }
sl@0
   380
        err = TheStmt.Next();
sl@0
   381
        if(err != KSqlAtRow)
sl@0
   382
            {
sl@0
   383
            goto LabelStmtClose;
sl@0
   384
            }
sl@0
   385
        
sl@0
   386
        TPtrC data;
sl@0
   387
        err = TheStmt.ColumnText(0, data);
sl@0
   388
        if(err != KErrNone)
sl@0
   389
            {
sl@0
   390
            goto LabelStmtClose;
sl@0
   391
            }
sl@0
   392
        TEST(data == _L("A1234567890"));
sl@0
   393
        
sl@0
   394
        err = TheStmt.ColumnText(1, data);
sl@0
   395
        if(err != KErrNone)
sl@0
   396
            {
sl@0
   397
            goto LabelStmtClose;
sl@0
   398
            }
sl@0
   399
        TEST(data == _L("A12345"));
sl@0
   400
sl@0
   401
        err = TheStmt.ColumnText(2, data);
sl@0
   402
        if(err != KErrNone)
sl@0
   403
            {
sl@0
   404
            goto LabelStmtClose;
sl@0
   405
            }
sl@0
   406
        TEST(data == _L(""));
sl@0
   407
sl@0
   408
LabelStmtClose:        
sl@0
   409
        TheStmt.Close();
sl@0
   410
                    
sl@0
   411
LabelOomPostStep:        
sl@0
   412
        OomPostStep();
sl@0
   413
        }
sl@0
   414
sl@0
   415
    TheDb.Close();
sl@0
   416
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   417
    
sl@0
   418
    TEST2(err, KErrNone);   
sl@0
   419
    TheTest.Printf(_L("\r\n===RSqlStatement::ColumnText() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   420
    }
sl@0
   421
sl@0
   422
/**
sl@0
   423
@SYMTestCaseID          PDS-SQL-CT-4179
sl@0
   424
@SYMTestCaseDesc        RSqlColumnReadStream OOM test.
sl@0
   425
@SYMTestPriority        High
sl@0
   426
@SYMTestActions         The test runs RSqlColumnReadStream in an OOM simulation loop.
sl@0
   427
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   428
                         - burst OOM simulation is used;
sl@0
   429
                         - UTF8 encoded database is used;
sl@0
   430
                         - only SQL server side OOM simulation is performed;
sl@0
   431
                         The purpose of the test is to verify that the RSqlColumnReadStream APIs behave correctly 
sl@0
   432
                         when the related sqlite3_column_text16() call performed by the SQL server fails 
sl@0
   433
                         with "no memory" (or the sqlite3_column_bytes16() call).
sl@0
   434
@SYMTestExpectedResults Test must not fail
sl@0
   435
@SYMDEF                 DEF145033
sl@0
   436
*/  
sl@0
   437
void TextColumnReadStreamOomTest()
sl@0
   438
    {
sl@0
   439
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   440
    //stream objects, the allocated memory cells are not counted.
sl@0
   441
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   442
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   443
    //and they will not be deallocated when the statement object is closed. 
sl@0
   444
    //But the result of the RSqlColumnReadStream::ReadL() operation is checked. If there is a failed memory
sl@0
   445
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   446
    
sl@0
   447
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   448
    
sl@0
   449
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   450
sl@0
   451
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   452
    
sl@0
   453
    TInt err = TheDb.Open(KDbFile);
sl@0
   454
    TEST2(err, KErrNone);
sl@0
   455
    
sl@0
   456
    TInt failingAllocationNo = 0;
sl@0
   457
    err = KErrNoMemory;
sl@0
   458
    while(err == KErrNoMemory)
sl@0
   459
        {
sl@0
   460
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   461
        OomPreStep(failingAllocationNo);
sl@0
   462
        
sl@0
   463
        err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   464
        if(err != KErrNone)
sl@0
   465
            {
sl@0
   466
            goto LabelOomPostStep;
sl@0
   467
            }
sl@0
   468
        err = TheStmt.Next();
sl@0
   469
        if(err != KSqlAtRow)
sl@0
   470
            {
sl@0
   471
            goto LabelCloseStmt;
sl@0
   472
            }
sl@0
   473
        
sl@0
   474
        RSqlColumnReadStream strm;
sl@0
   475
        err = strm.ColumnText(TheStmt, 0);
sl@0
   476
        if(err != KErrNone)
sl@0
   477
            {
sl@0
   478
            goto LabelCloseStmt;
sl@0
   479
            }
sl@0
   480
        TBuf<50> data;
sl@0
   481
        TRAP(err, strm.ReadL(data, 11));
sl@0
   482
        strm.Close();
sl@0
   483
        if(err != KErrNone)
sl@0
   484
            {
sl@0
   485
            goto LabelCloseStmt;
sl@0
   486
            }
sl@0
   487
        TEST(data == _L("A1234567890"));
sl@0
   488
sl@0
   489
        err = strm.ColumnText(TheStmt, 1);
sl@0
   490
        if(err != KErrNone)
sl@0
   491
            {
sl@0
   492
            goto LabelCloseStmt;
sl@0
   493
            }
sl@0
   494
        TRAP(err, strm.ReadL(data, 6));
sl@0
   495
        strm.Close();
sl@0
   496
        if(err != KErrNone)
sl@0
   497
            {
sl@0
   498
            goto LabelCloseStmt;
sl@0
   499
            }
sl@0
   500
        TEST(data == _L("A12345"));
sl@0
   501
sl@0
   502
        err = strm.ColumnText(TheStmt, 2);
sl@0
   503
        if(err != KErrNone)
sl@0
   504
            {
sl@0
   505
            goto LabelCloseStmt;
sl@0
   506
            }
sl@0
   507
        TInt len = -1;
sl@0
   508
        TRAP(err, len = strm.Source()->SizeL());//The column value is with 0 length
sl@0
   509
        strm.Close();
sl@0
   510
        if(err != KErrNone)
sl@0
   511
            {
sl@0
   512
            goto LabelCloseStmt;
sl@0
   513
            }
sl@0
   514
        TEST2(len, 0);
sl@0
   515
sl@0
   516
LabelCloseStmt:            
sl@0
   517
        TheStmt.Close();
sl@0
   518
        
sl@0
   519
LabelOomPostStep:        
sl@0
   520
        OomPostStep();
sl@0
   521
        }
sl@0
   522
sl@0
   523
    TheDb.Close();
sl@0
   524
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   525
    
sl@0
   526
    TEST2(err, KErrNone);   
sl@0
   527
    TheTest.Printf(_L("\r\n===RSqlColumnReadStream OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   528
    }
sl@0
   529
sl@0
   530
/**
sl@0
   531
@SYMTestCaseID          PDS-SQL-CT-4180
sl@0
   532
@SYMTestCaseDesc        TSqlScalarFullSelectQuery::SelectTextL() OOM test.
sl@0
   533
@SYMTestPriority        High
sl@0
   534
@SYMTestActions         The test runs TSqlScalarFullSelectQuery::SelectTextL() in an OOM simulation loop.
sl@0
   535
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   536
                         - burst OOM simulation is used;
sl@0
   537
                         - UTF8 encoded database is used;
sl@0
   538
                         - only SQL server side OOM simulation is performed;
sl@0
   539
                         The purpose of the test is to verify that the SelectTextL() call behaves correctly 
sl@0
   540
                         when the related sqlite3_column_text16() call performed by the SQL server fails 
sl@0
   541
                         with "no memory" (or the sqlite3_column_bytes16() call).
sl@0
   542
@SYMTestExpectedResults Test must not fail
sl@0
   543
@SYMDEF                 DEF145033
sl@0
   544
*/  
sl@0
   545
void ScalarColumnTextOomTest()
sl@0
   546
    {
sl@0
   547
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   548
    //stream objects, the allocated memory cells are not counted.
sl@0
   549
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   550
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   551
    //and they will not be deallocated when the statement object is closed. 
sl@0
   552
    //But the result of the TSqlScalarFullSelectQuery::SelectTextL() operation is checked. If there is a failed memory
sl@0
   553
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   554
    
sl@0
   555
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   556
    
sl@0
   557
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   558
sl@0
   559
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   560
    
sl@0
   561
    TInt err = TheDb.Open(KDbFile);
sl@0
   562
    TEST2(err, KErrNone);
sl@0
   563
    
sl@0
   564
    TInt failingAllocationNo = 0;
sl@0
   565
    err = KErrNoMemory;
sl@0
   566
    while(err == KErrNoMemory)
sl@0
   567
        {
sl@0
   568
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   569
        OomPreStep(failingAllocationNo);
sl@0
   570
        
sl@0
   571
        TSqlScalarFullSelectQuery query(TheDb);
sl@0
   572
        TBuf<50> data;
sl@0
   573
        TRAP(err, query.SelectTextL(_L("SELECT ColumnName1234567890 FROM A"), data));
sl@0
   574
        if(err != KErrNone)
sl@0
   575
            {
sl@0
   576
            goto LabelOomPostStep; 
sl@0
   577
            }
sl@0
   578
        TEST(data == _L("A1234567890"));
sl@0
   579
sl@0
   580
        TRAP(err, query.SelectTextL(_L("SELECT Col2 FROM A"), data));
sl@0
   581
        if(err != KErrNone)
sl@0
   582
            {
sl@0
   583
            goto LabelOomPostStep; 
sl@0
   584
            }
sl@0
   585
        TEST(data == _L("A12345"));
sl@0
   586
        
sl@0
   587
        TRAP(err, query.SelectTextL(_L("SELECT Col3 FROM A"), data));
sl@0
   588
        if(err != KErrNone)
sl@0
   589
            {
sl@0
   590
            goto LabelOomPostStep; 
sl@0
   591
            }
sl@0
   592
        TEST(data == _L(""));
sl@0
   593
        
sl@0
   594
LabelOomPostStep:        
sl@0
   595
        OomPostStep();
sl@0
   596
        }
sl@0
   597
sl@0
   598
    TheDb.Close();
sl@0
   599
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   600
    
sl@0
   601
    TEST2(err, KErrNone);   
sl@0
   602
    TheTest.Printf(_L("\r\n===TSqlScalarFullSelectQuery::SelectTextL() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   603
    }
sl@0
   604
sl@0
   605
/**
sl@0
   606
@SYMTestCaseID          PDS-SQL-CT-4181
sl@0
   607
@SYMTestCaseDesc        RSqlStatement::DeclaredColumnType() OOM test.
sl@0
   608
@SYMTestPriority        High
sl@0
   609
@SYMTestActions         The test runs RSqlStatement::DeclaredColumnType() in an OOM simulation loop.
sl@0
   610
                        The difference betwee this test case and the similar test case in t_sqloom2 is that here:
sl@0
   611
                         - burst OOM simulation is used;
sl@0
   612
                         - UTF8 encoded database is used;
sl@0
   613
                         - only SQL server side OOM simulation is performed;
sl@0
   614
                         The purpose of the test is to verify that the DeclaredColumnType() call behaves correctly 
sl@0
   615
                         when the related sqlite3_column_name16() call performed by the SQL server fails 
sl@0
   616
                         with "no memory".
sl@0
   617
@SYMTestExpectedResults Test must not fail
sl@0
   618
@SYMDEF                 DEF145033
sl@0
   619
*/  
sl@0
   620
void DeclaredColumnTypeOomTest()
sl@0
   621
    {
sl@0
   622
    //This is not really a full OOM test, because the SQL server counts only the number of active statement and 
sl@0
   623
    //stream objects, the allocated memory cells are not counted.
sl@0
   624
    //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
sl@0
   625
    //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
sl@0
   626
    //and they will not be deallocated when the statement object is closed. 
sl@0
   627
    //But the result of the RSqlStatement::DeclaredColumnType() operation is checked. If there is a failed memory
sl@0
   628
    //allocation on the server side, the returned column name can be NULL and that will be tested.
sl@0
   629
    
sl@0
   630
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   631
    
sl@0
   632
    TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   633
sl@0
   634
    CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
sl@0
   635
    
sl@0
   636
    TInt err = TheDb.Open(KDbFile);
sl@0
   637
    TEST2(err, KErrNone);
sl@0
   638
    
sl@0
   639
    TInt failingAllocationNo = 0;
sl@0
   640
    err = KErrNoMemory;
sl@0
   641
    while(err == KErrNoMemory)
sl@0
   642
        {
sl@0
   643
        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   644
        OomPreStep(failingAllocationNo);
sl@0
   645
        
sl@0
   646
        err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   647
        if(err != KErrNone)
sl@0
   648
            {
sl@0
   649
            goto LabelOomPostStep;
sl@0
   650
            }
sl@0
   651
        
sl@0
   652
        TSqlColumnType colType = ESqlNull;
sl@0
   653
        err = TheStmt.DeclaredColumnType(0, colType);
sl@0
   654
        if(err != KErrNone)
sl@0
   655
            {
sl@0
   656
            goto LabelStmtClose;
sl@0
   657
            }
sl@0
   658
        TEST2(colType, ESqlText);
sl@0
   659
        
sl@0
   660
        colType = ESqlNull;
sl@0
   661
        err = TheStmt.DeclaredColumnType(1, colType);
sl@0
   662
        if(err != KErrNone)
sl@0
   663
            {
sl@0
   664
            goto LabelStmtClose;
sl@0
   665
            }
sl@0
   666
        TEST2(colType, ESqlText);
sl@0
   667
        
sl@0
   668
        colType = ESqlNull;
sl@0
   669
        err = TheStmt.DeclaredColumnType(2, colType);
sl@0
   670
        if(err != KErrNone)
sl@0
   671
            {
sl@0
   672
            goto LabelStmtClose;
sl@0
   673
            }
sl@0
   674
        TEST2(colType, ESqlText);
sl@0
   675
        
sl@0
   676
LabelStmtClose:        
sl@0
   677
        TheStmt.Close();
sl@0
   678
        
sl@0
   679
LabelOomPostStep:        
sl@0
   680
        OomPostStep();
sl@0
   681
        }
sl@0
   682
sl@0
   683
    TheDb.Close();
sl@0
   684
    (void)RSqlDatabase::Delete(KDbFile);
sl@0
   685
    
sl@0
   686
    TEST2(err, KErrNone);   
sl@0
   687
    TheTest.Printf(_L("\r\n===RSqlStatement::DeclaredColumnType() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   688
    }
sl@0
   689
sl@0
   690
void DoTests()
sl@0
   691
	{
sl@0
   692
    TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4176 RSqlStatement::ColumnName() OOM test"));
sl@0
   693
    ColumnNameOomTest();
sl@0
   694
sl@0
   695
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4177 RSqlStatement::ParameterName() OOM test"));
sl@0
   696
    ParameterNameOomTest();
sl@0
   697
    
sl@0
   698
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4178 RSqlStatement::ColumnText() OOM test"));
sl@0
   699
    ColumnTextOomTest();
sl@0
   700
    
sl@0
   701
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4179 RSqlColumnReadStream OOM test"));
sl@0
   702
    TextColumnReadStreamOomTest();
sl@0
   703
    
sl@0
   704
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4180 TSqlScalarFullSelectQuery::SelectTextL() OOM test"));
sl@0
   705
    ScalarColumnTextOomTest();
sl@0
   706
sl@0
   707
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4181 RSqlStatement::DeclaredColumnType() OOM test"));
sl@0
   708
    DeclaredColumnTypeOomTest();
sl@0
   709
	}
sl@0
   710
sl@0
   711
TInt E32Main()
sl@0
   712
	{
sl@0
   713
	TheTest.Title();
sl@0
   714
	
sl@0
   715
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   716
	TheTest(tc != NULL);
sl@0
   717
	
sl@0
   718
	__UHEAP_MARK;
sl@0
   719
	
sl@0
   720
	CreateTestEnv();
sl@0
   721
	DoTests();
sl@0
   722
	DestroyTestEnv();
sl@0
   723
sl@0
   724
	__UHEAP_MARKEND;
sl@0
   725
	
sl@0
   726
	TheTest.End();
sl@0
   727
	TheTest.Close();
sl@0
   728
	
sl@0
   729
	delete tc;
sl@0
   730
sl@0
   731
	User::Heap().Check();
sl@0
   732
	return KErrNone;
sl@0
   733
	}