Update contrib.
1 // Copyright (c) 2005-2009 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.
20 ///////////////////////////////////////////////////////////////////////////////////////
22 #define UNUSED_VAR(a) (a) = (a)
23 #define IGNORE_ERR(a) (a) = (a)
25 RTest TheTest(_L("t_sqlpanic test"));
27 _LIT(KTestDir, "c:\\test\\");
28 _LIT(KTestDbName, "c:\\test\\t_sqlpanic.db");
30 _LIT(KCategory, "SqlDb");
32 ///////////////////////////////////////////////////////////////////////////////////////
34 void DeleteTestFiles()
36 RSqlDatabase::Delete(KTestDbName);
39 ///////////////////////////////////////////////////////////////////////////////////////
40 ///////////////////////////////////////////////////////////////////////////////////////
41 //Test macros and functions
42 void Check(TInt aValue, TInt aLine)
47 TheTest(EFalse, aLine);
50 void Check(TInt aValue, TInt aExpected, TInt aLine)
52 if(aValue != aExpected)
55 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
56 TheTest(EFalse, aLine);
59 #define TEST(arg) ::Check((arg), __LINE__)
60 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
62 ///////////////////////////////////////////////////////////////////////////////////////
67 TInt err = fs.Connect();
70 err = fs.MkDir(KTestDir);
71 TEST(err == KErrNone || err == KErrAlreadyExists);
76 ///////////////////////////////////////////////////////////////////////////////////////
78 //Panic thread function.
79 //It will cast aData parameter to a TFunctor pointer and call it.
80 //The expectation is that the called function will panic and kill the panic thread.
81 TInt ThreadFunc(void* aData)
83 CTrapCleanup* tc = CTrapCleanup::New();
86 User::SetJustInTime(EFalse); // disable debugger panic handling
88 TFunctor* obj = reinterpret_cast<TFunctor*> (aData);
90 (*obj)();//call the panic function
98 //PanicTest function will create a new thread - panic thread, giving it a pointer to the function which has to
99 //be executed and the expectation is that the function will panic and kill the panic thread.
100 //PanicTest function will check the panic thread exit code, exit category and the panic code.
101 void PanicTest(TFunctor& aFunctor, TExitType aExpectedExitType, const TDesC& aExpectedCategory, TInt aExpectedPanicCode)
104 _LIT(KThreadName,"SqlDbPanicThread");
105 TEST2(thread.Create(KThreadName, &ThreadFunc, 0x2000, 0x1000, 0x10000, (void*)&aFunctor, EOwnerThread), KErrNone);
107 TRequestStatus status;
108 thread.Logon(status);
109 TEST2(status.Int(), KRequestPending);
111 User::WaitForRequest(status);
112 User::SetJustInTime(ETrue); // enable debugger panic handling
114 TEST2(thread.ExitType(), aExpectedExitType);
115 TEST(thread.ExitCategory() == aExpectedCategory);
116 TEST2(thread.ExitReason(), aExpectedPanicCode);
118 CLOSE_AND_WAIT(thread);
121 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
122 ////////////////////////////// Panic test functions /////////////////////////////////////////////////
123 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
125 //Panic when calling RSqlDatabase::Exec() on an invalid RSqlDatabase object.
126 class TSqlDatabase_NotCreated_Exec8 : public TFunctor
129 virtual void operator()()
132 db.Exec(_L8("CREATE TABLE A(f integer)"));//panic here
135 static TSqlDatabase_NotCreated_Exec8 TheSqlDatabase_NotCreated_Exec8;
137 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
138 //Panic when calling RSqlDatabase::Exec() on an invalid RSqlDatabase object.
139 class TSqlDatabase_NotCreated_Exec : public TFunctor
142 virtual void operator()()
145 db.Exec(_L("CREATE TABLE A(f integer)"));//panic here
148 static TSqlDatabase_NotCreated_Exec TheSqlDatabase_NotCreated_Exec;
150 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
151 //Panic when calling RSqlDatabase::GetSecuritySettings() on an invalid RSqlDatabase object.
152 class TSqlDatabase_NotCreated_SecuritySettings : public TFunctor
155 virtual void operator()()
158 RSqlSecurityPolicy securityPolicy;
159 (void)db.GetSecurityPolicy(securityPolicy);//panic here
162 static TSqlDatabase_NotCreated_SecuritySettings TheSqlDatabase_NotCreated_SecuritySettings;
164 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
165 //Panic when calling RSqlDatabase::SetIsolationLevel() on an invalid RSqlDatabase object.
166 class TSqlDatabase_NotCreated_SetIsolationLevel : public TFunctor
169 virtual void operator()()
172 db.SetIsolationLevel(RSqlDatabase::EReadUncommitted);//panic here
175 static TSqlDatabase_NotCreated_SetIsolationLevel TheSqlDatabase_NotCreated_SetIsolationLevel;
177 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
178 //Panic when calling RSqlDatabase::LastErrorMessage() on an invalid RSqlDatabase object.
179 class TSqlDatabase_NotCreated_LastErrorMessage : public TFunctor
182 virtual void operator()()
185 db.LastErrorMessage();//panic here
188 static TSqlDatabase_NotCreated_LastErrorMessage TheSqlDatabase_NotCreated_LastErrorMessage;
190 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
191 //Panic when calling RSqlDatabase::LastInsertedRowId() on an invalid RSqlDatabase object.
192 class TSqlDatabase_NotCreated_LastInsertedRowId : public TFunctor
195 virtual void operator()()
198 db.LastInsertedRowId();//panic here
201 static TSqlDatabase_NotCreated_LastInsertedRowId TheSqlDatabase_NotCreated_LastInsertedRowId;
203 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
204 //Panic when calling RSqlDatabase::Size() on an invalid RSqlDatabase object.
205 class TSqlDatabase_NotCreated_Size : public TFunctor
208 virtual void operator()()
211 (void)db.Size();//panic here
214 static TSqlDatabase_NotCreated_Size TheSqlDatabase_NotCreated_Size;
216 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
217 //Panic when calling RSqlDatabase::Size(TSize&) on an invalid RSqlDatabase object.
218 class TSqlDatabase_NotCreated_Size2 : public TFunctor
221 virtual void operator()()
224 RSqlDatabase::TSize size;
225 (void)db.Size(size);//panic here
228 static TSqlDatabase_NotCreated_Size2 TheSqlDatabase_NotCreated_Size2;
230 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
231 //Panic when calling RSqlDatabase::InTransaction() on an invalid RSqlDatabase object.
232 class TSqlDatabase_NotCreated_InTransaction : public TFunctor
235 virtual void operator()()
238 (void)db.InTransaction();//panic here
241 static TSqlDatabase_NotCreated_InTransaction TheSqlDatabase_NotCreated_InTransaction;
243 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
244 //Panic when calling RSqlDatabase::Attach() on an invalid RSqlDatabase object.
245 class TSqlDatabase_NotCreated_Attach : public TFunctor
248 virtual void operator()()
251 db.Attach(_L("C:\\TEST\\A.DB"), _L("A"));//panic here
254 static TSqlDatabase_NotCreated_Attach TheSqlDatabase_NotCreated_Attach;
256 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
257 //Panic when calling RSqlDatabase::Detach() on an invalid RSqlDatabase object.
258 class TSqlDatabase_NotCreated_Detach : public TFunctor
261 virtual void operator()()
264 db.Detach(_L("A"));//panic here
267 static TSqlDatabase_NotCreated_Detach TheSqlDatabase_NotCreated_Detach;
269 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
270 //Panic when calling RSqlDatabase::Compact() on an invalid RSqlDatabase object.
271 class TSqlDatabase_NotCreated_Compact : public TFunctor
274 virtual void operator()()
277 db.Compact(2048);//panic here
280 static TSqlDatabase_NotCreated_Compact TheSqlDatabase_NotCreated_Compact;
282 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
283 //Panic when calling async RSqlDatabase::Compact() on an invalid RSqlDatabase object.
284 class TSqlDatabase_NotCreated_Compact2 : public TFunctor
287 virtual void operator()()
291 db.Compact(2048, stat);//panic here
294 static TSqlDatabase_NotCreated_Compact2 TheSqlDatabase_NotCreated_Compact2;
296 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
297 //Panic when calling RSqlStatement::Reset() on an invalid RSqlStatement object.
298 class TSqlStatement_NotCreated_Reset : public TFunctor
301 virtual void operator()()
304 stmt.Reset();//panic here
307 static TSqlStatement_NotCreated_Reset TheSqlStatement_NotCreated_Reset;
309 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
310 //Panic when calling RSqlStatement::Exec() on an invalid RSqlStatement object.
311 class TSqlStatement_NotCreated_Exec : public TFunctor
314 virtual void operator()()
317 stmt.Exec();//panic here
320 static TSqlStatement_NotCreated_Exec TheSqlStatement_NotCreated_Exec;
322 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
323 //Panic when calling RSqlStatement::Next() on an invalid RSqlStatement object.
324 class TSqlStatement_NotCreated_Next : public TFunctor
327 virtual void operator()()
330 stmt.Next();//panic here
333 static TSqlStatement_NotCreated_Next TheSqlStatement_NotCreated_Next;
335 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
336 //Panic when calling RSqlStatement::ParameterIndex() on an invalid RSqlStatement object.
337 class TSqlStatement_NotCreated_ParameterIndex : public TFunctor
340 virtual void operator()()
343 stmt.ParameterIndex(_L("ABV"));//panic here
346 static TSqlStatement_NotCreated_ParameterIndex TheSqlStatement_NotCreated_ParameterIndex;
348 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
349 //Panic when calling RSqlStatement::ColumnIndex() on an invalid RSqlStatement object.
350 class TSqlStatement_NotCreated_ColumnIndex : public TFunctor
353 virtual void operator()()
356 stmt.ColumnIndex(_L("ABV"));//panic here
359 static TSqlStatement_NotCreated_ColumnIndex TheSqlStatement_NotCreated_ColumnIndex;
361 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
362 //Panic when calling RSqlStatement::ColumnType() on an invalid RSqlStatement object.
363 class TSqlStatement_NotCreated_ColumnType : public TFunctor
366 virtual void operator()()
369 stmt.ColumnType(1);//panic here
372 static TSqlStatement_NotCreated_ColumnType TheSqlStatement_NotCreated_ColumnType;
374 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
375 //Panic when calling RSqlStatement::ColumnSize() on an invalid RSqlStatement object.
376 class TSqlStatement_NotCreated_ColumnSize : public TFunctor
379 virtual void operator()()
382 stmt.ColumnSize(1);//panic here
385 static TSqlStatement_NotCreated_ColumnSize TheSqlStatement_NotCreated_ColumnSize;
387 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
388 //Panic when calling RSqlStatement::BindNull() on an invalid RSqlStatement object.
389 class TSqlStatement_NotCreated_BindNull : public TFunctor
392 virtual void operator()()
395 stmt.BindNull(1);//panic here
398 static TSqlStatement_NotCreated_BindNull TheSqlStatement_NotCreated_BindNull;
400 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
401 //Panic when calling RSqlStatement::BindInt() on an invalid RSqlStatement object.
402 class TSqlStatement_NotCreated_BindInt : public TFunctor
405 virtual void operator()()
408 stmt.BindInt(1, 2);//panic here
411 static TSqlStatement_NotCreated_BindInt TheSqlStatement_NotCreated_BindInt;
413 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
414 //Panic when calling RSqlStatement::BindInt64() on an invalid RSqlStatement object.
415 class TSqlStatement_NotCreated_BindInt64 : public TFunctor
418 virtual void operator()()
421 stmt.BindInt64(1, TInt64(2));//panic here
424 static TSqlStatement_NotCreated_BindInt64 TheSqlStatement_NotCreated_BindInt64;
426 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
427 //Panic when calling RSqlStatement::BindReal() on an invalid RSqlStatement object.
428 class TSqlStatement_NotCreated_BindReal : public TFunctor
431 virtual void operator()()
434 stmt.BindReal(1, 2.5);//panic here
437 static TSqlStatement_NotCreated_BindReal TheSqlStatement_NotCreated_BindReal;
439 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
440 //Panic when calling RSqlStatement::BindText() on an invalid RSqlStatement object.
441 class TSqlStatement_NotCreated_BindText : public TFunctor
444 virtual void operator()()
447 stmt.BindText(1, _L("ABV"));//panic here
450 static TSqlStatement_NotCreated_BindText TheSqlStatement_NotCreated_BindText;
452 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
453 //Panic when calling RSqlStatement::BindBinary() on an invalid RSqlStatement object.
454 class TSqlStatement_NotCreated_BindBinary : public TFunctor
457 virtual void operator()()
460 stmt.BindBinary(1, _L8("ABV"));//panic here
463 static TSqlStatement_NotCreated_BindBinary TheSqlStatement_NotCreated_BindBinary;
465 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
466 //Panic when calling RSqlStatement::BindZeroBlob() on an invalid RSqlStatement object.
467 class TSqlStatement_NotCreated_BindZeroBlob : public TFunctor
470 virtual void operator()()
473 stmt.BindZeroBlob(1, 100);//panic here
476 static TSqlStatement_NotCreated_BindZeroBlob TheSqlStatement_NotCreated_BindZeroBlob;
478 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
479 //Panic when an attempt is made to call RSqlStatement::BindZeroBlob() giving an invalid parameter index.
480 class TSqlStatement_OutOfBounds_BindZeroBlob : public TFunctor
483 virtual void operator()()
486 TEST2(db.Create(KTestDbName), KErrNone);
487 TEST2(db.Exec(_L8("CREATE TABLE D(A INTEGER, B BLOB)")), 1);
489 TEST2(stmt.Prepare(db, _L8("INSERT INTO D VALUES(1, :Prm1)")), KErrNone);
490 stmt.BindZeroBlob(12, 100);//panic here
495 static TSqlStatement_OutOfBounds_BindZeroBlob TheSqlStatement_OutOfBounds_BindZeroBlob;
497 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
498 //Panic when calling RSqlStatement::IsNull() on an invalid RSqlStatement object.
499 class TSqlStatement_NotCreated_IsNull : public TFunctor
502 virtual void operator()()
505 stmt.IsNull(1);//panic here
508 static TSqlStatement_NotCreated_IsNull TheSqlStatement_NotCreated_IsNull;
510 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
511 //Panic when calling RSqlStatement::ColumnInt() on an invalid RSqlStatement object.
512 class TSqlStatement_NotCreated_ColumnInt : public TFunctor
515 virtual void operator()()
518 stmt.ColumnInt(1);//panic here
521 static TSqlStatement_NotCreated_ColumnInt TheSqlStatement_NotCreated_ColumnInt;
523 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
524 //Panic when calling RSqlStatement::ColumnInt64() on an invalid RSqlStatement object.
525 class TSqlStatement_NotCreated_ColumnInt64 : public TFunctor
528 virtual void operator()()
531 stmt.ColumnInt64(1);//panic here
534 static TSqlStatement_NotCreated_ColumnInt64 TheSqlStatement_NotCreated_ColumnInt64;
536 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
537 //Panic when calling RSqlStatement::ColumnReal() on an invalid RSqlStatement object.
538 class TSqlStatement_NotCreated_ColumnReal : public TFunctor
541 virtual void operator()()
544 stmt.ColumnReal(1);//panic here
547 static TSqlStatement_NotCreated_ColumnReal TheSqlStatement_NotCreated_ColumnReal;
549 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
550 //Panic when calling RSqlStatement::ColumnText() on an invalid RSqlStatement object.
551 class TSqlStatement_NotCreated_ColumnText : public TFunctor
554 virtual void operator()()
558 (void)stmt.ColumnText(1, ptr);//panic here
561 static TSqlStatement_NotCreated_ColumnText TheSqlStatement_NotCreated_ColumnText;
563 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
564 //Panic when calling RSqlStatement::ColumnText() on an invalid RSqlStatement object.
565 class TSqlStatement_NotCreated_ColumnText2 : public TFunctor
568 virtual void operator()()
572 stmt.ColumnText(1, buf);//panic here
575 static TSqlStatement_NotCreated_ColumnText2 TheSqlStatement_NotCreated_ColumnText2;
577 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
578 //Panic when calling RSqlStatement::ColumnBinary() on an invalid RSqlStatement object.
579 class TSqlStatement_NotCreated_ColumnBinary : public TFunctor
582 virtual void operator()()
586 (void)stmt.ColumnBinary(1, ptr);//panic here
589 static TSqlStatement_NotCreated_ColumnBinary TheSqlStatement_NotCreated_ColumnBinary;
591 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
592 //Panic when calling RSqlStatement::ColumnBinary() on an invalid RSqlStatement object.
593 class TSqlStatement_NotCreated_ColumnBinary2 : public TFunctor
596 virtual void operator()()
600 stmt.ColumnBinary(1, buf);//panic here
603 static TSqlStatement_NotCreated_ColumnBinary2 TheSqlStatement_NotCreated_ColumnBinary2;
605 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
606 //Panic when calling RSqlStatement::Prepare() giving an invalid RSqlDatabase object.
607 class TSqlStatement_DbNotCreated_Prepare : public TFunctor
610 virtual void operator()()
614 stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)"));//panic here
617 static TSqlStatement_DbNotCreated_Prepare TheSqlStatement_DbNotCreated_Prepare;
619 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
620 //Panic when calling RSqlStatement::Prepare() giving an invalid RSqlDatabase object.
621 class TSqlStatement_DbNotCreated_Prepare8 : public TFunctor
624 virtual void operator()()
628 stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)"));//panic here
631 static TSqlStatement_DbNotCreated_Prepare8 TheSqlStatement_DbNotCreated_Prepare8;
633 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
635 //Panic when an attempt is made to call RSqlStatement::Prepare() twice on the same RSqlStatement object.
636 class TSqlStatement_CreateTwice : public TFunctor
639 virtual void operator()()
642 TEST2(db.Create(KTestDbName), KErrNone);
644 TEST2(stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)")), KErrNone);
645 stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)"));//panic here
650 static TSqlStatement_CreateTwice TheSqlStatement_CreateTwice;
652 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
653 //Panic when an attempt is made to call RSqlStatement::Prepare() twice on the same RSqlStatement object.
654 class TSqlStatement_CreateTwice8 : public TFunctor
657 virtual void operator()()
660 TEST2(db.Create(KTestDbName), KErrNone);
662 TEST2(stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)")), KErrNone);
663 stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)"));//panic here
668 static TSqlStatement_CreateTwice8 TheSqlStatement_CreateTwice8;
670 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
671 //Panic when an attempt is made to call RSqlStatement::ColumnType() giving an invalid column index.
672 class TSqlStatement_OutOfBounds_ColumnType : public TFunctor
675 virtual void operator()()
678 TEST2(db.Create(KTestDbName), KErrNone);
679 TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
681 TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
682 stmt.ColumnType(12);//panic here
687 static TSqlStatement_OutOfBounds_ColumnType TheSqlStatement_OutOfBounds_ColumnType;
689 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
690 //Panic when an attempt is made to call RSqlStatement::ColumnSize() giving an invalid column index.
691 class TSqlStatement_OutOfBounds_ColumnSize : public TFunctor
694 virtual void operator()()
697 TEST2(db.Create(KTestDbName), KErrNone);
698 TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
700 TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
701 stmt.ColumnSize(-25);//panic here
706 static TSqlStatement_OutOfBounds_ColumnSize TheSqlStatement_OutOfBounds_ColumnSize;
708 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
709 //Panic when an attempt is made to call RSqlStatement::BindNull() giving an invalid parameter index.
710 class TSqlStatement_OutOfBounds_Bind : public TFunctor
713 virtual void operator()()
716 TEST2(db.Create(KTestDbName), KErrNone);
717 TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
719 TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D WHERE A = :V")), KErrNone);
720 stmt.BindNull(2);//panic here
725 static TSqlStatement_OutOfBounds_Bind TheSqlStatement_OutOfBounds_Bind;
727 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
728 //Panic when an attempt is made to call RSqlStatement::ColumnInt() giving an invalid column index.
729 class TSqlStatement_OutOfBounds_ColumnValue : public TFunctor
732 virtual void operator()()
735 TEST2(db.Create(KTestDbName), KErrNone);
736 TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
738 TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
739 stmt.ColumnInt(56);//panic here
744 static TSqlStatement_OutOfBounds_ColumnValue TheSqlStatement_OutOfBounds_ColumnValue;
746 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
747 //Panic when calling RSqlStatement::ColumnCount() on an invalid RSqlStatement object.
748 class TSqlStatement_NotCreated_ColumnCount : public TFunctor
751 virtual void operator()()
754 stmt.ColumnCount();//panic here
757 static TSqlStatement_NotCreated_ColumnCount TheSqlStatement_NotCreated_ColumnCount;
759 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
760 //Panic when calling RSqlStatement::DeclaredColumnType() on an invalid RSqlStatement object.
761 class TSqlStatement_NotCreated_DeclaredColumnType : public TFunctor
764 virtual void operator()()
767 TSqlColumnType colType;
768 stmt.DeclaredColumnType(0, colType);//panic here
771 static TSqlStatement_NotCreated_DeclaredColumnType TheSqlStatement_NotCreated_DeclaredColumnType;
773 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
774 //Panic when an attempt is made to call RSqlStatement::DeclaredColumnType() giving an invalid column index.
775 class TSqlStatement_OutOfBounds_DeclaredColumnType : public TFunctor
778 virtual void operator()()
781 TEST2(db.Create(KTestDbName), KErrNone);
782 TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
784 TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
785 TSqlColumnType colType;
786 stmt.DeclaredColumnType(8, colType);//panic here
791 static TSqlStatement_OutOfBounds_DeclaredColumnType TheSqlStatement_OutOfBounds_DeclaredColumnType;
793 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
794 //Panic when an attempt is made to call RSqlStatement::ColumnName() on an invalid RSqlStatement object.
795 class TSqlStatement_NotCreated_ColumnName : public TFunctor
798 virtual void operator()()
801 TEST2(db.Create(KTestDbName), KErrNone);
804 (void)stmt.ColumnName(0, columnName);//panic here
809 static TSqlStatement_NotCreated_ColumnName TheSqlStatement_NotCreated_ColumnName;
811 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
812 //Panic when an attempt is made to call RSqlStatement::ParameterName() on an invalid RSqlStatement object.
813 class TSqlStatement_NotCreated_ParameterName : public TFunctor
816 virtual void operator()()
819 TEST2(db.Create(KTestDbName), KErrNone);
822 (void)stmt.ParameterName(0, parameterName);//panic here
827 static TSqlStatement_NotCreated_ParameterName TheSqlStatement_NotCreated_ParameterName;
829 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
830 //Panic when an attempt is made to call RSqlStatement::ParamName() on an invalid RSqlStatement object.
831 class TSqlStatement_NotCreated_ParamName : public TFunctor
834 virtual void operator()()
837 TEST2(db.Create(KTestDbName), KErrNone);
840 (void)stmt.ParamName(0, paramName);//panic here
845 static TSqlStatement_NotCreated_ParamName TheSqlStatement_NotCreated_ParamName;
847 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
848 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() with an invalid RSqlStatement object.
849 class TColumnReadStream_ColumnText_Statement : public TFunctor
852 virtual void operator()()
855 RSqlColumnReadStream strm;
856 strm.ColumnText(stmt, 0);//panic here
860 static TColumnReadStream_ColumnText_Statement TheColumnReadStream_ColumnText_Statement;
862 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
863 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() with an invalid RSqlStatement object.
864 class TColumnReadStream_ColumnBinary_Statement : public TFunctor
867 virtual void operator()()
870 RSqlColumnReadStream strm;
871 strm.ColumnBinary(stmt, 0);//panic here
875 static TColumnReadStream_ColumnBinary_Statement TheColumnReadStream_ColumnBinary_Statement;
877 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
878 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() with an invalid column index.
879 class TColumnReadStream_ColumnText_Column : public TFunctor
882 virtual void operator()()
885 TEST2(db.Create(KTestDbName), KErrNone);
886 TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
889 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
891 RSqlColumnReadStream strm;
892 strm.ColumnText(stmt, 8);//panic here
899 static TColumnReadStream_ColumnText_Column TheColumnReadStream_ColumnText_Column;
901 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
902 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() with an invalid column index.
903 class TColumnReadStream_ColumnBinary_Column : public TFunctor
906 virtual void operator()()
909 TEST2(db.Create(KTestDbName), KErrNone);
910 TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
913 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
915 RSqlColumnReadStream strm;
916 strm.ColumnBinary(stmt, 3);//panic here
923 static TColumnReadStream_ColumnBinary_Column TheColumnReadStream_ColumnBinary_Column;
925 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
926 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() when the statement object is not at row.
927 class TColumnReadStream_ColumnText_AtRow : public TFunctor
930 virtual void operator()()
933 TEST2(db.Create(KTestDbName), KErrNone);
934 TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
937 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
939 RSqlColumnReadStream strm;
940 strm.ColumnText(stmt, 0);//panic here
947 static TColumnReadStream_ColumnText_AtRow TheColumnReadStream_ColumnText_AtRow;
949 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
950 //Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() when the statement object is not at row.
951 class TColumnReadStream_ColumnBinary_AtRow : public TFunctor
954 virtual void operator()()
957 TEST2(db.Create(KTestDbName), KErrNone);
958 TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
961 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
963 RSqlColumnReadStream strm;
964 strm.ColumnBinary(stmt, 0);//panic here
971 static TColumnReadStream_ColumnBinary_AtRow TheColumnReadStream_ColumnBinary_AtRow;
973 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
974 //Panic when an attempt is made to call RSqlParamWriteStream::BindText() with an invalid RSqlStatement object.
975 class TParamWriteStream_BindText_Statement : public TFunctor
978 virtual void operator()()
981 RSqlParamWriteStream strm;
982 strm.BindText(stmt, 0);//panic here
986 static TParamWriteStream_BindText_Statement TheParamWriteStream_BindText_Statement;
988 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
989 //Panic when an attempt is made to call RSqlParamWriteStream::BindBinary() with an invalid RSqlStatement object.
990 class TParamWriteStream_BindBinary_Statement : public TFunctor
993 virtual void operator()()
996 RSqlParamWriteStream strm;
997 strm.BindBinary(stmt, 0);//panic here
1001 static TParamWriteStream_BindBinary_Statement TheParamWriteStream_BindBinary_Statement;
1003 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1004 //Panic when an attempt is made to call RSqlParamWriteStream::BindText() with an invalid parameter index.
1005 class TParamWriteStream_BindText_Column : public TFunctor
1008 virtual void operator()()
1011 TEST2(db.Create(KTestDbName), KErrNone);
1012 TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
1015 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D WHERE A = :Val")), KErrNone);
1017 RSqlParamWriteStream strm;
1018 strm.BindText(stmt, 8);//panic here
1025 static TParamWriteStream_BindText_Column TheParamWriteStream_BindText_Column;
1027 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1028 //Panic when an attempt is made to call RSqlParamWriteStream::BindBinary() with an invalid parameter index.
1029 class TParamWriteStream_BindBinary_Column : public TFunctor
1032 virtual void operator()()
1035 TEST2(db.Create(KTestDbName), KErrNone);
1036 TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
1039 TEST2(stmt.Prepare(db, _L8("SELECT * FROM D WHERE A = :Val")), KErrNone);
1041 RSqlParamWriteStream strm;
1042 strm.BindBinary(stmt, 3);//panic here
1049 static TParamWriteStream_BindBinary_Column TheParamWriteStream_BindBinary_Column;
1051 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1052 //Panic when an attempt is made to call RSqlSecurityPolicy::DefaultPolicy() on an invalid object.
1053 class TSqlSecurity_DefaultPolicy : public TFunctor
1056 virtual void operator()()
1058 RSqlSecurityPolicy securityPolicy;
1059 TSecurityPolicy policy = securityPolicy.DefaultPolicy();//panic here
1063 static TSqlSecurity_DefaultPolicy TheSqlSecurity_DefaultPolicy;
1065 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1066 //Panic when an attempt is made to call RSqlSecurityPolicy::SetDbPolicy() with an invalid policy type.
1067 class TSqlSecurity_Set1 : public TFunctor
1070 virtual void operator()()
1072 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1073 RSqlSecurityPolicy securityPolicy;
1074 TInt err = securityPolicy.Create(defaultPolicy);
1075 TEST2(err, KErrNone);
1076 RSqlSecurityPolicy::TPolicyType policyType = static_cast <RSqlSecurityPolicy::TPolicyType> (12345);
1077 TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
1078 securityPolicy.SetDbPolicy(policyType, policy);//panic here
1079 securityPolicy.Close();
1082 static TSqlSecurity_Set1 TheSqlSecurity_Set1;
1084 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1085 //Panic when an attempt is made to call RSqlSecurityPolicy::SetPolicy() with an invalid database object type.
1086 class TSqlSecurity_Set2 : public TFunctor
1089 virtual void operator()()
1091 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1092 RSqlSecurityPolicy securityPolicy;
1093 TInt err = securityPolicy.Create(defaultPolicy);
1094 TEST2(err, KErrNone);
1095 RSqlSecurityPolicy::TObjectType objectType = static_cast <RSqlSecurityPolicy::TObjectType> (-113);
1096 TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
1097 securityPolicy.SetPolicy(objectType, _L("ATbl"), RSqlSecurityPolicy::EWritePolicy, policy);//panic here
1098 securityPolicy.Close();
1101 static TSqlSecurity_Set2 TheSqlSecurity_Set2;
1103 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1104 //Panic when an attempt is made to call RSqlSecurityPolicy::SetPolicy() with an invalid database object name.
1105 class TSqlSecurity_Set3 : public TFunctor
1108 virtual void operator()()
1110 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1111 RSqlSecurityPolicy securityPolicy;
1112 TInt err = securityPolicy.Create(defaultPolicy);
1113 TEST2(err, KErrNone);
1114 TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
1115 securityPolicy.SetPolicy(RSqlSecurityPolicy::ETable, KNullDesC, RSqlSecurityPolicy::EReadPolicy, policy);//panic here
1116 securityPolicy.Close();
1119 static TSqlSecurity_Set3 TheSqlSecurity_Set3;
1121 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1122 //Panic when an attempt is made to call RSqlSecurityPolicy::DbPolicy() with an invalid policy type.
1123 class TSqlSecurity_Get1 : public TFunctor
1126 virtual void operator()()
1128 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1129 RSqlSecurityPolicy securityPolicy;
1130 TInt err = securityPolicy.Create(defaultPolicy);
1131 TEST2(err, KErrNone);
1132 RSqlSecurityPolicy::TPolicyType policyType = static_cast <RSqlSecurityPolicy::TPolicyType> (12345);
1133 securityPolicy.DbPolicy(policyType);//panic here
1134 securityPolicy.Close();
1137 static TSqlSecurity_Get1 TheSqlSecurity_Get1;
1139 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1140 //Panic when an attempt is made to call RSqlSecurityPolicy::Policy() with an invalid database object type.
1141 class TSqlSecurity_Get2 : public TFunctor
1144 virtual void operator()()
1146 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1147 RSqlSecurityPolicy securityPolicy;
1148 TInt err = securityPolicy.Create(defaultPolicy);
1149 TEST2(err, KErrNone);
1150 RSqlSecurityPolicy::TObjectType objectType = static_cast <RSqlSecurityPolicy::TObjectType> (-113);
1151 securityPolicy.Policy(objectType, _L("BTbl"), RSqlSecurityPolicy::EReadPolicy);//panic here
1152 securityPolicy.Close();
1155 static TSqlSecurity_Get2 TheSqlSecurity_Get2;
1157 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1158 //Panic when an attempt is made to call RSqlSecurityPolicy::Policy() with an invalid database object name.
1159 class TSqlSecurity_Get3 : public TFunctor
1162 virtual void operator()()
1164 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1165 RSqlSecurityPolicy securityPolicy;
1166 TInt err = securityPolicy.Create(defaultPolicy);
1167 TEST2(err, KErrNone);
1168 securityPolicy.Policy(RSqlSecurityPolicy::ETable, KNullDesC, RSqlSecurityPolicy::EWritePolicy);//panic here
1169 securityPolicy.Close();
1172 static TSqlSecurity_Get3 TheSqlSecurity_Get3;
1174 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1176 //Panic when an attempt is made to call RSqlSecurityPolicy::Create() on an already created object.
1177 class TSqlSecurity_CreateTwice : public TFunctor
1180 virtual void operator()()
1182 TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
1183 RSqlSecurityPolicy securityPolicy;
1184 TInt err = securityPolicy.Create(defaultPolicy);
1185 TEST2(err, KErrNone);
1186 securityPolicy.Create(defaultPolicy);//panic here
1187 securityPolicy.Close();
1190 static TSqlSecurity_CreateTwice TheSqlSecurity_CreateTwice;
1192 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1193 //Panic when an attempt is made to call RSqlSecurityPolicy::ExternalizeL() on an invalid object.
1194 class TSqlSecurity_Externalize : public TFunctor
1197 virtual void operator()()
1199 RSqlSecurityPolicy securityPolicy;
1200 RWriteStream stream;
1201 TRAPD(err, securityPolicy.ExternalizeL(stream));//panic here
1205 static TSqlSecurity_Externalize TheSqlSecurity_Externalize;
1207 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1208 //Panic when an attempt is made to call TSqlScalarFullSelectQuery method and the database is not set.
1209 class TSqlScalarFullSelectQuery_InvalidDatabase : public TFunctor
1212 virtual void operator()()
1214 TSqlScalarFullSelectQuery query;
1215 TRAP_IGNORE((void)query.SelectIntL(_L("SELECT Id FROM A WHERE Name = 'AAA'")));
1218 static TSqlScalarFullSelectQuery_InvalidDatabase TheSqlScalarFullSelectQuery_InvalidDatabase;
1220 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1221 //Panic when an attempt is made to call RSqlBlobReadStream::OpenL() with an invalid RSqlDatabase object.
1222 class TBlobReadStream_Open_Database1 : public TFunctor
1225 virtual void operator()()
1227 CTrapCleanup* tc = CTrapCleanup::New();
1230 RSqlBlobReadStream strm;
1231 TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1));//panic here
1237 static TBlobReadStream_Open_Database1 TheBlobReadStream_Open_Database1;
1239 class TBlobReadStream_Open_Database2 : public TFunctor
1242 virtual void operator()()
1244 CTrapCleanup* tc = CTrapCleanup::New();
1247 RSqlBlobReadStream strm;
1248 TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1, _L("Db")));//panic here
1254 static TBlobReadStream_Open_Database2 TheBlobReadStream_Open_Database2;
1256 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1257 //Panic when an attempt is made to call RSqlBlobReadStream::SizeL() on a unitialized RSqlBlobReadStream object.
1258 class TBlobReadStream_Size_Stream : public TFunctor
1261 virtual void operator()()
1263 CTrapCleanup* tc = CTrapCleanup::New();
1265 RSqlBlobReadStream strm;
1266 TRAP_IGNORE(strm.SizeL());//panic here
1272 TBlobReadStream_Size_Stream TheBlobReadStream_Size_Stream;
1274 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1275 //Panic when an attempt is made to call RSqlBlobWriteStream::OpenL() with an invalid RSqlDatabase object.
1276 class TBlobWriteStream_Open_Database1 : public TFunctor
1279 virtual void operator()()
1281 CTrapCleanup* tc = CTrapCleanup::New();
1284 RSqlBlobWriteStream strm;
1285 TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1));//panic here
1291 static TBlobWriteStream_Open_Database1 TheBlobWriteStream_Open_Database1;
1293 class TBlobWriteStream_Open_Database2 : public TFunctor
1296 virtual void operator()()
1298 CTrapCleanup* tc = CTrapCleanup::New();
1301 RSqlBlobWriteStream strm;
1302 TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1, _L("Db")));//panic here
1308 static TBlobWriteStream_Open_Database2 TheBlobWriteStream_Open_Database2;
1310 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1311 //Panic when an attempt is made to call RSqlBlobWriteStream::SizeL() on a unitialized RSqlBlobWriteStream object.
1312 class TBlobWriteStream_Size_Stream : public TFunctor
1315 virtual void operator()()
1317 CTrapCleanup* tc = CTrapCleanup::New();
1319 RSqlBlobWriteStream strm;
1320 TRAP_IGNORE(strm.SizeL());//panic here
1326 TBlobWriteStream_Size_Stream TheBlobWriteStream_Size_Stream;
1328 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1329 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
1332 @SYMTestCaseID SYSLIB-SQL-CT-1619
1333 @SYMTestCaseDesc RSqlDatabase panic tests
1334 Run a second thread. The second thread executes given RSqlDatabase method calling
1335 it with wrong arguments, or in a bad context,...The method panics the second thread.
1336 The main thread captures and checks the panic code.
1337 @SYMTestPriority High
1338 @SYMTestActions RSqlDatabase panic tests
1339 @SYMTestExpectedResults Test must not fail
1345 void DatabaseTests()
1347 TheTest.Printf(_L("'RSqlDatabase object not created - Exec 8' panic\r\n"));
1348 PanicTest(TheSqlDatabase_NotCreated_Exec8, EExitPanic, KCategory, 2);
1350 TheTest.Printf(_L("'RSqlDatabase object not created - Exec' panic\r\n"));
1351 PanicTest(TheSqlDatabase_NotCreated_Exec, EExitPanic, KCategory, 2);
1353 TheTest.Printf(_L("'RSqlDatabase object not created - GetSecuritySettings' panic\r\n"));
1354 PanicTest(TheSqlDatabase_NotCreated_SecuritySettings, EExitPanic, KCategory, 2);
1356 TheTest.Printf(_L("'RSqlDatabase object not created - Attach' panic\r\n"));
1357 PanicTest(TheSqlDatabase_NotCreated_Attach, EExitPanic, KCategory, 2);
1359 TheTest.Printf(_L("'RSqlDatabase object not created - Detach' panic\r\n"));
1360 PanicTest(TheSqlDatabase_NotCreated_Detach, EExitPanic, KCategory, 2);
1362 TheTest.Printf(_L("'RSqlDatabase object not created - SetIsolationLevel' panic\r\n"));
1363 PanicTest(TheSqlDatabase_NotCreated_SetIsolationLevel, EExitPanic, KCategory, 2);
1365 TheTest.Printf(_L("'RSqlDatabase object not created - LastErrorMessage' panic\r\n"));
1366 PanicTest(TheSqlDatabase_NotCreated_LastErrorMessage, EExitPanic, KCategory, 2);
1368 TheTest.Printf(_L("'RSqlDatabase object not created - LastInsertedRowId' panic\r\n"));
1369 PanicTest(TheSqlDatabase_NotCreated_LastInsertedRowId, EExitPanic, KCategory, 2);
1371 TheTest.Printf(_L("'RSqlDatabase object not created - Size' panic\r\n"));
1372 PanicTest(TheSqlDatabase_NotCreated_Size, EExitPanic, KCategory, 2);
1374 TheTest.Printf(_L("'RSqlDatabase object not created - Size(TSize&)' panic\r\n"));
1375 PanicTest(TheSqlDatabase_NotCreated_Size2, EExitPanic, KCategory, 2);
1377 TheTest.Printf(_L("'RSqlDatabase object not created - InTransaction' panic\r\n"));
1378 PanicTest(TheSqlDatabase_NotCreated_InTransaction, EExitPanic, KCategory, 2);
1380 TheTest.Printf(_L("'RSqlDatabase object not created - Compact' panic\r\n"));
1381 PanicTest(TheSqlDatabase_NotCreated_Compact, EExitPanic, KCategory, 2);
1383 TheTest.Printf(_L("'RSqlDatabase object not created - async Compact' panic\r\n"));
1384 PanicTest(TheSqlDatabase_NotCreated_Compact2, EExitPanic, KCategory, 2);
1388 @SYMTestCaseID SYSLIB-SQL-CT-1620
1389 @SYMTestCaseDesc RSqlStatement panic tests
1390 Run a second thread. The second thread executes given RSqlStatement method calling
1391 it with wrong arguments, or in a bad context,...The method panics the second thread.
1392 The main thread captures and checks the panic code.
1393 @SYMTestPriority High
1394 @SYMTestActions RSqlStatement panic tests
1395 @SYMTestExpectedResults Test must not fail
1399 void StatementTests()
1401 TheTest.Printf(_L("'RSqlStatement object not created - Reset' panic\r\n"));
1402 PanicTest(TheSqlStatement_NotCreated_Reset, EExitPanic, KCategory, 2);
1404 TheTest.Printf(_L("'RSqlStatement object not created - Exec' panic\r\n"));
1405 PanicTest(TheSqlStatement_NotCreated_Exec, EExitPanic, KCategory, 2);
1407 TheTest.Printf(_L("'RSqlStatement object not created - Next' panic\r\n"));
1408 PanicTest(TheSqlStatement_NotCreated_Next, EExitPanic, KCategory, 2);
1410 TheTest.Printf(_L("'RSqlStatement object not created - ParameterIndex' panic\r\n"));
1411 PanicTest(TheSqlStatement_NotCreated_ParameterIndex, EExitPanic, KCategory, 2);
1413 TheTest.Printf(_L("'RSqlStatement object not created - ColumnIndex' panic\r\n"));
1414 PanicTest(TheSqlStatement_NotCreated_ColumnIndex, EExitPanic, KCategory, 2);
1416 TheTest.Printf(_L("'RSqlStatement object not created - ColumnType' panic\r\n"));
1417 PanicTest(TheSqlStatement_NotCreated_ColumnType, EExitPanic, KCategory, 2);
1419 TheTest.Printf(_L("'RSqlStatement object not created - ColumnSize' panic\r\n"));
1420 PanicTest(TheSqlStatement_NotCreated_ColumnSize, EExitPanic, KCategory, 2);
1422 TheTest.Printf(_L("'RSqlStatement object not created - BindNull' panic\r\n"));
1423 PanicTest(TheSqlStatement_NotCreated_BindNull, EExitPanic, KCategory, 2);
1425 TheTest.Printf(_L("'RSqlStatement object not created - BindInt' panic\r\n"));
1426 PanicTest(TheSqlStatement_NotCreated_BindInt, EExitPanic, KCategory, 2);
1428 TheTest.Printf(_L("'RSqlStatement object not created - BindInt64' panic\r\n"));
1429 PanicTest(TheSqlStatement_NotCreated_BindInt64, EExitPanic, KCategory, 2);
1431 TheTest.Printf(_L("'RSqlStatement object not created - BindReal' panic\r\n"));
1432 PanicTest(TheSqlStatement_NotCreated_BindReal, EExitPanic, KCategory, 2);
1434 TheTest.Printf(_L("'RSqlStatement object not created - BindText' panic\r\n"));
1435 PanicTest(TheSqlStatement_NotCreated_BindText, EExitPanic, KCategory, 2);
1437 TheTest.Printf(_L("'RSqlStatement object not created - BindBinary' panic\r\n"));
1438 PanicTest(TheSqlStatement_NotCreated_BindBinary, EExitPanic, KCategory, 2);
1440 TheTest.Printf(_L("'RSqlStatement object not created - BindZeroBlob' panic\r\n"));
1441 PanicTest(TheSqlStatement_NotCreated_BindZeroBlob, EExitPanic, KCategory, 2);
1443 TheTest.Printf(_L("'RSqlStatement::BindZeroBlob() - invalid parameter index' panic\r\n"));
1444 PanicTest(TheSqlStatement_OutOfBounds_BindZeroBlob, EExitPanic, KCategory, 5);
1445 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1447 TheTest.Printf(_L("'RSqlStatement object not created - ColumnInt' panic\r\n"));
1448 PanicTest(TheSqlStatement_NotCreated_ColumnInt, EExitPanic, KCategory, 2);
1450 TheTest.Printf(_L("'RSqlStatement object not created - IsNull' panic\r\n"));
1451 PanicTest(TheSqlStatement_NotCreated_ColumnInt, EExitPanic, KCategory, 2);
1453 TheTest.Printf(_L("'RSqlStatement object not created - ColumnInt64' panic\r\n"));
1454 PanicTest(TheSqlStatement_NotCreated_ColumnInt64, EExitPanic, KCategory, 2);
1456 TheTest.Printf(_L("'RSqlStatement object not created - ColumnReal' panic\r\n"));
1457 PanicTest(TheSqlStatement_NotCreated_ColumnReal, EExitPanic, KCategory, 2);
1459 TheTest.Printf(_L("'RSqlStatement object not created - ColumnText' panic\r\n"));
1460 PanicTest(TheSqlStatement_NotCreated_ColumnText, EExitPanic, KCategory, 2);
1462 TheTest.Printf(_L("'RSqlStatement object not created - ColumnText2' panic\r\n"));
1463 PanicTest(TheSqlStatement_NotCreated_ColumnText2, EExitPanic, KCategory, 2);
1465 TheTest.Printf(_L("'RSqlStatement object not created - ColumnBinary' panic\r\n"));
1466 PanicTest(TheSqlStatement_NotCreated_ColumnBinary, EExitPanic, KCategory, 2);
1468 TheTest.Printf(_L("'RSqlStatement object not created - ColumnBinary2' panic\r\n"));
1469 PanicTest(TheSqlStatement_NotCreated_ColumnBinary2, EExitPanic, KCategory, 2);
1471 TheTest.Printf(_L("'RSqlStatement - database not created - Prepare' panic\r\n"));
1472 PanicTest(TheSqlStatement_DbNotCreated_Prepare, EExitPanic, KCategory, 2);
1474 TheTest.Printf(_L("'RSqlStatement - database not created - Prepare 8' panic\r\n"));
1475 PanicTest(TheSqlStatement_DbNotCreated_Prepare8, EExitPanic, KCategory, 2);
1477 TheTest.Printf(_L("'RSqlStatement - ColumnType - Column index out of bounds' panic\r\n"));
1478 PanicTest(TheSqlStatement_OutOfBounds_ColumnType, EExitPanic, KCategory, 5);
1479 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1481 TheTest.Printf(_L("'RSqlStatement - ColumnSize - Column index out of bounds' panic\r\n"));
1482 PanicTest(TheSqlStatement_OutOfBounds_ColumnSize, EExitPanic, KCategory, 5);
1483 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1485 TheTest.Printf(_L("'RSqlStatement - Bind - Parameter index out of bounds' panic\r\n"));
1486 PanicTest(TheSqlStatement_OutOfBounds_Bind, EExitPanic, KCategory, 5);
1487 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1489 TheTest.Printf(_L("'RSqlStatement - Column value - Parameter index out of bounds' panic\r\n"));
1490 PanicTest(TheSqlStatement_OutOfBounds_ColumnValue, EExitPanic, KCategory, 5);
1491 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1493 TheTest.Printf(_L("'RSqlStatement object not created - ColumnCount' panic\r\n"));
1494 PanicTest(TheSqlStatement_NotCreated_ColumnCount, EExitPanic, KCategory, 2);
1496 TheTest.Printf(_L("'RSqlStatement object not created - DeclaredColumnType' panic\r\n"));
1497 PanicTest(TheSqlStatement_NotCreated_DeclaredColumnType, EExitPanic, KCategory, 2);
1499 TheTest.Printf(_L("'RSqlStatement - DeclaredColumnType - Column index out of bounds' panic\r\n"));
1500 PanicTest(TheSqlStatement_OutOfBounds_DeclaredColumnType, EExitPanic, KCategory, 5);
1501 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1503 TheTest.Printf(_L("'RSqlStatement - ColumnName' panic\r\n"));
1504 PanicTest(TheSqlStatement_NotCreated_ColumnName, EExitPanic, KCategory, 2);
1505 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1507 TheTest.Printf(_L("'RSqlStatement - ParameterName' panic\r\n"));
1508 PanicTest(TheSqlStatement_NotCreated_ParameterName, EExitPanic, KCategory, 2);
1509 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1511 TheTest.Printf(_L("'RSqlStatement - ParamName' panic\r\n"));
1512 PanicTest(TheSqlStatement_NotCreated_ParamName, EExitPanic, KCategory, 2);
1513 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1517 @SYMTestCaseID SYSLIB-SQL-CT-1625
1518 @SYMTestCaseDesc RSqlColumnReadStream panic tests
1519 Run a second thread. The second thread executes given RSqlColumnReadStream method calling
1520 it with wrong arguments, or in a bad context,...The method panics the second thread.
1521 The main thread captures and checks the panic code.
1522 @SYMTestPriority High
1523 @SYMTestActions RSqlColumnReadStream panic tests
1524 @SYMTestExpectedResults Test must not fail
1528 void ColumnStreamTests()
1530 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - invalid statement' panic\r\n"));
1531 PanicTest(TheColumnReadStream_ColumnText_Statement, EExitPanic, KCategory, 2);
1533 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - invalid statement' panic\r\n"));
1534 PanicTest(TheColumnReadStream_ColumnBinary_Statement, EExitPanic, KCategory, 2);
1536 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - invalid column index' panic\r\n"));
1537 PanicTest(TheColumnReadStream_ColumnText_Column, EExitPanic, KCategory, 5);
1538 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1540 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - invalid column index' panic\r\n"));
1541 PanicTest(TheColumnReadStream_ColumnBinary_Column, EExitPanic, KCategory, 5);
1542 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1544 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - not at row' panic\r\n"));
1545 PanicTest(TheColumnReadStream_ColumnText_AtRow, EExitPanic, KCategory, 11);
1546 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1548 TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - not at row' panic\r\n"));
1549 PanicTest(TheColumnReadStream_ColumnBinary_AtRow, EExitPanic, KCategory, 11);
1550 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1554 @SYMTestCaseID SYSLIB-SQL-CT-1626
1555 @SYMTestCaseDesc RSqlParamWriteStream panic tests
1556 Run a second thread. The second thread executes given RSqlParamWriteStream method calling
1557 it with wrong arguments, or in a bad context,...The method panics the second thread.
1558 The main thread captures and checks the panic code.
1559 @SYMTestPriority High
1560 @SYMTestActions RSqlParamWriteStream panic tests
1561 @SYMTestExpectedResults Test must not fail
1565 void ParameterStreamTests()
1567 TheTest.Printf(_L("'RSqlParamWriteStream - BindText - invalid statement' panic\r\n"));
1568 PanicTest(TheParamWriteStream_BindText_Statement, EExitPanic, KCategory, 2);
1570 TheTest.Printf(_L("'RSqlParamWriteStream - BindBinary - invalid statement' panic\r\n"));
1571 PanicTest(TheParamWriteStream_BindBinary_Statement, EExitPanic, KCategory, 2);
1573 TheTest.Printf(_L("'RSqlParamWriteStream - BindText - invalid parameter index' panic\r\n"));
1574 PanicTest(TheParamWriteStream_BindText_Column, EExitPanic, KCategory, 5);
1575 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1577 TheTest.Printf(_L("'RSqlParamWriteStream - BindBinary - invalid parameter index' panic\r\n"));
1578 PanicTest(TheParamWriteStream_BindBinary_Column, EExitPanic, KCategory, 5);
1579 TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
1583 @SYMTestCaseID SYSLIB-SQL-CT-1638
1584 @SYMTestCaseDesc RSqlSecurityPolicy panic tests
1585 Run a second thread. The second thread executes given RSqlSecurityPolicy method calling
1586 it with wrong arguments, or in a bad context,...The method panics the second thread.
1587 The main thread captures and checks the panic code.
1588 @SYMTestPriority High
1589 @SYMTestActions RSqlSecurityPolicy panic tests
1590 @SYMTestExpectedResults Test must not fail
1594 void SecuritySettingsTests()
1596 TheTest.Printf(_L("'RSqlSecurityPolicy::SetDbPolicy - invalid policy type' panic\r\n"));
1597 PanicTest(TheSqlSecurity_Set1, EExitPanic, KCategory, 4);
1599 TheTest.Printf(_L("'RSqlSecurityPolicy::SetPolicy - invalid database object type' panic\r\n"));
1600 PanicTest(TheSqlSecurity_Set2, EExitPanic, KCategory, 4);
1602 TheTest.Printf(_L("'RSqlSecurityPolicy::SetPolicy - invalid database object name' panic\r\n"));
1603 PanicTest(TheSqlSecurity_Set3, EExitPanic, KCategory, 4);
1605 TheTest.Printf(_L("'RSqlSecurityPolicy::DbPolicy - invalid policy type' panic\r\n"));
1606 PanicTest(TheSqlSecurity_Get1, EExitPanic, KCategory, 4);
1608 TheTest.Printf(_L("'RSqlSecurityPolicy::Policy - invalid database object type' panic\r\n"));
1609 PanicTest(TheSqlSecurity_Get2, EExitPanic, KCategory, 4);
1611 TheTest.Printf(_L("'RSqlSecurityPolicy::Policy - invalid database object name' panic\r\n"));
1612 PanicTest(TheSqlSecurity_Get3, EExitPanic, KCategory, 4);
1614 TheTest.Printf(_L("'RSqlSecurityPolicy::DefaultPolicy - invalid object' panic\r\n"));
1615 PanicTest(TheSqlSecurity_DefaultPolicy, EExitPanic, KCategory, 2);
1617 TheTest.Printf(_L("'RSqlSecurityPolicy::Externalize - panic\r\n"));
1618 PanicTest(TheSqlSecurity_Externalize, EExitPanic, KCategory, 2);
1622 @SYMTestCaseID SYSLIB-SQL-CT-1812
1623 @SYMTestCaseDesc TSqlScalarFullSelectQuery panic tests
1624 Run a second thread. The second thread executes given TSqlScalarFullSelectQuery method calling
1625 it with wrong arguments, or in a bad context,...The method panics the second thread.
1626 The main thread captures and checks the panic code.
1627 @SYMTestPriority High
1628 @SYMTestActions TSqlScalarFullSelectQuery panic tests
1629 @SYMTestExpectedResults Test must not fail
1633 void ScalarFullSelectTests()
1635 TheTest.Printf(_L("'TheSqlScalarFullSelectQuery, invalid database' - panic\r\n"));
1636 PanicTest(TheSqlScalarFullSelectQuery_InvalidDatabase, EExitPanic, KCategory, 2);
1640 @SYMTestCaseID SYSLIB-SQL-UT-4092
1641 @SYMTestCaseDesc RSqlBlobReadStream panic tests
1642 Run a second thread. The second thread executes a given RSqlBlobReadStream method calling
1643 the method with wrong arguments, or in a bad context,...The method panics the second thread.
1644 The main thread captures and checks the panic code.
1645 @SYMTestPriority High
1646 @SYMTestActions RSqlBlobReadStream panic tests
1647 @SYMTestExpectedResults Test must not fail
1653 void BlobReadStreamTests()
1655 TheTest.Printf(_L("'RSqlBlobReadStream::OpenL(), invalid database' - panic test 1\r\n"));
1656 PanicTest(TheBlobReadStream_Open_Database1, EExitPanic, KCategory, 2);
1658 TheTest.Printf(_L("'RSqlBlobReadStream::OpenL(), invalid database' - panic test 2\r\n"));
1659 PanicTest(TheBlobReadStream_Open_Database2, EExitPanic, KCategory, 2);
1661 TheTest.Printf(_L("'RSqlBlobReadStream::SizeL(), invalid stream' - panic test\r\n"));
1662 PanicTest(TheBlobReadStream_Size_Stream, EExitPanic, KCategory, 2);
1666 @SYMTestCaseID SYSLIB-SQL-UT-4093
1667 @SYMTestCaseDesc RSqlBlobWriteStream panic tests
1668 Run a second thread. The second thread executes a given RSqlBlobWriteStream method calling
1669 the method with wrong arguments, or in a bad context,...The method panics the second thread.
1670 The main thread captures and checks the panic code.
1671 @SYMTestPriority High
1672 @SYMTestActions RSqlBlobWriteStream panic tests
1673 @SYMTestExpectedResults Test must not fail
1678 void BlobWriteStreamTests()
1680 TheTest.Printf(_L("'RSqlBlobWriteStream::OpenL(), invalid database' - panic test 1\r\n"));
1681 PanicTest(TheBlobWriteStream_Open_Database1, EExitPanic, KCategory, 2);
1683 TheTest.Printf(_L("'RSqlBlobWriteStream::OpenL(), invalid database' - panic test 2\r\n"));
1684 PanicTest(TheBlobWriteStream_Open_Database2, EExitPanic, KCategory, 2);
1686 TheTest.Printf(_L("'RSqlBlobWriteStream::SizeL(), invalid stream' - panic test\r\n"));
1687 PanicTest(TheBlobWriteStream_Size_Stream, EExitPanic, KCategory, 2);
1692 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1619 RSqlDatabase - panic tests"));
1695 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1620 RSqlStatement - panic tests"));
1698 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1625 RSqlColumnReadStream - panic tests"));
1699 ColumnStreamTests();
1701 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1626 RSqlParamWriteStream - panic tests"));
1702 ParameterStreamTests();
1704 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1638 RSqlSecurityPolicy - panic tests"));
1705 SecuritySettingsTests();
1707 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1812 TheSqlScalarFullSelectQuery - panic tests"));
1708 ScalarFullSelectTests();
1710 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4092 RSqlBlobReadStream - panic tests"));
1711 BlobReadStreamTests();
1713 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4093 RSqlBlobWriteStream - panic tests"));
1714 BlobWriteStreamTests();
1721 CTrapCleanup* tc = CTrapCleanup::New();
1737 User::Heap().Check();