Update contrib.
1 // Copyright (c) 2007-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.
19 #include <s32buf.h> //MStreamBuf
21 #include "SqlResourceProfiler.h"
23 ///////////////////////////////////////////////////////////////////////////////////////
25 RTest TheTest(_L("t_sqlapi2 test"));
27 RSqlStatement TheStmt;
29 _LIT(KTestDir, "c:\\test\\");
30 _LIT(KTestDbName1, "c:\\test\\t_sqlapi2_1.db");
31 _LIT(KTestDbName2, "c:\\private\\1111C1EF\\t_sqlapi2_2.db");//t_sqlapi2 app - private database
33 _LIT(KDbInjectedName1, "DELETE FROM symbian_settings;c:\\test\\A.db");
34 _LIT(KDbInjectedName2, "c:\\test\\A.db;DELETE FROM symbian_settings;");
36 const TInt KBufLen = 8192;
39 ///////////////////////////////////////////////////////////////////////////////////////
41 void DeleteTestFiles()
45 (void)RSqlDatabase::Delete(KDbInjectedName2);
46 (void)RSqlDatabase::Delete(KDbInjectedName1);
47 (void)RSqlDatabase::Delete(KTestDbName2);
48 (void)RSqlDatabase::Delete(KTestDbName1);
51 ///////////////////////////////////////////////////////////////////////////////////////
52 ///////////////////////////////////////////////////////////////////////////////////////
53 //Test macros and functions
54 void Check(TInt aValue, TInt aLine)
59 TheTest(EFalse, aLine);
62 void Check(TInt aValue, TInt aExpected, TInt aLine)
64 if(aValue != aExpected)
67 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
68 TheTest(EFalse, aLine);
71 #define TEST(arg) ::Check((arg), __LINE__)
72 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
74 ///////////////////////////////////////////////////////////////////////////////////////
79 TInt err = fs.Connect();
82 err = fs.MkDir(KTestDir);
83 TEST(err == KErrNone || err == KErrAlreadyExists);
85 err = fs.CreatePrivatePath(EDriveC);
86 TEST(err == KErrNone || err == KErrAlreadyExists);
91 ///////////////////////////////////////////////////////////////////////////////////////
94 @SYMTestCaseID SYSLIB-SQL-UT-3512
95 @SYMTestCaseDesc RSqlStatement::ColumnCount() - SELECT statements test
96 The test creates a database with a table and then checks the ColumnCount()
97 return result for the following statements:
100 - select an expression;
102 - multi-table select;
104 - select plus sub-query;
105 @SYMTestPriority High
106 @SYMTestActions RSqlStatement::ColumnCount() test
107 @SYMTestExpectedResults Test must not fail
110 void ColumnCountTest()
113 TInt err = TheDb.Create(KTestDbName1);
114 TEST2(err, KErrNone);
116 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT,Id2 INTEGER,Data BLOB)"));
119 err = TheDb.Exec(_L("INSERT INTO A VALUES(1,'AAA',6234567890,x'11AAFD0C771188')"));
122 //Select all columns (SELECT *)
123 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
124 TEST2(err, KErrNone);
125 TInt cnt = TheStmt.ColumnCount();
128 //Select all columns (SELECT a,b,c...)
129 err = TheStmt.Prepare(TheDb, _L("SELECT Id,Name,Id2,Data FROM A"));
130 TEST2(err, KErrNone);
131 cnt = TheStmt.ColumnCount();
134 //Select column subset
135 err = TheStmt.Prepare(TheDb, _L("SELECT Id,Name,Data FROM A"));
136 TEST2(err, KErrNone);
137 cnt = TheStmt.ColumnCount();
140 //Select column subset + expression
141 err = TheStmt.Prepare(TheDb, _L("SELECT Id,Id+Id2 FROM A"));
142 TEST2(err, KErrNone);
143 cnt = TheStmt.ColumnCount();
146 //Select column subset + constant
147 err = TheStmt.Prepare(TheDb, _L("SELECT Id,Id2,345.78 FROM A"));
148 TEST2(err, KErrNone);
149 cnt = TheStmt.ColumnCount();
152 //Select SQL function
153 err = TheStmt.Prepare(TheDb, _L("SELECT COUNT(*) FROM A"));
154 TEST2(err, KErrNone);
155 cnt = TheStmt.ColumnCount();
159 err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, S INTEGER)"));
161 err = TheDb.Exec(_L("INSERT INTO B VALUES(1,25)"));
164 err = TheStmt.Prepare(TheDb, _L("SELECT A.Id,B.S FROM A,B WHERE A.Id = B.Id"));
165 TEST2(err, KErrNone);
166 cnt = TheStmt.ColumnCount();
170 err = TheStmt.Prepare(TheDb, _L("SELECT Id FROM A WHERE (SELECT S FROM B WHERE A.Id = B.Id) > 10"));
171 TEST2(err, KErrNone);
172 cnt = TheStmt.ColumnCount();
177 (void)RSqlDatabase::Delete(KTestDbName1);
181 @SYMTestCaseID SYSLIB-SQL-UT-3513
182 @SYMTestCaseDesc RSqlStatement::ColumnCount() - DDL and DML statements test
183 The test creates a database with a table and then checks the ColumnCount() return result for
184 DML statements (INSERT/UPDATE/DELETE) and DDL statements (CREATE TABLE/INDEX, DROP TABLE?INDEX).
185 The column count for DML and DDL statements should be 0.
186 @SYMTestPriority High
187 @SYMTestActions RSqlStatement::ColumnCount() test
188 @SYMTestExpectedResults Test must not fail
191 void ColumnCountTest2()
193 TInt err = TheDb.Create(KTestDbName1);
194 TEST2(err, KErrNone);
196 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT,Id2 INTEGER,Data BLOB)"));
198 err = TheDb.Exec(_L("INSERT INTO A VALUES(1,'AAA',6234567890,x'11AAFD0C771188')"));
201 err = TheStmt.Prepare(TheDb, _L("INSERT INTO A(Id,Id2) VALUES(:P1,:P2)"));
202 TEST2(err, KErrNone);
203 TInt cnt = TheStmt.ColumnCount();
207 err = TheStmt.Prepare(TheDb, _L("UPDATE A SET Id2=100 WHERE Id=:P1"));
208 TEST2(err, KErrNone);
209 cnt = TheStmt.ColumnCount();
213 err = TheStmt.Prepare(TheDb, _L("DELETE FROM A WHERE Id=:P1"));
214 TEST2(err, KErrNone);
215 cnt = TheStmt.ColumnCount();
218 //CREATE TABLE statement
219 err = TheStmt.Prepare(TheDb, _L("CREATE TABLE B AS SELECT * FROM A"));
220 TEST2(err, KErrNone);
221 cnt = TheStmt.ColumnCount();
224 //DROP TABLE statement
225 err = TheStmt.Prepare(TheDb, _L("DROP TABLE A"));
226 TEST2(err, KErrNone);
227 cnt = TheStmt.ColumnCount();
230 //CREATE INDEX statement
231 err = TheStmt.Prepare(TheDb, _L("CREATE INDEX I ON A(Id)"));
232 TEST2(err, KErrNone);
233 cnt = TheStmt.ColumnCount();
235 err = TheStmt.Exec();
238 //DROP INDEX statement
239 err = TheStmt.Prepare(TheDb, _L("DROP INDEX I"));
240 TEST2(err, KErrNone);
241 cnt = TheStmt.ColumnCount();
244 //CREATE TRIGGER statement
245 err = TheStmt.Prepare(TheDb,
246 _L("CREATE TRIGGER Trg BEFORE DELETE ON A \
248 SELECT CASE WHEN ((SELECT Id2 FROM A WHERE A.Id = old.Id) > 0) \
249 THEN RAISE (ABORT, 'Id2 > 0') \
252 TEST2(err, KErrNone);
253 cnt = TheStmt.ColumnCount();
256 //CREATE VIEW statement
257 err = TheStmt.Prepare(TheDb, _L("CREATE VIEW V AS SELECT * FROM A"));
258 TEST2(err, KErrNone);
259 cnt = TheStmt.ColumnCount();
261 err = TheStmt.Exec();
264 //DROP VIEW statement
265 err = TheStmt.Prepare(TheDb, _L("DROP VIEW V"));
266 TEST2(err, KErrNone);
267 cnt = TheStmt.ColumnCount();
272 (void)RSqlDatabase::Delete(KTestDbName1);
276 @SYMTestCaseID SYSLIB-SQL-UT-3514
277 @SYMTestCaseDesc RSqlStatement::DeclaredColumnType() test
278 The test creates a database with a table and then checks the DeclaredColumnType() return result for:
279 - select all column from the table and check their types;
280 - multi-table select plus column type checks;
281 - select expression - the expected column type is ESqlInt;
282 - select constant - the expected column type is ESqlInt;
283 @SYMTestPriority High
284 @SYMTestActions RSqlStatement::ColumnCount() test
285 @SYMTestExpectedResults Test must not fail
288 void DeclaredColumnTypeTest()
290 TInt err = TheDb.Create(KTestDbName1);
291 TEST2(err, KErrNone);
292 const char* KColTypeNames[] =
293 {"INTEGER", "LONG INTEGER", "INT", "SHORT INT", "SMALL INT", "TINY INT", "SHORT", "INT64",
294 "TEXT", "LONGTEXT", "CLOB", "CHAR", "CHARACTER(20)", "LONG TEXT",
295 "BINARY", "LONG BINARY", "LONGBINARY", "BLOB", "LONGBLOB", "LONG BLOB",
296 "REAL", "FLOAT", "DOUBLE", "LONG DOUBLE",
297 "LONG LONG", "BOO HOO"};
298 const TSqlColumnType KColTypes[] =
299 {ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,
300 ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,
301 ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,
302 ESqlReal,ESqlReal,ESqlReal,ESqlReal,
304 const TInt KColTypeCnt = sizeof(KColTypes) / sizeof(KColTypes[0]);
305 TEST2(sizeof(KColTypeNames) / sizeof(KColTypeNames[0]), KColTypeCnt);
308 sql.Copy(_L8("CREATE TABLE T("));
309 for(TInt i=0;i<KColTypeCnt;++i)
311 sql.Append(TChar('A'));
312 sql.AppendNum(i + 1);
313 sql.Append(TChar(' '));
314 sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
315 sql.Append(TChar(','));
317 sql.Replace(sql.Length() - 1, 1, _L8(")"));
318 err = TheDb.Exec(sql);
320 //Select all columns (SELECT *)
321 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM T"));
322 TEST2(err, KErrNone);
323 TInt cnt = TheStmt.ColumnCount();
324 TEST2(cnt, KColTypeCnt);
325 TSqlColumnType colType;
326 for(TInt i=0;i<KColTypeCnt;++i)
328 TInt err = TheStmt.DeclaredColumnType(i, colType);
329 TEST2(err, KErrNone);
330 TEST2(colType, KColTypes[i]);
334 err = TheDb.Exec(_L8("CREATE TABLE T2(Id INTEGER, DATA BLOB)"));
337 err = TheStmt.Prepare(TheDb, _L("SELECT T.A1,T2.Id,T.A9,T2.Data FROM T,T2"));
338 TEST2(err, KErrNone);
339 err = TheStmt.DeclaredColumnType(0, colType);
340 TEST2(err, KErrNone);
341 TEST2(colType, ESqlInt);
342 err = TheStmt.DeclaredColumnType(1, colType);
343 TEST2(err, KErrNone);
344 TEST2(colType, ESqlInt);
345 err = TheStmt.DeclaredColumnType(2, colType);
346 TEST2(err, KErrNone);
347 TEST2(colType, ESqlText);
348 err = TheStmt.DeclaredColumnType(3, colType);
349 TEST2(err, KErrNone);
350 TEST2(colType, ESqlBinary);
353 err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES FROM t2"));
354 TEST2(err, KErrNone);
355 err = TheStmt.DeclaredColumnType(0, colType);
356 TEST2(err, KErrNone);
357 TEST2(colType, ESqlInt);
360 err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES, 55.89 FROM t2"));
361 TEST2(err, KErrNone);
362 err = TheStmt.DeclaredColumnType(1, colType);
363 TEST2(err, KErrNone);
364 TEST2(colType, ESqlInt);
368 (void)RSqlDatabase::Delete(KTestDbName1);
372 @SYMTestCaseID SYSLIB-SQL-UT-4017
373 @SYMTestCaseDesc RSqlStatement::ColumnName(TInt, TPtrC&) test
374 The test creates a database with a table and then checks the ColumnName() return result for:
375 - select all column from the table and check their names;
376 - multi-table select plus column name checks;
377 - select expression - the expected column name is RES
378 - select constant - the expected column type is 55.89
379 @SYMTestPriority High
380 @SYMTestActions RSqlStatement::ColumnName() test
381 @SYMTestExpectedResults Test must not fail
383 Add SQL Server APIs to retrieve column and parameter names
385 void ColumnNameTest()
387 TInt err = TheDb.Create(KTestDbName1);
388 TEST2(err, KErrNone);
389 const char* KColTypeNames[] =
390 {"INTEGER", "LONG INTEGER", "INT", "SHORT INT", "SMALL INT", "TINY INT", "SHORT", "INT64",
391 "TEXT", "LONGTEXT", "CLOB", "CHAR", "CHARACTER(20)", "LONG TEXT",
392 "BINARY", "LONG BINARY", "LONGBINARY", "BLOB", "LONGBLOB", "LONG BLOB",
393 "REAL", "FLOAT", "DOUBLE", "LONG DOUBLE",
394 "LONG LONG", "BOO HOO"};
395 const TSqlColumnType KColTypes[] =
396 {ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,
397 ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,
398 ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,
399 ESqlReal,ESqlReal,ESqlReal,ESqlReal,
401 const TInt KColTypeCnt = sizeof(KColTypes) / sizeof(KColTypes[0]);
402 TEST2(sizeof(KColTypeNames) / sizeof(KColTypeNames[0]), KColTypeCnt);
405 sql.Copy(_L8("CREATE TABLE T("));
406 for(TInt i=0;i<KColTypeCnt;++i)
408 sql.Append(TChar('A'));
409 sql.AppendNum(i + 1);
410 sql.Append(TChar(' '));
411 sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
412 sql.Append(TChar(','));
414 sql.Replace(sql.Length() - 1, 1, _L8(")"));
415 err = TheDb.Exec(sql);
417 //Select all columns (SELECT *)
418 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM T"));
419 TEST2(err, KErrNone);
420 TInt cnt = TheStmt.ColumnCount();
421 TEST2(cnt, KColTypeCnt);
423 TBuf<128> expectedColName;
424 for(TInt i=0;i<KColTypeCnt;++i)
426 expectedColName.Zero();
427 expectedColName.Append(TChar('A'));
428 expectedColName.AppendNum(i + 1);
429 TInt err = TheStmt.ColumnName(i, colName);
430 TEST2(err, KErrNone);
431 TEST2(colName.Compare(expectedColName), 0);
433 err = TheStmt.DeclaredColumnType(i, type);
434 TEST2(err, KErrNone);
435 TEST2(type, KColTypes[i]);
439 err = TheDb.Exec(_L8("CREATE TABLE T2(Id INTEGER, DATA BLOB)"));
442 err = TheStmt.Prepare(TheDb, _L("SELECT T.A1,T2.Id,T.A9,T2.DATA FROM T,T2"));
443 TEST2(err, KErrNone);
444 err = TheStmt.ColumnName(0, colName);
445 TEST2(err, KErrNone);
446 TEST2(colName.Compare(_L("A1")), 0);
447 err = TheStmt.ColumnName(1, colName);
448 TEST2(err, KErrNone);
449 TEST2(colName.Compare(_L("Id")), 0);
450 err = TheStmt.ColumnName(2, colName);
451 TEST2(err, KErrNone);
452 TEST2(colName.Compare(_L("A9")), 0);
453 err = TheStmt.ColumnName(3, colName);
454 TEST2(err, KErrNone);
455 TEST2(colName.Compare(_L("DATA")), 0);
458 err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES FROM t2"));
459 TEST2(err, KErrNone);
460 err = TheStmt.ColumnName(0, colName);
461 TEST2(err, KErrNone);
462 TEST2(colName.Compare(_L("RES")), 0);
463 //Too big column index
464 err = TheStmt.ColumnName(1323, colName);
465 TEST2(err, KErrNotFound);
466 //Negative column index
467 err = TheStmt.ColumnName(-100, colName);
468 TEST2(err, KErrNotFound);
471 err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES, 55.89 FROM t2"));
472 TEST2(err, KErrNone);
473 err = TheStmt.ColumnName(1, colName);
474 TEST2(err, KErrNone);
475 TEST2(colName.Compare(_L("55.89")), 0);
479 (void)RSqlDatabase::Delete(KTestDbName1);
483 @SYMTestCaseID SYSLIB-SQL-UT-4018
484 @SYMTestCaseDesc RSqlStatement::ParameterName(TInt, TPtrC&) and RSqlStatement::ParamName(TInt, TPtrC&) test
486 The test creates a database with a table and prepares an insert query.
487 The test then checks the ParameterName() and ParamName() return result for:
488 - Named parameters - return the named param
489 - Unnamed parameters - return ?<param-index>
490 @SYMTestPriority High
491 @SYMTestActions RSqlStatement::ParameterName() and RSqlStatement::ParamName() test
492 @SYMTestExpectedResults Test must not fail
494 Add SQL Server APIs to retrieve column and parameter names
498 TInt err = TheDb.Create(KTestDbName1);
499 TEST2(err, KErrNone);
500 const char* KColTypeNames[] =
502 const TInt KColTypeCnt = sizeof(KColTypeNames) / sizeof(KColTypeNames[0]);
505 sql.Copy(_L8("CREATE TABLE T("));
506 for(TInt i=0;i<KColTypeCnt;++i)
508 sql.Append(TChar('A'));
509 sql.AppendNum(i + 1);
510 sql.Append(TChar(' '));
511 sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
512 sql.Append(TChar(','));
514 sql.Replace(sql.Length() - 1, 1, _L8(")"));
515 err = TheDb.Exec(sql);
519 // Create insert statement, then check param names
520 err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (:prm1, :prm2)"));
521 TEST2(err, KErrNone);
523 TBuf<128> expectedParamName;
524 for(TInt i=0;i<KColTypeCnt;++i)
526 expectedParamName.Zero();
527 expectedParamName.Append(_L(":prm"));
528 expectedParamName.AppendNum(i + 1);
529 TInt paramIndex = TheStmt.ParameterIndex(expectedParamName);
530 TEST2(paramIndex, i);
531 TInt err = TheStmt.ParameterName(i, paramName);
532 TEST2(err, KErrNone);
533 TEST2(paramName.Compare(expectedParamName), 0);
534 err = TheStmt.ParamName(i, paramName);
535 TEST2(err, KErrNone);
536 TEST2(paramName.Compare(expectedParamName), 0);
538 //Too big parameter index
539 err = TheStmt.ParamName(1323, paramName);
540 TEST2(err, KErrNotFound);
541 //Negative parameter index
542 err = TheStmt.ParamName(-100, paramName);
543 TEST2(err, KErrNotFound);
546 //SQL statement without parameters
547 err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (1, '1')"));
548 TEST2(err, KErrNone);
549 err = TheStmt.ParamName(0, paramName);
550 TEST2(err, KErrNotFound);
553 // Create insert statement, then check param names
554 err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (:prm1, ?)"));
555 TEST2(err, KErrNone);
557 expectedParamName.Zero();
558 expectedParamName.Append(_L(":prm1"));
559 TInt paramIndex = TheStmt.ParameterIndex(expectedParamName);
560 TEST2(paramIndex, 0);
561 err = TheStmt.ParameterName(0, paramName);
562 TEST2(err, KErrNone);
563 TEST2(paramName.Compare(expectedParamName), 0);
564 err = TheStmt.ParamName(0, paramName);
565 TEST2(err, KErrNone);
566 TEST2(paramName.Compare(expectedParamName), 0);
568 expectedParamName.Zero();
569 expectedParamName.Append(_L("?1"));
570 err = TheStmt.ParameterName(1, paramName);
571 TEST2(err, KErrNone);
572 paramIndex = TheStmt.ParameterIndex(expectedParamName);
573 TEST2(paramIndex, 1);
574 TEST2(paramName.Compare(expectedParamName), 0);
576 err = TheStmt.ParamName(1, paramName);
577 TEST2(err, KErrNone);
578 TEST2(paramName.Compare(expectedParamName), 0);
584 (void)RSqlDatabase::Delete(KTestDbName1);
589 @SYMTestCaseID SYSLIB-SQL-UT-4006
590 @SYMTestCaseDesc Test for DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query.
591 The test does the following steps:
592 1) Creates a 16-bit database and using 16-bit queries proves that the "GROUP BY GROUP BY" syntax error
593 does not cause an assert inside the SQLITE code.
594 2) Creates a 8-bit database and using 8-bit queries proves that the "GROUP BY GROUP BY" syntax error
595 does not cause an assert inside the SQLITE code.
596 @SYMTestPriority Medium
597 @SYMTestActions Test for DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query.
598 @SYMTestExpectedResults Test must not fail
604 //Step 1: 16-bit statements
605 (void)RSqlDatabase::Delete(KTestDbName1);
606 TInt err = TheDb.Create(KTestDbName1);
607 TEST2(err, KErrNone);
609 err = TheDb.Exec(_L("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
611 err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(2,3)"));
613 err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(3,4)"));
616 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
618 err = TheDb.Exec(_L("INSERT INTO A(Id, Id1) VALUES(2,3)"));
620 err = TheDb.Exec(_L("INSERT INTO A(Id, Id1) VALUES(4,4)"));
623 err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
625 err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(2,3)"));
627 err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(5,4)"));
629 err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(5,4)"));
632 err = TheDb.Exec(_L("CREATE VIEW v2 AS SELECT Id,Id1,F2 FROM B"));
634 err = TheDb.Exec(_L("CREATE VIEW v1 AS SELECT Id,Id1,F2 FROM A"));
636 err = TheDb.Exec(_L("CREATE VIEW v3 AS SELECT Id,Id1,F2 FROM B"));
640 err = stmt.Prepare(TheDb, _L("SELECT * FROM v2 LEFT JOIN MAIN ON v2.Id = MAIN.Id LEFT JOIN A ON MAIN.Id = A.Id GROUP BY GROUP BY MAIN.Id"));
642 TEST(err != KErrNone && err != KErrServerTerminated);
645 err = RSqlDatabase::Delete(KTestDbName1);
646 TEST2(err, KErrNone);
648 //Step 2: 8-bit statements
649 _LIT8(KServerConfigString1, "encoding=\"UTF-8\"");
650 err = TheDb.Create(KTestDbName1, &KServerConfigString1);
651 TEST2(err, KErrNone);
653 err = TheDb.Exec(_L8("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
656 err = stmt.Prepare(TheDb, _L8("SELECT * FROM main GROUP BY GROUP BY main.Id"));
658 TEST(err != KErrNone && err != KErrServerTerminated);
661 err = RSqlDatabase::Delete(KTestDbName1);
662 TEST2(err, KErrNone);
666 @SYMTestCaseID SYSLIB-SQL-UT-4007
667 @SYMTestCaseDesc Test for DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed.
668 The test does the following steps, using public shared and private secure database:
669 1) Creates a test database with a table and one index using one of the collations.
670 2) Updates the symbian_settings table, setting the collation dll name column value
671 to be a "bbbababz" string (Simulates that there is no valid collation dll name).
672 3) Reopens the database. This operation should cause a database reindexing, since the index uses
673 one of the user-defined collation methods.
674 The default system collation dll name should be stored in the symbian_settings table.
675 4) Verifies that symbian_settings table contains only one record and that the collation dll name
676 column value has been updated.
677 @SYMTestPriority Medium
678 @SYMTestActions Test for DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed.
679 @SYMTestExpectedResults Test must not fail
684 const TPtrC KDbNames[] = {KTestDbName1(), KTestDbName2()};
686 for(TInt i=0;i<(sizeof(KDbNames)/sizeof(KDbNames[0]));++i)
688 //Step 1: Create a test database with a table and one index using one of the collations.
689 (void)RSqlDatabase::Delete(KDbNames[i]);
690 TInt err = TheDb.Create(KDbNames[i]);
691 TEST2(err, KErrNone);
693 err = TheDb.Exec(_L("CREATE TABLE A(C TEXT)"));
696 err = TheDb.Exec(_L("CREATE INDEX I ON A(C COLLATE CompareC1)"));
699 //Step 2: Make sure that the collation dll name is set and unique (not the default collation).
700 err = TheDb.Exec(_L("UPDATE symbian_settings SET CollationDllName='bbbababz'"));
705 //Step 3: Reopen the database. That step should cause a database reindexing, because the default collation dll
706 // name is not the one stored in the table.
707 err = TheDb.Open(KDbNames[i]);
708 TEST2(err, KErrNone);
710 TSqlScalarFullSelectQuery query(TheDb);
712 //Step 4: Check that the settigns table has only one record.
713 TInt cnt = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings"));
716 //Step 5: Check that the collation dll name in the settings table has been updated.
717 TFileName collationDllName;
718 err = query.SelectTextL(_L("SELECT CollationDllName FROM symbian_settings"), collationDllName);
719 TEST2(err, KErrNone);
720 _LIT(KTestCollationDllName, "bbbababz");//The same as the used in step 2 - above.
721 TEST(collationDllName != KTestCollationDllName);
724 err = RSqlDatabase::Delete(KDbNames[i]);
725 TEST2(err, KErrNone);
730 @SYMTestCaseID SYSLIB-SQL-UT-4079
731 @SYMTestCaseDesc RSqlDatabase::Create() and RSqlDatabase::Open() - injection test
732 The test attempts to create or open a database which name contains
733 "DELETE FROM symbian_settings" statement.If it is possible to open or
734 create a database with that name, the "symbian_settings" table content
735 should stay unchanged.
736 @SYMTestPriority Medium
737 @SYMTestActions RSqlDatabase::Create() and RSqlDatabase::Open() - injection test
738 @SYMTestExpectedResults Test must not fail
743 TInt err = TheDb.Create(KDbInjectedName1);
744 TEST(err != KErrNone);
746 err = TheDb.Create(KDbInjectedName2);
747 TEST2(err, KErrNone);
749 TSqlScalarFullSelectQuery query(TheDb);
751 TRAP(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
752 TEST2(err, KErrNone);
756 err = TheDb.Open(KDbInjectedName2);
757 TEST2(err, KErrNone);
759 query.SetDatabase(TheDb);
760 TRAP(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
761 TEST2(err, KErrNone);
765 (void)RSqlDatabase::Delete(KDbInjectedName2);
766 (void)RSqlDatabase::Delete(KDbInjectedName1);
770 @SYMTestCaseID SYSLIB-SQL-UT-4038
771 @SYMTestCaseDesc Background compaction - two connections usability test.
772 The test creates a database connection with a background compaction mode. The the test
773 locks the database in a transaction. Then the test creates a second connection
774 to the same database while the first connection is in a transaction.
775 @SYMTestPriority Medium
776 @SYMTestActions Background compaction - two connections usability test.
777 @SYMTestExpectedResults Test must not fail
780 void TwoConnectionsTest()
782 (void)RSqlDatabase::Delete(KTestDbName1);
783 RSqlDatabase db1, db2;
784 TInt err = db1.Create(KTestDbName1);
785 TEST2(err, KErrNone);
786 err = db1.Exec(_L("CREATE TABLE A(I INTEGER); INSERT INTO A VALUES(1)"));
788 err = db1.Exec(_L("BEGIN TRANSACTION"));
790 err = db1.Exec(_L("INSERT INTO A VALUES(2)"));
792 err = db2.Open(KTestDbName1);
793 TEST2(err, KErrNone);
794 err = db1.Exec(_L("COMMIT TRANSACTION"));
798 (void)RSqlDatabase::Delete(KTestDbName1);
801 TInt StackOverflowThreadFunc(void* aData)
803 CTrapCleanup* tc = CTrapCleanup::New();
806 User::SetJustInTime(EFalse); // disable debugger panic handling
808 TInt* cntptr = reinterpret_cast<TInt*> (aData);
809 TEST(cntptr != NULL);
812 HBufC* buf = HBufC::New(cnt * 12 + 32);//enough for the "SELECT Id FROM A WHERE Id=v1 OR Id=v2 OR ..." string
818 TPtr sql = buf->Des();
820 TInt err = TheDb.Open(KTestDbName1);
830 TInt64 seed = now.Int64();
832 sql.Copy(_L("SELECT Id FROM A WHERE "));
833 for(TInt i=0;i<cnt;++i)
835 sql.Append(_L("Id="));
836 sql.AppendNum(Math::Rand(seed) % cnt);
837 sql.Append(_L(" OR "));
839 sql.SetLength(sql.Length() - 4);//Remove the last " OR "
842 err = stmt.Prepare(TheDb, sql);
853 @SYMTestCaseID SYSLIB-SQL-UT-4080
854 @SYMTestCaseDesc SQL server stack overflow test
855 The test creates a database and runs a thread. The thread opens the database
856 and attempts to execute a SELECT statement, which format is:
857 "SELECT Id FROM A WHERE Id=1 OR Id=2 OR...OR Id=N",
858 where N is a number passed as an argument from the main thread, starts from 100000
859 and is increased or decreased on each test iteration, depending on the reported result from the thread.
860 Finally, the main thread will report the max number of the OR subexpressions that can be included
861 in the SELECT statement, without an error to be reported.
862 The test should not crash the SQL server, if the server stack size and parsing tree depth has
863 been properly configured.
864 @SYMTestPriority Medium
865 @SYMTestActions SQL server stack overflow test
866 @SYMTestExpectedResults Test must not fail
869 void SqlServerStackOverflowTest()
871 (void)RSqlDatabase::Delete(KTestDbName1);
872 TInt err = TheDb.Create(KTestDbName1);
873 TEST2(err, KErrNone);
874 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT)"));
878 TInt prev = 0, next = 100000;
879 while(Abs(next - prev) > 0)
882 TheTest.Printf(_L("'OR' expr. count: %d\r\n"), count);
884 _LIT(KThreadName,"ORThread"); //stack minheap maxheap
885 err = thread.Create(KThreadName, &StackOverflowThreadFunc, 0x2000, 0x00100000, 0x02000000, &count);
886 TEST2(err, KErrNone);
888 TRequestStatus status;
889 thread.Logon(status);
890 TEST2(status.Int(), KRequestPending);
892 User::WaitForRequest(status);
893 User::SetJustInTime(ETrue); // enable debugger panic handling
895 TInt exitType = thread.ExitType();
896 const TDesC& exitCategory = thread.ExitCategory();
897 TInt exitReason = thread.ExitReason();
898 TheTest.Printf(_L("Exit type: %d, exit reason: %d, exit category: %S\r\n"), exitType, exitReason, &exitCategory);
900 TEST(exitReason != KErrServerTerminated);
901 TEST(exitType != EExitPanic);
904 if(status.Int() != KErrNone)
905 {//The number of the OR subexpressions is too big and cannot be parsed. Decrease the number, repeat the test.
906 next -= Abs(next - prev) / 2;
909 {//KErrNone: The number of the OR subexpressions has been successfully parsed. Increase the number, repeat the test.
910 next += Abs(next - prev) / 2;
914 TheTest.Printf(_L("The test has succeeded with an expression with %d ORs\r\n"), prev);
917 void AssertSettingsTable()
919 TSqlScalarFullSelectQuery query(TheDb);
921 TRAPD(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
922 TEST2(err, KErrNone);
927 @SYMTestCaseID SYSLIB-SQL-UT-4086
928 @SYMTestCaseDesc RSqlBlobWriteStream::OpenL() and RSqlBlobReadStream::OpenL() - injection test
929 The test attempts to open a blob stream with an attached database name containing
930 "DELETE FROM symbian_settings" statement. The test should not delete the content of the
931 "symbian_settings" table.
932 The test also attempts to open a blob stream with a set of very long database/table/column names.
933 @SYMTestPriority Medium
934 @SYMTestActions RSqlBlobWriteStream::OpenL() and RSqlBlobReadStream::OpenL() - injection test
935 @SYMTestExpectedResults Test must not fail
941 void BlobStreamInjectionTest()
943 (void)RSqlDatabase::Delete(KTestDbName1);
944 TInt err = TheDb.Create(KTestDbName1);
945 TEST2(err, KErrNone);
946 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Data BLOB)"));
948 err = TheDb.Exec(_L("INSERT INTO A VALUES(1, x'11223344556677889900')"));
950 _LIT(KAttachDb, "AttachDb");
951 err = TheDb.Attach(KTestDbName1, KAttachDb);
952 TEST2(err, KErrNone);
953 //RSqlBlobWriteStream::OpenL() - attached database name injected
954 RSqlBlobWriteStream strm1;
955 TRAP(err, strm1.OpenL(TheDb, _L("A"), _L("Data"), 1, _L("Id;DELETE FROM symbian_settings;")));
956 TEST(err != KErrNone);
957 AssertSettingsTable();
958 //RSqlBlobReadStream::OpenL() - attached database name injected
959 RSqlBlobReadStream strm2;
960 TRAP(err, strm2.OpenL(TheDb, _L("A"), _L("Data"), 1, _L("Id;DELETE FROM symbian_settings;")));
961 TEST(err != KErrNone);
962 AssertSettingsTable();
963 //Attempt to open a write blob stream with a set of very long database/table/column names.
964 TBuf<KMaxFileName + 10> longName;
965 longName.SetLength(longName.MaxLength());
966 RSqlBlobWriteStream strm3;
967 TRAP(err, strm3.OpenL(TheDb, longName, longName, 1, longName));
968 TEST(err != KErrNone);
969 //Attempt to open a read blob stream with a set of very long database/table/column names.
970 RSqlBlobReadStream strm4;
971 TRAP(err, strm4.OpenL(TheDb, longName, longName, 1, longName));
972 TEST(err != KErrNone);
973 //Attempt to open a write blob stream with a set of KNullDesC database/table/column names.
974 RSqlBlobWriteStream strm5;
975 TRAP(err, strm5.OpenL(TheDb, KNullDesC, KNullDesC, 1, KNullDesC));
976 TEST(err != KErrNone);
977 //Attempt to open a read blob stream with a set of KNullDesC database/table/column names.
978 RSqlBlobReadStream strm6;
979 TRAP(err, strm6.OpenL(TheDb, KNullDesC, KNullDesC, 1, KNullDesC));
980 TEST(err != KErrNone);
981 //Attempt to open a read blob stream, where the blob column name is invalid and contains non-convertible characters.
983 invName.SetLength(3);
984 invName[0] = TChar(0xD800);
985 invName[1] = TChar(0xFC00);
986 invName[2] = TChar(0x0000);
987 RSqlBlobReadStream strm7;
988 TRAP(err, strm7.OpenL(TheDb, _L("A"), invName, 1, KNullDesC));
989 TEST(err != KErrNone);
990 //Attempt to open a read blob stream, where the table name is invalid and contains non-convertible characters.
991 RSqlBlobReadStream strm8;
992 TRAP(err, strm8.OpenL(TheDb, invName, _L("Data"), 1, KNullDesC));
993 TEST(err != KErrNone);
994 //Attempt to open a read blob stream, where the attached db name is invalid and contains non-convertible characters.
995 RSqlBlobReadStream strm9;
996 TRAP(err, strm9.OpenL(TheDb, _L("A"), _L("Data"), 1, invName));
997 TEST(err != KErrNone);
999 err = TheDb.Detach(KAttachDb);
1000 TEST2(err, KErrNone);
1002 (void)RSqlDatabase::Delete(KTestDbName1);
1006 @SYMTestCaseID SYSLIB-SQL-UT-4087
1007 @SYMTestCaseDesc Bound parameter values test.
1008 The test verifies that bound parameters with big text/binary values retain their values after
1009 the RSqlStatement::Reset() call. The old bound paramegter values can be used for the next
1010 RSqlStatement::Exec() call.
1011 @SYMTestActions Bound parameter values test.
1012 @SYMTestExpectedResults Test must not fail
1013 @SYMTestPriority High
1016 void BoundParameterValuesTest()
1018 (void)RSqlDatabase::Delete(KTestDbName1);
1019 TInt err = TheDb.Create(KTestDbName1);
1020 TEST2(err, KErrNone);
1021 err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
1023 err = TheDb.Exec(_L("CREATE TABLE A2(T1 TEXT, T2 TEXT)"));
1026 RSqlStatement stmt1, stmt2;
1027 err = stmt1.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
1028 TEST2(err, KErrNone);
1029 err = stmt2.Prepare(TheDb, _L("INSERT INTO A2 VALUES(:Prm1, :Prm2)"));
1030 TEST2(err, KErrNone);
1031 //Insert 1 record into table "A1". T2 = "ZZZZ.....".
1032 TheBuf.SetLength(KBufLen - 100);
1033 TheBuf.Fill(TChar('Z'));
1034 err = stmt1.BindText(0, TheBuf);
1035 TEST2(err, KErrNone);
1036 err = stmt1.BindText(1, TheBuf);
1037 TEST2(err, KErrNone);
1040 err = stmt1.Reset();
1041 TEST2(err, KErrNone);
1042 //Insert 1 record into table "A2". T2 = "AAAAAAA.....".
1043 TheBuf.SetLength(KBufLen);
1044 TheBuf.Fill(TChar('A'));
1045 err = stmt2.BindText(0, TheBuf);
1046 TEST2(err, KErrNone);
1047 err = stmt2.BindText(1, TheBuf);
1048 TEST2(err, KErrNone);
1051 err = stmt2.Reset();
1052 TEST2(err, KErrNone);
1053 //Insert 1 record into table "A1". T2 not set. T2 should be initialized with the previous bound value - "ZZZZZZ....".
1054 //If the problem is not fixed, the SQLITE will attempt to access an already deleted region of memory.
1055 TheBuf.SetLength(KBufLen - 100);
1056 TheBuf.Fill(TChar('B'));
1057 err = stmt1.BindText(0, TheBuf);
1058 TEST2(err, KErrNone);
1061 err = stmt1.Reset();
1062 TEST2(err, KErrNone);
1067 //Check the inserted records.
1068 TSqlScalarFullSelectQuery q(TheDb);
1069 TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=1"), TheBuf));
1070 TEST2(err, KErrNone);
1071 TEST2(TheBuf.Length(), (KBufLen - 100));
1072 for(TInt i1=0;i1<(KBufLen - 100);++i1)
1074 TEST2(TheBuf[i1], TChar('Z'));
1076 TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=2"), TheBuf));
1077 TEST2(err, KErrNone);
1078 TEST2(TheBuf.Length(), (KBufLen - 100));
1079 for(TInt i2=0;i2<(KBufLen - 100);++i2)
1081 TEST2(TheBuf[i2], TChar('Z'));
1085 (void)RSqlDatabase::Delete(KTestDbName1);
1089 @SYMTestCaseID SYSLIB-SQL-UT-4076
1090 @SYMTestCaseDesc Bound parameter values test.
1091 The test verifies that when a RSqlParamWriteStream object is used for binding parameter values,
1092 it is safe to erverse the order of RSqlParamWriteStream::Close() and RSqlStatement::Close() calls.
1093 @SYMTestActions Bound parameter values test.
1094 @SYMTestExpectedResults Test must not fail
1095 @SYMTestPriority High
1098 void BoundParameterValuesTest2()
1100 (void)RSqlDatabase::Delete(KTestDbName1);
1101 TInt err = TheDb.Create(KTestDbName1);
1102 TEST2(err, KErrNone);
1103 err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
1107 err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
1108 TEST2(err, KErrNone);
1109 RSqlParamWriteStream strm;
1110 err = strm.BindText(stmt, 0);
1111 TEST2(err, KErrNone);
1118 (void)RSqlDatabase::Delete(KTestDbName1);
1122 @SYMTestCaseID SYSLIB-SQL-UT-4077
1123 @SYMTestCaseDesc Bound parameter values test.
1124 The test verifies that when a RSqlParamWriteStream object is used for binding parameter values,
1125 it is possible to write the parameter value, then call RSqlParamWriteStream::Close() and finally -
1126 RSqlStatement::Exec() to execute the operation (an INSERT statement). The test verifies that the record
1127 has really been inserted and the column value is equal to the bound parameter value
1128 @SYMTestActions Bound parameter values test.
1129 @SYMTestExpectedResults Test must not fail
1130 @SYMTestPriority High
1133 void BoundParameterValuesTest3()
1135 (void)RSqlDatabase::Delete(KTestDbName1);
1136 TInt err = TheDb.Create(KTestDbName1);
1137 TEST2(err, KErrNone);
1138 err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
1142 err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
1143 TEST2(err, KErrNone);
1144 RSqlParamWriteStream strm;
1145 err = strm.BindText(stmt, 0);
1146 TEST2(err, KErrNone);
1147 _LIT(KText, "AAAA");
1148 TRAP(err, strm.WriteL(KText));
1149 TEST2(err, KErrNone);
1150 TRAP(err, strm.CommitL());
1151 TEST2(err, KErrNone);
1157 TSqlScalarFullSelectQuery q(TheDb);
1158 TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1"), TheBuf));
1159 TEST2(err, KErrNone);
1160 TEST(KText() == TheBuf);
1163 (void)RSqlDatabase::Delete(KTestDbName1);
1167 @SYMTestCaseID SYSLIB-SQL-UT-4083
1168 @SYMTestCaseDesc Bound parameter values test.
1169 The test prepares an INSERT sql statement and inserts two records using streams to bind the parameter values.
1170 For the second INSERT no parameter value is bound to the first parameter. The expectation is that the value
1171 that has been bound for the first record will be used for the second record also.
1172 @SYMTestActions Bound parameter values test.
1173 @SYMTestExpectedResults Test must not fail
1174 @SYMTestPriority High
1177 void BoundParameterValuesTest4()
1179 (void)RSqlDatabase::Delete(KTestDbName1);
1180 TInt err = TheDb.Create(KTestDbName1);
1181 TEST2(err, KErrNone);
1182 err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
1186 err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
1187 TEST2(err, KErrNone);
1189 RSqlParamWriteStream strm;
1190 err = strm.BindText(stmt, 0);
1191 TEST2(err, KErrNone);
1192 _LIT(KText1, "AAAA");
1193 TRAP(err, strm.WriteL(KText1));
1194 TEST2(err, KErrNone);
1195 TRAP(err, strm.CommitL());
1196 TEST2(err, KErrNone);
1199 err = strm.BindText(stmt, 1);
1200 TEST2(err, KErrNone);
1201 _LIT(KText2, "BBBBBBBBBB");
1202 TRAP(err, strm.WriteL(KText2));
1203 TEST2(err, KErrNone);
1204 TRAP(err, strm.CommitL());
1205 TEST2(err, KErrNone);
1211 TEST2(err, KErrNone);
1213 err = strm.BindText(stmt, 1);
1214 TEST2(err, KErrNone);
1215 _LIT(KText3, "CCCCCCCCCCC");
1216 TRAP(err, strm.WriteL(KText3));
1217 TEST2(err, KErrNone);
1218 TRAP(err, strm.CommitL());
1219 TEST2(err, KErrNone);
1227 TSqlScalarFullSelectQuery q(TheDb);
1228 TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=1"), TheBuf));
1229 TEST2(err, KErrNone);
1230 TEST(KText1() == TheBuf);
1231 TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=1"), TheBuf));
1232 TEST2(err, KErrNone);
1233 TEST(KText2() == TheBuf);
1235 TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=2"), TheBuf));
1236 TEST2(err, KErrNone);
1237 TEST(KText1() == TheBuf);
1238 TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=2"), TheBuf));
1239 TEST2(err, KErrNone);
1240 TEST(KText3() == TheBuf);
1243 (void)RSqlDatabase::Delete(KTestDbName1);
1247 @SYMTestCaseID SYSLIB-SQL-UT-4105
1248 @SYMTestCaseDesc Bound parameter values test.
1249 BC test. Even though it is correct to execute only one CommitL() on a parameter stream,
1250 it should be possible to execute more than one CommitL(). It should be possible also
1251 the stream data to be updated after the first commit operation and the expectation is that
1252 the updated parameter data should be used for the column value.
1253 @SYMTestActions Bound parameter values test.
1254 @SYMTestExpectedResults Test must not fail
1255 @SYMTestPriority High
1258 void BoundParameterValuesTest5()
1260 (void)RSqlDatabase::Delete(KTestDbName1);
1261 TInt err = TheDb.Create(KTestDbName1);
1262 TEST2(err, KErrNone);
1263 err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
1267 err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
1268 TEST2(err, KErrNone);
1270 RSqlParamWriteStream strm;
1271 err = strm.BindText(stmt, 0);
1272 TEST2(err, KErrNone);
1273 _LIT(KText1, "AAAA");
1274 TRAP(err, strm.WriteL(KText1));
1275 TEST2(err, KErrNone);
1276 TRAP(err, strm.CommitL());
1277 TEST2(err, KErrNone);
1278 TRAP(err, strm.Sink()->SeekL(MStreamBuf::EWrite, EStreamBeginning, 0));
1279 TEST2(err, KErrNone);
1280 _LIT(KText2, "DTAA");
1281 TRAP(err, strm.WriteL(KText2));
1282 TEST2(err, KErrNone);
1283 TRAP(err, strm.CommitL());
1284 TEST2(err, KErrNone);
1292 TSqlScalarFullSelectQuery q(TheDb);
1293 TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=1"), TheBuf));
1294 TEST2(err, KErrNone);
1295 TEST(KText2() == TheBuf);
1298 (void)RSqlDatabase::Delete(KTestDbName1);
1301 void PrintConfig(TSqlResourceProfiler& aProfiler)
1304 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterConfig, config) == KErrNone)
1306 _LIT(KCacheSize, "Cache size: %S pages\r\n");
1307 _LIT(KPageSize, "Page size: %S bytes\r\n");
1308 _LIT(KEncoding, "Encoding: %S\r\n");
1309 _LIT(KDefaultSoftHeapLimit, "Default soft heap limit: %S Kb\r\n");
1310 _LIT(KVacuumMode, "Vacuum mode: %S\r\n");
1312 TPtrC KText[] = {KCacheSize(), KPageSize(), KEncoding(), KDefaultSoftHeapLimit(), KVacuumMode()};
1314 for(TInt i=0;i<config.Length();++i)
1316 if(config[i] == TChar(';'))
1318 config[i] = TChar(' ');
1323 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1325 TPtrC8 num8 = lex.NextToken();
1328 TheTest.Printf(KText[idx], &num);
1334 void PrintFileIo(TSqlResourceProfiler& aProfiler)
1336 TBuf8<300> countersValues;
1337 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterFileIO, countersValues) == KErrNone)
1339 TheTest.Printf(_L("=========================\r\n"));
1340 _LIT(KFileCreate, "File Create");
1341 _LIT(KFileOpen, "File Open");
1342 _LIT(KFileClose, "File Close");
1343 _LIT(KFileDelete, "File Delete");
1344 _LIT(KFileRead, "File Read");
1345 _LIT(KFileWrite, "File Write");
1346 _LIT(KFileSeek, "File Seek");
1347 _LIT(KFileSize, "File Size");
1348 _LIT(KFileSetSize, "File SetSize");
1349 _LIT(KFileSync, "File Sync");
1350 _LIT(KFileDrive, "File Drive");
1351 _LIT(KFileAdopt, "File Adopt");
1352 _LIT(KFsClose, "Fs Close");
1353 _LIT(KFsConnect, "Fs Connect");
1354 _LIT(KFsGetSystemDrive, "Fs GetSystemDrive");
1355 _LIT(KFsCreatePrivatePath, "Fs CreatePrivatePath");
1356 _LIT(KFsPrivatePath, "Fs PrivatePath");
1357 _LIT(KFsVolumeIoParam, "Fs VolumeIoParam");
1358 _LIT(KFsEntry, "Fs Entry");
1359 _LIT(KFsAtt, "Fs Att");
1360 _LIT(KFileCreateTemp, "File CreateTemp");
1361 _LIT(KFileAttach, "File Attach");
1362 _LIT(KBytesWritten, "File Bytes Written");
1363 _LIT(KBytesRead, "File Bytes Read");
1366 KFileCreate(), KFileOpen(), KFileClose(), KFileDelete(), KFileRead(), KFileWrite(), KFileSeek(), KFileSize(),
1367 KFileSetSize(), KFileSync(), KFileDrive(), KFileAdopt(), KFsClose(), KFsConnect(), KFsGetSystemDrive(),
1368 KFsCreatePrivatePath(), KFsPrivatePath(), KFsVolumeIoParam(), KFsEntry(), KFsAtt(), KFileCreateTemp(),
1369 KFileAttach(), KBytesWritten(), KBytesRead()
1372 for(TInt i=0;i<countersValues.Length();++i)
1374 if(countersValues[i] == TChar(';'))
1376 countersValues[i] = TChar(' ');
1380 TLex8 lex(countersValues);
1381 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1383 TPtrC8 num8 = lex.NextToken();
1386 TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
1392 void PrintOsCall(TSqlResourceProfiler& aProfiler)
1394 TBuf8<300> countersValues;
1395 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterOsCall, countersValues) == KErrNone)
1397 TheTest.Printf(_L("=========================\r\n"));
1398 _LIT(KEOsFileClose, "FileClose");
1399 _LIT(KEOsFileRead, "FileRead");
1400 _LIT(KEOsFileWrite, "FileWrite");
1401 _LIT(KEOsFileTruncate, "FileTruncate");
1402 _LIT(KEOsFileSync, "FileSync");
1403 _LIT(KEOsFileFileSize, "FileSize");
1404 _LIT(KEOsFileLock, "FileLock");
1405 _LIT(KEOsFileUnlock, "FileUnlock");
1406 _LIT(KEOsFileCheckReservedLock, "FileCheckReservedLock");
1407 _LIT(KEOsFileFileControl, "FileIoControl");
1408 _LIT(KEOsFileSectorSize, "FileSectorSize");
1409 _LIT(KEOsFileDeviceCharacteristics, "FileDeviceCharacteristics");
1410 _LIT(KEOsVfsOpen, "VfsOpen");
1411 _LIT(KEOsVfsDelete, "VfsDelete");
1412 _LIT(KEOsVfsAccess, "VfsAccess");
1413 _LIT(KEOsVfsFullPathName, "VfsFullPathName");
1414 _LIT(KEOsVfsRandomness, "VfsRandomnes");
1415 _LIT(KEOsVfsSleep, "VfsSleep");
1416 _LIT(KEOsVfsCurrentTime, "VfsCurrentTime");
1417 _LIT(KEOsVfsGetLastError, "VfsGetLastError");
1420 KEOsFileClose(), KEOsFileRead(), KEOsFileWrite(), KEOsFileTruncate(), KEOsFileSync(),
1421 KEOsFileFileSize(), KEOsFileLock(), KEOsFileUnlock(), KEOsFileCheckReservedLock(), KEOsFileFileControl(),
1422 KEOsFileSectorSize(), KEOsFileDeviceCharacteristics(),
1423 KEOsVfsOpen(), KEOsVfsDelete(), KEOsVfsAccess(), KEOsVfsFullPathName(), KEOsVfsRandomness(), KEOsVfsSleep(),
1424 KEOsVfsCurrentTime(), KEOsVfsGetLastError()};
1426 for(TInt i=0;i<countersValues.Length();++i)
1428 if(countersValues[i] == TChar(';'))
1430 countersValues[i] = TChar(' ');
1434 TLex8 lex(countersValues);
1435 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1437 TPtrC8 num8 = lex.NextToken();
1440 TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
1446 void PrintOsCallTime(TSqlResourceProfiler& aProfiler)
1448 TBuf8<300> callTimes;
1449 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterOsCallTime, callTimes) == KErrNone)
1451 TheTest.Printf(_L("=========================\r\n"));
1452 _LIT(KEOsFileClose, "FileClose");
1453 _LIT(KEOsFileRead, "FileRead");
1454 _LIT(KEOsFileWrite, "FileWrite");
1455 _LIT(KEOsFileTruncate, "FileTruncate");
1456 _LIT(KEOsFileSync, "FileSync");
1457 _LIT(KEOsFileFileSize, "FileSize");
1458 _LIT(KEOsFileLock, "FileLock");
1459 _LIT(KEOsFileUnlock, "FileUnlock");
1460 _LIT(KEOsFileCheckReservedLock, "FileCheckReservedLock");
1461 _LIT(KEOsFileFileControl, "FileIoControl");
1462 _LIT(KEOsFileSectorSize, "FileSectorSize");
1463 _LIT(KEOsFileDeviceCharacteristics, "FileDeviceCharacteristics");
1464 _LIT(KEOsVfsOpen, "VfsOpen");
1465 _LIT(KEOsVfsDelete, "VfsDelete");
1466 _LIT(KEOsVfsAccess, "VfsAccess");
1467 _LIT(KEOsVfsFullPathName, "VfsFullPathName");
1468 _LIT(KEOsVfsRandomness, "VfsRandomnes");
1469 _LIT(KEOsVfsSleep, "VfsSleep");
1470 _LIT(KEOsVfsCurrentTime, "VfsCurrentTime");
1471 _LIT(KEOsVfsGetLastError, "VfsGetLastError");
1474 KEOsFileClose(), KEOsFileRead(), KEOsFileWrite(), KEOsFileTruncate(), KEOsFileSync(),
1475 KEOsFileFileSize(), KEOsFileLock(), KEOsFileUnlock(), KEOsFileCheckReservedLock(), KEOsFileFileControl(),
1476 KEOsFileSectorSize(), KEOsFileDeviceCharacteristics(),
1477 KEOsVfsOpen(), KEOsVfsDelete(), KEOsVfsAccess(), KEOsVfsFullPathName(), KEOsVfsRandomness(), KEOsVfsSleep(),
1478 KEOsVfsCurrentTime(), KEOsVfsGetLastError()};
1480 for(TInt i=0;i<callTimes.Length();++i)
1482 if(callTimes[i] == TChar(';'))
1484 callTimes[i] = TChar(' ');
1488 TLex8 lex(callTimes);
1489 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1491 TPtrC8 num8 = lex.NextToken();
1494 TheTest.Printf(_L("==Operation %S, time %S us\r\n"), &KText[idx], &num);
1500 void PrintIpc(TSqlResourceProfiler& aProfiler)
1502 TBuf8<300> countersValues;
1503 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterIpc, countersValues) == KErrNone)
1505 TheTest.Printf(_L("=========================\r\n"));
1506 _LIT(KIpcRq, "IPC requests");
1507 _LIT(KIpcRead, "IPC read");
1508 _LIT(KIpcWrite, "IPC write");
1509 _LIT(KIpcReadBytes, "IPC read bytes");
1510 _LIT(KIpcWriteBytes, "IPC write bytes");
1513 KIpcRq(), KIpcRead(), KIpcWrite(), KIpcReadBytes(), KIpcWriteBytes()
1516 for(TInt i=0;i<countersValues.Length();++i)
1518 if(countersValues[i] == TChar(';'))
1520 countersValues[i] = TChar(' ');
1524 TLex8 lex(countersValues);
1525 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1527 TPtrC8 num8 = lex.NextToken();
1530 TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
1536 void PrintMemory(TSqlResourceProfiler& aProfiler)
1538 TBuf8<300> countersValues;
1539 if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterMemory, countersValues) == KErrNone)
1541 TheTest.Printf(_L("=========================\r\n"));
1542 _LIT(KMemorySrvAllocatedCnt, "Server allocated cnt");
1543 _LIT(KMemorySrvAllocatedSize, "Server allocated size");
1544 _LIT(KMemorySrvFreeSpace, "Server free space");
1545 _LIT(KMemorySrvLargestBlockSize, "Server larges block size");
1546 _LIT(KMemorySQLiteAllocatedCnt, "SQLite allocated cnt");
1547 _LIT(KMemorySQLiteReallocatedCnt, "SQLite reallocated cnt");
1548 _LIT(KMemorySQLiteFreedCnt, "SQLite freed cnt");
1549 _LIT(KMemorySQLiteAllocatedBytes, "SQLite allocated bytes");
1550 _LIT(KMemorySQLiteFreedBytes, "SQLite freed bytes");
1551 _LIT(KMemorySQLiteAllocTime, "SQLite alloc, us");
1552 _LIT(KMemorySQLiteReallocTime, "SQLite realloc, us");
1553 _LIT(KMemorySQLiteFreeTime, "SQLite free, us");
1556 KMemorySrvAllocatedCnt(), KMemorySrvAllocatedSize(), KMemorySrvFreeSpace(), KMemorySrvLargestBlockSize(),
1557 KMemorySQLiteAllocatedCnt(), KMemorySQLiteReallocatedCnt(), KMemorySQLiteFreedCnt(),
1558 KMemorySQLiteAllocatedBytes(), KMemorySQLiteFreedBytes(),
1559 KMemorySQLiteAllocTime(), KMemorySQLiteReallocTime(), KMemorySQLiteFreeTime()
1562 for(TInt i=0;i<countersValues.Length();++i)
1564 if(countersValues[i] == TChar(';'))
1566 countersValues[i] = TChar(' ');
1570 TLex8 lex(countersValues);
1571 while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
1573 TPtrC8 num8 = lex.NextToken();
1576 TheTest.Printf(_L("==%S=%S\r\n"), &KText[idx], &num);
1583 @SYMTestCaseID SYSLIB-SQL-UT-4088
1584 @SYMTestCaseDesc TSqlResouceProfiler - file I/O and configuration test.
1585 The test enables the file I/O profiling and then executes a simple INSERT statement
1586 and prints out the profiling results. The test also prints the current database configuration.
1587 @SYMTestActions TSqlResouceProfiler - file I/O and configuration test.
1588 @SYMTestExpectedResults Test must not fail
1589 @SYMTestPriority Medium
1594 (void)RSqlDatabase::Delete(KTestDbName1);
1595 TInt err = TheDb.Create(KTestDbName1);
1596 TEST2(err, KErrNone);
1597 err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, T TEXT)"));
1600 TSqlResourceProfiler profiler(TheDb);
1602 PrintConfig(profiler);
1604 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterFileIO);
1605 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterOsCall);
1606 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterOsCallTime);
1607 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterIpc);
1608 (void)profiler.Start(TSqlResourceProfiler::ESqlCounterMemory);
1610 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterFileIO);
1611 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCall);
1612 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCallTime);
1613 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterIpc);
1614 (void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMemory);
1616 err = TheDb.Exec(_L("INSERT INTO A VALUES(1, 'ABCDEEFGH')"));
1619 PrintFileIo(profiler);
1620 PrintOsCall(profiler);
1621 PrintOsCallTime(profiler);
1623 PrintMemory(profiler);
1625 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterIpc);
1626 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCallTime);
1627 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCall);
1628 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterFileIO);
1629 (void)profiler.Stop(TSqlResourceProfiler::ESqlCounterMemory);
1632 (void)RSqlDatabase::Delete(KTestDbName1);
1635 TInt CompoundSelectStackOverflowThreadFunc(void* aData)
1637 CTrapCleanup* tc = CTrapCleanup::New();
1640 User::SetJustInTime(EFalse); // disable debugger panic handling
1642 TInt* cntptr = reinterpret_cast<TInt*> (aData);
1643 TEST(cntptr != NULL);
1644 const TInt KSelectStmtCnt = *cntptr;
1646 HBufC* buf = HBufC::New(KSelectStmtCnt * 25 + 32);//enough for the "SELECT I FROM A UNION SELECT I FROM A..." string
1650 return KErrNoMemory;
1652 TPtr sql = buf->Des();
1654 (void)RSqlDatabase::Delete(KTestDbName1);
1656 TInt err = db.Create(KTestDbName1);
1662 err = db.Exec(_L("CREATE TABLE A(I INTEGER);INSERT INTO A VALUES(1);"));
1669 for(TInt i=0;i<KSelectStmtCnt;i++)
1671 sql.Append(_L("SELECT I FROM A UNION "));
1673 sql.SetLength(sql.Length() - 7);
1675 err = stmt.Prepare(db, sql);//This call can crash the server with "stack overflow"
1680 (void)RSqlDatabase::Delete(KTestDbName1);
1684 void CompoundSelectStackOverflowTest()
1686 const TInt KMaxSelectStmtCnt = 64;
1687 for(TInt cnt=KMaxSelectStmtCnt;cnt>0;--cnt)
1689 TheTest.Printf(_L("SELECT statement count: %d\r\n"), cnt);
1691 _LIT(KThreadName,"S2Thread"); //stack minheap maxheap
1692 TInt err = thread.Create(KThreadName, &CompoundSelectStackOverflowThreadFunc, 0x2000, 0x00100000, 0x02000000, &cnt);
1693 TEST2(err, KErrNone);
1695 TRequestStatus status;
1696 thread.Logon(status);
1697 TEST2(status.Int(), KRequestPending);
1699 User::WaitForRequest(status);
1700 User::SetJustInTime(ETrue); // enable debugger panic handling
1702 TInt exitType = thread.ExitType();
1703 const TDesC& exitCategory = thread.ExitCategory();
1704 TInt exitReason = thread.ExitReason();
1705 TheTest.Printf(_L("Exit type: %d, exit reason: %d, exit category: %S\r\n"), exitType, exitReason, &exitCategory);
1707 if(exitReason == KErrServerTerminated) //SQL server --> stack overflow
1711 TEST2(exitReason, KErrNone);
1712 TheTest.Printf(_L(" The test has succeeded with SELECT statement count=%d\r\n"), cnt);
1718 @SYMTestCaseID PDS-SQL-CT-4198
1719 @SYMTestCaseDesc Expired SQL statements test.
1720 The test creates a database and opens 2 connections to that database.
1721 Connection 2 prepares couple of SELECT and INSERT statements (8-bit and 16-bit).
1722 Then connection 1 renames the table used in the already prepared statements.
1723 Connection 2 attempts to execute the prepared statements. The execution should fail
1724 because the database schema has changed after they were prepared.
1725 @SYMTestActions Expired SQL statements test.
1726 @SYMTestExpectedResults Test must not fail
1727 @SYMTestPriority High
1730 void ExpiredStmtTest()
1732 (void)RSqlDatabase::Delete(KTestDbName1);
1733 //Create a database and create db connection 1.
1734 TInt err = TheDb.Create(KTestDbName1);
1735 TEST2(err, KErrNone);
1736 err = TheDb.Exec(_L("CREATE TABLE A(C1 INTEGER)"));
1738 err = TheDb.Exec(_L("INSERT INTO A(C1) VALUES(1)"));
1741 //Create db connection 2 to the same database, as db connection 1.
1743 err = db2.Open(KTestDbName1);
1744 TEST2(err, KErrNone);
1746 //Db connection 2. Prepare SELECT and INSERT, 8-bit and 16-bit statements.
1747 RSqlStatement stmt1, stmt2, stmt3, stmt4;
1748 err = stmt1.Prepare(db2, _L("SELECT * FROM A"));
1749 TEST2(err, KErrNone);
1750 err = stmt2.Prepare(db2, _L8("SELECT * FROM A"));
1751 TEST2(err, KErrNone);
1752 err = stmt3.Prepare(db2, _L("INSERT INTO A(C1) VALUES(2)"));
1753 TEST2(err, KErrNone);
1754 err = stmt4.Prepare(db2, _L8("INSERT INTO A(C1) VALUES(3)"));
1755 TEST2(err, KErrNone);
1757 //Modify the A table structure from the other connection
1758 //err = TheDb.Exec(_L("ALTER TABLE A ADD C2 INTEGER"));
1759 err = TheDb.Exec(_L("ALTER TABLE A RENAME TO B"));
1762 //Try to execute the already prepared statements.
1764 TEST2(err, KSqlErrSchema);
1766 TEST(err != KSqlAtRow);
1768 TEST(err != KSqlAtRow);
1780 err = RSqlDatabase::Delete(KTestDbName1);
1781 TEST2(err, KErrNone);
1786 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3512 RSqlStatement::ColumnCount() tests "));
1788 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3513 RSqlStatement::ColumnCount(), non-SELECT tests "));
1790 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3514 RSqlStatement::DeclaredColumnType() tests "));
1791 DeclaredColumnTypeTest();
1792 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4017 RSqlStatement::ColumnName() tests"));
1794 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4018 RSqlStatement::ParameterName() and RSqlStatement::ParamName() tests"));
1796 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4006 DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query "));
1798 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4007 DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed "));
1800 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4079 RSqlDatabase::Create() and RSqlDatabase::Open() - injection tests"));
1802 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4038 Two connections test"));
1803 TwoConnectionsTest();
1804 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4080 SQL server stack overflow test"));
1805 SqlServerStackOverflowTest();
1806 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4086 RSqlBlobWriteStream/RSqlBlobReadStream injection test"));
1807 BlobStreamInjectionTest();
1808 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4087 Bound parameter values test 1"));
1809 BoundParameterValuesTest();
1810 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4076 Bound parameter values test 2"));
1811 BoundParameterValuesTest2();
1812 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4077 Bound parameter values test 3"));
1813 BoundParameterValuesTest3();
1814 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4083 Bound parameter values test 4"));
1815 BoundParameterValuesTest4();
1816 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4105 Bound parameter values test 5"));
1817 BoundParameterValuesTest5();
1818 TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4088 TSqlResourceProfiler - file I/O and configuration test"));
1820 TheTest.Next( _L(" Compound SELECT, stack overflow test"));
1821 CompoundSelectStackOverflowTest();
1822 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4198 Expired statements test"));
1830 CTrapCleanup* tc = CTrapCleanup::New();
1836 TRAPD(err, DoTestsL());
1838 TEST2(err, KErrNone);
1847 User::Heap().Check();