Update contrib.
1 // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
12 // NTT DOCOMO, INC - Fix for Bug 1915 "SQL server panics when using long column type strings"
21 #include "SqlResourceProfiler.h"
22 #include "SqlResourceTester.h"
24 ///////////////////////////////////////////////////////////////////////////////////////
27 RTest TheTest(_L("t_sqldefect test"));
30 _LIT(KTestDir, "c:\\test\\");
31 _LIT(KTestDatabase1, "c:\\test\\t_sqldefect_1.db");
32 _LIT(KTestDatabase2, "c:\\test\\t_sqldefect_2.db");
33 _LIT(KCorruptDb, "c:\\test\\t_SqlShortNonDb.db");
34 _LIT(KCorruptDbZ, "z:\\test\\t_SqlShortNonDb.db"); //Created outside this test app
35 _LIT(KSecureTestDb1, "c:[21212122]BBDb2.db"); //Created outside this test app
36 _LIT(KTestDatabase3, "c:\\test\\t_sqldefect_3.db");
37 _LIT(KTestDatabase4, "z:\\test\\t_inc095412.db"); //Created outside this test app
38 _LIT(KTestDatabase5, "c:\\test\\t_sqldefect_5.db");
39 _LIT(KTestDatabase6, "c:\\test\\t_def120237.db");
40 _LIT(KTestDatabase7, "c:\\test\\t_def144027.db");
41 _LIT(KTestDatabase7Journal, "c:\\test\\t_def144027.db-journal");
43 // This value has been found by performing the OOM test
44 // with an allocation limit of 2000 and then taking a value
45 // which is just above the allocation failure rate.
46 const TInt KDEF115954MaxAllocLimit = 1300;
48 ///////////////////////////////////////////////////////////////////////////////////////
50 //Deletes all created test files.
51 void DeleteTestFiles()
54 (void)TheFs.Delete(KTestDatabase7Journal);
55 (void)RSqlDatabase::Delete(KTestDatabase7);
56 (void)RSqlDatabase::Delete(KTestDatabase6);
57 (void)RSqlDatabase::Delete(KTestDatabase5);
58 (void)RSqlDatabase::Delete(KTestDatabase3);
59 (void)RSqlDatabase::Delete(KTestDatabase2);
60 (void)RSqlDatabase::Delete(KTestDatabase1);
61 (void)RSqlDatabase::Delete(KCorruptDb);
64 ///////////////////////////////////////////////////////////////////////////////////////
65 ///////////////////////////////////////////////////////////////////////////////////////
66 //Test macros and functions
67 void Check1(TInt aValue, TInt aLine)
72 RDebug::Print(_L("*** Line %d\r\n"), aLine);
73 TheTest(EFalse, aLine);
76 void Check2(TInt aValue, TInt aExpected, TInt aLine)
78 if(aValue != aExpected)
81 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
82 TheTest(EFalse, aLine);
85 #define TEST(arg) ::Check1((arg), __LINE__)
86 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
88 ///////////////////////////////////////////////////////////////////////////////////////
90 //Creates file session instance and the test directory
93 TInt err = TheFs.Connect();
96 err = TheFs.MkDir(KTestDir);
97 TEST(err == KErrNone || err == KErrAlreadyExists);
101 @SYMTestCaseID SYSLIB-SQL-CT-1763
102 @SYMTestCaseDesc The test creates database 1 and attaches database 2.
103 Then the test prepares a SELECT sql statement which is supposed to
104 retrieve records from the attached database 2. Then the test tries to detach
105 database 2. The expectation is that the detaching operation must fail.
106 The database can be detached only when there are no alive sql statements prepared on it.
107 @SYMTestPriority High
108 @SYMTestActions SQL, "Detach database" test.
109 @SYMTestExpectedResults Test must not fail
113 void SqlDetachedDbTest()
115 TInt err = TheDb.Create(KTestDatabase1);
116 TEST2(err, KErrNone);
117 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
119 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
123 err = TheDb.Create(KTestDatabase2);
124 TEST2(err, KErrNone);
125 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
127 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
129 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
133 err = TheDb.Open(KTestDatabase1);
134 TEST2(err, KErrNone);
135 err = TheDb.Attach(KTestDatabase2, _L("Db2"));
136 TEST2(err, KErrNone);
139 err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
140 TEST2(err, KErrNone);
142 TEST2(err, KSqlAtRow);
144 err = TheDb.Detach(_L("Db2"));
145 TEST(err != KErrNone);
146 TPtrC errMsg = TheDb.LastErrorMessage();
147 RDebug::Print(_L("Detach err: %S\r\n"), &errMsg);
150 TEST2(err, KSqlAtRow);
153 err = TheDb.Detach(_L("Db2"));
154 TEST2(err, KErrNone);
157 (void)RSqlDatabase::Delete(KTestDatabase2);
158 (void)RSqlDatabase::Delete(KTestDatabase1);
162 @SYMTestCaseID SYSLIB-SQL-UT-4034
163 @SYMTestCaseDesc Corrupted database test.
164 The test tries to open a corrupted database file which length is too short.
165 The 'database open' operation is expected to fail with KSqlErrNotDb error.
166 @SYMTestPriority High
167 @SYMTestActions Corrupted database test.
168 @SYMTestExpectedResults Test must not fail
171 void CorruptDbFileTest()
173 TInt err = TheDb.Open(KCorruptDb);
174 TEST2(err, KSqlErrNotDb);
178 @SYMTestCaseID SYSLIB-SQL-UT-4035
179 @SYMTestCaseDesc Attach database with bad name.
180 Attempt to attach a file which name cannot be parsed.
181 The 'attach database' operation is expected to fail with KErrBadName error.
182 @SYMTestPriority High
183 @SYMTestActions Attach database with bad name.
184 @SYMTestExpectedResults Test must not fail
187 void AttachBadDbFileNameTest()
189 TInt err = TheDb.Create(KTestDatabase1);
190 TEST2(err, KErrNone);
191 err = TheDb.Attach(_L("\"c:\\test\\d12345678.db\""), _L("Db10"));
192 TEST2(err, KErrBadName);
194 (void)RSqlDatabase::Delete(KTestDatabase1);
198 @SYMTestCaseID SYSLIB-SQL-UT-4036
199 @SYMTestCaseDesc Attach secure database. The client cannot pass the security checks.
200 Attempt to attach a secure database. The client cannot pass the security checks.
201 The 'attach database' operation is expected to fail with KErrPermissionDenied error.
202 @SYMTestPriority High
203 @SYMTestActions Attach secure database. The client cannot pass the security checks.
204 @SYMTestExpectedResults Test must not fail
207 void AttachSecureDbTest()
209 TInt err = TheDb.Create(KTestDatabase1);
210 TEST2(err, KErrNone);
211 err = TheDb.Attach(KSecureTestDb1, _L("Db10"));
212 TEST2(err, KErrPermissionDenied);
214 (void)RSqlDatabase::Delete(KTestDatabase1);
218 @SYMTestCaseID SYSLIB-SQL-UT-4032
219 @SYMTestCaseDesc Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
220 The test creates a database with a table with a BLOB column. Then inserts
221 a record. Then the test makes an attempt to read the BLOB column using a stream -
222 RSqlColumnReadStream. If the defect is not fixed, the code will panic.
223 @SYMTestPriority High
224 @SYMTestActions Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
225 @SYMTestExpectedResults Test must not fail
230 //Create test database
231 TInt err = TheDb.Create(KTestDatabase3);
232 TEST2(err, KErrNone);
233 _LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB)");
234 err = TheDb.Exec(KCreateStmt);
236 //Insert 1 row, using a binary stream
237 _LIT8(KInsertStmt, "INSERT INTO A(Fld1,Fld2) VALUES(:p1,:p2)");
239 err = stmt.Prepare(TheDb, KInsertStmt);
240 TEST2(err, KErrNone);
241 err = stmt.BindInt(0, 1);
242 TEST2(err, KErrNone);
244 RSqlParamWriteStream out;
245 err = out.BindBinary(stmt, 1);
246 TEST2(err, KErrNone);
248 const TInt KDataSize = 100;
249 TUint16 columnData[KDataSize];
250 for(TInt i=0;i<KDataSize;i++)
252 columnData[i] = (TUint16)i;
255 out.WriteL(columnData, KDataSize);
263 //Try to read the inserted row, using a binary stream
264 _LIT8(KSelectStmt, "SELECT * FROM A WHERE Fld1=1");
265 err = stmt.Prepare(TheDb, KSelectStmt);
266 TEST2(err, KErrNone);
268 TEST2(err, KSqlAtRow);
270 RSqlColumnReadStream in;
271 TInt idx = stmt.ColumnIndex(_L("Fld2"));
272 TInt type = stmt.ColumnType(idx);
273 TInt size = stmt.ColumnSize(idx);
274 err = in.ColumnBinary(stmt,idx); // panic occurs here, if the defect is not fixed
275 TEST2(err, KErrNone);
281 (void)RSqlDatabase::Delete(KTestDatabase3);
285 @SYMTestCaseID SYSLIB-SQL-UT-4033
286 @SYMTestCaseDesc Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
287 The test creates a database with a table with 2 TEXT columns. Then inserts
288 a record using a prepared statement with parameters.
289 The second text column value is set twice calling RSqlStatement::BindText().
290 Then the test makes an attempt to read the TEXT columns using a SELECT statement -
291 RSqlStatement. If the defect is not fixed, the RSqlStatement::ColumnText() returns a
292 bad value for the first TEXT column.
293 @SYMTestPriority High
294 @SYMTestActions Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
295 @SYMTestExpectedResults Test must not fail
300 _LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 TEXT, Fld3 TEXT)");
301 TInt err = TheDb.Create(KTestDatabase3);
302 TEST2(err, KErrNone);
303 err = TheDb.Exec(KCreateStmt);
306 _LIT8(KInsertStmt,"INSERT INTO A(Fld1,Fld2,Fld3) VALUES(1,:p1,:p2)");
308 err = stmt.Prepare(TheDb, KInsertStmt);
309 TEST2(err, KErrNone);
310 err = stmt.BindText(0, _L("AAA"));// "AAA" assigned to p1 parameter
311 TEST2(err, KErrNone);
313 err = stmt.BindText(1,_L("123456789ABCD"));//"123456789ABCD" assigned to p2 parameter (Fld2 column)
314 TEST2(err, KErrNone);
315 err = stmt.BindText(1, _L("123456789ABCDE"));//"123456789ABCDE" assigned to p2 parameter (Fld3 column)
316 TEST2(err, KErrNone);
322 _LIT8(KSelectStmt,"SELECT * FROM A WHERE Fld1=1");
323 err = stmt.Prepare(TheDb, KSelectStmt);
324 TEST2(err, KErrNone);
326 TEST2(err, KSqlAtRow);
328 TPtrC fld2 = stmt.ColumnTextL(1); // returns bad value if the defect is not fixed
329 TPtrC fld3 = stmt.ColumnTextL(2);
331 TEST(fld2 == _L("AAA"));
332 TEST(fld3 == _L("123456789ABCDE"));
337 (void)RSqlDatabase::Delete(KTestDatabase3);
341 @SYMTestCaseID SYSLIB-SQL-CT-1815
342 @SYMTestCaseDesc KSqlErrFull test.
343 Create a test database with a table, which first column is declared as
344 "INTEGER PRIMARY KEY AUTOINCREMENT".
345 Insert one record into the table, initializing the ROWID with 0x7FFFFFFFFFFFFFFF
346 (KMaxTInt64). Try to insert one more record into the table. The operation must
347 fails with KSqlErrDiskFull.
348 @SYMTestPriority High
349 @SYMTestActions Verifying that SQL server returns KSqlErrFull when there are no more available row ids.
350 @SYMTestExpectedResults Test must not fail
354 void SqlErrFullTest()
356 TInt err = TheDb.Create(KTestDatabase1);
357 TEST2(err, KErrNone);
358 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT, T TEXT)"));
363 sql.Copy(_L8("INSERT INTO A(ROWID,T) VALUES("));
364 sql.AppendNum(KMaxTInt64);
365 sql.Append(_L8(", 'TTT')"));
366 err = TheDb.Exec(sql);
369 err = TheDb.Exec(_L8("INSERT INTO A(T) VALUES('UUU')"));
370 TEST2(err, KSqlErrFull);
373 err = stmt.Prepare(TheDb, _L8("SELECT ROWID FROM A"));
374 TEST2(err, KErrNone);
376 TEST2(err, KSqlAtRow);
377 TInt64 val = stmt.ColumnInt64(0);
378 TEST(val == KMaxTInt64);
380 TEST2(err, KSqlAtEnd);
384 (void)RSqlDatabase::Delete(KTestDatabase1);
388 @SYMTestCaseID SYSLIB-SQL-CT-1816-0001
389 @SYMTestCaseDesc Test for defect INC094870 - Database became corrupted and cannot be opened.
390 Case 1: Create a test database and set the database encoding to be UTF-8. Create a table.
391 Close and open again the database. "Database open" operation should not panic.
392 Case 2: Create a test database and set the database encoding to be UTF-8. Open two
393 connections to the database and check the encoding. It should be UTF-8.
394 @SYMTestPriority High
395 @SYMTestActions Test for defect INC094870 - Database became corrupted and cannot be opened.
396 @SYMTestExpectedResults Test must not fail
401 (void)RSqlDatabase::Delete(KTestDatabase3);
402 //Test 1 - with a single database
403 TInt err = TheDb.Create(KTestDatabase3);
404 TEST2(err, KErrNone);
405 err = TheDb.Exec(_L8("PRAGMA cache_size=1000"));
407 err = TheDb.SetIsolationLevel(RSqlDatabase::EReadUncommitted);
409 err = TheDb.Exec(_L8("PRAGMA encoding = \"UTF-8\";"));
411 err = TheDb.Exec(_L8("PRAGMA case_sensitive_like = 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));"));
415 //Close and reopen the database. The Open() call should not fail.
417 err = TheDb.Open(KTestDatabase3); // This call fails if the defect is not fixed
418 TEST2(err, KErrNone);
420 //Test 2 - with two database connections
421 (void)RSqlDatabase::Delete(KTestDatabase3);
422 _LIT8(KEncoding, "encoding=UTF-8");
423 _LIT(KUtf8, "UTF-8");
424 RSqlDatabase db1, db2;
425 //Connection 1: Create a database with default encoding UTF-8.
426 err = db1.Create(KTestDatabase3, &KEncoding);
427 TEST2(err, KErrNone);
429 //Connection 1: Check the database encoding
430 TSqlScalarFullSelectQuery query(db1);
431 err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
432 TEST2(err, KErrNone);
433 TEST(buf.Find(KUtf8) >= 0);
434 //Connection 1: Create a table
435 err = db1.Exec(_L8("CREATE TABLE Tbl(Id INTEGER, T BLOB)"));
437 //Connection 1: Check the database encoding
438 err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
439 TEST2(err, KErrNone);
440 TEST(buf.Find(KUtf8) >= 0);
441 //Connection 2: open the same database
442 err = db2.Open(KTestDatabase3);
443 TEST2(err, KErrNone);
444 //Connection 1: Check the database encoding
445 err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
446 TEST2(err, KErrNone);
447 TEST(buf.Find(KUtf8) >= 0);
448 //Connection 2: Check the database encoding
449 query.SetDatabase(db2);
450 err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
451 TEST2(err, KErrNone);
452 TEST(buf.Find(KUtf8) >= 0);
456 (void)RSqlDatabase::Delete(KTestDatabase3);
460 @SYMTestCaseID SYSLIB-SQL-CT-1817-0001
461 @SYMTestCaseDesc Test for defect INC095412 - Retrieving query results may corrupt heap.
462 Open t_inc095412.db test database and prepare SQL query (the SQL statement is in the test code).
463 Execute RSqlStatement::Next() and then try to retrieve the text value of column number 1.
464 If the defect is not fixed RSqlStatement::ColumnText() will panic.
465 @SYMTestPriority High
466 @SYMTestActions Test for defect INC095412 - Retrieving query results may corrupt heap.
467 @SYMTestExpectedResults Test must not fail
472 TInt err = TheDb.Open(KTestDatabase4);
473 TEST2(err, KErrNone);
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 ( ? , ? , ? , ? ) ) );"));
476 TEST2(err, KErrNone);
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};
478 for(TInt i=0;i<sizeof(KPrmValues)/sizeof(KPrmValues[0]);++i)
480 err = stmt.BindInt(i, KPrmValues[i]);
481 TEST2(err, KErrNone);
484 TEST2(err, KSqlAtRow);
486 stmt.ColumnText(1, ptr); // May corrupt heap and panic the test application if the defect is not fixed!
492 @SYMTestCaseID SYSLIB-SQL-UT-3427
493 @SYMTestCaseDesc Test for DEF104242 - The SQL server fails to open database with default security policy only.
494 The test plays with C:[21212125]T_OneDefPolicy.db secure database, which was created by
495 an external tool and the database security policy table contains just a single record
496 with the default security policy. The default security policy is set to be
497 TSecurityPolicy::EAlwaysPass. The test attempts to read from the database, modify the database
498 content, modify the database schema.
499 @SYMTestPriority High
500 @SYMTestActions Test for DEF104242 - The SQL server fails to open database with default security policy only.
501 @SYMTestExpectedResults Test must not fail
506 TInt err = TheDb.Open(_L("C:[21212125]T_OneDefPolicy.db"));
507 TEST2(err, KErrNone);
510 err = stmt.Prepare(TheDb, _L("SELECT t1key, data from t1"));
511 TEST2(err, KErrNone);
512 while((err = stmt.Next()) == KSqlAtRow)
514 TheTest.Printf(_L("t1key=%d\r\n"), stmt.ColumnInt(0));
516 TEST2(err, KSqlAtEnd);
519 err = TheDb.Exec(_L("INSERT INTO t1(t1key) VALUES(12)"));
522 err = TheDb.Exec(_L("CREATE TABLE AAA(Id INTEGER)"));
529 @SYMTestCaseID SYSLIB-SQL-UT-3430
530 @SYMTestCaseDesc Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
531 The test attempts to execute 2 SELECT queries ("IN" and "IN + JOIN"). The table, on
532 which queries operate, has multi-column primary key. The right-hand side of the
533 "IN" operator contains NULL.
534 @SYMTestPriority High
535 @SYMTestActions Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
536 @SYMTestExpectedResults Test must not fail
541 //Test case 1 - "IN" + "JOIN"
542 (void)RSqlDatabase::Delete(KTestDatabase5);
543 TInt err = TheDb.Create(KTestDatabase5);
544 TEST2(err, KErrNone);
545 err = TheDb.Exec(_L("CREATE TABLE inmk(cls TEXT,sec INTEGER,inst INTEGER)"));
547 err = TheDb.Exec(_L("INSERT INTO inmk VALUES ('ORD', 2751, 2750)"));
549 err = TheDb.Exec(_L("CREATE TABLE clss(hrar TEXT,cls TEXT,PRIMARY KEY (hrar, cls))"));
551 err = TheDb.Exec(_L("CREATE TABLE rels(prnt_inst INTEGER,chld_inst INTEGER)"));
558 rels R ON R.prnt_inst = I.inst\
560 inmk UI ON UI.inst = R.chld_inst\
562 clss C1U ON C1U.cls = UI.cls AND C1U.hrar = 'STH'\
564 clss C10U ON C10U.hrar = c1u.hrar AND C10U.cls IN (C1U.cls)\
565 WHERE I.sec = 2751;");
566 err = stmt.Prepare(TheDb, KSelectSql);
567 TEST2(err, KErrNone);
568 while((err = stmt.Next()) == KSqlAtRow)
570 TInt val = stmt.ColumnInt(0);
572 TheTest.Printf(_L("column value=%d\r\n"), val);
574 TEST2(err, KSqlAtEnd);
577 //////////////////////////////////////////////////////////////
579 (void)RSqlDatabase::Delete(KTestDatabase5);
580 err = TheDb.Create(KTestDatabase5);
581 TEST2(err, KErrNone);
582 err = TheDb.Exec(_L("CREATE TABLE b(y,z,PRIMARY KEY(y, z))"));
584 err = stmt.Prepare(TheDb, _L("SELECT * FROM b WHERE y = NULL AND z IN ('hello')"));
585 TEST2(err, KErrNone);
586 while((err = stmt.Next()) == KSqlAtRow)
589 TEST2(err, KSqlAtEnd);
592 (void)RSqlDatabase::Delete(KTestDatabase5);
596 @SYMTestCaseID SYSLIB-SQL-UT-3442
597 @SYMTestCaseDesc Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
598 The test does the following steps:
599 1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
600 2) Insert only one record in A, such that, the "Name" column length is less than
601 8 characters, the "Data" column length is 1K bytes.
602 3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
603 4) Call RSqlStatement::Next() to get the record
604 5) Create RSqlColumnReadStream for column 0 (the "Name" column)
605 6) Try to access the "Data" column value, without using a stream
606 7) Try to read the "Name" column using the stream
607 8) Compare the read "Name" column value vs. the original column value (at the moment
608 when the table record was stored)
609 @SYMTestPriority High
610 @SYMTestActions Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
611 @SYMTestExpectedResults Test must not fail
616 (void)RSqlDatabase::Delete(KTestDatabase3);
617 TInt err = TheDb.Create(KTestDatabase3);
618 TEST2(err, KErrNone);
620 err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
623 const TInt KBlobDataSize = 1024;
624 HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
625 TEST(recBuf != NULL);
626 TPtr sql = recBuf->Des();
627 sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
628 for(TInt i=0;i<KBlobDataSize;++i)
631 tmp.AppendFormat(_L("%02X"), i % 256);
634 sql.Append(_L("')"));
636 err = TheDb.Exec(sql);
642 err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
643 TEST2(err, KErrNone);
646 TEST2(err, KSqlAtRow);
648 RSqlColumnReadStream strm;
649 err = strm.ColumnText(stmt, 0);
650 TEST2(err, KErrNone);
653 err = stmt.ColumnBinary(1, data);
654 TEST2(err, KErrNone);
658 TEST(name == _L("A12"));
663 (void)RSqlDatabase::Delete(KTestDatabase3);
667 @SYMTestCaseID SYSLIB-SQL-UT-3470
668 @SYMTestCaseDesc Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
669 The test creates a database with a table: A(Name TEXT, Data BLOB). One record is inserted
670 in the table. Then the test creates a statement object with "SELECT * FROM A" sql statement.
671 The test moves the statement cursor on the record and attempts to access the BLOB column
672 using a stream. When the stream object is created, the test attempts to create an embedded
673 store object from the stream, using CEmbeddedStore::FromLC(strm) call. If the defect
674 is not fixed, the call will panic.
675 @SYMTestPriority High
676 @SYMTestActions Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
677 @SYMTestExpectedResults Test must not fail
682 (void)RSqlDatabase::Delete(KTestDatabase3);
683 TInt err = TheDb.Create(KTestDatabase3);
684 TEST2(err, KErrNone);
686 err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
689 err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('A12',x'0400000000')"));
693 err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
694 TEST2(err, KErrNone);
697 TEST2(err, KSqlAtRow);
699 RSqlColumnReadStream strm;
700 err = strm.ColumnBinary(stmt, 1);
701 TEST2(err, KErrNone);
702 CEmbeddedStore* store = CEmbeddedStore::FromLC(strm);
703 CleanupStack::PopAndDestroy(store);
708 //Testing with a NULL binary column value
709 err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('BBB',NULL)"));
712 err = stmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Name='BBB'"));
713 TEST2(err, KErrNone);
716 TEST2(err, KSqlAtRow);
718 err = strm.ColumnBinary(stmt, 1);
719 TEST2(err, KErrNone);
721 TRAP(err, store = CEmbeddedStore::FromL(strm));
730 (void)RSqlDatabase::Delete(KTestDatabase3);
734 @SYMTestCaseID SYSLIB-SQL-UT-3476
735 @SYMTestCaseDesc Test for DEF106391 - SQL server does not deallocate the already allocated memory.
736 The test is executed only on the Emulator, because its execution depends on the amount
737 of the available memory and the amount of free disk space - factors which cannot be easily
738 resolved on target hardware.
739 The test creates a database with a table: T(Id INTEGER, Data BLOB).
740 One record with a BLOB (either 0.79Mb or 0.9Mb) is inserted using RSqlDatabase::Exec().
741 Another record with a BLOB (either 1.58 or 1.8Mb) is inserted using RSqlStatement and BLOB parameter.
742 If the defect is not fixed, after the first INSERT the SQL server will not free occupied by
743 the statement memory. The available heap memory won't be enough for the execution of the second INSERT statement.
744 The second INSERT will fail with KErrNoMemory.
745 @SYMTestPriority High
746 @SYMTestActions Test for DEF106391 - SQL server does not deallocate the already allocated memory.
747 @SYMTestExpectedResults Test must not fail
752 #if defined __WINS__ || defined __WINSCW__
753 #ifndef SYMBIAN_USE_SQLITE_VERSION_3_6_4
754 const TInt KBlobSize = 900 * 1024;
756 const TInt KBlobSize = 790 * 1024;
759 _LIT8(KConfigStr, "encoding=UTF-8");
761 HBufC8* sqlBuf = HBufC8::New(KBlobSize * 2 + 200);//"+ 200" - for the SQL INSERT statement
762 TEST(sqlBuf != NULL);
764 (void)RSqlDatabase::Delete(KTestDatabase5);
766 //Step 1: insert a record with a very large BLOB column (using RSqlDatabase::Exec())
767 // (the operation is rolled back because there may not be enough disk space)
769 TInt err = TheFs.Volume(volInfo);
770 TEST2(err, KErrNone);
771 TheTest.Printf(_L("INSERT#1, Volume size: %ldK Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
772 TheTest.Printf(_L("Test BLOB size: %dK\r\n"), KBlobSize / 1024);
774 err = TheDb.Create(KTestDatabase5, &KConfigStr);
775 TEST2(err, KErrNone);
777 TSqlResourceProfiler profiler(TheDb);
778 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterMaxAlloc);
780 err = TheDb.Exec(_L8("CREATE TABLE T(Id INTEGER, Data BLOB)"));
782 TPtr8 sql = sqlBuf->Des();
783 sql.Copy(_L8("BEGIN TRANSACTION;INSERT INTO T(Id,Data) VALUES(1, x'"));
784 for(TInt i=0;i<KBlobSize;++i)
786 sql.Append(_L8("A5"));
788 sql.Append(_L8("');"));
789 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
790 err = TheDb.Exec(sql);
792 err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
794 TBuf8<32> profilerRes8;
795 TBuf<32> profilerRes;
796 if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
798 profilerRes.Copy(profilerRes8);
799 TheTest.Printf(_L("RSqlDatabase::Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
802 //Step 2: insert a record with a very large BLOB column (using RSqlStatement::Exec())
803 // (the operation is rolled back because there may not be enough disk space)
804 err = TheFs.Volume(volInfo);
805 TEST2(err, KErrNone);
806 TheTest.Printf(_L("INSERT#2, Volume size: %ldK Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
807 TheTest.Printf(_L("Test BLOB size: %dK\r\n"), sql.Length() / 1024);
809 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
811 err = stmt.Prepare(TheDb, _L("INSERT INTO T(Id, Data) VALUES(2, :V)"));
812 TEST2(err, KErrNone);
813 err = stmt.BindBinary(0, sql);
814 TEST2(err, KErrNone);
815 err = TheDb.Exec(_L("BEGIN TRANSACTION"));
819 err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
822 if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
824 profilerRes.Copy(profilerRes8);
825 TheTest.Printf(_L("RSqlStatement::Bind/Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
830 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterMaxAlloc);
832 (void)RSqlDatabase::Delete(KTestDatabase5);
833 #endif// defined __WINS__ || defined __WINSCW__
837 @SYMTestCaseID SYSLIB-SQL-UT-3501
838 @SYMTestCaseDesc Test for DEF109025 - SQL, dangling long binary/text column value pointer
839 The test does the following steps:
840 1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
841 2) Insert only one record in A, such that, the "Name" column length is less than
842 8 characters, the "Data" column length is 1K bytes.
843 3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
844 4) Call RSqlStatement::Next() to get the record
845 5) Allocate a 1024 bytes buffer (so, when the row buffer has to be reallocated, the system will be forced to
846 search another block of memory, because the current one is capped by the allocated 1024 bytes)
847 6) Get a pointer to the "name" column value
848 7) Get a pointer to the "data" column value
849 8) Check the "name" column value. If the defect still exists, the "name" pointer will point to a deleted
851 @SYMTestPriority High
852 @SYMTestActions Test for DEF109025 - SQL, dangling long binary/text column value pointer.
853 @SYMTestExpectedResults Test must not fail
858 (void)RSqlDatabase::Delete(KTestDatabase3);
859 TInt err = TheDb.Create(KTestDatabase3);
860 TEST2(err, KErrNone);
862 err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
865 const TInt KBlobDataSize = 1024;
866 HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
867 TEST(recBuf != NULL);
868 TPtr sql = recBuf->Des();
869 sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
870 for(TInt i=0;i<KBlobDataSize;++i)
873 tmp.AppendFormat(_L("%02X"), i % 256);
876 sql.Append(_L("')"));
878 err = TheDb.Exec(sql);
884 err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
885 TEST2(err, KErrNone);
888 TEST2(err, KSqlAtRow);
890 TUint8* mem = new TUint8[1024]; //This memory block will be allocated right after the row buffer,
891 TEST(mem != NULL); //so the ColumnBinary() call will reallocate the row buffer somewhere else, not at the same address.
894 err = stmt.ColumnText(0, name);
895 TEST2(err, KErrNone);
898 err = stmt.ColumnBinary(1, data);
899 TEST2(err, KErrNone);
901 TEST(name == _L("A12"));
906 (void)RSqlDatabase::Delete(KTestDatabase3);
910 @SYMTestCaseID SYSLIB-SQL-UT-3546
911 @SYMTestCaseDesc Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
912 The test does the following steps:
913 1) Create a table: CREATE TABLE A(Id INTEGER, Data BLOB);
914 2) Create a RSqlStatement object stmt;
915 3) Prepare stmt with the following SQL statement:
916 INSERT INTO A(Id,Data) VALUES(:Val1,:Val2);
917 4) Set the Val2 field with an empty descriptor("") by using RSqlStatement::BindBinary();
918 5) Execute the statement;
919 6) If the defect still exist, stmt.BindBinary() will cause a panic;
920 @SYMTestPriority High
921 @SYMTestActions Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
922 @SYMTestExpectedResults Test must not fail
927 (void)RSqlDatabase::Delete(KTestDatabase5);
928 TInt err = TheDb.Create(KTestDatabase5);
929 TEST2(err, KErrNone);
931 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Data BLOB)"));
935 err = stmt.Prepare(TheDb, _L("INSERT INTO A(Id,Data) VALUES(:Val1,:Val2)"));
936 TEST2(err, KErrNone);
939 paramIndex = stmt.ParameterIndex(_L(":Val1"));
940 TEST(paramIndex >= 0);
942 err = stmt.BindInt(paramIndex, 1);
943 TEST2(err, KErrNone);
945 paramIndex = stmt.ParameterIndex(_L(":Val2"));
946 TEST(paramIndex >= 0);
948 TPtrC8 emptyEntry (_L8(""));
949 err = stmt.BindBinary(paramIndex, emptyEntry);
950 TEST2(err, KErrNone);
957 (void)RSqlDatabase::Delete(KTestDatabase5);
961 @SYMTestCaseID SYSLIB-SQL-UT-4005
962 @SYMTestCaseDesc Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
963 The test does the following steps:
965 CREATE TABLE A(Id INTEGER, Id1 INTEGER)
966 INSERT INTO A(Id,Id1) VALUES(2,3)
968 CREATE TABLE B(Id INTEGER, Id1 INTEGER)
969 INSERT INTO B(Id,Id1) VALUES(2,3)
971 CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)
972 INSERT INTO MAIN(Id,Id1) VALUES(2,3)
973 4) Attach DB2 and DB3 to DB.
975 INSERT INTO B SELECT * FROM B UNION ALL SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id);
976 UPDATE A SET Id= (SELECT Id1 FROM B WHERE Id=1) WHERE EXISTS ( SELECT MAIN.Id1 FROM MAIN WHERE MAIN.Id = A.Id1);
977 @SYMTestPriority High
978 @SYMTestActions Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
979 @SYMTestExpectedResults Test must not fail
984 (void)RSqlDatabase::Delete(KTestDatabase1);
985 (void)RSqlDatabase::Delete(KTestDatabase2);
986 (void)RSqlDatabase::Delete(KTestDatabase5);
988 TInt err = TheDb.Create(KTestDatabase5);
989 TEST2(err, KErrNone);
990 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER)"));
992 err = TheDb.Exec(_L("INSERT INTO A(Id,Id1) VALUES(2,3)"));
996 err = TheDb.Create(KTestDatabase2);
997 TEST2(err, KErrNone);
998 err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER)"));
1000 err = TheDb.Exec(_L("INSERT INTO B(Id,Id1) VALUES(2,3)"));
1004 err = TheDb.Create(KTestDatabase1);
1005 TEST2(err, KErrNone);
1006 err = TheDb.Exec(_L("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)"));
1008 err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(2,3)"));
1011 err = TheDb.Attach(KTestDatabase2, _L("db2"));
1012 TEST2(err, KErrNone);
1013 err = TheDb.Attach(KTestDatabase5, _L("db3"));
1014 TEST2(err, KErrNone);
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)"));
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)"));
1021 err = TheDb.Detach(_L("db3"));
1022 TEST2(err, KErrNone);
1023 err = TheDb.Detach(_L("db2"));
1024 TEST2(err, KErrNone);
1027 (void)RSqlDatabase::Delete(KTestDatabase5);
1028 (void)RSqlDatabase::Delete(KTestDatabase2);
1029 (void)RSqlDatabase::Delete(KTestDatabase1);
1033 @SYMTestCaseID SYSLIB-SQL-UT-4009-0001
1034 @SYMTestCaseDesc Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
1035 The test does the following steps:
1036 1) Create a database with two tables
1037 CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)
1038 CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)
1039 2) Prepare the following statement
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)
1041 If the defect is not fixed, step (2) asserts in SQLITE.
1042 @SYMTestPriority High
1043 @SYMTestActions Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
1044 @SYMTestExpectedResults Test must not fail
1049 (void)RSqlDatabase::Delete(KTestDatabase1);
1050 TInt err = TheDb.Create(KTestDatabase1);
1051 TEST2(err, KErrNone);
1053 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
1055 err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
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)"));
1060 TEST(err != KErrDied);
1061 TPtrC errDescr = TheDb.LastErrorMessage();
1062 RDebug::Print(_L("\"Stmt prepare\" %d error. Message:\"%S\"\r\n"), err, &errDescr);
1066 (void)RSqlDatabase::Delete(KTestDatabase1);
1071 @SYMTestCaseID SYSLIB-SQL-UT-4012
1072 @SYMTestCaseDesc Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
1073 It is an OOM test. In the loop, the test does the following steps:
1074 1) Create a database.
1075 2) Set heap failure.
1076 3) Open the database
1077 4) Execute the statement which caused the panic before this defect is fixed.
1078 5) Close the database.
1080 If the defect is not fixed, step (5) will panic with CSession Code = 2.
1082 Note: It's possible for database operations to be performed even after memory
1083 allocation has failed. This is because SQLITE reuses some pages of the page
1084 cache which have been allocated but are curently not in use. This means it is
1085 necessary to undo any operations on the database and continue checking for
1086 memory and resource leaks even after an operation has been completed successfully
1087 @SYMTestPriority High
1088 @SYMTestActions Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
1089 @SYMTestExpectedResults Test program must not panic.
1094 TInt err = KErrNone;
1095 TInt failingAllocationNo = 0;
1096 TInt allocationNo = 0;
1097 TheTest.Printf(_L("\r\n"));
1098 while(allocationNo < KDEF115954MaxAllocLimit)
1100 TheTest.Printf(_L("%d \r"), allocationNo);
1101 RSqlDatabase::Delete(KTestDatabase1);
1102 err = TheDb.Create(KTestDatabase1);
1103 TEST(err == KErrNone);
1106 const TInt KDelayedDbHeapFailureMask = 0x1000;
1107 TSqlResourceTester::SetDbHeapFailure(KDelayedDbHeapFailureMask, ++allocationNo);
1109 err = TheDb.Open(KTestDatabase1);
1110 TEST(err == KErrNone);
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)"));
1114 if(err != KErrNoMemory)
1116 TEST2(err, KErrNone);
1120 failingAllocationNo = allocationNo;
1123 TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
1125 TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
1126 TEST(err == KErrNone);
1130 @SYMTestCaseID SYSLIB-SQL-UT-4008
1131 @SYMTestCaseDesc Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
1132 The test creates 2 tables with couple of records and a "BEFORE DELETE" trigger on the first table.
1133 Then the test deletes 1 record from the first table and checks the record count in both tables.
1134 In both cases the record count should not be 0.
1135 @SYMTestPriority Critical
1136 @SYMTestActions Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
1137 @SYMTestExpectedResults Test must not fail
1142 (void)RSqlDatabase::Delete(KTestDatabase1);
1143 TInt err = TheDb.Create(KTestDatabase1);
1144 TEST2(err, KErrNone);
1145 err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
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"));
1149 err = TheDb.Exec(_L("INSERT INTO t3 VALUES(1,1)"));
1151 err = TheDb.Exec(_L("INSERT INTO t3 VALUES(2,2)"));
1153 err = TheDb.Exec(_L("INSERT INTO t3 VALUES(3,3)"));
1155 err = TheDb.Exec(_L("INSERT INTO t4 VALUES(1,1)"));
1157 err = TheDb.Exec(_L("INSERT INTO t4 VALUES(3,3)"));
1159 err = TheDb.Exec(_L("DELETE FROM t3 WHERE a=1 OR a=2"));
1161 TSqlScalarFullSelectQuery query(TheDb);
1162 TInt rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t3"));
1164 rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t4"));
1167 (void)RSqlDatabase::Delete(KTestDatabase1);
1171 @SYMTestCaseID SYSLIB-SQL-CT-4019
1172 @SYMTestCaseDesc Test for DEF116397 Attaching a non-db file should return KSqlErrNotDb rather than KErrEof
1173 @SYMTestPriority Medium
1174 @SYMTestActions Test for DEF116397 - SQL, Attaching database returns KErrEof(-25).
1175 @SYMTestExpectedResults Test must not fail
1180 //Test error code opening a corrupt db file
1181 TInt err = TheDb.Open(KCorruptDb);
1182 TEST2(err, KSqlErrNotDb);
1185 //create a sql db file
1186 (void)RSqlDatabase::Delete(KTestDatabase1);
1187 err = TheDb.Create(KTestDatabase1);
1188 TEST2(err, KErrNone);
1189 err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
1194 err=TheDb.Open(KTestDatabase1);
1195 TEST2(err,KErrNone);
1197 //try to attach a non db file
1198 err=TheDb.Attach(KCorruptDb,_L("db2"));
1199 TEST2(err,KSqlErrNotDb);
1202 (void)RSqlDatabase::Delete(KTestDatabase1);
1206 @SYMTestCaseID SYSLIB-SQL-UT-4029
1207 @SYMTestCaseDesc Test for DEF119403 - creates a databse, retrieves its Collation Dll Name and makes
1208 sure the Collation Dll Name doesn't contain the path
1209 @SYMTestPriority Medium
1210 @SYMTestActions Test for DEF119403 Database re-index unnecessarily during open operation
1211 @SYMTestExpectedResults Test must not fail
1216 //create a sql db file
1217 (void)RSqlDatabase::Delete(KTestDatabase1);
1218 TInt err = TheDb.Create(KTestDatabase1);
1219 TEST2(err, KErrNone);
1222 TSqlScalarFullSelectQuery query(TheDb);
1223 //Get Collation Dll Name from SYMBIAN_SETTINGS
1224 err = query.SelectTextL(_L8("SELECT CollationDllName FROM SYMBIAN_SETTINGS"), buf);
1225 TEST2(err, KErrNone);
1227 parse.Set(buf, NULL, NULL);
1229 //Check that the Collation Dll Name doesn't include the path
1230 TEST(!parse.PathPresent());
1233 (void)RSqlDatabase::Delete(KTestDatabase1);
1237 // Helper function for DEF120237L()
1238 TInt ExecuteSelect(RSqlDatabase& aDatabase, const TDesC8& aSelectStatement)
1240 RSqlStatement statement;
1242 TInt err = statement.Prepare(aDatabase, aSelectStatement);
1243 TEST2(err, KErrNone);
1247 TheTest.Printf(_L("Results:\n"));
1248 while((ret = statement.Next()) == KSqlAtRow)
1251 err = statement.ColumnText(0, coltext);
1252 TEST2(err, KErrNone);
1254 RDebug::RawPrint(coltext);
1255 TheTest.Printf(_L("\n"));
1258 TEST2(ret, KSqlAtEnd);
1265 @SYMTestCaseID SYSLIB-SQL-CT-4031
1266 @SYMTestCaseDesc Test for DEF120237 - Checks that When using SELECT together with
1267 the LIKE operator the right number of results are returned.
1268 @SYMTestPriority Medium
1269 @SYMTestActions 1) Create a database and fill it with test data.
1270 2) Execute a SELECT statement with the LIKE operator and the % wildcard
1271 3) Check that the expected number of results are returned.
1272 @SYMTestExpectedResults The SELECT statements should return the expected number of results.
1277 const TInt KSelectTest1ExpectedResults = 3;
1278 const TInt KSelectTest2ExpectedResults = 3;
1280 _LIT8(KCfgStr, "encoding=UTF-8");
1281 _LIT8(KCreate, "CREATE TABLE A(Id INTEGER,Name TEXT collate nocase)"); //Adding "collate nocase" allows us to see defect
1282 _LIT8(KIndex, "CREATE INDEX name_index on A (name)"); //Adding index allows us to see defect
1284 _LIT8(KRecord1, "INSERT INTO A VALUES(1, '\"AAA')");
1285 _LIT8(KRecord2, "INSERT INTO A VALUES(2, '\"AAB')");
1286 _LIT8(KRecord3, "INSERT INTO A VALUES(3, '\"AAC')");
1287 _LIT8(KRecord4, "INSERT INTO A VALUES(4, '&BAA')");
1288 _LIT8(KRecord5, "INSERT INTO A VALUES(5, '%BAA')");
1289 _LIT8(KRecord6, "INSERT INTO A VALUES(6, '''BAA')");
1290 _LIT8(KRecord7, "INSERT INTO A VALUES(7, '''BAB')");
1291 _LIT8(KRecord8, "INSERT INTO A VALUES(8, '''BAC')");
1294 RSqlDatabase database;
1295 CleanupClosePushL(database);
1297 (void*)database.Delete(KTestDatabase6);
1298 User::LeaveIfError(database.Create(KTestDatabase6, &KCfgStr));
1299 TInt err = database.Exec(KCreate);
1300 TEST(err >= KErrNone);
1302 err = database.Exec(KIndex);
1303 TEST(err >= KErrNone);
1305 //Insert Neccessary Data
1306 err = database.Exec(KRecord1);
1308 err = database.Exec(KRecord2);
1310 err = database.Exec(KRecord3);
1312 err = database.Exec(KRecord4);
1314 err = database.Exec(KRecord5);
1316 err = database.Exec(KRecord6);
1318 err = database.Exec(KRecord7);
1320 err = database.Exec(KRecord8);
1323 //Case 1 when search criteria is "
1324 //Defect: Select does not return result
1325 _LIT8(KSelectTest1, "select name from A where name like '\"%'");
1326 TInt numResults = ExecuteSelect(database, KSelectTest1);
1327 TheTest.Printf(_L("Case 1 Results: %d\n"), numResults);
1328 TEST2(numResults, KSelectTest1ExpectedResults);
1330 //Case 2 when search criteria is '
1331 //Defect: Select returns data beginning with & and % as well
1332 _LIT8(KSelectTest2,"select name from A where name like '''%'");
1333 numResults = ExecuteSelect(database, KSelectTest2);
1334 TheTest.Printf(_L("Case 2 Results: %d\n"), numResults);
1335 TEST2(numResults, KSelectTest2ExpectedResults);
1337 CleanupStack::PopAndDestroy(1);
1341 @SYMTestCaseID PDS-SQL-CT-4120
1342 @SYMTestCaseDesc Test for DEF125881 - Checks that when a INSERT statement is executed
1343 under a I/O failure simulation, the correct error code will be returned
1344 @SYMTestPriority Medium
1345 @SYMTestActions 1) Create a database and fill it with test data.
1346 2) Execute a INSERT statement under a I/O failure simulation
1347 3) Check that the expected return error code is retruned
1348 @SYMTestExpectedResults The INSERT statement should return the correct error code under I/O failure
1353 _LIT(KDbPath, "c:\\t_sqldefect-def125881.db");
1354 _LIT(KSchema, "CREATE TABLE test(t TEXT);");
1355 _LIT(KInsert, "INSERT INTO test (t) VALUES (\'mkldfmklmklmkldfmkldfmklm\
1356 klcdmklmkldsdklfjwoierthj\
1357 iofnkjwefniwenfwenfjiowen\
1358 mkldfmklmklmkldfmkldfmklm\
1359 klcdmklmkldsdklfjwoierthj\
1360 mkldfmklmklmkldfmkldfmklm\
1361 klcdmklmkldsdklfjwoierthj\
1362 iofnkjwefniwenfwenfjiowen\
1363 mkldfmklmklmkldfmkldfmklm\
1364 klcdmklmkldsdklfjwoierthj\
1365 iofnkjwefniwenfwenfjiowen\
1366 mkldfmklmklmkldfmkldfmklm\
1367 klcdmklmkldsdklfjwoierthj\
1368 iofnkjwefniwenfwenfjiowen\
1369 iofnkjwefniwenfwenfjiowen\
1370 fiwenfwejnfwinsdf2sdf4sdf\');");
1372 _LIT(KLogFormat, "After %d operations: %d returned\n");
1374 // Create file server session
1376 CleanupClosePushL(fsSession);
1377 User::LeaveIfError(fsSession.Connect());
1379 // Open a SQL DB, setup basic schema
1381 CleanupClosePushL(sqlDb);
1383 TRAPD(createErr, sqlDb.OpenL(KDbPath));
1384 if (createErr != KErrNone)
1386 sqlDb.CreateL(KDbPath);
1387 User::LeaveIfError(sqlDb.Exec(KSchema));
1390 // Create a SQL statement
1391 RSqlStatement stmnt;
1392 TInt err = stmnt.Prepare(sqlDb, KInsert);
1393 TEST2(err,KErrNone);
1396 TInt fsError = KErrGeneral;
1399 const TInt KMaxOps = 300;
1401 TSqlResourceProfiler pr(sqlDb);
1402 pr.Start(TSqlResourceProfiler::ESqlCounterOsCallDetails);
1403 pr.Reset(TSqlResourceProfiler::ESqlCounterOsCallDetails);
1405 while (fsError != 1 && count <= KMaxOps)
1407 // Setup for KErrGeneral failure
1408 fsSession.SetErrorCondition(KErrGeneral, count);
1410 // Database operation
1411 fsError = stmnt.Exec();
1414 // Test for KErrGeneral
1415 TheTest.Printf(KLogFormat, count, fsError);
1416 TEST( (fsError == KErrGeneral) || (fsError == 1) || (fsError == KSqlErrIO));
1418 // Increment fail-after count
1421 fsSession.SetErrorCondition(KErrNone);
1422 pr.Stop(TSqlResourceProfiler::ESqlCounterOsCallDetails);
1424 CleanupStack::PopAndDestroy(2); // fsSession, sqlDb
1425 (void)RSqlDatabase::Delete(KDbPath);
1429 @SYMTestCaseID PDS-SQL-CT-4128
1430 @SYMTestCaseDesc Test for DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases.
1431 When executing a pragma which deosn't return any results (e.g performing "PRAGMA index_list"
1432 on a table with no index. The client panics when RSqlStatement::Next() is called.
1433 This test checks the client does not panic in this case
1434 @SYMTestPriority High
1435 @SYMTestActions DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases
1436 @SYMTestExpectedResults Test must not fail
1441 _LIT8(KPragma, "Pragma index_list(T)");
1442 _LIT8(KCreateTable, "CREATE TABLE T (A INTEGER)");
1443 (void)RSqlDatabase::Delete(KTestDatabase1);
1445 //create a sql db file and make sure no index is added to it
1446 TInt err = TheDb.Create(KTestDatabase1);
1447 TEST2(err, KErrNone);
1450 err = TheDb.Exec(KCreateTable);
1451 TEST(err >= KErrNone);
1455 //Executes a "Pragam index_list.." statement
1456 err = stmt.Prepare(TheDb, KPragma);
1457 TEST2(err, KErrNone);
1459 //Calls RSqlStatement::Next() to make sure the client does not panic.
1461 TEST2(err, KSqlAtEnd);
1465 (void)RSqlDatabase::Delete(KTestDatabase1);
1469 @SYMTestCaseID PDS-SQL-CT-4153
1470 @SYMTestCaseDesc Test for DEF143047: SQL, default "max parameter count" value, compatibility problem.
1471 This test case proves that an SQL statement with more than 1000 parameters can be prepared
1472 successfully. The default value of the SQLITE_MAX_VARIABLE_NUMBER macro is 999.
1473 Changed to 32767 with this defect fix.
1474 @SYMTestPriority High
1475 @SYMTestActions DEF143047: SQL, default "max parameter count" value, compatibility problem
1476 @SYMTestExpectedResults Test must not fail
1481 (void)RSqlDatabase::Delete(KTestDatabase1);
1483 TInt err = TheDb.Create(KTestDatabase1);
1484 TEST2(err, KErrNone);
1486 _LIT8(KCreateTable, "CREATE TABLE T(A INTEGER)");
1487 err = TheDb.Exec(KCreateTable);
1488 TEST(err >= KErrNone);
1490 const TInt KPrmCount = 1200;
1491 HBufC8* buf = HBufC8::New(KPrmCount * 2 + 200);
1493 TPtr8 sql = buf->Des();
1494 sql.Copy(_L8("SELECT * FROM T WHERE A IN(?"));
1495 for(TInt i=0;i<KPrmCount;++i)
1497 sql.Append(_L8(",?"));
1499 sql.Append(_L8(")"));
1502 err = stmt.Prepare(TheDb,sql);
1505 TPtrC errdes = TheDb.LastErrorMessage();
1506 TheTest.Printf(_L("RSqlStatement::Prepare() failed. Err %d, ErrMsg: \"%S\".\r\n"), err, &errdes);
1508 TEST2(err, KErrNone);
1513 (void)RSqlDatabase::Delete(KTestDatabase1);
1517 @SYMTestCaseID PDS-SQL-UT-4157
1518 @SYMTestCaseDesc Test for PDEF143461 Calling CSqlSrvDatabase::LastErrorMessage() does not panic with the descriptor alignment error
1519 @SYMTestPriority Normal
1520 @SYMTestActions Test for PDEF143461 - CSqlSrvDatabase::LastErrorMessage() alignment problem.
1521 This tests the following SQLite Error messages to make sure it doesn't panic:
1522 1)library routine called out of sequence
1524 @SYMTestExpectedResults Test must not fail
1529 (void) RSqlDatabase::Delete(KTestDatabase6);
1531 //Create and setup the database file
1534 err = db.Create(KTestDatabase6);
1535 TEST2(err, KErrNone);
1536 err = db.Exec(_L("CREATE TABLE t(num INTEGER)"));
1538 err = db.Exec(_L("INSERT INTO t VALUES(1)"));
1540 err = db.Exec(_L("INSERT INTO t VALUES(2)"));
1544 //Purposely commit an error so LastErrorMessage can be called
1546 err = stmt.Prepare(db, _L("DELETE FROM t WHERE ROWID=?"));
1547 TEST2(err, KErrNone);
1548 err = stmt.BindInt(0, 1);
1549 TEST2(err, KErrNone);
1553 //Should have reset stmt here
1554 err = stmt.BindInt(0, 2);
1555 TEST2(err, KErrNone);
1557 TEST2(err, KSqlErrMisuse);
1559 //Test "library routine called out of sequence" error message
1560 //If the defect is not fixed then it will panic here
1561 TPtrC errMsg = db.LastErrorMessage();
1562 RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
1567 TInt allocationNo = 0;
1568 //The mask allows the out of memory simulation of the SQL Server to be delayed until the database is opened
1569 const TInt KDelayedDbHeapFailureMask = 0x1000;
1573 TSqlResourceTester::SetDbHeapFailure(RHeap::EDeterministic |KDelayedDbHeapFailureMask, ++allocationNo);
1574 err = db.Open(KTestDatabase6);
1575 TEST2(err, KErrNone);
1576 err = db.Exec(_L("INSERT INTO t VALUES(3)"));
1577 TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
1579 TheTest.Printf(_L("%d \r"), allocationNo);
1580 //Test "out of memory" error message, if the defect is not fixed then it will panic here
1581 TPtrC errMsg = db.LastErrorMessage();
1582 RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
1585 while (err == KErrNoMemory);
1590 @SYMTestCaseID PDS-SQL-CT-4166
1591 @SYMTestCaseDesc Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
1592 @SYMTestPriority Medium
1593 @SYMTestActions 1) Create a simple database and close it (this will automatically delete the journal file
1594 2) Create a 15 bytes garbage journal file which is just less than the minimum file size allowed.
1595 3) Reopen the database and checks that the open operation does not fail even thou we've used a
1596 garbage journal file which is too small
1597 @SYMTestExpectedResults The RSqlDatabase::Open operation should not fail
1603 (void) RSqlDatabase::Delete(KTestDatabase7);
1604 (void) TheFs.Delete(KTestDatabase7Journal);
1606 TInt err = TheDb.Create(KTestDatabase7);
1607 TEST2(err, KErrNone);
1609 err = TheDb.Exec(_L("CREATE TABLE t1(NUM INTEGER)"));
1612 err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
1617 //Created a garbage 15 bytes journal file
1619 err = file.Create(TheFs, KTestDatabase7Journal, EFileWrite);
1620 TEST2(err, KErrNone);
1622 _LIT8(KJournalJunkData, "A123456789B1234");//15 bytes
1623 err = file.Write(0, KJournalJunkData);
1624 TEST2(err, KErrNone);
1629 //Here we check the open operation does not return an error,
1630 //even though there is a journal file less than 16 bytes
1631 err = TheDb.Open(KTestDatabase7);
1632 TEST2(err, KErrNone);
1637 Test defect where calling RSQLStatement::DeclaredColumnType() on a table which contains long (> 20 characters) column type
1638 names results in a USER 11 panic.
1639 This test should pass because these are valid SQL column types
1641 void LongColumnTypeTest()
1643 (void)RSqlDatabase::Delete(KTestDatabase3);
1644 TInt err = TheDb.Create(KTestDatabase3);
1645 TEST2(err, KErrNone);
1647 _LIT8(KCreateStmt, "CREATE TABLE t(a CHARACTER VARYING(100000), b NCHAR VARYING(100000), c NATIONAL CHARACTER(100000), d NATIONAL CHARACTER VARYING(100000))");
1648 err = TheDb.Exec(KCreateStmt);
1651 //Select all columns (SELECT *)
1652 _LIT(KSelectStmt, "SELECT * FROM t");
1654 err = stmt.Prepare(TheDb, KSelectStmt);
1655 TEST2(err, KErrNone);
1657 TSqlColumnType colType;
1658 err = stmt.DeclaredColumnType(0, colType);
1659 TEST2(err,KErrNone);
1660 TEST2(colType, ESqlText);
1662 err = stmt.DeclaredColumnType(1, colType);
1663 TEST2(err,KErrNone);
1664 TEST2(colType, ESqlText);
1666 err = stmt.DeclaredColumnType(2, colType);
1667 TEST2(err,KErrNone);
1668 TEST2(colType, ESqlText);
1670 err = stmt.DeclaredColumnType(3, colType);
1671 TEST2(err,KErrNone);
1672 TEST2(colType, ESqlText);
1677 (void)RSqlDatabase::Delete(KTestDatabase3);
1682 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1763 \"SQL against a detached db\" test "));
1683 SqlDetachedDbTest();
1685 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4034 Corrupted db file (file length too short)"));
1686 CorruptDbFileTest();
1688 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4035 Attempt to attach a file which name cannot be parsed"));
1689 AttachBadDbFileNameTest();
1691 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4036 Attempt to attach a secure database. The client cannot pass the security checks"));
1692 AttachSecureDbTest();
1694 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4032 INC091579 - SQL Panic 7 when streaming BLOB fields"));
1697 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4033 INC091580 - SQL returns bogus pointer when too much text in field..."));
1700 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1815 Testing KSqlErrFull error code "));
1703 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1816-0001 INC094870 - [SQL] Database became corrupted and cannot be opened "));
1706 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1817-0001 INC095412: [SQL] Retrieving query results may corrupt heap "));
1709 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3427 DEF104242 - The SQL server fails to open database with default security policy only "));
1712 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3430 DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3 "));
1715 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3442 DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid "));
1718 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3470 DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable "));
1721 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3476 DEF106391 SQL server does not deallocate the already allocated memory "));
1724 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3501 DEF109025 SQL, dangling long binary/text column value pointer "));
1727 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3546 DEF109843 SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed "));
1730 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4005 DEF114698: SqlSrv.EXE::!SQL Server Insert/Update Error "));
1733 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4008 DEF115567 Critical SQLite defect that can cause database corruption during UPDATE/DELETE "));
1736 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4009-0001 DEF115556: SqlSrv.EXE::!SQL Server when preparing complex sql query "));
1739 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4012 DEF115954: CSession Code = 2 executing SQL stmt in OOM loop "));
1742 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4019 DEF116397: SQL, Attaching database returns KErrEof(-25) "));
1745 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4029 DEF119403: Database re-index unnecessarily during open operation"));
1748 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4031 DEF120237: SQL, SQLITE3.3.17, \"collate nocase\", wrong results."));
1751 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4120 DEF125881: RSqlDatabase::Exec() returns KErrAlreadyExists in I/O failure use cases."));
1754 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4128 DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases."));
1757 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4153 DEF143047: SQL, default \"max parameter count\" value, compatibility problem."));
1760 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4157 PDEF143461 : CSqlSrvDatabase::LastErrorMessage() alignment problem"));
1763 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4166 DEF144027: SQL Open returns error if the reported and actual file size are different"));
1766 TheTest.Next(_L("RSQLStatement::DeclaredColumnType() causes USER 11 panic when table contains long column type strings"));
1767 LongColumnTypeTest();
1775 CTrapCleanup* tc = CTrapCleanup::New();
1781 TInt err = RSqlDatabase::Copy(KCorruptDbZ, KCorruptDb);
1782 TEST2(err, KErrNone);
1783 TRAP(err, DoTestsL());
1785 TheFs.SetErrorCondition(KErrNone);
1787 TEST2(err, KErrNone);
1796 User::Heap().Check();