os/persistentdata/persistentstorage/sql/TEST/t_sqldefect.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) 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
// NTT DOCOMO, INC - Fix for Bug 1915 "SQL server panics when using long column type strings"
sl@0
    13
//
sl@0
    14
// Description:
sl@0
    15
//
sl@0
    16
sl@0
    17
#include <e32test.h>
sl@0
    18
#include <bautils.h>
sl@0
    19
#include <s32stor.h>
sl@0
    20
#include <sqldb.h>
sl@0
    21
#include "SqlResourceProfiler.h"
sl@0
    22
#include "SqlResourceTester.h"
sl@0
    23
sl@0
    24
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    25
sl@0
    26
static RFs TheFs;
sl@0
    27
RTest TheTest(_L("t_sqldefect test"));
sl@0
    28
RSqlDatabase TheDb;
sl@0
    29
sl@0
    30
_LIT(KTestDir, "c:\\test\\");
sl@0
    31
_LIT(KTestDatabase1, "c:\\test\\t_sqldefect_1.db");
sl@0
    32
_LIT(KTestDatabase2, "c:\\test\\t_sqldefect_2.db");
sl@0
    33
_LIT(KCorruptDb, "c:\\test\\t_SqlShortNonDb.db");
sl@0
    34
_LIT(KCorruptDbZ, "z:\\test\\t_SqlShortNonDb.db");	//Created outside this test app
sl@0
    35
_LIT(KSecureTestDb1, "c:[21212122]BBDb2.db");		//Created outside this test app
sl@0
    36
_LIT(KTestDatabase3, "c:\\test\\t_sqldefect_3.db");
sl@0
    37
_LIT(KTestDatabase4, "z:\\test\\t_inc095412.db");	//Created outside this test app
sl@0
    38
_LIT(KTestDatabase5, "c:\\test\\t_sqldefect_5.db");
sl@0
    39
_LIT(KTestDatabase6, "c:\\test\\t_def120237.db");
sl@0
    40
_LIT(KTestDatabase7, "c:\\test\\t_def144027.db");
sl@0
    41
_LIT(KTestDatabase7Journal, "c:\\test\\t_def144027.db-journal");
sl@0
    42
sl@0
    43
// This value has been found by performing the OOM test
sl@0
    44
// with an allocation limit of 2000 and then taking a value
sl@0
    45
// which is just above the allocation failure rate.
sl@0
    46
const TInt KDEF115954MaxAllocLimit = 1300;
sl@0
    47
sl@0
    48
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    49
sl@0
    50
//Deletes all created test files.
sl@0
    51
void DeleteTestFiles()
sl@0
    52
	{
sl@0
    53
	TheDb.Close();
sl@0
    54
	(void)TheFs.Delete(KTestDatabase7Journal);
sl@0
    55
	(void)RSqlDatabase::Delete(KTestDatabase7);
sl@0
    56
	(void)RSqlDatabase::Delete(KTestDatabase6);
sl@0
    57
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
    58
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
    59
	(void)RSqlDatabase::Delete(KTestDatabase2);
sl@0
    60
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
    61
	(void)RSqlDatabase::Delete(KCorruptDb);
sl@0
    62
	}
sl@0
    63
sl@0
    64
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    65
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    66
//Test macros and functions
sl@0
    67
void Check1(TInt aValue, TInt aLine)
sl@0
    68
	{
sl@0
    69
	if(!aValue)
sl@0
    70
		{
sl@0
    71
		DeleteTestFiles();
sl@0
    72
		RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    73
		TheTest(EFalse, aLine);
sl@0
    74
		}
sl@0
    75
	}
sl@0
    76
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    77
	{
sl@0
    78
	if(aValue != aExpected)
sl@0
    79
		{
sl@0
    80
		DeleteTestFiles();
sl@0
    81
		RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
    82
		TheTest(EFalse, aLine);
sl@0
    83
		}
sl@0
    84
	}
sl@0
    85
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    86
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    87
sl@0
    88
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    89
sl@0
    90
//Creates file session instance and the test directory
sl@0
    91
void CreateTestEnv()
sl@0
    92
    {
sl@0
    93
	TInt err = TheFs.Connect();
sl@0
    94
	TEST2(err, KErrNone);
sl@0
    95
sl@0
    96
	err = TheFs.MkDir(KTestDir);
sl@0
    97
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
    98
	}
sl@0
    99
sl@0
   100
/**
sl@0
   101
@SYMTestCaseID			SYSLIB-SQL-CT-1763
sl@0
   102
@SYMTestCaseDesc		The test creates database 1 and attaches database 2.
sl@0
   103
					    Then the test prepares a SELECT sql statement which is supposed to
sl@0
   104
					    retrieve records from the attached database 2. Then the test tries to detach
sl@0
   105
					    database 2. The expectation is that the detaching operation must fail.
sl@0
   106
					    The database can be detached only when there are no alive sql statements prepared on it.
sl@0
   107
@SYMTestPriority		High
sl@0
   108
@SYMTestActions			SQL, "Detach database" test.
sl@0
   109
@SYMTestExpectedResults Test must not fail
sl@0
   110
@SYMREQ					REQ5792
sl@0
   111
                        REQ5793
sl@0
   112
*/	
sl@0
   113
void SqlDetachedDbTest()
sl@0
   114
	{
sl@0
   115
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
   116
	TEST2(err, KErrNone);
sl@0
   117
	err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));	
sl@0
   118
	TEST(err >= 0);
sl@0
   119
	err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));	
sl@0
   120
	TEST2(err, 1);
sl@0
   121
	TheDb.Close();	
sl@0
   122
sl@0
   123
	err = TheDb.Create(KTestDatabase2);
sl@0
   124
	TEST2(err, KErrNone);
sl@0
   125
	err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));	
sl@0
   126
	TEST(err >= 0);
sl@0
   127
	err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));	
sl@0
   128
	TEST2(err, 1);
sl@0
   129
	err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));	
sl@0
   130
	TEST2(err, 1);
sl@0
   131
	TheDb.Close();	
sl@0
   132
sl@0
   133
	err = TheDb.Open(KTestDatabase1);
sl@0
   134
	TEST2(err, KErrNone);
sl@0
   135
	err = TheDb.Attach(KTestDatabase2, _L("Db2"));
sl@0
   136
	TEST2(err, KErrNone);
sl@0
   137
	
sl@0
   138
	RSqlStatement stmt;
sl@0
   139
	err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
sl@0
   140
	TEST2(err, KErrNone);
sl@0
   141
	err = stmt.Next();
sl@0
   142
	TEST2(err, KSqlAtRow);
sl@0
   143
	
sl@0
   144
	err = TheDb.Detach(_L("Db2"));
sl@0
   145
	TEST(err != KErrNone);
sl@0
   146
	TPtrC errMsg = TheDb.LastErrorMessage();
sl@0
   147
	RDebug::Print(_L("Detach err: %S\r\n"), &errMsg);
sl@0
   148
sl@0
   149
	err = stmt.Next();
sl@0
   150
	TEST2(err, KSqlAtRow);
sl@0
   151
	stmt.Close();
sl@0
   152
sl@0
   153
	err = TheDb.Detach(_L("Db2"));
sl@0
   154
	TEST2(err, KErrNone);
sl@0
   155
	
sl@0
   156
	TheDb.Close();
sl@0
   157
	(void)RSqlDatabase::Delete(KTestDatabase2);
sl@0
   158
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   159
	}
sl@0
   160
sl@0
   161
/**
sl@0
   162
@SYMTestCaseID			SYSLIB-SQL-UT-4034
sl@0
   163
@SYMTestCaseDesc		Corrupted database test.
sl@0
   164
						The test tries to open a corrupted database file which length is too short.
sl@0
   165
						The 'database open' operation is expected to fail with KSqlErrNotDb error.
sl@0
   166
@SYMTestPriority		High
sl@0
   167
@SYMTestActions			Corrupted database test.
sl@0
   168
@SYMTestExpectedResults Test must not fail
sl@0
   169
@SYMREQ					REQ5792
sl@0
   170
*/
sl@0
   171
void CorruptDbFileTest()
sl@0
   172
	{
sl@0
   173
	TInt err = TheDb.Open(KCorruptDb);
sl@0
   174
	TEST2(err, KSqlErrNotDb);
sl@0
   175
	}
sl@0
   176
sl@0
   177
/**
sl@0
   178
@SYMTestCaseID			SYSLIB-SQL-UT-4035
sl@0
   179
@SYMTestCaseDesc		Attach database with bad name.
sl@0
   180
						Attempt to attach a file which name cannot be parsed.
sl@0
   181
						The 'attach database' operation is expected to fail with KErrBadName error.
sl@0
   182
@SYMTestPriority		High
sl@0
   183
@SYMTestActions			Attach database with bad name.
sl@0
   184
@SYMTestExpectedResults Test must not fail
sl@0
   185
@SYMREQ					REQ5792
sl@0
   186
*/
sl@0
   187
void AttachBadDbFileNameTest()
sl@0
   188
	{
sl@0
   189
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
   190
	TEST2(err, KErrNone);
sl@0
   191
	err = TheDb.Attach(_L("\"c:\\test\\d12345678.db\""), _L("Db10"));
sl@0
   192
	TEST2(err, KErrBadName);
sl@0
   193
	TheDb.Close();
sl@0
   194
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   195
	}
sl@0
   196
sl@0
   197
/**
sl@0
   198
@SYMTestCaseID			SYSLIB-SQL-UT-4036
sl@0
   199
@SYMTestCaseDesc		Attach secure database. The client cannot pass the security checks.
sl@0
   200
						Attempt to attach a secure database. The client cannot pass the security checks.
sl@0
   201
						The 'attach database' operation is expected to fail with KErrPermissionDenied error.
sl@0
   202
@SYMTestPriority		High
sl@0
   203
@SYMTestActions			Attach secure database. The client cannot pass the security checks.
sl@0
   204
@SYMTestExpectedResults Test must not fail
sl@0
   205
@SYMREQ					REQ5794
sl@0
   206
*/
sl@0
   207
void AttachSecureDbTest()
sl@0
   208
	{
sl@0
   209
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
   210
	TEST2(err, KErrNone);
sl@0
   211
	err = TheDb.Attach(KSecureTestDb1, _L("Db10"));
sl@0
   212
	TEST2(err, KErrPermissionDenied);
sl@0
   213
	TheDb.Close();
sl@0
   214
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   215
	}
sl@0
   216
sl@0
   217
/**
sl@0
   218
@SYMTestCaseID			SYSLIB-SQL-UT-4032
sl@0
   219
@SYMTestCaseDesc		Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
sl@0
   220
						The test creates a database with a table with a BLOB column. Then inserts
sl@0
   221
						a record. Then the test makes an attempt to read the BLOB column using a stream - 
sl@0
   222
						RSqlColumnReadStream. If the defect is not fixed, the code will panic.
sl@0
   223
@SYMTestPriority		High
sl@0
   224
@SYMTestActions			Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
sl@0
   225
@SYMTestExpectedResults Test must not fail
sl@0
   226
@SYMDEF					INC091579
sl@0
   227
*/
sl@0
   228
void INC091579L()
sl@0
   229
	{
sl@0
   230
	//Create test database
sl@0
   231
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
   232
	TEST2(err, KErrNone);
sl@0
   233
	_LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB)"); 
sl@0
   234
	err = TheDb.Exec(KCreateStmt);
sl@0
   235
	TEST(err >= 0);
sl@0
   236
	//Insert 1 row, using a binary stream
sl@0
   237
	_LIT8(KInsertStmt, "INSERT INTO A(Fld1,Fld2) VALUES(:p1,:p2)"); 
sl@0
   238
	RSqlStatement stmt; 
sl@0
   239
	err = stmt.Prepare(TheDb, KInsertStmt);
sl@0
   240
	TEST2(err, KErrNone);
sl@0
   241
	err = stmt.BindInt(0, 1);
sl@0
   242
	TEST2(err, KErrNone);
sl@0
   243
sl@0
   244
	RSqlParamWriteStream out;
sl@0
   245
	err = out.BindBinary(stmt, 1);
sl@0
   246
	TEST2(err, KErrNone);
sl@0
   247
	
sl@0
   248
	const TInt KDataSize = 100;
sl@0
   249
	TUint16 columnData[KDataSize];
sl@0
   250
	for(TInt i=0;i<KDataSize;i++)
sl@0
   251
		{
sl@0
   252
		columnData[i] = (TUint16)i;
sl@0
   253
		}
sl@0
   254
		
sl@0
   255
	out.WriteL(columnData, KDataSize);
sl@0
   256
	out.CommitL();
sl@0
   257
	err = stmt.Exec();
sl@0
   258
	TEST2(err, 1);
sl@0
   259
	
sl@0
   260
	out.Close();
sl@0
   261
	stmt.Close();
sl@0
   262
sl@0
   263
	//Try to read the inserted row, using a binary stream
sl@0
   264
	_LIT8(KSelectStmt, "SELECT * FROM A WHERE Fld1=1"); 
sl@0
   265
	err = stmt.Prepare(TheDb, KSelectStmt);
sl@0
   266
	TEST2(err, KErrNone);
sl@0
   267
	err = stmt.Next();
sl@0
   268
	TEST2(err, KSqlAtRow);
sl@0
   269
sl@0
   270
	RSqlColumnReadStream in;
sl@0
   271
	TInt idx = stmt.ColumnIndex(_L("Fld2"));
sl@0
   272
	TInt type = stmt.ColumnType(idx);
sl@0
   273
	TInt size = stmt.ColumnSize(idx);
sl@0
   274
	err = in.ColumnBinary(stmt,idx); // panic occurs here, if the defect is not fixed
sl@0
   275
	TEST2(err, KErrNone);
sl@0
   276
	in.Close();
sl@0
   277
	
sl@0
   278
	//Cleanup
sl@0
   279
	stmt.Close();
sl@0
   280
	TheDb.Close();
sl@0
   281
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   282
	}
sl@0
   283
sl@0
   284
/**
sl@0
   285
@SYMTestCaseID			SYSLIB-SQL-UT-4033
sl@0
   286
@SYMTestCaseDesc		Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
sl@0
   287
						The test creates a database with a table with 2 TEXT columns. Then inserts
sl@0
   288
						a record using a prepared statement with parameters. 
sl@0
   289
						The second text column value is set twice calling RSqlStatement::BindText().
sl@0
   290
						Then the test makes an attempt to read the TEXT columns using a SELECT statement - 
sl@0
   291
						RSqlStatement. If the defect is not fixed, the RSqlStatement::ColumnText() returns a 
sl@0
   292
						bad value for the first TEXT column.
sl@0
   293
@SYMTestPriority		High
sl@0
   294
@SYMTestActions			Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
sl@0
   295
@SYMTestExpectedResults Test must not fail
sl@0
   296
@SYMDEF					INC091580
sl@0
   297
*/
sl@0
   298
void INC091580L()
sl@0
   299
	{
sl@0
   300
	_LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 TEXT, Fld3 TEXT)"); 
sl@0
   301
	TInt err = TheDb.Create(KTestDatabase3); 
sl@0
   302
	TEST2(err, KErrNone);
sl@0
   303
	err = TheDb.Exec(KCreateStmt);
sl@0
   304
	TEST(err >= 0);
sl@0
   305
sl@0
   306
	_LIT8(KInsertStmt,"INSERT INTO A(Fld1,Fld2,Fld3) VALUES(1,:p1,:p2)"); 
sl@0
   307
	RSqlStatement stmt; 
sl@0
   308
	err = stmt.Prepare(TheDb, KInsertStmt); 
sl@0
   309
	TEST2(err, KErrNone);
sl@0
   310
	err = stmt.BindText(0, _L("AAA"));// "AAA" assigned to p1 parameter
sl@0
   311
	TEST2(err, KErrNone);
sl@0
   312
sl@0
   313
	err = stmt.BindText(1,_L("123456789ABCD"));//"123456789ABCD" assigned to p2 parameter (Fld2 column)
sl@0
   314
	TEST2(err, KErrNone);
sl@0
   315
	err = stmt.BindText(1, _L("123456789ABCDE"));//"123456789ABCDE" assigned to p2 parameter (Fld3 column)
sl@0
   316
	TEST2(err, KErrNone);
sl@0
   317
	err = stmt.Exec();
sl@0
   318
	TEST(err >= 0);
sl@0
   319
	
sl@0
   320
	stmt.Close();
sl@0
   321
sl@0
   322
	_LIT8(KSelectStmt,"SELECT * FROM A WHERE Fld1=1"); 
sl@0
   323
	err = stmt.Prepare(TheDb, KSelectStmt); 
sl@0
   324
	TEST2(err, KErrNone);
sl@0
   325
	err = stmt.Next();
sl@0
   326
	TEST2(err, KSqlAtRow);
sl@0
   327
sl@0
   328
	TPtrC fld2 = stmt.ColumnTextL(1); // returns bad value if the defect is not fixed
sl@0
   329
	TPtrC fld3 = stmt.ColumnTextL(2);
sl@0
   330
sl@0
   331
	TEST(fld2 == _L("AAA"));
sl@0
   332
	TEST(fld3 == _L("123456789ABCDE"));
sl@0
   333
	
sl@0
   334
	//Cleanup
sl@0
   335
	stmt.Close();
sl@0
   336
	TheDb.Close();
sl@0
   337
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   338
	}
sl@0
   339
sl@0
   340
/**
sl@0
   341
@SYMTestCaseID			SYSLIB-SQL-CT-1815
sl@0
   342
@SYMTestCaseDesc		KSqlErrFull test.
sl@0
   343
						Create a test database with a table, which first column is declared as
sl@0
   344
						"INTEGER PRIMARY KEY AUTOINCREMENT".
sl@0
   345
						Insert one record into the table, initializing the ROWID with 0x7FFFFFFFFFFFFFFF
sl@0
   346
						(KMaxTInt64). Try to insert one more record into the table. The operation must
sl@0
   347
						fails with KSqlErrDiskFull.
sl@0
   348
@SYMTestPriority		High
sl@0
   349
@SYMTestActions			Verifying that SQL server returns KSqlErrFull when there are no more available row ids.
sl@0
   350
@SYMTestExpectedResults Test must not fail
sl@0
   351
@SYMREQ					REQ5792
sl@0
   352
                        REQ5793
sl@0
   353
*/
sl@0
   354
void SqlErrFullTest()
sl@0
   355
	{
sl@0
   356
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
   357
	TEST2(err, KErrNone);
sl@0
   358
	err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT, T TEXT)"));
sl@0
   359
	TEST(err >= 0);
sl@0
   360
	
sl@0
   361
	TBuf8<100> sql;
sl@0
   362
	
sl@0
   363
	sql.Copy(_L8("INSERT INTO A(ROWID,T) VALUES("));
sl@0
   364
	sql.AppendNum(KMaxTInt64);
sl@0
   365
	sql.Append(_L8(", 'TTT')"));
sl@0
   366
	err = TheDb.Exec(sql);
sl@0
   367
	TEST(err >= 0);
sl@0
   368
	
sl@0
   369
	err = TheDb.Exec(_L8("INSERT INTO A(T) VALUES('UUU')"));
sl@0
   370
	TEST2(err, KSqlErrFull);
sl@0
   371
	
sl@0
   372
	RSqlStatement stmt;
sl@0
   373
	err = stmt.Prepare(TheDb, _L8("SELECT ROWID FROM A"));
sl@0
   374
	TEST2(err, KErrNone);
sl@0
   375
	err = stmt.Next();
sl@0
   376
	TEST2(err, KSqlAtRow);
sl@0
   377
	TInt64 val = stmt.ColumnInt64(0);
sl@0
   378
	TEST(val == KMaxTInt64);
sl@0
   379
	err = stmt.Next();
sl@0
   380
	TEST2(err, KSqlAtEnd);
sl@0
   381
	stmt.Close();
sl@0
   382
	
sl@0
   383
	TheDb.Close();
sl@0
   384
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   385
	}
sl@0
   386
sl@0
   387
/**
sl@0
   388
@SYMTestCaseID			SYSLIB-SQL-CT-1816-0001
sl@0
   389
@SYMTestCaseDesc		Test for defect INC094870 - Database became corrupted and cannot be opened.
sl@0
   390
						Case 1: Create a test database and set the database encoding to be UTF-8. Create a table.
sl@0
   391
						Close and open again the database. "Database open" operation should not panic.
sl@0
   392
						Case 2: Create a test database and set the database encoding to be UTF-8. Open two 
sl@0
   393
						connections to the database and check the encoding. It should be UTF-8.
sl@0
   394
@SYMTestPriority		High
sl@0
   395
@SYMTestActions			Test for defect INC094870 - Database became corrupted and cannot be opened.
sl@0
   396
@SYMTestExpectedResults Test must not fail
sl@0
   397
@SYMDEF					INC094870
sl@0
   398
*/
sl@0
   399
void INC094870L()
sl@0
   400
	{
sl@0
   401
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   402
	//Test 1 - with a single database
sl@0
   403
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
   404
	TEST2(err, KErrNone);
sl@0
   405
	err = TheDb.Exec(_L8("PRAGMA cache_size=1000"));
sl@0
   406
	TEST(err >= 0);
sl@0
   407
    err = TheDb.SetIsolationLevel(RSqlDatabase::EReadUncommitted);
sl@0
   408
	TEST(err >= 0);
sl@0
   409
    err = TheDb.Exec(_L8("PRAGMA encoding = \"UTF-8\";"));
sl@0
   410
	TEST(err >= 0);
sl@0
   411
    err = TheDb.Exec(_L8("PRAGMA case_sensitive_like = 0"));
sl@0
   412
	TEST(err >= 0);
sl@0
   413
    err = TheDb.Exec(_L8("CREATE TABLE RDFS_Namespace(NamespaceId        INTEGER NOT NULL,Uri                TEXT NOT NULL,ReadOnly           INTEGER NOT NULL,VID                INTEGER NOT NULL,PRIMARY KEY(NamespaceId),UNIQUE(Uri));"));
sl@0
   414
	TEST(err >= 0);
sl@0
   415
	//Close and reopen the database. The Open() call should not fail.
sl@0
   416
    TheDb.Close();
sl@0
   417
    err  = TheDb.Open(KTestDatabase3); // This call fails if the defect is not fixed
sl@0
   418
	TEST2(err, KErrNone);
sl@0
   419
    TheDb.Close();
sl@0
   420
	//Test 2 - with two database connections
sl@0
   421
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   422
	_LIT8(KEncoding, "encoding=UTF-8");
sl@0
   423
	_LIT(KUtf8, "UTF-8");
sl@0
   424
	RSqlDatabase db1, db2;
sl@0
   425
	//Connection 1: Create a database with default encoding UTF-8.
sl@0
   426
	err = db1.Create(KTestDatabase3, &KEncoding);
sl@0
   427
	TEST2(err, KErrNone);
sl@0
   428
	TBuf<100> buf;
sl@0
   429
	//Connection 1: Check the database encoding
sl@0
   430
	TSqlScalarFullSelectQuery query(db1);
sl@0
   431
	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
sl@0
   432
	TEST2(err, KErrNone);
sl@0
   433
	TEST(buf.Find(KUtf8) >= 0);
sl@0
   434
	//Connection 1: Create a table
sl@0
   435
	err = db1.Exec(_L8("CREATE TABLE Tbl(Id INTEGER, T BLOB)"));
sl@0
   436
	TEST(err >= 0);
sl@0
   437
	//Connection 1: Check the database encoding
sl@0
   438
	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
sl@0
   439
	TEST2(err, KErrNone);
sl@0
   440
	TEST(buf.Find(KUtf8) >= 0);
sl@0
   441
	//Connection 2: open the same database
sl@0
   442
	err = db2.Open(KTestDatabase3);
sl@0
   443
	TEST2(err, KErrNone);
sl@0
   444
	//Connection 1: Check the database encoding
sl@0
   445
	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
sl@0
   446
	TEST2(err, KErrNone);
sl@0
   447
	TEST(buf.Find(KUtf8) >= 0);
sl@0
   448
	//Connection 2: Check the database encoding
sl@0
   449
	query.SetDatabase(db2);
sl@0
   450
	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
sl@0
   451
	TEST2(err, KErrNone);
sl@0
   452
	TEST(buf.Find(KUtf8) >= 0);
sl@0
   453
	//Cleanup
sl@0
   454
	db2.Close();
sl@0
   455
	db1.Close();
sl@0
   456
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   457
	}
sl@0
   458
sl@0
   459
/**
sl@0
   460
@SYMTestCaseID			SYSLIB-SQL-CT-1817-0001
sl@0
   461
@SYMTestCaseDesc		Test for defect INC095412 - Retrieving query results may corrupt heap.
sl@0
   462
						Open t_inc095412.db test database and prepare SQL query (the SQL statement is in the test code). 
sl@0
   463
						Execute RSqlStatement::Next() and then try to retrieve the text value of column number 1.
sl@0
   464
						If the defect is not fixed RSqlStatement::ColumnText() will panic.
sl@0
   465
@SYMTestPriority		High
sl@0
   466
@SYMTestActions			Test for defect INC095412 - Retrieving query results may corrupt heap.
sl@0
   467
@SYMTestExpectedResults Test must not fail
sl@0
   468
@SYMDEF					INC095412
sl@0
   469
*/
sl@0
   470
void INC095412()
sl@0
   471
	{
sl@0
   472
    TInt err = TheDb.Open(KTestDatabase4);
sl@0
   473
    TEST2(err, KErrNone);
sl@0
   474
    RSqlStatement stmt;
sl@0
   475
    err = stmt.Prepare(TheDb, _L("SELECT ObjId, Uri, InstanceOf, Flags, p1.PropertyId, p1.PropertyTypeId, p1.Value, p1.Source, p1.Confidence FROM Objects JOIN Properties p1 ON ObjId = p1.HostObjId WHERE  (  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ?  )  )  );"));
sl@0
   476
    TEST2(err, KErrNone);
sl@0
   477
    const TInt KPrmValues[] = {0, 0, 33, 40, 47, 45, 43, 42, 50, 39, 51, 44, 41, 46, 38, 48, 49, 0, 0, 26, 40, 53, 54, 57, 52, 39, 58, 56, 41, 38, 55, 0, 0, 26, 40, 53, 54, 57, 52, 39, 58, 56, 41, 38, 55, 0, 0, 38, 40, 39, 41};
sl@0
   478
    for(TInt i=0;i<sizeof(KPrmValues)/sizeof(KPrmValues[0]);++i)
sl@0
   479
    	{
sl@0
   480
    	err = stmt.BindInt(i, KPrmValues[i]);
sl@0
   481
    	TEST2(err, KErrNone);
sl@0
   482
    	}
sl@0
   483
    err = stmt.Next();
sl@0
   484
    TEST2(err, KSqlAtRow);
sl@0
   485
    TPtrC ptr;
sl@0
   486
    stmt.ColumnText(1, ptr); // May corrupt heap and panic the test application if the defect is not fixed!
sl@0
   487
    stmt.Close();
sl@0
   488
    TheDb.Close();
sl@0
   489
	}
sl@0
   490
	
sl@0
   491
/**
sl@0
   492
@SYMTestCaseID			SYSLIB-SQL-UT-3427
sl@0
   493
@SYMTestCaseDesc		Test for DEF104242 - The SQL server fails to open database with default security policy only.
sl@0
   494
						The test plays with C:[21212125]T_OneDefPolicy.db secure database, which was created by
sl@0
   495
						an external tool and the database security policy table contains just a single record
sl@0
   496
						with the default security policy. The default security policy is set to be 
sl@0
   497
						TSecurityPolicy::EAlwaysPass. The test attempts to read from the database, modify the database
sl@0
   498
						content, modify the database schema.
sl@0
   499
@SYMTestPriority		High
sl@0
   500
@SYMTestActions			Test for DEF104242 - The SQL server fails to open database with default security policy only.
sl@0
   501
@SYMTestExpectedResults Test must not fail
sl@0
   502
@SYMDEF					DEF104242
sl@0
   503
*/
sl@0
   504
void DEF104242()
sl@0
   505
	{
sl@0
   506
	TInt err = TheDb.Open(_L("C:[21212125]T_OneDefPolicy.db"));
sl@0
   507
	TEST2(err, KErrNone);
sl@0
   508
	//Read
sl@0
   509
	RSqlStatement stmt;
sl@0
   510
	err = stmt.Prepare(TheDb, _L("SELECT t1key, data from t1"));
sl@0
   511
	TEST2(err, KErrNone);
sl@0
   512
	while((err = stmt.Next()) == KSqlAtRow)
sl@0
   513
		{
sl@0
   514
		TheTest.Printf(_L("t1key=%d\r\n"), stmt.ColumnInt(0));
sl@0
   515
		}
sl@0
   516
	TEST2(err, KSqlAtEnd);
sl@0
   517
	stmt.Close();
sl@0
   518
	//Write
sl@0
   519
	err = TheDb.Exec(_L("INSERT INTO t1(t1key) VALUES(12)"));
sl@0
   520
	TEST2(err, 1);
sl@0
   521
	//Schema
sl@0
   522
	err = TheDb.Exec(_L("CREATE TABLE AAA(Id INTEGER)"));
sl@0
   523
	TEST(err >= 0);
sl@0
   524
	//Cleanup
sl@0
   525
	TheDb.Close();
sl@0
   526
	}
sl@0
   527
	
sl@0
   528
/**
sl@0
   529
@SYMTestCaseID			SYSLIB-SQL-UT-3430
sl@0
   530
@SYMTestCaseDesc		Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
sl@0
   531
						The test attempts to execute 2 SELECT queries ("IN" and "IN + JOIN"). The table, on
sl@0
   532
						which queries operate, has multi-column primary key. The right-hand side of the 
sl@0
   533
						"IN" operator contains NULL.
sl@0
   534
@SYMTestPriority		High
sl@0
   535
@SYMTestActions			Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
sl@0
   536
@SYMTestExpectedResults Test must not fail
sl@0
   537
@SYMDEF					DEF104437
sl@0
   538
*/
sl@0
   539
void DEF104437()
sl@0
   540
	{
sl@0
   541
	//Test case 1 - "IN" + "JOIN"
sl@0
   542
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   543
	TInt err = TheDb.Create(KTestDatabase5);
sl@0
   544
	TEST2(err, KErrNone);
sl@0
   545
	err = TheDb.Exec(_L("CREATE TABLE inmk(cls TEXT,sec INTEGER,inst INTEGER)"));
sl@0
   546
	TEST(err >= 0);
sl@0
   547
	err = TheDb.Exec(_L("INSERT INTO inmk VALUES ('ORD', 2751, 2750)"));
sl@0
   548
	TEST2(err, 1);
sl@0
   549
	err = TheDb.Exec(_L("CREATE TABLE clss(hrar TEXT,cls TEXT,PRIMARY KEY (hrar, cls))"));
sl@0
   550
	TEST(err >= 0);
sl@0
   551
	err = TheDb.Exec(_L("CREATE TABLE rels(prnt_inst INTEGER,chld_inst INTEGER)"));
sl@0
   552
	TEST(err >= 0);
sl@0
   553
	RSqlStatement stmt;
sl@0
   554
	_LIT(KSelectSql,
sl@0
   555
	"SELECT I.sec\
sl@0
   556
	  FROM inmk I\
sl@0
   557
	   LEFT JOIN\
sl@0
   558
	     rels R ON R.prnt_inst = I.inst\
sl@0
   559
	   LEFT JOIN\
sl@0
   560
	      inmk UI ON UI.inst = R.chld_inst\
sl@0
   561
	   LEFT JOIN\
sl@0
   562
	     clss C1U ON C1U.cls = UI.cls AND C1U.hrar = 'STH'\
sl@0
   563
	   LEFT JOIN\
sl@0
   564
	     clss C10U ON C10U.hrar = c1u.hrar AND C10U.cls IN (C1U.cls)\
sl@0
   565
	  WHERE I.sec = 2751;");
sl@0
   566
	err = stmt.Prepare(TheDb, KSelectSql);
sl@0
   567
	TEST2(err, KErrNone);
sl@0
   568
	while((err = stmt.Next()) == KSqlAtRow)
sl@0
   569
		{
sl@0
   570
		TInt val = stmt.ColumnInt(0);
sl@0
   571
		TEST2(val, 2751);
sl@0
   572
		TheTest.Printf(_L("column value=%d\r\n"), val);
sl@0
   573
		}
sl@0
   574
	TEST2(err, KSqlAtEnd);
sl@0
   575
	stmt.Close();
sl@0
   576
	TheDb.Close();
sl@0
   577
	//////////////////////////////////////////////////////////////
sl@0
   578
	//Test case 2 - "IN"
sl@0
   579
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   580
	err = TheDb.Create(KTestDatabase5);
sl@0
   581
	TEST2(err, KErrNone);
sl@0
   582
	err = TheDb.Exec(_L("CREATE TABLE b(y,z,PRIMARY KEY(y, z))"));
sl@0
   583
	TEST(err >= 0);
sl@0
   584
	err = stmt.Prepare(TheDb, _L("SELECT * FROM b WHERE y = NULL AND z IN ('hello')"));
sl@0
   585
	TEST2(err, KErrNone);
sl@0
   586
	while((err = stmt.Next()) == KSqlAtRow)
sl@0
   587
		{
sl@0
   588
		}
sl@0
   589
	TEST2(err, KSqlAtEnd);
sl@0
   590
	stmt.Close();
sl@0
   591
	TheDb.Close();
sl@0
   592
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   593
	}
sl@0
   594
sl@0
   595
/**
sl@0
   596
@SYMTestCaseID			SYSLIB-SQL-UT-3442
sl@0
   597
@SYMTestCaseDesc		Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
sl@0
   598
						The test does the following steps:
sl@0
   599
						1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
sl@0
   600
						2) Insert only one record in A, such that, the "Name" column length is less than 
sl@0
   601
						   8 characters, the "Data" column length is 1K bytes.
sl@0
   602
						3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
sl@0
   603
						4) Call RSqlStatement::Next() to get the record
sl@0
   604
						5) Create RSqlColumnReadStream for column 0 (the "Name" column)
sl@0
   605
						6) Try to access the "Data" column value, without using a stream
sl@0
   606
						7) Try to read the "Name" column using the stream
sl@0
   607
						8) Compare the read "Name" column value vs. the original column value (at the moment 
sl@0
   608
						   when the table record was stored)
sl@0
   609
@SYMTestPriority		High
sl@0
   610
@SYMTestActions			Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
sl@0
   611
@SYMTestExpectedResults Test must not fail
sl@0
   612
@SYMDEF					DEF105259
sl@0
   613
*/
sl@0
   614
void DEF105259L()
sl@0
   615
	{
sl@0
   616
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   617
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
   618
	TEST2(err, KErrNone);
sl@0
   619
	
sl@0
   620
	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
sl@0
   621
	TEST(err >= 0);
sl@0
   622
	
sl@0
   623
	const TInt KBlobDataSize = 1024;
sl@0
   624
	HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
sl@0
   625
	TEST(recBuf != NULL);
sl@0
   626
	TPtr sql = recBuf->Des();
sl@0
   627
	sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
sl@0
   628
	for(TInt i=0;i<KBlobDataSize;++i)
sl@0
   629
		{
sl@0
   630
		TBuf<2> tmp;
sl@0
   631
		tmp.AppendFormat(_L("%02X"), i % 256);
sl@0
   632
		sql.Append(tmp);
sl@0
   633
		}
sl@0
   634
	sql.Append(_L("')"));
sl@0
   635
	
sl@0
   636
	err = TheDb.Exec(sql);
sl@0
   637
	TEST2(err, 1);
sl@0
   638
sl@0
   639
	delete recBuf;
sl@0
   640
	
sl@0
   641
	RSqlStatement stmt;
sl@0
   642
	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   643
	TEST2(err, KErrNone);
sl@0
   644
	
sl@0
   645
	err = stmt.Next();
sl@0
   646
	TEST2(err, KSqlAtRow);
sl@0
   647
	
sl@0
   648
	RSqlColumnReadStream strm;
sl@0
   649
	err = strm.ColumnText(stmt, 0);
sl@0
   650
	TEST2(err, KErrNone);
sl@0
   651
	
sl@0
   652
	TPtrC8 data;
sl@0
   653
	err = stmt.ColumnBinary(1, data);
sl@0
   654
	TEST2(err, KErrNone);
sl@0
   655
sl@0
   656
	TBuf<10> name;
sl@0
   657
	strm.ReadL(name, 3);
sl@0
   658
	TEST(name == _L("A12"));
sl@0
   659
sl@0
   660
	strm.Close();	
sl@0
   661
	stmt.Close();
sl@0
   662
	TheDb.Close();
sl@0
   663
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   664
	}
sl@0
   665
sl@0
   666
/**
sl@0
   667
@SYMTestCaseID			SYSLIB-SQL-UT-3470
sl@0
   668
@SYMTestCaseDesc		Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
sl@0
   669
						The test creates a database with a table: A(Name TEXT, Data BLOB). One record is inserted
sl@0
   670
						in the table. Then the test creates a statement object with "SELECT * FROM A" sql statement.
sl@0
   671
						The test moves the statement cursor on the record and attempts to access the BLOB column
sl@0
   672
						using a stream. When the stream object is created, the test attempts to create an embedded
sl@0
   673
						store object from the stream, using CEmbeddedStore::FromLC(strm) call. If the defect
sl@0
   674
						is not fixed, the call will panic.
sl@0
   675
@SYMTestPriority		High
sl@0
   676
@SYMTestActions			Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
sl@0
   677
@SYMTestExpectedResults Test must not fail
sl@0
   678
@SYMDEF					DEF105681
sl@0
   679
*/
sl@0
   680
void DEF105681L()
sl@0
   681
	{	
sl@0
   682
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   683
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
   684
	TEST2(err, KErrNone);
sl@0
   685
	
sl@0
   686
	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
sl@0
   687
	TEST(err >= 0);
sl@0
   688
	
sl@0
   689
	err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('A12',x'0400000000')"));
sl@0
   690
	TEST2(err, 1);
sl@0
   691
	
sl@0
   692
	RSqlStatement stmt;
sl@0
   693
	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   694
	TEST2(err, KErrNone);
sl@0
   695
	
sl@0
   696
	err = stmt.Next();
sl@0
   697
	TEST2(err, KSqlAtRow);
sl@0
   698
sl@0
   699
	RSqlColumnReadStream strm;
sl@0
   700
	err = strm.ColumnBinary(stmt, 1);
sl@0
   701
	TEST2(err, KErrNone);
sl@0
   702
	CEmbeddedStore* store = CEmbeddedStore::FromLC(strm);
sl@0
   703
	CleanupStack::PopAndDestroy(store);
sl@0
   704
sl@0
   705
	strm.Close();	
sl@0
   706
	stmt.Close();
sl@0
   707
sl@0
   708
	//Testing with a NULL binary column value
sl@0
   709
	err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('BBB',NULL)"));
sl@0
   710
	TEST2(err, 1);
sl@0
   711
sl@0
   712
	err = stmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Name='BBB'"));
sl@0
   713
	TEST2(err, KErrNone);
sl@0
   714
	
sl@0
   715
	err = stmt.Next();
sl@0
   716
	TEST2(err, KSqlAtRow);
sl@0
   717
sl@0
   718
	err = strm.ColumnBinary(stmt, 1);
sl@0
   719
	TEST2(err, KErrNone);
sl@0
   720
	store = NULL;
sl@0
   721
	TRAP(err, store = CEmbeddedStore::FromL(strm));
sl@0
   722
	TEST2(err, KErrEof);
sl@0
   723
	delete store;
sl@0
   724
sl@0
   725
	strm.Close();	
sl@0
   726
	stmt.Close();
sl@0
   727
	
sl@0
   728
	
sl@0
   729
	TheDb.Close();
sl@0
   730
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   731
	}
sl@0
   732
sl@0
   733
/**
sl@0
   734
@SYMTestCaseID			SYSLIB-SQL-UT-3476
sl@0
   735
@SYMTestCaseDesc		Test for DEF106391 - SQL server does not deallocate the already allocated memory.
sl@0
   736
						The test is executed only on the Emulator, because its execution depends on the amount
sl@0
   737
						of the available memory and the amount of free disk space - factors which cannot be easily 
sl@0
   738
						resolved on target hardware.
sl@0
   739
						The test creates a database with a table: T(Id INTEGER, Data BLOB). 
sl@0
   740
						One record with a BLOB (either 0.79Mb or 0.9Mb) is inserted using RSqlDatabase::Exec().
sl@0
   741
						Another record with a BLOB (either 1.58 or 1.8Mb) is inserted using RSqlStatement and BLOB parameter.
sl@0
   742
						If the defect is not fixed, after the first INSERT the SQL server will not free occupied by
sl@0
   743
						the statement memory. The available heap memory won't be enough for the execution of the second INSERT statement.
sl@0
   744
						The second INSERT will fail with KErrNoMemory.
sl@0
   745
@SYMTestPriority		High
sl@0
   746
@SYMTestActions			Test for DEF106391 - SQL server does not deallocate the already allocated memory.
sl@0
   747
@SYMTestExpectedResults Test must not fail
sl@0
   748
@SYMDEF					DEF106391
sl@0
   749
*/
sl@0
   750
void DEF106391()
sl@0
   751
	{
sl@0
   752
#if defined __WINS__ ||	defined __WINSCW__
sl@0
   753
#ifndef SYMBIAN_USE_SQLITE_VERSION_3_6_4
sl@0
   754
    const TInt KBlobSize = 900 * 1024;
sl@0
   755
#else
sl@0
   756
    const TInt KBlobSize = 790 * 1024;
sl@0
   757
#endif    
sl@0
   758
sl@0
   759
	_LIT8(KConfigStr, "encoding=UTF-8");
sl@0
   760
sl@0
   761
	HBufC8* sqlBuf = HBufC8::New(KBlobSize * 2 + 200);//"+ 200" - for the SQL INSERT statement
sl@0
   762
	TEST(sqlBuf != NULL);
sl@0
   763
sl@0
   764
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   765
	
sl@0
   766
	//Step 1: insert a record with a very large BLOB column (using RSqlDatabase::Exec())
sl@0
   767
	//        (the operation is rolled back because there may not be enough disk space)
sl@0
   768
	TVolumeInfo volInfo;
sl@0
   769
	TInt err = TheFs.Volume(volInfo);
sl@0
   770
	TEST2(err, KErrNone);
sl@0
   771
	TheTest.Printf(_L("INSERT#1, Volume size: %ldK  Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
sl@0
   772
	TheTest.Printf(_L("Test BLOB size: %dK\r\n"), KBlobSize / 1024);
sl@0
   773
	
sl@0
   774
	err = TheDb.Create(KTestDatabase5, &KConfigStr);
sl@0
   775
	TEST2(err, KErrNone);
sl@0
   776
	
sl@0
   777
	TSqlResourceProfiler profiler(TheDb);
sl@0
   778
	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterMaxAlloc);
sl@0
   779
	
sl@0
   780
	err = TheDb.Exec(_L8("CREATE TABLE T(Id INTEGER, Data BLOB)"));
sl@0
   781
	TEST(err >= 0);
sl@0
   782
	TPtr8 sql = sqlBuf->Des();
sl@0
   783
	sql.Copy(_L8("BEGIN TRANSACTION;INSERT INTO T(Id,Data) VALUES(1, x'"));
sl@0
   784
	for(TInt i=0;i<KBlobSize;++i)
sl@0
   785
		{
sl@0
   786
		sql.Append(_L8("A5"));
sl@0
   787
		}
sl@0
   788
	sql.Append(_L8("');"));	
sl@0
   789
	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
sl@0
   790
	err = TheDb.Exec(sql);
sl@0
   791
	TEST2(err, 1);
sl@0
   792
	err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
sl@0
   793
	TEST(err >= 0);
sl@0
   794
	TBuf8<32> profilerRes8;
sl@0
   795
	TBuf<32> profilerRes;
sl@0
   796
	if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
sl@0
   797
		{
sl@0
   798
		profilerRes.Copy(profilerRes8);
sl@0
   799
		TheTest.Printf(_L("RSqlDatabase::Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
sl@0
   800
		}
sl@0
   801
sl@0
   802
	//Step 2: insert a record with a very large BLOB column (using RSqlStatement::Exec())
sl@0
   803
	//        (the operation is rolled back because there may not be enough disk space)
sl@0
   804
	err = TheFs.Volume(volInfo);
sl@0
   805
	TEST2(err, KErrNone);
sl@0
   806
	TheTest.Printf(_L("INSERT#2, Volume size: %ldK  Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
sl@0
   807
	TheTest.Printf(_L("Test BLOB size: %dK\r\n"), sql.Length() / 1024);
sl@0
   808
	
sl@0
   809
	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
sl@0
   810
	RSqlStatement stmt;
sl@0
   811
	err = stmt.Prepare(TheDb, _L("INSERT INTO T(Id, Data) VALUES(2, :V)"));
sl@0
   812
	TEST2(err, KErrNone);
sl@0
   813
	err = stmt.BindBinary(0, sql);
sl@0
   814
	TEST2(err, KErrNone);
sl@0
   815
	err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   816
	TEST(err >= 0);
sl@0
   817
	err = stmt.Exec();
sl@0
   818
	TEST2(err, 1);
sl@0
   819
	err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
sl@0
   820
	TEST(err >= 0);
sl@0
   821
	stmt.Close();
sl@0
   822
	if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
sl@0
   823
		{
sl@0
   824
		profilerRes.Copy(profilerRes8);
sl@0
   825
		TheTest.Printf(_L("RSqlStatement::Bind/Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
sl@0
   826
		}
sl@0
   827
	
sl@0
   828
	delete sqlBuf;
sl@0
   829
sl@0
   830
	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterMaxAlloc);
sl@0
   831
	TheDb.Close();
sl@0
   832
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   833
#endif// defined __WINS__ || defined __WINSCW__	
sl@0
   834
	}
sl@0
   835
sl@0
   836
/**
sl@0
   837
@SYMTestCaseID			SYSLIB-SQL-UT-3501
sl@0
   838
@SYMTestCaseDesc		Test for DEF109025 - SQL, dangling long binary/text column value pointer
sl@0
   839
						The test does the following steps:
sl@0
   840
						1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
sl@0
   841
						2) Insert only one record in A, such that, the "Name" column length is less than 
sl@0
   842
						   8 characters, the "Data" column length is 1K bytes.
sl@0
   843
						3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
sl@0
   844
						4) Call RSqlStatement::Next() to get the record
sl@0
   845
						5) Allocate a 1024 bytes buffer (so, when the row buffer has to be reallocated, the system will be forced to 
sl@0
   846
						   search another block of memory, because the current one is capped by the allocated 1024 bytes)
sl@0
   847
						6) Get a pointer to the "name" column value
sl@0
   848
						7) Get a pointer to the "data" column value
sl@0
   849
						8) Check the "name" column value. If the defect still exists, the "name" pointer will point to a deleted 
sl@0
   850
						   block of memory.
sl@0
   851
@SYMTestPriority		High
sl@0
   852
@SYMTestActions			Test for DEF109025 - SQL, dangling long binary/text column value pointer.
sl@0
   853
@SYMTestExpectedResults Test must not fail
sl@0
   854
@SYMDEF					DEF109025
sl@0
   855
*/
sl@0
   856
void DEF109025()
sl@0
   857
	{
sl@0
   858
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   859
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
   860
	TEST2(err, KErrNone);
sl@0
   861
	
sl@0
   862
	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
sl@0
   863
	TEST(err >= 0);
sl@0
   864
	
sl@0
   865
	const TInt KBlobDataSize = 1024;
sl@0
   866
	HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
sl@0
   867
	TEST(recBuf != NULL);
sl@0
   868
	TPtr sql = recBuf->Des();
sl@0
   869
	sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
sl@0
   870
	for(TInt i=0;i<KBlobDataSize;++i)
sl@0
   871
		{
sl@0
   872
		TBuf<2> tmp;
sl@0
   873
		tmp.AppendFormat(_L("%02X"), i % 256);
sl@0
   874
		sql.Append(tmp);
sl@0
   875
		}
sl@0
   876
	sql.Append(_L("')"));
sl@0
   877
	
sl@0
   878
	err = TheDb.Exec(sql);
sl@0
   879
	TEST2(err, 1);
sl@0
   880
sl@0
   881
	delete recBuf;
sl@0
   882
	
sl@0
   883
	RSqlStatement stmt;
sl@0
   884
	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
sl@0
   885
	TEST2(err, KErrNone);
sl@0
   886
	
sl@0
   887
	err = stmt.Next();
sl@0
   888
	TEST2(err, KSqlAtRow);
sl@0
   889
sl@0
   890
	TUint8* mem = new TUint8[1024];	//This memory block will be allocated right after the row buffer,
sl@0
   891
	TEST(mem != NULL);				//so the ColumnBinary() call will reallocate the row buffer somewhere else, not at the same address.
sl@0
   892
sl@0
   893
	TPtrC name;
sl@0
   894
	err = stmt.ColumnText(0, name);
sl@0
   895
	TEST2(err, KErrNone);
sl@0
   896
	
sl@0
   897
	TPtrC8 data;
sl@0
   898
	err = stmt.ColumnBinary(1, data);
sl@0
   899
	TEST2(err, KErrNone);
sl@0
   900
sl@0
   901
	TEST(name == _L("A12"));
sl@0
   902
sl@0
   903
	delete [] mem;
sl@0
   904
	stmt.Close();
sl@0
   905
	TheDb.Close();
sl@0
   906
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
   907
	}
sl@0
   908
sl@0
   909
/**
sl@0
   910
@SYMTestCaseID			SYSLIB-SQL-UT-3546
sl@0
   911
@SYMTestCaseDesc		Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
sl@0
   912
						The test does the following steps:
sl@0
   913
						1) Create a table: CREATE TABLE A(Id INTEGER, Data BLOB);
sl@0
   914
						2) Create a RSqlStatement object stmt;
sl@0
   915
						3) Prepare stmt with the following SQL statement:
sl@0
   916
						INSERT INTO A(Id,Data) VALUES(:Val1,:Val2);
sl@0
   917
						4) Set the Val2 field with an empty descriptor("") by using RSqlStatement::BindBinary();
sl@0
   918
						5) Execute the statement;
sl@0
   919
						6) If the defect still exist, stmt.BindBinary() will cause a panic;
sl@0
   920
@SYMTestPriority		High
sl@0
   921
@SYMTestActions			Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
sl@0
   922
@SYMTestExpectedResults Test must not fail
sl@0
   923
@SYMDEF					DEF109843
sl@0
   924
*/
sl@0
   925
void DEF109843()
sl@0
   926
	{
sl@0
   927
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   928
	TInt err = TheDb.Create(KTestDatabase5);
sl@0
   929
	TEST2(err, KErrNone);
sl@0
   930
	
sl@0
   931
	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Data BLOB)"));
sl@0
   932
	TEST(err >= 0);
sl@0
   933
sl@0
   934
	RSqlStatement stmt;
sl@0
   935
	err = stmt.Prepare(TheDb, _L("INSERT INTO A(Id,Data) VALUES(:Val1,:Val2)"));
sl@0
   936
	TEST2(err, KErrNone);
sl@0
   937
	
sl@0
   938
	TInt paramIndex;
sl@0
   939
	paramIndex = stmt.ParameterIndex(_L(":Val1"));
sl@0
   940
	TEST(paramIndex >= 0);
sl@0
   941
	
sl@0
   942
	err = stmt.BindInt(paramIndex, 1);
sl@0
   943
	TEST2(err, KErrNone);
sl@0
   944
	
sl@0
   945
	paramIndex = stmt.ParameterIndex(_L(":Val2"));
sl@0
   946
	TEST(paramIndex >= 0);
sl@0
   947
	
sl@0
   948
	TPtrC8 emptyEntry (_L8(""));
sl@0
   949
	err = stmt.BindBinary(paramIndex, emptyEntry);
sl@0
   950
	TEST2(err, KErrNone);
sl@0
   951
	
sl@0
   952
	err = stmt.Exec();
sl@0
   953
	TEST(err >= 0);
sl@0
   954
	
sl@0
   955
	stmt.Close();
sl@0
   956
	TheDb.Close();
sl@0
   957
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   958
	}
sl@0
   959
sl@0
   960
/**
sl@0
   961
@SYMTestCaseID			SYSLIB-SQL-UT-4005
sl@0
   962
@SYMTestCaseDesc		Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
sl@0
   963
						The test does the following steps:
sl@0
   964
						1) DB3: 
sl@0
   965
							CREATE TABLE A(Id INTEGER, Id1 INTEGER)
sl@0
   966
							INSERT INTO A(Id,Id1) VALUES(2,3)
sl@0
   967
						2) DB2:
sl@0
   968
							CREATE TABLE B(Id INTEGER, Id1 INTEGER)
sl@0
   969
							INSERT INTO B(Id,Id1) VALUES(2,3)
sl@0
   970
						3) DB:
sl@0
   971
							CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)
sl@0
   972
							INSERT INTO MAIN(Id,Id1) VALUES(2,3)
sl@0
   973
						4) Attach DB2 and DB3 to DB.
sl@0
   974
						5) Execute:
sl@0
   975
							INSERT INTO B SELECT * FROM B UNION ALL SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id);
sl@0
   976
							UPDATE A SET Id= (SELECT Id1 FROM B WHERE Id=1) WHERE EXISTS ( SELECT MAIN.Id1 FROM MAIN WHERE MAIN.Id = A.Id1);
sl@0
   977
@SYMTestPriority		High
sl@0
   978
@SYMTestActions			Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
sl@0
   979
@SYMTestExpectedResults Test must not fail
sl@0
   980
@SYMDEF					DEF114698
sl@0
   981
*/
sl@0
   982
void DEF114698()
sl@0
   983
	{
sl@0
   984
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
   985
	(void)RSqlDatabase::Delete(KTestDatabase2);
sl@0
   986
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
   987
	
sl@0
   988
	TInt err = TheDb.Create(KTestDatabase5);
sl@0
   989
	TEST2(err, KErrNone);
sl@0
   990
	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER)"));
sl@0
   991
	TEST(err >= 0);
sl@0
   992
	err = TheDb.Exec(_L("INSERT INTO A(Id,Id1) VALUES(2,3)"));
sl@0
   993
	TEST2(err, 1);
sl@0
   994
	TheDb.Close();
sl@0
   995
	
sl@0
   996
	err = TheDb.Create(KTestDatabase2);
sl@0
   997
	TEST2(err, KErrNone);
sl@0
   998
	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER)"));
sl@0
   999
	TEST(err >= 0);
sl@0
  1000
	err = TheDb.Exec(_L("INSERT INTO B(Id,Id1) VALUES(2,3)"));
sl@0
  1001
	TEST2(err, 1);
sl@0
  1002
	TheDb.Close();
sl@0
  1003
	
sl@0
  1004
	err = TheDb.Create(KTestDatabase1);
sl@0
  1005
	TEST2(err, KErrNone);
sl@0
  1006
	err = TheDb.Exec(_L("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)"));
sl@0
  1007
	TEST(err >= 0);
sl@0
  1008
	err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(2,3)"));
sl@0
  1009
	TEST2(err, 1);
sl@0
  1010
	
sl@0
  1011
	err = TheDb.Attach(KTestDatabase2, _L("db2"));
sl@0
  1012
	TEST2(err, KErrNone);
sl@0
  1013
	err = TheDb.Attach(KTestDatabase5, _L("db3"));
sl@0
  1014
	TEST2(err, KErrNone);
sl@0
  1015
	
sl@0
  1016
	err = TheDb.Exec(_L("INSERT INTO B SELECT * FROM B UNION ALL SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id)"));
sl@0
  1017
	TEST2(err, 2);
sl@0
  1018
	err = TheDb.Exec(_L("UPDATE A SET Id= (SELECT Id1 FROM B WHERE Id=1) WHERE EXISTS ( SELECT MAIN.Id1 FROM MAIN WHERE MAIN.Id = A.Id1)"));
sl@0
  1019
	TEST2(err, 0);
sl@0
  1020
sl@0
  1021
	err = TheDb.Detach(_L("db3"));
sl@0
  1022
	TEST2(err, KErrNone);
sl@0
  1023
	err = TheDb.Detach(_L("db2"));
sl@0
  1024
	TEST2(err, KErrNone);
sl@0
  1025
	
sl@0
  1026
	TheDb.Close();
sl@0
  1027
	(void)RSqlDatabase::Delete(KTestDatabase5);
sl@0
  1028
	(void)RSqlDatabase::Delete(KTestDatabase2);
sl@0
  1029
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1030
	}
sl@0
  1031
sl@0
  1032
/**
sl@0
  1033
@SYMTestCaseID			SYSLIB-SQL-UT-4009-0001
sl@0
  1034
@SYMTestCaseDesc		Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
sl@0
  1035
						The test does the following steps:
sl@0
  1036
						1) Create a database with two tables
sl@0
  1037
							CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)
sl@0
  1038
							CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)
sl@0
  1039
						2) Prepare the following statement
sl@0
  1040
							DELETE FROM A WHERE Id1 IN (SELECT Id1 FROM B WHERE Id IN (1,11) UNION SELECT * FROM B WHERE Id1=2 ORDER BY Id ASC LIMIT 1)
sl@0
  1041
						If the defect is not fixed, step (2) asserts in SQLITE.
sl@0
  1042
@SYMTestPriority		High
sl@0
  1043
@SYMTestActions			Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
sl@0
  1044
@SYMTestExpectedResults Test must not fail
sl@0
  1045
@SYMDEF					DEF115556
sl@0
  1046
*/
sl@0
  1047
void DEF115556()
sl@0
  1048
	{
sl@0
  1049
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1050
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
  1051
	TEST2(err, KErrNone);
sl@0
  1052
sl@0
  1053
	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
sl@0
  1054
	TEST(err >= 0);
sl@0
  1055
	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
sl@0
  1056
	TEST(err >= 0);
sl@0
  1057
sl@0
  1058
	RSqlStatement stmt;
sl@0
  1059
	err = stmt.Prepare(TheDb, _L("DELETE FROM A WHERE Id1 IN (SELECT Id1 FROM B WHERE Id IN (1,11) UNION SELECT * FROM B WHERE Id1=2 ORDER BY Id ASC LIMIT 1)"));
sl@0
  1060
	TEST(err != KErrDied);
sl@0
  1061
	TPtrC errDescr = TheDb.LastErrorMessage();
sl@0
  1062
	RDebug::Print(_L("\"Stmt prepare\" %d error. Message:\"%S\"\r\n"), err, &errDescr);
sl@0
  1063
	stmt.Close();
sl@0
  1064
	
sl@0
  1065
	TheDb.Close();
sl@0
  1066
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1067
	}
sl@0
  1068
sl@0
  1069
sl@0
  1070
/**
sl@0
  1071
@SYMTestCaseID			SYSLIB-SQL-UT-4012
sl@0
  1072
@SYMTestCaseDesc		Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
sl@0
  1073
						It is an OOM test. In the loop, the test does the following steps:
sl@0
  1074
						1) Create a database. 
sl@0
  1075
						2) Set heap failure.
sl@0
  1076
						3) Open the database
sl@0
  1077
						4) Execute the statement which caused the panic before this defect is fixed.
sl@0
  1078
						5) Close the database.
sl@0
  1079
sl@0
  1080
						If the defect is not fixed, step (5) will panic with CSession Code = 2.
sl@0
  1081
						
sl@0
  1082
						Note: It's possible for database operations to be performed even after memory
sl@0
  1083
 						allocation has failed. This is because SQLITE reuses some pages of the page
sl@0
  1084
 						cache which have been allocated but are curently not in use. This means it is 
sl@0
  1085
 						necessary to undo any operations on the database and continue checking for
sl@0
  1086
 						memory and resource leaks even after an operation has been completed successfully
sl@0
  1087
@SYMTestPriority		High
sl@0
  1088
@SYMTestActions			Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
sl@0
  1089
@SYMTestExpectedResults Test program must not panic.
sl@0
  1090
@SYMDEF					DEF115954
sl@0
  1091
*/
sl@0
  1092
void DEF115954()
sl@0
  1093
	{
sl@0
  1094
	TInt err = KErrNone;
sl@0
  1095
	TInt failingAllocationNo = 0;
sl@0
  1096
	TInt allocationNo = 0;
sl@0
  1097
	TheTest.Printf(_L("\r\n"));
sl@0
  1098
	while(allocationNo < KDEF115954MaxAllocLimit)
sl@0
  1099
 		{
sl@0
  1100
		TheTest.Printf(_L("%d    \r"), allocationNo);
sl@0
  1101
  		RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1102
  		err = TheDb.Create(KTestDatabase1);
sl@0
  1103
  		TEST(err == KErrNone);
sl@0
  1104
  		TheDb.Close(); 
sl@0
  1105
  		
sl@0
  1106
  		const TInt KDelayedDbHeapFailureMask = 0x1000;
sl@0
  1107
  		TSqlResourceTester::SetDbHeapFailure(KDelayedDbHeapFailureMask, ++allocationNo);
sl@0
  1108
sl@0
  1109
  		err = TheDb.Open(KTestDatabase1);
sl@0
  1110
  		TEST(err == KErrNone);
sl@0
  1111
sl@0
  1112
  		err = TheDb.Exec(_L("CREATE TABLE node(id INTEGER PRIMARY KEY,name TEXT);CREATE INDEX node_idx ON node(name);CREATE TABLE edge(orig INTEGER REFERENCES node,dest INTEGER REFERENCES node,PRIMARY KEY(orig, dest));CREATE INDEX edge_idx ON edge(dest,orig)"));
sl@0
  1113
  		TheDb.Close();
sl@0
  1114
  		if(err != KErrNoMemory)
sl@0
  1115
			{
sl@0
  1116
			TEST2(err, KErrNone);	
sl@0
  1117
			}
sl@0
  1118
		else
sl@0
  1119
			{
sl@0
  1120
			failingAllocationNo = allocationNo;
sl@0
  1121
			}
sl@0
  1122
  
sl@0
  1123
  		TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
sl@0
  1124
  		}
sl@0
  1125
	TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
  1126
	TEST(err == KErrNone);
sl@0
  1127
	}
sl@0
  1128
	
sl@0
  1129
/**
sl@0
  1130
@SYMTestCaseID			SYSLIB-SQL-UT-4008
sl@0
  1131
@SYMTestCaseDesc		Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
sl@0
  1132
						The test creates 2 tables with couple of records and a "BEFORE DELETE" trigger on the first table.
sl@0
  1133
						Then the test deletes 1 record from the first table and checks the record count in both tables.
sl@0
  1134
						In both cases the record count should not be 0.
sl@0
  1135
@SYMTestPriority		Critical
sl@0
  1136
@SYMTestActions			Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
sl@0
  1137
@SYMTestExpectedResults Test must not fail
sl@0
  1138
@SYMDEF					DEF115567
sl@0
  1139
*/
sl@0
  1140
void DEF115567L()
sl@0
  1141
	{
sl@0
  1142
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1143
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
  1144
	TEST2(err, KErrNone);
sl@0
  1145
	err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
sl@0
  1146
	TEST(err >= 0);
sl@0
  1147
	err = TheDb.Exec(_L("CREATE TRIGGER t3_t BEFORE DELETE ON t3 BEGIN DELETE FROM t4 WHERE t4.a = old.a;DELETE FROM t3 WHERE a = 2;END"));
sl@0
  1148
	TEST(err >= 0);
sl@0
  1149
	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(1,1)"));
sl@0
  1150
	TEST2(err, 1);
sl@0
  1151
	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(2,2)"));
sl@0
  1152
	TEST2(err, 1);
sl@0
  1153
	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(3,3)"));
sl@0
  1154
	TEST2(err, 1);
sl@0
  1155
	err = TheDb.Exec(_L("INSERT INTO t4 VALUES(1,1)"));
sl@0
  1156
	TEST2(err, 1);
sl@0
  1157
	err = TheDb.Exec(_L("INSERT INTO t4 VALUES(3,3)"));
sl@0
  1158
	TEST2(err, 1);
sl@0
  1159
	err = TheDb.Exec(_L("DELETE FROM t3 WHERE a=1 OR a=2"));
sl@0
  1160
	TEST2(err, 1);
sl@0
  1161
	TSqlScalarFullSelectQuery query(TheDb);
sl@0
  1162
	TInt rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t3"));
sl@0
  1163
	TEST2(rowcnt, 1);
sl@0
  1164
	rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t4"));
sl@0
  1165
	TEST2(rowcnt, 1);
sl@0
  1166
	TheDb.Close();
sl@0
  1167
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1168
	}	
sl@0
  1169
sl@0
  1170
/**
sl@0
  1171
@SYMTestCaseID			SYSLIB-SQL-CT-4019
sl@0
  1172
@SYMTestCaseDesc		Test for DEF116397 Attaching a non-db file should return KSqlErrNotDb rather than KErrEof
sl@0
  1173
@SYMTestPriority		Medium
sl@0
  1174
@SYMTestActions			Test for DEF116397 - SQL, Attaching database returns KErrEof(-25).
sl@0
  1175
@SYMTestExpectedResults Test must not fail
sl@0
  1176
@SYMDEF					DEF116397
sl@0
  1177
*/
sl@0
  1178
void DEF116397()
sl@0
  1179
	{
sl@0
  1180
	//Test error code opening a corrupt db file
sl@0
  1181
	TInt err = TheDb.Open(KCorruptDb);
sl@0
  1182
	TEST2(err, KSqlErrNotDb);
sl@0
  1183
	TheDb.Close();
sl@0
  1184
	
sl@0
  1185
	//create a sql db file
sl@0
  1186
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1187
	err = TheDb.Create(KTestDatabase1);
sl@0
  1188
	TEST2(err, KErrNone);
sl@0
  1189
	err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
sl@0
  1190
	TEST(err >= 0);
sl@0
  1191
	TheDb.Close();
sl@0
  1192
	
sl@0
  1193
	//open the db file
sl@0
  1194
	err=TheDb.Open(KTestDatabase1);
sl@0
  1195
	TEST2(err,KErrNone);
sl@0
  1196
	
sl@0
  1197
	//try to attach a non db file
sl@0
  1198
	err=TheDb.Attach(KCorruptDb,_L("db2"));
sl@0
  1199
	TEST2(err,KSqlErrNotDb);
sl@0
  1200
	
sl@0
  1201
	TheDb.Close();
sl@0
  1202
	(void)RSqlDatabase::Delete(KTestDatabase1);			
sl@0
  1203
	}
sl@0
  1204
sl@0
  1205
/**
sl@0
  1206
@SYMTestCaseID			SYSLIB-SQL-UT-4029
sl@0
  1207
@SYMTestCaseDesc		Test for DEF119403 - creates a databse, retrieves its Collation Dll Name and makes 
sl@0
  1208
						sure the Collation Dll Name doesn't contain the path 
sl@0
  1209
@SYMTestPriority		Medium
sl@0
  1210
@SYMTestActions			Test for DEF119403 Database re-index unnecessarily during open operation 
sl@0
  1211
@SYMTestExpectedResults Test must not fail
sl@0
  1212
@SYMDEF					DEF119403
sl@0
  1213
*/
sl@0
  1214
void DEF119403L()
sl@0
  1215
	{
sl@0
  1216
	//create a sql db file
sl@0
  1217
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1218
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
  1219
	TEST2(err, KErrNone);
sl@0
  1220
	
sl@0
  1221
	TFileName buf;
sl@0
  1222
	TSqlScalarFullSelectQuery query(TheDb);
sl@0
  1223
	//Get Collation Dll Name from SYMBIAN_SETTINGS
sl@0
  1224
	err = query.SelectTextL(_L8("SELECT CollationDllName FROM SYMBIAN_SETTINGS"), buf);
sl@0
  1225
	TEST2(err, KErrNone);
sl@0
  1226
	TParse parse;
sl@0
  1227
	parse.Set(buf, NULL, NULL);
sl@0
  1228
	
sl@0
  1229
	//Check that the Collation Dll Name doesn't include the path
sl@0
  1230
	TEST(!parse.PathPresent());
sl@0
  1231
	
sl@0
  1232
	TheDb.Close();
sl@0
  1233
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1234
sl@0
  1235
	}
sl@0
  1236
sl@0
  1237
// Helper function for DEF120237L()
sl@0
  1238
TInt ExecuteSelect(RSqlDatabase& aDatabase, const TDesC8& aSelectStatement)
sl@0
  1239
	{
sl@0
  1240
	RSqlStatement statement;
sl@0
  1241
sl@0
  1242
	TInt err = statement.Prepare(aDatabase, aSelectStatement);
sl@0
  1243
	TEST2(err, KErrNone);
sl@0
  1244
	
sl@0
  1245
	TInt ret;
sl@0
  1246
	TInt count = 0;
sl@0
  1247
	TheTest.Printf(_L("Results:\n"));
sl@0
  1248
	while((ret = statement.Next()) == KSqlAtRow)
sl@0
  1249
	    {  
sl@0
  1250
	    TPtrC coltext;
sl@0
  1251
	    err = statement.ColumnText(0, coltext);
sl@0
  1252
	    TEST2(err, KErrNone);
sl@0
  1253
	    
sl@0
  1254
	    RDebug::RawPrint(coltext);
sl@0
  1255
	    TheTest.Printf(_L("\n"));
sl@0
  1256
	    count++;
sl@0
  1257
	    }
sl@0
  1258
	TEST2(ret, KSqlAtEnd);
sl@0
  1259
	
sl@0
  1260
	statement.Close();	
sl@0
  1261
	return count;
sl@0
  1262
	}
sl@0
  1263
sl@0
  1264
/**
sl@0
  1265
@SYMTestCaseID			SYSLIB-SQL-CT-4031
sl@0
  1266
@SYMTestCaseDesc		Test for DEF120237 - Checks that When using SELECT together with 
sl@0
  1267
                        the LIKE operator the right number of results are returned.
sl@0
  1268
@SYMTestPriority		Medium
sl@0
  1269
@SYMTestActions			1) Create a database and fill it with test data.
sl@0
  1270
                        2) Execute a SELECT statement with the LIKE operator and the % wildcard
sl@0
  1271
                        3) Check that the expected number of results are returned.
sl@0
  1272
@SYMTestExpectedResults The SELECT statements should return the expected number of results.
sl@0
  1273
@SYMDEF					DEF120237
sl@0
  1274
*/
sl@0
  1275
void DEF120237L()
sl@0
  1276
	{
sl@0
  1277
	const TInt KSelectTest1ExpectedResults = 3;
sl@0
  1278
	const TInt KSelectTest2ExpectedResults = 3;
sl@0
  1279
	
sl@0
  1280
	_LIT8(KCfgStr, "encoding=UTF-8");
sl@0
  1281
	_LIT8(KCreate, "CREATE TABLE A(Id INTEGER,Name TEXT collate nocase)"); //Adding "collate nocase" allows us to see defect
sl@0
  1282
	_LIT8(KIndex, "CREATE INDEX name_index on A (name)"); //Adding index allows us to see defect
sl@0
  1283
sl@0
  1284
	_LIT8(KRecord1, "INSERT INTO A VALUES(1, '\"AAA')");
sl@0
  1285
	_LIT8(KRecord2, "INSERT INTO A VALUES(2, '\"AAB')");
sl@0
  1286
	_LIT8(KRecord3, "INSERT INTO A VALUES(3, '\"AAC')");
sl@0
  1287
	_LIT8(KRecord4, "INSERT INTO A VALUES(4, '&BAA')");
sl@0
  1288
	_LIT8(KRecord5, "INSERT INTO A VALUES(5, '%BAA')");
sl@0
  1289
	_LIT8(KRecord6, "INSERT INTO A VALUES(6, '''BAA')");
sl@0
  1290
	_LIT8(KRecord7, "INSERT INTO A VALUES(7, '''BAB')");
sl@0
  1291
	_LIT8(KRecord8, "INSERT INTO A VALUES(8, '''BAC')");
sl@0
  1292
sl@0
  1293
	//Create database
sl@0
  1294
	RSqlDatabase database;
sl@0
  1295
	CleanupClosePushL(database);
sl@0
  1296
	
sl@0
  1297
	(void*)database.Delete(KTestDatabase6);
sl@0
  1298
	User::LeaveIfError(database.Create(KTestDatabase6, &KCfgStr));
sl@0
  1299
	TInt err = database.Exec(KCreate);
sl@0
  1300
	TEST(err >= KErrNone);
sl@0
  1301
	
sl@0
  1302
	err = database.Exec(KIndex);
sl@0
  1303
	TEST(err >= KErrNone);
sl@0
  1304
	
sl@0
  1305
	//Insert Neccessary Data
sl@0
  1306
	err = database.Exec(KRecord1);
sl@0
  1307
	TEST2(err, 1);
sl@0
  1308
	err = database.Exec(KRecord2);
sl@0
  1309
	TEST2(err, 1);
sl@0
  1310
	err = database.Exec(KRecord3);
sl@0
  1311
	TEST2(err, 1);
sl@0
  1312
	err = database.Exec(KRecord4);
sl@0
  1313
	TEST2(err, 1);
sl@0
  1314
	err = database.Exec(KRecord5);
sl@0
  1315
	TEST2(err, 1);
sl@0
  1316
	err = database.Exec(KRecord6);
sl@0
  1317
	TEST2(err, 1);
sl@0
  1318
	err = database.Exec(KRecord7);
sl@0
  1319
	TEST2(err, 1);
sl@0
  1320
	err = database.Exec(KRecord8);
sl@0
  1321
	TEST2(err, 1);
sl@0
  1322
sl@0
  1323
	//Case 1 when search criteria is "
sl@0
  1324
	//Defect: Select does not return result
sl@0
  1325
	_LIT8(KSelectTest1, "select name from A where name like '\"%'");
sl@0
  1326
	TInt numResults = ExecuteSelect(database, KSelectTest1);
sl@0
  1327
	TheTest.Printf(_L("Case 1 Results: %d\n"), numResults);
sl@0
  1328
	TEST2(numResults, KSelectTest1ExpectedResults);
sl@0
  1329
	
sl@0
  1330
	//Case 2 when search criteria is '
sl@0
  1331
	//Defect: Select returns data beginning with & and % as well
sl@0
  1332
	_LIT8(KSelectTest2,"select name from A where name like '''%'");
sl@0
  1333
	numResults = ExecuteSelect(database, KSelectTest2);
sl@0
  1334
	TheTest.Printf(_L("Case 2 Results: %d\n"), numResults);
sl@0
  1335
	TEST2(numResults, KSelectTest2ExpectedResults);
sl@0
  1336
sl@0
  1337
	CleanupStack::PopAndDestroy(1);
sl@0
  1338
	}
sl@0
  1339
sl@0
  1340
/**
sl@0
  1341
@SYMTestCaseID			PDS-SQL-CT-4120
sl@0
  1342
@SYMTestCaseDesc		Test for DEF125881 - Checks that when a INSERT statement is executed
sl@0
  1343
						under a I/O failure simulation, the correct error code will be returned
sl@0
  1344
@SYMTestPriority		Medium
sl@0
  1345
@SYMTestActions			1) Create a database and fill it with test data.
sl@0
  1346
                        2) Execute a INSERT statement under a I/O failure simulation
sl@0
  1347
                        3) Check that the expected return error code is retruned
sl@0
  1348
@SYMTestExpectedResults The INSERT statement should return the correct error code under I/O failure
sl@0
  1349
@SYMDEF					DEF125881
sl@0
  1350
*/
sl@0
  1351
void DEF125881L()
sl@0
  1352
	{
sl@0
  1353
	_LIT(KDbPath, "c:\\t_sqldefect-def125881.db");
sl@0
  1354
	_LIT(KSchema, "CREATE TABLE test(t TEXT);");
sl@0
  1355
	_LIT(KInsert, "INSERT INTO test (t) VALUES (\'mkldfmklmklmkldfmkldfmklm\
sl@0
  1356
												  klcdmklmkldsdklfjwoierthj\
sl@0
  1357
												  iofnkjwefniwenfwenfjiowen\
sl@0
  1358
												  mkldfmklmklmkldfmkldfmklm\
sl@0
  1359
												  klcdmklmkldsdklfjwoierthj\
sl@0
  1360
												  mkldfmklmklmkldfmkldfmklm\
sl@0
  1361
												  klcdmklmkldsdklfjwoierthj\
sl@0
  1362
												  iofnkjwefniwenfwenfjiowen\
sl@0
  1363
												  mkldfmklmklmkldfmkldfmklm\
sl@0
  1364
												  klcdmklmkldsdklfjwoierthj\
sl@0
  1365
												  iofnkjwefniwenfwenfjiowen\
sl@0
  1366
												  mkldfmklmklmkldfmkldfmklm\
sl@0
  1367
												  klcdmklmkldsdklfjwoierthj\
sl@0
  1368
												  iofnkjwefniwenfwenfjiowen\
sl@0
  1369
												  iofnkjwefniwenfwenfjiowen\
sl@0
  1370
												  fiwenfwejnfwinsdf2sdf4sdf\');");
sl@0
  1371
	
sl@0
  1372
	_LIT(KLogFormat, "After %d operations: %d returned\n");
sl@0
  1373
	
sl@0
  1374
	// Create file server session
sl@0
  1375
	RFs fsSession;
sl@0
  1376
	CleanupClosePushL(fsSession);
sl@0
  1377
	User::LeaveIfError(fsSession.Connect());
sl@0
  1378
	
sl@0
  1379
	// Open a SQL DB, setup basic schema
sl@0
  1380
	RSqlDatabase sqlDb;
sl@0
  1381
	CleanupClosePushL(sqlDb);
sl@0
  1382
	
sl@0
  1383
	TRAPD(createErr, sqlDb.OpenL(KDbPath));
sl@0
  1384
	if (createErr != KErrNone)
sl@0
  1385
		{
sl@0
  1386
		sqlDb.CreateL(KDbPath);
sl@0
  1387
		User::LeaveIfError(sqlDb.Exec(KSchema));
sl@0
  1388
		}	
sl@0
  1389
	
sl@0
  1390
	// Create a SQL statement
sl@0
  1391
	RSqlStatement stmnt;
sl@0
  1392
	TInt err = stmnt.Prepare(sqlDb, KInsert);
sl@0
  1393
	TEST2(err,KErrNone);
sl@0
  1394
	
sl@0
  1395
	// Begin test
sl@0
  1396
	TInt fsError = KErrGeneral;
sl@0
  1397
	TInt count = 0;
sl@0
  1398
	
sl@0
  1399
	const TInt KMaxOps = 300;
sl@0
  1400
sl@0
  1401
	TSqlResourceProfiler pr(sqlDb);
sl@0
  1402
	pr.Start(TSqlResourceProfiler::ESqlCounterOsCallDetails);
sl@0
  1403
	pr.Reset(TSqlResourceProfiler::ESqlCounterOsCallDetails);
sl@0
  1404
	
sl@0
  1405
	while (fsError != 1 && count <= KMaxOps)
sl@0
  1406
		{
sl@0
  1407
		// Setup for KErrGeneral failure
sl@0
  1408
		fsSession.SetErrorCondition(KErrGeneral, count);
sl@0
  1409
		
sl@0
  1410
		// Database operation
sl@0
  1411
		fsError = stmnt.Exec();
sl@0
  1412
		stmnt.Reset();
sl@0
  1413
		
sl@0
  1414
		// Test for KErrGeneral
sl@0
  1415
		TheTest.Printf(KLogFormat, count, fsError);
sl@0
  1416
		TEST( (fsError == KErrGeneral) || (fsError == 1) || (fsError == KSqlErrIO));
sl@0
  1417
		
sl@0
  1418
		// Increment fail-after count
sl@0
  1419
		++count;
sl@0
  1420
		}
sl@0
  1421
	fsSession.SetErrorCondition(KErrNone);
sl@0
  1422
	pr.Stop(TSqlResourceProfiler::ESqlCounterOsCallDetails);
sl@0
  1423
	stmnt.Close();
sl@0
  1424
	CleanupStack::PopAndDestroy(2); // fsSession, sqlDb
sl@0
  1425
	(void)RSqlDatabase::Delete(KDbPath);
sl@0
  1426
	}
sl@0
  1427
sl@0
  1428
/**
sl@0
  1429
@SYMTestCaseID			PDS-SQL-CT-4128
sl@0
  1430
@SYMTestCaseDesc		Test for DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases.
sl@0
  1431
						When executing a pragma which deosn't return any results (e.g performing "PRAGMA index_list"
sl@0
  1432
						on a table with no index. The client panics when RSqlStatement::Next() is called. 
sl@0
  1433
						This test checks the client does not panic in this case
sl@0
  1434
@SYMTestPriority		High
sl@0
  1435
@SYMTestActions			DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases
sl@0
  1436
@SYMTestExpectedResults Test must not fail
sl@0
  1437
@SYMDEF					DEF129581
sl@0
  1438
*/
sl@0
  1439
void DEF129581()
sl@0
  1440
	{
sl@0
  1441
	_LIT8(KPragma, "Pragma index_list(T)");
sl@0
  1442
	_LIT8(KCreateTable, "CREATE TABLE T (A INTEGER)");
sl@0
  1443
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1444
	
sl@0
  1445
	//create a sql db file and make sure no index is added to it
sl@0
  1446
	TInt err = TheDb.Create(KTestDatabase1);
sl@0
  1447
	TEST2(err, KErrNone);
sl@0
  1448
sl@0
  1449
	//create a table
sl@0
  1450
	err = TheDb.Exec(KCreateTable);
sl@0
  1451
	TEST(err >= KErrNone);
sl@0
  1452
	
sl@0
  1453
	RSqlStatement stmt;
sl@0
  1454
	
sl@0
  1455
	//Executes a "Pragam index_list.." statement
sl@0
  1456
	err = stmt.Prepare(TheDb, KPragma);
sl@0
  1457
	TEST2(err, KErrNone);
sl@0
  1458
	
sl@0
  1459
	//Calls RSqlStatement::Next() to make sure the client does not panic.
sl@0
  1460
	err = stmt.Next();
sl@0
  1461
	TEST2(err, KSqlAtEnd);
sl@0
  1462
	
sl@0
  1463
	stmt.Close();
sl@0
  1464
	TheDb.Close();
sl@0
  1465
	(void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1466
	}
sl@0
  1467
sl@0
  1468
/**
sl@0
  1469
@SYMTestCaseID          PDS-SQL-CT-4153
sl@0
  1470
@SYMTestCaseDesc        Test for DEF143047: SQL, default "max parameter count" value, compatibility problem.
sl@0
  1471
                        This test case proves that an SQL statement with more than 1000 parameters can be prepared 
sl@0
  1472
                        successfully. The default value of the SQLITE_MAX_VARIABLE_NUMBER macro is 999. 
sl@0
  1473
                        Changed to 32767 with this defect fix.
sl@0
  1474
@SYMTestPriority        High
sl@0
  1475
@SYMTestActions         DEF143047: SQL, default "max parameter count" value, compatibility problem
sl@0
  1476
@SYMTestExpectedResults Test must not fail
sl@0
  1477
@SYMDEF                 DEF143047
sl@0
  1478
*/
sl@0
  1479
void DEF143047()
sl@0
  1480
    {
sl@0
  1481
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1482
    
sl@0
  1483
    TInt err = TheDb.Create(KTestDatabase1);
sl@0
  1484
    TEST2(err, KErrNone);
sl@0
  1485
sl@0
  1486
    _LIT8(KCreateTable, "CREATE TABLE T(A INTEGER)");
sl@0
  1487
    err = TheDb.Exec(KCreateTable);
sl@0
  1488
    TEST(err >= KErrNone);
sl@0
  1489
    
sl@0
  1490
    const TInt KPrmCount = 1200;
sl@0
  1491
    HBufC8* buf = HBufC8::New(KPrmCount * 2 + 200);
sl@0
  1492
    TEST(buf != NULL);
sl@0
  1493
    TPtr8 sql = buf->Des();
sl@0
  1494
    sql.Copy(_L8("SELECT * FROM T WHERE A IN(?"));
sl@0
  1495
    for(TInt i=0;i<KPrmCount;++i)
sl@0
  1496
        {
sl@0
  1497
        sql.Append(_L8(",?"));
sl@0
  1498
        }
sl@0
  1499
    sql.Append(_L8(")"));
sl@0
  1500
    
sl@0
  1501
    RSqlStatement stmt;
sl@0
  1502
    err = stmt.Prepare(TheDb,sql);
sl@0
  1503
    if(err != KErrNone)
sl@0
  1504
        {
sl@0
  1505
        TPtrC errdes = TheDb.LastErrorMessage();
sl@0
  1506
        TheTest.Printf(_L("RSqlStatement::Prepare() failed. Err %d, ErrMsg: \"%S\".\r\n"), err, &errdes);
sl@0
  1507
        }
sl@0
  1508
    TEST2(err, KErrNone);
sl@0
  1509
    stmt.Close();
sl@0
  1510
    
sl@0
  1511
    delete buf;
sl@0
  1512
    TheDb.Close();
sl@0
  1513
    (void)RSqlDatabase::Delete(KTestDatabase1);
sl@0
  1514
    }
sl@0
  1515
sl@0
  1516
/**
sl@0
  1517
@SYMTestCaseID          PDS-SQL-UT-4157
sl@0
  1518
@SYMTestCaseDesc        Test for PDEF143461  Calling CSqlSrvDatabase::LastErrorMessage() does not panic with the descriptor alignment error
sl@0
  1519
@SYMTestPriority        Normal
sl@0
  1520
@SYMTestActions         Test for PDEF143461  - CSqlSrvDatabase::LastErrorMessage() alignment problem.
sl@0
  1521
                        This tests the following SQLite Error messages to make sure it doesn't panic:
sl@0
  1522
                        1)library routine called out of sequence
sl@0
  1523
                        2)out of memory
sl@0
  1524
@SYMTestExpectedResults Test must not fail
sl@0
  1525
@SYMDEF                 PDEF143461 
sl@0
  1526
*/
sl@0
  1527
void PDEF143461L()
sl@0
  1528
    {
sl@0
  1529
    (void) RSqlDatabase::Delete(KTestDatabase6);
sl@0
  1530
    
sl@0
  1531
    //Create and setup the database file
sl@0
  1532
    RSqlDatabase db;
sl@0
  1533
    TInt err =0;
sl@0
  1534
    err = db.Create(KTestDatabase6);
sl@0
  1535
    TEST2(err, KErrNone);
sl@0
  1536
    err = db.Exec(_L("CREATE TABLE t(num INTEGER)"));
sl@0
  1537
    TEST2(err, 1);
sl@0
  1538
    err = db.Exec(_L("INSERT INTO t VALUES(1)"));
sl@0
  1539
    TEST2(err, 1);
sl@0
  1540
    err = db.Exec(_L("INSERT INTO t VALUES(2)"));
sl@0
  1541
    TEST2(err, 1);
sl@0
  1542
sl@0
  1543
    
sl@0
  1544
    //Purposely commit an error so LastErrorMessage can be called 
sl@0
  1545
    RSqlStatement stmt;
sl@0
  1546
    err = stmt.Prepare(db, _L("DELETE FROM t WHERE ROWID=?"));
sl@0
  1547
    TEST2(err, KErrNone);
sl@0
  1548
    err = stmt.BindInt(0, 1);
sl@0
  1549
    TEST2(err, KErrNone);        
sl@0
  1550
    err = stmt.Exec();
sl@0
  1551
    TEST2(err, 1);
sl@0
  1552
    
sl@0
  1553
    //Should have reset stmt here
sl@0
  1554
    err = stmt.BindInt(0, 2);
sl@0
  1555
    TEST2(err, KErrNone); 
sl@0
  1556
    err = stmt.Exec();
sl@0
  1557
    TEST2(err, KSqlErrMisuse);
sl@0
  1558
    
sl@0
  1559
    //Test "library routine called out of sequence" error message 
sl@0
  1560
    //If the defect is not fixed then it will panic here   
sl@0
  1561
    TPtrC errMsg = db.LastErrorMessage();
sl@0
  1562
    RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
sl@0
  1563
sl@0
  1564
    stmt.Close();
sl@0
  1565
    db.Close();
sl@0
  1566
    
sl@0
  1567
    TInt allocationNo = 0;
sl@0
  1568
    //The mask allows the out of memory simulation of the SQL Server to be delayed until the database is opened
sl@0
  1569
    const TInt KDelayedDbHeapFailureMask = 0x1000;
sl@0
  1570
    
sl@0
  1571
    do
sl@0
  1572
        {
sl@0
  1573
        TSqlResourceTester::SetDbHeapFailure(RHeap::EDeterministic |KDelayedDbHeapFailureMask, ++allocationNo);
sl@0
  1574
        err = db.Open(KTestDatabase6);
sl@0
  1575
        TEST2(err, KErrNone);
sl@0
  1576
        err = db.Exec(_L("INSERT INTO t VALUES(3)"));
sl@0
  1577
        TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
sl@0
  1578
        
sl@0
  1579
        TheTest.Printf(_L("%d    \r"), allocationNo);
sl@0
  1580
        //Test "out of memory" error message, if the defect is not fixed then it will panic here   
sl@0
  1581
        TPtrC errMsg = db.LastErrorMessage();
sl@0
  1582
        RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
sl@0
  1583
        db.Close();
sl@0
  1584
        }
sl@0
  1585
    while (err == KErrNoMemory);
sl@0
  1586
    TEST2(err, 1);
sl@0
  1587
    }
sl@0
  1588
sl@0
  1589
/**
sl@0
  1590
@SYMTestCaseID          PDS-SQL-CT-4166
sl@0
  1591
@SYMTestCaseDesc        Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
sl@0
  1592
@SYMTestPriority        Medium
sl@0
  1593
@SYMTestActions         1) Create a simple database and close it (this will automatically delete the journal file
sl@0
  1594
                        2) Create a 15 bytes garbage journal file which is just less than the minimum file size allowed.
sl@0
  1595
                        3) Reopen the database and checks that the open operation does not fail even thou we've used a 
sl@0
  1596
                        garbage journal file which is too small
sl@0
  1597
@SYMTestExpectedResults The RSqlDatabase::Open operation should not fail
sl@0
  1598
@SYMDEF                 DEF144027
sl@0
  1599
                        DEF144238
sl@0
  1600
*/
sl@0
  1601
void DEF144027()
sl@0
  1602
    {
sl@0
  1603
    (void) RSqlDatabase::Delete(KTestDatabase7);
sl@0
  1604
    (void) TheFs.Delete(KTestDatabase7Journal);
sl@0
  1605
    
sl@0
  1606
    TInt err = TheDb.Create(KTestDatabase7);
sl@0
  1607
    TEST2(err, KErrNone);
sl@0
  1608
    
sl@0
  1609
    err = TheDb.Exec(_L("CREATE TABLE t1(NUM INTEGER)"));
sl@0
  1610
    TEST2(err, 1);
sl@0
  1611
    
sl@0
  1612
    err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
sl@0
  1613
    TEST2(err, 1);
sl@0
  1614
    
sl@0
  1615
    TheDb.Close();
sl@0
  1616
    
sl@0
  1617
    //Created a garbage 15 bytes journal file 
sl@0
  1618
    RFile file;
sl@0
  1619
    err = file.Create(TheFs, KTestDatabase7Journal, EFileWrite);
sl@0
  1620
    TEST2(err, KErrNone);
sl@0
  1621
    
sl@0
  1622
    _LIT8(KJournalJunkData, "A123456789B1234");//15 bytes
sl@0
  1623
    err = file.Write(0, KJournalJunkData);
sl@0
  1624
    TEST2(err, KErrNone);
sl@0
  1625
    
sl@0
  1626
    file.Flush();
sl@0
  1627
    file.Close();
sl@0
  1628
    
sl@0
  1629
    //Here we check the open operation does not return an error, 
sl@0
  1630
    //even though there is a journal file less than 16 bytes
sl@0
  1631
    err = TheDb.Open(KTestDatabase7);
sl@0
  1632
    TEST2(err, KErrNone);
sl@0
  1633
    TheDb.Close();
sl@0
  1634
    }
sl@0
  1635
sl@0
  1636
/**
sl@0
  1637
Test defect where calling RSQLStatement::DeclaredColumnType() on a table which contains long (> 20 characters) column type 
sl@0
  1638
names results in a USER 11 panic.
sl@0
  1639
This test should pass because these are valid SQL column types 
sl@0
  1640
*/
sl@0
  1641
void LongColumnTypeTest()
sl@0
  1642
	{
sl@0
  1643
	(void)RSqlDatabase::Delete(KTestDatabase3);
sl@0
  1644
	TInt err = TheDb.Create(KTestDatabase3);
sl@0
  1645
	TEST2(err, KErrNone);
sl@0
  1646
	
sl@0
  1647
	_LIT8(KCreateStmt, "CREATE TABLE t(a CHARACTER VARYING(100000), b NCHAR VARYING(100000), c NATIONAL CHARACTER(100000), d NATIONAL CHARACTER VARYING(100000))");
sl@0
  1648
	err = TheDb.Exec(KCreateStmt);
sl@0
  1649
	TEST(err >= 0);
sl@0
  1650
	
sl@0
  1651
	//Select all columns (SELECT *)
sl@0
  1652
	_LIT(KSelectStmt, "SELECT * FROM t");
sl@0
  1653
	RSqlStatement stmt;
sl@0
  1654
	err = stmt.Prepare(TheDb, KSelectStmt);
sl@0
  1655
	TEST2(err, KErrNone);
sl@0
  1656
	
sl@0
  1657
	TSqlColumnType colType;
sl@0
  1658
	err = stmt.DeclaredColumnType(0, colType);
sl@0
  1659
	TEST2(err,KErrNone);
sl@0
  1660
	TEST2(colType, ESqlText);
sl@0
  1661
	
sl@0
  1662
	err = stmt.DeclaredColumnType(1, colType);
sl@0
  1663
	TEST2(err,KErrNone);
sl@0
  1664
	TEST2(colType, ESqlText);
sl@0
  1665
	
sl@0
  1666
	err = stmt.DeclaredColumnType(2, colType);
sl@0
  1667
	TEST2(err,KErrNone);
sl@0
  1668
	TEST2(colType, ESqlText);
sl@0
  1669
	
sl@0
  1670
	err = stmt.DeclaredColumnType(3, colType);
sl@0
  1671
	TEST2(err,KErrNone);
sl@0
  1672
	TEST2(colType, ESqlText);
sl@0
  1673
	
sl@0
  1674
	stmt.Close();
sl@0
  1675
sl@0
  1676
	TheDb.Close();
sl@0
  1677
	(void)RSqlDatabase::Delete(KTestDatabase3); 
sl@0
  1678
	}
sl@0
  1679
sl@0
  1680
void DoTestsL()
sl@0
  1681
	{
sl@0
  1682
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1763 \"SQL against a detached db\" test "));
sl@0
  1683
	SqlDetachedDbTest();	
sl@0
  1684
sl@0
  1685
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4034 Corrupted db file (file length too short)"));
sl@0
  1686
	CorruptDbFileTest();	
sl@0
  1687
	
sl@0
  1688
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4035 Attempt to attach a file which name cannot be parsed"));
sl@0
  1689
	AttachBadDbFileNameTest();	
sl@0
  1690
sl@0
  1691
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4036 Attempt to attach a secure database. The client cannot pass the security checks"));
sl@0
  1692
	AttachSecureDbTest();	
sl@0
  1693
sl@0
  1694
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4032 INC091579 - SQL Panic 7 when streaming BLOB fields"));
sl@0
  1695
	INC091579L();
sl@0
  1696
sl@0
  1697
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4033 INC091580 - SQL returns bogus pointer when too much text in field..."));
sl@0
  1698
	INC091580L();
sl@0
  1699
sl@0
  1700
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1815 Testing KSqlErrFull error code "));
sl@0
  1701
	SqlErrFullTest();
sl@0
  1702
	
sl@0
  1703
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1816-0001 INC094870 - [SQL] Database became corrupted and cannot be opened "));
sl@0
  1704
	INC094870L();
sl@0
  1705
sl@0
  1706
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1817-0001 INC095412: [SQL] Retrieving query results may corrupt heap "));
sl@0
  1707
 	INC095412();
sl@0
  1708
sl@0
  1709
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3427 DEF104242 - The SQL server fails to open database with default security policy only "));
sl@0
  1710
	DEF104242();
sl@0
  1711
sl@0
  1712
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3430 DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3 "));
sl@0
  1713
	DEF104437();
sl@0
  1714
	
sl@0
  1715
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3442 DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid "));
sl@0
  1716
	DEF105259L();
sl@0
  1717
sl@0
  1718
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3470 DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable "));
sl@0
  1719
	DEF105681L();
sl@0
  1720
sl@0
  1721
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3476 DEF106391 SQL server does not deallocate the already allocated memory "));
sl@0
  1722
	DEF106391();
sl@0
  1723
	
sl@0
  1724
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3501 DEF109025 SQL, dangling long binary/text column value pointer "));
sl@0
  1725
	DEF109025();
sl@0
  1726
	
sl@0
  1727
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3546 DEF109843 SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed "));
sl@0
  1728
	DEF109843();
sl@0
  1729
sl@0
  1730
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4005 DEF114698: SqlSrv.EXE::!SQL Server Insert/Update Error "));
sl@0
  1731
	DEF114698();
sl@0
  1732
sl@0
  1733
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4008 DEF115567 Critical SQLite defect that can cause database corruption during UPDATE/DELETE "));
sl@0
  1734
	DEF115567L();
sl@0
  1735
sl@0
  1736
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4009-0001 DEF115556: SqlSrv.EXE::!SQL Server when preparing complex sql query "));
sl@0
  1737
	DEF115556();
sl@0
  1738
	
sl@0
  1739
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4012 DEF115954: CSession Code = 2 executing SQL stmt in OOM loop ")); 
sl@0
  1740
	DEF115954();
sl@0
  1741
sl@0
  1742
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4019 DEF116397: SQL, Attaching database returns KErrEof(-25) "));
sl@0
  1743
	DEF116397();
sl@0
  1744
sl@0
  1745
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4029 DEF119403: Database re-index unnecessarily during open operation"));
sl@0
  1746
	DEF119403L();
sl@0
  1747
	
sl@0
  1748
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4031 DEF120237: SQL, SQLITE3.3.17, \"collate nocase\", wrong results."));
sl@0
  1749
	DEF120237L();
sl@0
  1750
	
sl@0
  1751
	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4120 DEF125881: RSqlDatabase::Exec() returns KErrAlreadyExists in I/O failure use cases."));
sl@0
  1752
	DEF125881L();
sl@0
  1753
    
sl@0
  1754
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4128 DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases."));
sl@0
  1755
    DEF129581();
sl@0
  1756
    
sl@0
  1757
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4153 DEF143047: SQL, default \"max parameter count\" value, compatibility problem."));
sl@0
  1758
    DEF143047();
sl@0
  1759
    
sl@0
  1760
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4157 PDEF143461 : CSqlSrvDatabase::LastErrorMessage() alignment problem"));
sl@0
  1761
    PDEF143461L();
sl@0
  1762
    
sl@0
  1763
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4166 DEF144027: SQL Open returns error if the reported and actual file size are different"));
sl@0
  1764
    DEF144027();
sl@0
  1765
    
sl@0
  1766
    TheTest.Next(_L("RSQLStatement::DeclaredColumnType() causes USER 11 panic when table contains long column type strings"));
sl@0
  1767
    LongColumnTypeTest();
sl@0
  1768
 
sl@0
  1769
	}
sl@0
  1770
sl@0
  1771
TInt E32Main()
sl@0
  1772
	{
sl@0
  1773
	TheTest.Title();
sl@0
  1774
	
sl@0
  1775
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1776
	
sl@0
  1777
	__UHEAP_MARK;
sl@0
  1778
	
sl@0
  1779
	CreateTestEnv();
sl@0
  1780
	DeleteTestFiles();
sl@0
  1781
	TInt err = RSqlDatabase::Copy(KCorruptDbZ, KCorruptDb);	
sl@0
  1782
	TEST2(err, KErrNone);
sl@0
  1783
	TRAP(err, DoTestsL());
sl@0
  1784
	DeleteTestFiles();
sl@0
  1785
	TheFs.SetErrorCondition(KErrNone);
sl@0
  1786
	TheFs.Close();
sl@0
  1787
	TEST2(err, KErrNone);
sl@0
  1788
sl@0
  1789
	__UHEAP_MARKEND;
sl@0
  1790
	
sl@0
  1791
	TheTest.End();
sl@0
  1792
	TheTest.Close();
sl@0
  1793
	
sl@0
  1794
	delete tc;
sl@0
  1795
sl@0
  1796
	User::Heap().Check();
sl@0
  1797
	return KErrNone;
sl@0
  1798
	}