os/persistentdata/persistentstorage/sql/TEST/t_sqldefect2.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-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 <f32file.h>
sl@0
    18
#include <sqldb.h>
sl@0
    19
#include <f32file.h>
sl@0
    20
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    21
sl@0
    22
static RFs TheFs;
sl@0
    23
static RTest TheTest(_L("t_sqldefect2 test"));
sl@0
    24
static RSqlDatabase TheDb1;
sl@0
    25
static RSqlDatabase TheDb2;
sl@0
    26
sl@0
    27
_LIT(KTestDir, "c:\\test\\");
sl@0
    28
_LIT(KTestDatabase1, "c:\\test\\t_sqldefect2.db");
sl@0
    29
_LIT(KTestDatabaseJournal1, "c:\\test\\t_sqldefect2.db-journal");
sl@0
    30
_LIT(KServerTempDir, "c:\\private\\10281e17\\temp\\");
sl@0
    31
sl@0
    32
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    33
sl@0
    34
//Deletes all created test files.
sl@0
    35
void DestroyTestEnv()
sl@0
    36
	{
sl@0
    37
    TheDb2.Close();
sl@0
    38
    TheDb1.Close();
sl@0
    39
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
    40
	TheFs.Close();
sl@0
    41
	}
sl@0
    42
sl@0
    43
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    44
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    45
//Test macros and functions
sl@0
    46
void Check1(TInt aValue, TInt aLine)
sl@0
    47
	{
sl@0
    48
	if(!aValue)
sl@0
    49
		{
sl@0
    50
		DestroyTestEnv();
sl@0
    51
		RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    52
		TheTest(EFalse, aLine);
sl@0
    53
		}
sl@0
    54
	}
sl@0
    55
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    56
	{
sl@0
    57
	if(aValue != aExpected)
sl@0
    58
		{
sl@0
    59
		DestroyTestEnv();
sl@0
    60
		RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
    61
		TheTest(EFalse, aLine);
sl@0
    62
		}
sl@0
    63
	}
sl@0
    64
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    65
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    66
sl@0
    67
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    68
sl@0
    69
//Creates file session instance and the test directory
sl@0
    70
void CreateTestEnv()
sl@0
    71
    {
sl@0
    72
	TInt err = TheFs.Connect();
sl@0
    73
	TEST2(err, KErrNone);
sl@0
    74
sl@0
    75
	err = TheFs.MkDir(KTestDir);
sl@0
    76
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
@SYMTestCaseID          PDS-SQL-CT-4154
sl@0
    81
@SYMTestCaseDesc        Test for DEF143062: SQL, "CREATE INDEX" sql crashes SQL server.
sl@0
    82
                        The test creates a database with one empty table and establishes two connections
sl@0
    83
                        to that database. Then, while the first connection is at the middle of a read
sl@0
    84
                        transaction, the second connection attempts to create an index.
sl@0
    85
                        If the defect is not fixed, the SQL server will crash.
sl@0
    86
@SYMTestPriority        High
sl@0
    87
@SYMTestActions         DEF143062: SQL, "CREATE INDEX" sql crashes SQL server.
sl@0
    88
@SYMTestExpectedResults Test must not fail
sl@0
    89
@SYMDEF                 DEF143062
sl@0
    90
*/
sl@0
    91
void DEF143062()
sl@0
    92
    {
sl@0
    93
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
    94
    TInt err = TheDb1.Create(KTestDatabase1);
sl@0
    95
    TEST2(err, KErrNone);
sl@0
    96
    err = TheDb1.Exec(_L("CREATE TABLE T0(Thread INTEGER, LocalIndex INTEGER, Inserts INTEGER, Updates INTEGER, IndexMod8 INTEGER)"));
sl@0
    97
    TEST(err >= 0);
sl@0
    98
    
sl@0
    99
    err = TheDb2.Open(KTestDatabase1);
sl@0
   100
    TEST2(err, KErrNone);
sl@0
   101
sl@0
   102
    RSqlStatement stmt;
sl@0
   103
    err = stmt.Prepare(TheDb1, _L8("SELECT COUNT(Thread) FROM T0 WHERE Thread = 0"));
sl@0
   104
    TEST2(err, KErrNone);
sl@0
   105
    err = stmt.Next();
sl@0
   106
    TEST2(err, KSqlAtRow);
sl@0
   107
    
sl@0
   108
    err = TheDb2.Exec(_L8("CREATE INDEX T0INDEX ON T0(Thread,IndexMod8)"));//crashes the SQL server if the defect is not fixed 
sl@0
   109
    TEST2(err, KSqlErrLocked);
sl@0
   110
    
sl@0
   111
    stmt.Close();
sl@0
   112
    
sl@0
   113
    TheDb2.Close();
sl@0
   114
    TheDb1.Close();
sl@0
   115
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   116
    TEST2(err, KErrNone);
sl@0
   117
    }
sl@0
   118
sl@0
   119
/**
sl@0
   120
@SYMTestCaseID          PDS-SQL-CT-4155
sl@0
   121
@SYMTestCaseDesc        Test for DEF143061: SQL, SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is too big.
sl@0
   122
                                         The test verifies that after comitting a big transaction, the journal file size is made equal the 
sl@0
   123
                                          max journal file size limit of 64Kb.
sl@0
   124
@SYMTestPriority        High
sl@0
   125
@SYMTestActions         DEF143061: SQL, SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is too big..
sl@0
   126
@SYMTestExpectedResults Test must not fail
sl@0
   127
@SYMDEF                 DEF143061
sl@0
   128
*/
sl@0
   129
void DEF143061()
sl@0
   130
    {
sl@0
   131
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   132
    //"Auto" compaction is used in order to see how the journal file is immediatelly used.
sl@0
   133
    _LIT8(KConfig, "compaction=auto");
sl@0
   134
    TInt err = TheDb1.Create(KTestDatabase1, &KConfig);
sl@0
   135
    TEST2(err, KErrNone);
sl@0
   136
    err = TheDb1.Exec(_L("CREATE TABLE A(I INTEGER, B BLOB)"));
sl@0
   137
    TEST(err >= 0);
sl@0
   138
sl@0
   139
    const TInt KBlobSize = 100000;//bigger than the journal size limit
sl@0
   140
    HBufC8* buf = HBufC8::New(KBlobSize);
sl@0
   141
    TEST(buf != NULL);
sl@0
   142
    TPtr8 ptr = buf->Des();
sl@0
   143
    ptr.SetLength(KBlobSize);
sl@0
   144
        
sl@0
   145
    RSqlStatement stmt;
sl@0
   146
    err = stmt.Prepare(TheDb1, _L("INSERT INTO A VALUES(1, :Prm)"));
sl@0
   147
    TEST2(err, KErrNone);
sl@0
   148
    ptr.Fill(TChar('N'));
sl@0
   149
    err = stmt.BindBinary(0, ptr);
sl@0
   150
    TEST2(err, KErrNone);
sl@0
   151
    err = stmt.Exec();
sl@0
   152
    TEST2(err, 1);
sl@0
   153
    stmt.Close();
sl@0
   154
    
sl@0
   155
    //Try to update the BLOB in the record that was just inserted. This operation should create a big journal file.
sl@0
   156
    err = stmt.Prepare(TheDb1, _L("UPDATE A SET B=:Prm WHERE I=1"));
sl@0
   157
    TEST2(err, KErrNone);
sl@0
   158
    ptr.Fill(TChar('Y'));
sl@0
   159
    err = stmt.BindBinary(0, ptr);
sl@0
   160
    TEST2(err, KErrNone);
sl@0
   161
    err = stmt.Exec();
sl@0
   162
    TEST2(err, 1);
sl@0
   163
    stmt.Close();
sl@0
   164
    
sl@0
   165
    //Check the journal file size. It should be less than the 64Kb limit defined in sqlite_macro.mmh file.  
sl@0
   166
    TEntry entry;
sl@0
   167
    err = TheFs.Entry(KTestDatabaseJournal1, entry);
sl@0
   168
    TEST2(err, KErrNone);
sl@0
   169
    TInt64 fsize = entry.FileSize();
sl@0
   170
    TEST(fsize <= SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT);
sl@0
   171
    
sl@0
   172
    delete buf;
sl@0
   173
    TheDb1.Close();
sl@0
   174
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   175
    TEST2(err, KErrNone);
sl@0
   176
    }
sl@0
   177
sl@0
   178
/**
sl@0
   179
@SYMTestCaseID          PDS-SQL-CT-4156
sl@0
   180
@SYMTestCaseDesc        Test for DEF143150: SQL, strftime() returns incorrect result.
sl@0
   181
                        The test takes the current universal time (using TTime) 
sl@0
   182
                        and the current time retrieved from the SQL  server.
sl@0
   183
                        The test compares the times and expects the difference to be no more than
sl@0
   184
                        1 second. 
sl@0
   185
@SYMTestPriority        High
sl@0
   186
@SYMTestActions         DEF143150: SQL, strftime() returns incorrect result
sl@0
   187
@SYMTestExpectedResults Test must not fail
sl@0
   188
@SYMDEF                 DEF143150
sl@0
   189
*/
sl@0
   190
void DEF143150()
sl@0
   191
    {
sl@0
   192
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   193
    TInt err = TheDb1.Create(KTestDatabase1);
sl@0
   194
    TEST2(err, KErrNone);
sl@0
   195
sl@0
   196
    //Home date & time
sl@0
   197
    TBuf<50> dtstr1;
sl@0
   198
    TTime time;
sl@0
   199
    time.UniversalTime();
sl@0
   200
    TDateTime dt = time.DateTime();
sl@0
   201
    
sl@0
   202
    RSqlStatement stmt;
sl@0
   203
    err = stmt.Prepare(TheDb1, _L("SELECT strftime('%Y-%m-%d,%H:%M:%S','now')"));
sl@0
   204
    TEST2(err, KErrNone);
sl@0
   205
    err = stmt.Next();
sl@0
   206
    TEST2(err, KSqlAtRow);
sl@0
   207
    
sl@0
   208
    //SQLite date & time
sl@0
   209
    TBuf<50> dtstr2;
sl@0
   210
    err = stmt.ColumnText(0, dtstr2);
sl@0
   211
    TEST2(err, KErrNone);
sl@0
   212
    stmt.Close();
sl@0
   213
sl@0
   214
    TheDb1.Close();
sl@0
   215
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   216
    TEST2(err, KErrNone);
sl@0
   217
    
sl@0
   218
    dtstr1.Format(_L("%04d-%02d-%02d,%02d:%02d:%02d"), dt.Year(), dt.Month() + 1, dt.Day() + 1, dt.Hour(), dt.Minute(), dt.Second());
sl@0
   219
    TheTest.Printf(_L("Universal date&time=\"%S\"\n"), &dtstr1);
sl@0
   220
    TheTest.Printf(_L("SQLite    date&time=\"%S\"\n"), &dtstr2);
sl@0
   221
    
sl@0
   222
    //Comapare and fail if dates are not equal (+- 1 second)
sl@0
   223
    TLex lex;
sl@0
   224
    lex = dtstr2.Mid(0, 4);
sl@0
   225
    TInt sqlyear;
sl@0
   226
    err = lex.Val(sqlyear);
sl@0
   227
    TEST2(err, KErrNone);
sl@0
   228
    
sl@0
   229
    lex = dtstr2.Mid(5, 2);
sl@0
   230
    TInt sqlmonth;
sl@0
   231
    err = lex.Val(sqlmonth);
sl@0
   232
    TEST2(err, KErrNone);
sl@0
   233
    
sl@0
   234
    lex = dtstr2.Mid(8, 2);
sl@0
   235
    TInt sqlday;
sl@0
   236
    err = lex.Val(sqlday);
sl@0
   237
    TEST2(err, KErrNone);
sl@0
   238
    
sl@0
   239
    lex = dtstr2.Mid(11, 2);
sl@0
   240
    TInt sqlhour;
sl@0
   241
    err = lex.Val(sqlhour);
sl@0
   242
    TEST2(err, KErrNone);
sl@0
   243
    
sl@0
   244
    lex = dtstr2.Mid(14, 2);
sl@0
   245
    TInt sqlminute;
sl@0
   246
    err = lex.Val(sqlminute);
sl@0
   247
    TEST2(err, KErrNone);
sl@0
   248
    
sl@0
   249
    lex = dtstr2.Mid(17, 2);
sl@0
   250
    TInt sqlsecond;
sl@0
   251
    err = lex.Val(sqlsecond);
sl@0
   252
    TEST2(err, KErrNone);
sl@0
   253
    
sl@0
   254
    TDateTime sqldt(sqlyear, (TMonth)(sqlmonth - 1), sqlday - 1, sqlhour, sqlminute, sqlsecond, 0);
sl@0
   255
    TTime sqltime(sqldt);
sl@0
   256
    TTimeIntervalSeconds diff;
sl@0
   257
    err = sqltime.SecondsFrom(time, diff);
sl@0
   258
    TEST2(err, KErrNone);
sl@0
   259
    TEST(diff.Int() <= 1);
sl@0
   260
    }
sl@0
   261
sl@0
   262
static TInt KillProcess(const TDesC& aProcessName)
sl@0
   263
    {
sl@0
   264
    TFullName name;
sl@0
   265
    TBuf<64> pattern(aProcessName);
sl@0
   266
    TInt length = pattern.Length();
sl@0
   267
    pattern += _L("*");
sl@0
   268
    TFindProcess procFinder(pattern);
sl@0
   269
sl@0
   270
    while (procFinder.Next(name) == KErrNone)
sl@0
   271
        {
sl@0
   272
        if (name.Length() > length)
sl@0
   273
            {//If found name is a string containing aProcessName string.
sl@0
   274
            TChar c(name[length]);
sl@0
   275
            if (c.IsAlphaDigit() ||
sl@0
   276
                c == TChar('_') ||
sl@0
   277
                c == TChar('-'))
sl@0
   278
                {
sl@0
   279
                // If the found name is other valid application name
sl@0
   280
                // starting with aProcessName string.
sl@0
   281
                continue;
sl@0
   282
                }
sl@0
   283
            }
sl@0
   284
        RProcess proc;
sl@0
   285
        if (proc.Open(name) == KErrNone)
sl@0
   286
            {
sl@0
   287
            proc.Kill(0);
sl@0
   288
            }
sl@0
   289
        proc.Close();
sl@0
   290
        }
sl@0
   291
    return KErrNone;
sl@0
   292
    }
sl@0
   293
sl@0
   294
/**
sl@0
   295
@SYMTestCaseID          PDS-SQL-CT-4210
sl@0
   296
@SYMTestCaseDesc        Test for the change "Temp files created during sql operations are not deleted after rebooting the phone" 
sl@0
   297
@SYMTestPriority        High
sl@0
   298
@SYMTestActions         Kill the sql server
sl@0
   299
                        Create two temp files in sql server's private directory
sl@0
   300
                        Start the sql server
sl@0
   301
                        Test that the temp files do not exist.
sl@0
   302
@SYMTestExpectedResults Test must not fail
sl@0
   303
*/
sl@0
   304
void DeleteTempFile()
sl@0
   305
    {   
sl@0
   306
    _LIT(KSqlSrvName, "sqlsrv.exe");
sl@0
   307
    _LIT(KTempFile1, "TMP00052.$$$");
sl@0
   308
    _LIT(KTempFile2, "TMP00044.$$$");
sl@0
   309
    
sl@0
   310
    KillProcess(KSqlSrvName);
sl@0
   311
 
sl@0
   312
    //Create two temp file in c:\\private\\10281e17\\temp\\ folder
sl@0
   313
    TInt err = TheFs.MkDir(KServerTempDir);
sl@0
   314
    TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   315
    RFile file;
sl@0
   316
    TFileName filename1(KServerTempDir);
sl@0
   317
    TFileName filename2(KServerTempDir);
sl@0
   318
    filename1.Append(KTempFile1);
sl@0
   319
    filename2.Append(KTempFile2);
sl@0
   320
    err = file.Replace(TheFs, filename1, 0);
sl@0
   321
    file.Close();
sl@0
   322
    TEST2(err, KErrNone);
sl@0
   323
    err = file.Replace(TheFs, filename2, 0);
sl@0
   324
    file.Close();
sl@0
   325
    TEST2(err, KErrNone);
sl@0
   326
    
sl@0
   327
    //Create a database that should start sql server
sl@0
   328
    err = TheDb1.Create(KTestDatabase1);
sl@0
   329
    TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   330
    //Test that the temp files have been deleted during server's start-up
sl@0
   331
    TUint dummy;
sl@0
   332
    err = TheFs.Att(filename1, dummy);
sl@0
   333
    TEST2(err, KErrNotFound);
sl@0
   334
    err = TheFs.Att(filename2, dummy);
sl@0
   335
    TEST2(err, KErrNotFound);
sl@0
   336
    
sl@0
   337
    TheDb1.Close();
sl@0
   338
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   339
    TEST2(err, KErrNone);
sl@0
   340
    }
sl@0
   341
sl@0
   342
TInt TempFilesCount()
sl@0
   343
	{
sl@0
   344
    _LIT(KServerTempDirMask, "c:\\private\\10281e17\\temp\\*.*");
sl@0
   345
	CDir* dir = NULL;
sl@0
   346
	TInt err = TheFs.GetDir(KServerTempDirMask, KEntryAttNormal, ESortNone, dir);
sl@0
   347
	TEST2(err, KErrNone);
sl@0
   348
	TInt tmpFileCount = dir->Count();
sl@0
   349
	delete dir;
sl@0
   350
	return tmpFileCount;
sl@0
   351
	}
sl@0
   352
sl@0
   353
/**
sl@0
   354
@SYMTestCaseID          PDS-SQL-CT-4211
sl@0
   355
@SYMTestCaseDesc        Test for the change "Temp files created during sql operations are not deleted after rebooting the phone" 
sl@0
   356
@SYMTestPriority        High
sl@0
   357
@SYMTestActions         The test creates a database and runs a set of statements that
sl@0
   358
						will lead to a delayed creation of a temp file.
sl@0
   359
						At the end the test checks that the temp file was created.
sl@0
   360
@SYMTestExpectedResults Test must not fail
sl@0
   361
*/
sl@0
   362
void TempFileTest()
sl@0
   363
	{
sl@0
   364
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   365
    TInt err = TheDb1.Create(KTestDatabase1);
sl@0
   366
    TEST2(err, KErrNone);
sl@0
   367
    //Get the number of the files in the SQL temp directory 
sl@0
   368
	TInt tmpFileCount = TempFilesCount();
sl@0
   369
    //    
sl@0
   370
    err = TheDb1.Exec(_L("CREATE TABLE t1(x UNIQUE); INSERT INTO t1 VALUES(1)"));
sl@0
   371
    TEST(err >= 0);
sl@0
   372
    err = TheDb1.Exec(_L("BEGIN; UPDATE t1 SET x = 2; UPDATE t1 SET x = 3; COMMIT"));
sl@0
   373
    TEST(err >= 0);
sl@0
   374
    //Check that a temp file really was created
sl@0
   375
	TInt tmpFileCount2 = TempFilesCount();
sl@0
   376
	TEST(tmpFileCount2 > tmpFileCount);
sl@0
   377
    //
sl@0
   378
    TheDb1.Close();
sl@0
   379
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   380
    TEST2(err, KErrNone);
sl@0
   381
	}
sl@0
   382
sl@0
   383
/**
sl@0
   384
@SYMTestCaseID          PDS-SQL-CT-4213
sl@0
   385
@SYMTestCaseDesc        Tests the ability of the SQL server to store empty strings and retrieve them as 
sl@0
   386
						text column values, not NULLs.
sl@0
   387
						Change: ou1cimx1#504388. 
sl@0
   388
@SYMTestPriority        High
sl@0
   389
@SYMTestActions         The test creates a database and a table and stores there empty strings.
sl@0
   390
						Then the test retrieves the stored column values and verifies that the column type is
sl@0
   391
						"text", not "null".
sl@0
   392
@SYMTestExpectedResults Test must not fail
sl@0
   393
*/
sl@0
   394
void EmptyTextColumnTest()
sl@0
   395
	{
sl@0
   396
	_LIT8(KEncUtf16, "encoding=\"UTF-16\"");
sl@0
   397
	_LIT8(KEncUtf8, "encoding=\"UTF-8\"");
sl@0
   398
	TPtrC8 enc[] = {KEncUtf16(), KEncUtf8()};
sl@0
   399
	for(TInt i=0;i<(sizeof(enc)/sizeof(enc[0]));++i)
sl@0
   400
		{
sl@0
   401
		(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   402
		TInt err = TheDb1.Create(KTestDatabase1, &enc[i]);
sl@0
   403
		TEST2(err, KErrNone);
sl@0
   404
		//Insert records with empty text column values using RSqlDatabase::Exec()
sl@0
   405
	    err = TheDb1.Exec(_L("CREATE TABLE A(ID INTEGER, T TEXT)"));
sl@0
   406
	    TEST(err >= 0);
sl@0
   407
	    err = TheDb1.Exec(_L("INSERT INTO A VALUES(1, '')"));
sl@0
   408
	    TEST2(err, 1);
sl@0
   409
	    err = TheDb1.Exec(_L8("INSERT INTO A VALUES(2, '')"));
sl@0
   410
	    TEST2(err, 1);
sl@0
   411
		//Insert a record with empty text column value using RSqlParamWriteStream
sl@0
   412
	    RSqlStatement stmt;
sl@0
   413
	    err = stmt.Prepare(TheDb1, _L("INSERT INTO A(ID, T) VALUES(:P1, :P2)"));
sl@0
   414
	    TEST2(err, KErrNone);
sl@0
   415
		err = stmt.BindInt(0, 3);
sl@0
   416
	    TEST2(err, KErrNone);
sl@0
   417
	    RSqlParamWriteStream strm;
sl@0
   418
	    err = strm.BindText(stmt, 1);
sl@0
   419
	    TEST2(err, KErrNone);
sl@0
   420
	    TRAP(err, strm.WriteL(KNullDesC));
sl@0
   421
	    TEST2(err, KErrNone);
sl@0
   422
	    strm.Close();
sl@0
   423
	    err = stmt.Exec();
sl@0
   424
	    TEST2(err, 1);
sl@0
   425
	    stmt.Close();
sl@0
   426
		//Insert records with empty text column values using RSqlStatement::Bind()
sl@0
   427
	    err = stmt.Prepare(TheDb1, _L("INSERT INTO A(ID, T) VALUES(:P1, :P2)"));
sl@0
   428
	    TEST2(err, KErrNone);
sl@0
   429
		err = stmt.BindInt(0, 4);
sl@0
   430
	    TEST2(err, KErrNone);
sl@0
   431
		err = stmt.BindText(1, KNullDesC);
sl@0
   432
	    TEST2(err, KErrNone);
sl@0
   433
	    err = stmt.Exec();
sl@0
   434
	    TEST2(err, 1);
sl@0
   435
	    //
sl@0
   436
	    err = stmt.Reset();
sl@0
   437
	    TEST2(err, KErrNone);
sl@0
   438
		err = stmt.BindInt(0, 5);
sl@0
   439
	    TEST2(err, KErrNone);
sl@0
   440
	    _LIT(KEmptyStr, "");
sl@0
   441
		err = stmt.BindText(1, KEmptyStr);
sl@0
   442
	    TEST2(err, KErrNone);
sl@0
   443
	    err = stmt.Exec();
sl@0
   444
	    TEST2(err, 1);
sl@0
   445
	    stmt.Close();
sl@0
   446
	    //Read the empty text column values
sl@0
   447
	    err = stmt.Prepare(TheDb1, _L("SELECT T FROM A"));
sl@0
   448
	    TEST2(err, KErrNone);
sl@0
   449
	    TInt cnt = 0;
sl@0
   450
	    while((err = stmt.Next()) == KSqlAtRow)
sl@0
   451
	    	{
sl@0
   452
			++cnt;
sl@0
   453
			TPtrC val;
sl@0
   454
			err = stmt.ColumnText(0, val);
sl@0
   455
			TEST2(err, KErrNone);
sl@0
   456
			TEST2(val.Length(), 0);
sl@0
   457
			TSqlColumnType type = stmt.ColumnType(0);
sl@0
   458
			TEST2(type, ESqlText);
sl@0
   459
	    	}
sl@0
   460
	    stmt.Close();
sl@0
   461
	    TEST2(err, KSqlAtEnd);
sl@0
   462
	    TEST2(cnt, 5);
sl@0
   463
	    //
sl@0
   464
	    TheDb1.Close();
sl@0
   465
	    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   466
	    TEST2(err, KErrNone);
sl@0
   467
		}
sl@0
   468
	}
sl@0
   469
sl@0
   470
/**
sl@0
   471
@SYMTestCaseID          PDS-SQL-CT-4214
sl@0
   472
@SYMTestCaseDesc        Test for the change "After *#7370# Java apps are not preinstalled again" 
sl@0
   473
@SYMTestPriority        High
sl@0
   474
@SYMTestActions         The test makes sure there are no issues if the temp folder is removed after the server 
sl@0
   475
                        has already started. The test performs the following actions - 
sl@0
   476
                        1. Delete the 'temp' directory.
sl@0
   477
                        2. Create a transaction which creates temp files.
sl@0
   478
                        3. Check 'temp' folder exists at the end
sl@0
   479
@SYMTestExpectedResults Test must not fail
sl@0
   480
*/
sl@0
   481
void DeleteTempFolder()
sl@0
   482
    {
sl@0
   483
    //1. Delete 'temp' folder
sl@0
   484
    TInt err = TheFs.RmDir(KServerTempDir);
sl@0
   485
    TEST2(err, KErrNone);
sl@0
   486
	
sl@0
   487
    //2. Create a transaction which creates temp files.
sl@0
   488
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   489
    err = TheDb1.Create(KTestDatabase1);
sl@0
   490
    TEST2(err, KErrNone);
sl@0
   491
    
sl@0
   492
    err = TheDb1.Exec(_L("CREATE TABLE t1(x UNIQUE); INSERT INTO t1 VALUES(1)"));
sl@0
   493
    TEST(err >= 0);
sl@0
   494
    err = TheDb1.Exec(_L("BEGIN; UPDATE t1 SET x = 2; UPDATE t1 SET x = 3; COMMIT"));
sl@0
   495
    TEST(err >= 0);
sl@0
   496
    
sl@0
   497
    TheDb1.Close();
sl@0
   498
    err = RSqlDatabase::Delete(KTestDatabase1);
sl@0
   499
    TEST2(err, KErrNone);
sl@0
   500
    
sl@0
   501
    //3. Check 'temp' folder exists
sl@0
   502
    err = TheFs.MkDir(KServerTempDir);
sl@0
   503
    TEST2(err, KErrAlreadyExists);
sl@0
   504
    }	
sl@0
   505
	
sl@0
   506
void DoTestsL()
sl@0
   507
	{
sl@0
   508
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4154 DEF143062: SQL, \"CREATE INDEX\" sql crashes SQL server"));
sl@0
   509
	DEF143062();
sl@0
   510
sl@0
   511
    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4155 DEF143061: SQL, SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is too big"));
sl@0
   512
    DEF143061();
sl@0
   513
sl@0
   514
    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4156 DEF143150: SQL, strftime() returns incorrect result"));
sl@0
   515
    DEF143150();
sl@0
   516
    
sl@0
   517
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4210 Temp files created during sql operations are not deleted after rebooting the phone - 1"));
sl@0
   518
    DeleteTempFile();
sl@0
   519
    
sl@0
   520
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4211 Temp files created during sql operations are not deleted after rebooting the phone - 2"));
sl@0
   521
    TempFileTest();
sl@0
   522
    
sl@0
   523
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4213 No support to store an empty string in symbian's sqlite."));
sl@0
   524
    EmptyTextColumnTest();
sl@0
   525
	
sl@0
   526
	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4214 After *#7370# Java apps are not preinstalled again"));
sl@0
   527
    DeleteTempFolder();
sl@0
   528
	}
sl@0
   529
sl@0
   530
TInt E32Main()
sl@0
   531
	{
sl@0
   532
	TheTest.Title();
sl@0
   533
	
sl@0
   534
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   535
	
sl@0
   536
	__UHEAP_MARK;
sl@0
   537
	
sl@0
   538
	CreateTestEnv();
sl@0
   539
	TRAPD(err, DoTestsL());
sl@0
   540
	DestroyTestEnv();
sl@0
   541
	TEST2(err, KErrNone);
sl@0
   542
sl@0
   543
	__UHEAP_MARKEND;
sl@0
   544
	
sl@0
   545
	TheTest.End();
sl@0
   546
	TheTest.Close();
sl@0
   547
	
sl@0
   548
	delete tc;
sl@0
   549
sl@0
   550
	User::Heap().Check();
sl@0
   551
	return KErrNone;
sl@0
   552
	}