os/persistentdata/persistentstorage/sql/TEST/t_sqlpanic.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32test.h>
sl@0
    17
#include <bautils.h>
sl@0
    18
#include <sqldb.h>
sl@0
    19
sl@0
    20
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    21
sl@0
    22
#define UNUSED_VAR(a) (a) = (a)
sl@0
    23
#define IGNORE_ERR(a) (a) = (a)
sl@0
    24
sl@0
    25
RTest TheTest(_L("t_sqlpanic test"));
sl@0
    26
sl@0
    27
_LIT(KTestDir, "c:\\test\\");
sl@0
    28
_LIT(KTestDbName, "c:\\test\\t_sqlpanic.db");
sl@0
    29
sl@0
    30
_LIT(KCategory, "SqlDb");
sl@0
    31
sl@0
    32
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    33
sl@0
    34
void DeleteTestFiles()
sl@0
    35
	{
sl@0
    36
	RSqlDatabase::Delete(KTestDbName);
sl@0
    37
	}
sl@0
    38
sl@0
    39
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    40
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    41
//Test macros and functions
sl@0
    42
void Check(TInt aValue, TInt aLine)
sl@0
    43
	{
sl@0
    44
	if(!aValue)
sl@0
    45
		{
sl@0
    46
		DeleteTestFiles();
sl@0
    47
		TheTest(EFalse, aLine);
sl@0
    48
		}
sl@0
    49
	}
sl@0
    50
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    51
	{
sl@0
    52
	if(aValue != aExpected)
sl@0
    53
		{
sl@0
    54
		DeleteTestFiles();
sl@0
    55
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    56
		TheTest(EFalse, aLine);
sl@0
    57
		}
sl@0
    58
	}
sl@0
    59
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    60
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    61
sl@0
    62
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    63
sl@0
    64
void CreateTestDir()
sl@0
    65
    {
sl@0
    66
    RFs fs;
sl@0
    67
	TInt err = fs.Connect();
sl@0
    68
	TEST2(err, KErrNone);
sl@0
    69
sl@0
    70
	err = fs.MkDir(KTestDir);
sl@0
    71
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
    72
	
sl@0
    73
	fs.Close();
sl@0
    74
	}
sl@0
    75
sl@0
    76
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    77
sl@0
    78
//Panic thread function. 
sl@0
    79
//It will cast aData parameter to a TFunctor pointer and call it.
sl@0
    80
//The expectation is that the called function will panic and kill the panic thread.
sl@0
    81
TInt ThreadFunc(void* aData)
sl@0
    82
	{
sl@0
    83
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
    84
	TEST(tc != NULL);
sl@0
    85
	
sl@0
    86
	User::SetJustInTime(EFalse);	// disable debugger panic handling
sl@0
    87
	
sl@0
    88
	TFunctor* obj = reinterpret_cast<TFunctor*> (aData);
sl@0
    89
	TEST(obj != NULL);
sl@0
    90
	(*obj)();//call the panic function
sl@0
    91
	
sl@0
    92
	delete tc;
sl@0
    93
	
sl@0
    94
	return KErrNone;		
sl@0
    95
	}
sl@0
    96
sl@0
    97
//Panic test.
sl@0
    98
//PanicTest function will create a new thread - panic thread, giving it a pointer to the function which has to
sl@0
    99
//be executed and the expectation is that the function will panic and kill the panic thread.
sl@0
   100
//PanicTest function will check the panic thread exit code, exit category and the panic code.
sl@0
   101
void PanicTest(TFunctor& aFunctor, TExitType aExpectedExitType, const TDesC& aExpectedCategory, TInt aExpectedPanicCode)
sl@0
   102
	{
sl@0
   103
	RThread thread;
sl@0
   104
	_LIT(KThreadName,"SqlDbPanicThread");
sl@0
   105
	TEST2(thread.Create(KThreadName, &ThreadFunc, 0x2000, 0x1000, 0x10000, (void*)&aFunctor, EOwnerThread), KErrNone);
sl@0
   106
	
sl@0
   107
	TRequestStatus status;
sl@0
   108
	thread.Logon(status);
sl@0
   109
	TEST2(status.Int(), KRequestPending);
sl@0
   110
	thread.Resume();
sl@0
   111
	User::WaitForRequest(status);
sl@0
   112
	User::SetJustInTime(ETrue);	// enable debugger panic handling
sl@0
   113
sl@0
   114
	TEST2(thread.ExitType(), aExpectedExitType);
sl@0
   115
	TEST(thread.ExitCategory() == aExpectedCategory);
sl@0
   116
	TEST2(thread.ExitReason(), aExpectedPanicCode);
sl@0
   117
	
sl@0
   118
	CLOSE_AND_WAIT(thread);
sl@0
   119
	}
sl@0
   120
sl@0
   121
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   122
//////////////////////////////     Panic test functions    /////////////////////////////////////////////////
sl@0
   123
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   124
sl@0
   125
//Panic when calling RSqlDatabase::Exec() on an invalid RSqlDatabase object.
sl@0
   126
class TSqlDatabase_NotCreated_Exec8 : public TFunctor
sl@0
   127
	{
sl@0
   128
private:		
sl@0
   129
	virtual void operator()()
sl@0
   130
		{
sl@0
   131
		RSqlDatabase db;
sl@0
   132
		db.Exec(_L8("CREATE TABLE A(f integer)"));//panic here
sl@0
   133
		}
sl@0
   134
	};
sl@0
   135
static TSqlDatabase_NotCreated_Exec8 TheSqlDatabase_NotCreated_Exec8;
sl@0
   136
sl@0
   137
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   138
//Panic when calling RSqlDatabase::Exec() on an invalid RSqlDatabase object.
sl@0
   139
class TSqlDatabase_NotCreated_Exec : public TFunctor
sl@0
   140
	{
sl@0
   141
private:		
sl@0
   142
	virtual void operator()()
sl@0
   143
		{
sl@0
   144
		RSqlDatabase db;
sl@0
   145
		db.Exec(_L("CREATE TABLE A(f integer)"));//panic here
sl@0
   146
		}
sl@0
   147
	};
sl@0
   148
static TSqlDatabase_NotCreated_Exec TheSqlDatabase_NotCreated_Exec;
sl@0
   149
sl@0
   150
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   151
//Panic when calling RSqlDatabase::GetSecuritySettings() on an invalid RSqlDatabase object.
sl@0
   152
class TSqlDatabase_NotCreated_SecuritySettings : public TFunctor
sl@0
   153
	{
sl@0
   154
private:		
sl@0
   155
	virtual void operator()()
sl@0
   156
		{
sl@0
   157
		RSqlDatabase db;
sl@0
   158
		RSqlSecurityPolicy securityPolicy;
sl@0
   159
		(void)db.GetSecurityPolicy(securityPolicy);//panic here
sl@0
   160
		}
sl@0
   161
	};
sl@0
   162
static TSqlDatabase_NotCreated_SecuritySettings TheSqlDatabase_NotCreated_SecuritySettings;
sl@0
   163
sl@0
   164
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   165
//Panic when calling RSqlDatabase::SetIsolationLevel() on an invalid RSqlDatabase object.
sl@0
   166
class TSqlDatabase_NotCreated_SetIsolationLevel : public TFunctor
sl@0
   167
	{
sl@0
   168
private:		
sl@0
   169
	virtual void operator()()
sl@0
   170
		{
sl@0
   171
		RSqlDatabase db;
sl@0
   172
		db.SetIsolationLevel(RSqlDatabase::EReadUncommitted);//panic here
sl@0
   173
		}
sl@0
   174
	};
sl@0
   175
static TSqlDatabase_NotCreated_SetIsolationLevel TheSqlDatabase_NotCreated_SetIsolationLevel;
sl@0
   176
sl@0
   177
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   178
//Panic when calling RSqlDatabase::LastErrorMessage() on an invalid RSqlDatabase object.
sl@0
   179
class TSqlDatabase_NotCreated_LastErrorMessage : public TFunctor
sl@0
   180
	{
sl@0
   181
private:		
sl@0
   182
	virtual void operator()()
sl@0
   183
		{
sl@0
   184
		RSqlDatabase db;
sl@0
   185
		db.LastErrorMessage();//panic here
sl@0
   186
		}
sl@0
   187
	};
sl@0
   188
static TSqlDatabase_NotCreated_LastErrorMessage TheSqlDatabase_NotCreated_LastErrorMessage;
sl@0
   189
sl@0
   190
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   191
//Panic when calling RSqlDatabase::LastInsertedRowId() on an invalid RSqlDatabase object.
sl@0
   192
class TSqlDatabase_NotCreated_LastInsertedRowId : public TFunctor
sl@0
   193
	{
sl@0
   194
private:		
sl@0
   195
	virtual void operator()()
sl@0
   196
		{
sl@0
   197
		RSqlDatabase db;
sl@0
   198
		db.LastInsertedRowId();//panic here
sl@0
   199
		}
sl@0
   200
	};
sl@0
   201
static TSqlDatabase_NotCreated_LastInsertedRowId TheSqlDatabase_NotCreated_LastInsertedRowId;
sl@0
   202
sl@0
   203
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   204
//Panic when calling RSqlDatabase::Size() on an invalid RSqlDatabase object.
sl@0
   205
class TSqlDatabase_NotCreated_Size : public TFunctor
sl@0
   206
	{
sl@0
   207
private:		
sl@0
   208
	virtual void operator()()
sl@0
   209
		{
sl@0
   210
		RSqlDatabase db;
sl@0
   211
		(void)db.Size();//panic here
sl@0
   212
		}
sl@0
   213
	};
sl@0
   214
static TSqlDatabase_NotCreated_Size TheSqlDatabase_NotCreated_Size;
sl@0
   215
sl@0
   216
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   217
//Panic when calling RSqlDatabase::Size(TSize&) on an invalid RSqlDatabase object.
sl@0
   218
class TSqlDatabase_NotCreated_Size2 : public TFunctor
sl@0
   219
	{
sl@0
   220
private:		
sl@0
   221
	virtual void operator()()
sl@0
   222
		{
sl@0
   223
		RSqlDatabase db;
sl@0
   224
		RSqlDatabase::TSize size;
sl@0
   225
		(void)db.Size(size);//panic here
sl@0
   226
		}
sl@0
   227
	};
sl@0
   228
static TSqlDatabase_NotCreated_Size2 TheSqlDatabase_NotCreated_Size2;
sl@0
   229
sl@0
   230
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   231
//Panic when calling RSqlDatabase::InTransaction() on an invalid RSqlDatabase object.
sl@0
   232
class TSqlDatabase_NotCreated_InTransaction : public TFunctor
sl@0
   233
	{
sl@0
   234
private:		
sl@0
   235
	virtual void operator()()
sl@0
   236
		{
sl@0
   237
		RSqlDatabase db;
sl@0
   238
		(void)db.InTransaction();//panic here
sl@0
   239
		}
sl@0
   240
	};
sl@0
   241
static TSqlDatabase_NotCreated_InTransaction TheSqlDatabase_NotCreated_InTransaction;
sl@0
   242
sl@0
   243
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   244
//Panic when calling RSqlDatabase::Attach() on an invalid RSqlDatabase object.
sl@0
   245
class TSqlDatabase_NotCreated_Attach : public TFunctor
sl@0
   246
	{
sl@0
   247
private:		
sl@0
   248
	virtual void operator()()
sl@0
   249
		{
sl@0
   250
		RSqlDatabase db;
sl@0
   251
		db.Attach(_L("C:\\TEST\\A.DB"), _L("A"));//panic here
sl@0
   252
		}
sl@0
   253
	};
sl@0
   254
static TSqlDatabase_NotCreated_Attach TheSqlDatabase_NotCreated_Attach;
sl@0
   255
sl@0
   256
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   257
//Panic when calling RSqlDatabase::Detach() on an invalid RSqlDatabase object.
sl@0
   258
class TSqlDatabase_NotCreated_Detach : public TFunctor
sl@0
   259
	{
sl@0
   260
private:		
sl@0
   261
	virtual void operator()()
sl@0
   262
		{
sl@0
   263
		RSqlDatabase db;
sl@0
   264
		db.Detach(_L("A"));//panic here
sl@0
   265
		}
sl@0
   266
	};
sl@0
   267
static TSqlDatabase_NotCreated_Detach TheSqlDatabase_NotCreated_Detach;
sl@0
   268
sl@0
   269
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   270
//Panic when calling RSqlDatabase::Compact() on an invalid RSqlDatabase object.
sl@0
   271
class TSqlDatabase_NotCreated_Compact : public TFunctor
sl@0
   272
	{
sl@0
   273
private:		
sl@0
   274
	virtual void operator()()
sl@0
   275
		{
sl@0
   276
		RSqlDatabase db;
sl@0
   277
		db.Compact(2048);//panic here
sl@0
   278
		}
sl@0
   279
	};
sl@0
   280
static TSqlDatabase_NotCreated_Compact TheSqlDatabase_NotCreated_Compact;
sl@0
   281
sl@0
   282
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   283
//Panic when calling async RSqlDatabase::Compact() on an invalid RSqlDatabase object.
sl@0
   284
class TSqlDatabase_NotCreated_Compact2 : public TFunctor
sl@0
   285
	{
sl@0
   286
private:		
sl@0
   287
	virtual void operator()()
sl@0
   288
		{
sl@0
   289
		RSqlDatabase db;
sl@0
   290
		TRequestStatus stat;
sl@0
   291
		db.Compact(2048, stat);//panic here
sl@0
   292
		}
sl@0
   293
	};
sl@0
   294
static TSqlDatabase_NotCreated_Compact2 TheSqlDatabase_NotCreated_Compact2;
sl@0
   295
sl@0
   296
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   297
//Panic when calling RSqlStatement::Reset() on an invalid RSqlStatement object.
sl@0
   298
class TSqlStatement_NotCreated_Reset : public TFunctor
sl@0
   299
	{
sl@0
   300
private:		
sl@0
   301
	virtual void operator()()
sl@0
   302
		{
sl@0
   303
		RSqlStatement stmt;
sl@0
   304
		stmt.Reset();//panic here
sl@0
   305
		}
sl@0
   306
	};
sl@0
   307
static TSqlStatement_NotCreated_Reset TheSqlStatement_NotCreated_Reset;
sl@0
   308
sl@0
   309
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   310
//Panic when calling RSqlStatement::Exec() on an invalid RSqlStatement object.
sl@0
   311
class TSqlStatement_NotCreated_Exec : public TFunctor
sl@0
   312
	{
sl@0
   313
private:		
sl@0
   314
	virtual void operator()()
sl@0
   315
		{
sl@0
   316
		RSqlStatement stmt;
sl@0
   317
		stmt.Exec();//panic here
sl@0
   318
		}
sl@0
   319
	};
sl@0
   320
static TSqlStatement_NotCreated_Exec TheSqlStatement_NotCreated_Exec;
sl@0
   321
sl@0
   322
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   323
//Panic when calling RSqlStatement::Next() on an invalid RSqlStatement object.
sl@0
   324
class TSqlStatement_NotCreated_Next : public TFunctor
sl@0
   325
	{
sl@0
   326
private:		
sl@0
   327
	virtual void operator()()
sl@0
   328
		{
sl@0
   329
		RSqlStatement stmt;
sl@0
   330
		stmt.Next();//panic here
sl@0
   331
		}
sl@0
   332
	};
sl@0
   333
static TSqlStatement_NotCreated_Next TheSqlStatement_NotCreated_Next;
sl@0
   334
sl@0
   335
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   336
//Panic when calling RSqlStatement::ParameterIndex() on an invalid RSqlStatement object.
sl@0
   337
class TSqlStatement_NotCreated_ParameterIndex : public TFunctor
sl@0
   338
	{
sl@0
   339
private:		
sl@0
   340
	virtual void operator()()
sl@0
   341
		{
sl@0
   342
		RSqlStatement stmt;
sl@0
   343
		stmt.ParameterIndex(_L("ABV"));//panic here
sl@0
   344
		}
sl@0
   345
	};
sl@0
   346
static TSqlStatement_NotCreated_ParameterIndex TheSqlStatement_NotCreated_ParameterIndex;
sl@0
   347
sl@0
   348
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   349
//Panic when calling RSqlStatement::ColumnIndex() on an invalid RSqlStatement object.
sl@0
   350
class TSqlStatement_NotCreated_ColumnIndex : public TFunctor
sl@0
   351
	{
sl@0
   352
private:		
sl@0
   353
	virtual void operator()()
sl@0
   354
		{
sl@0
   355
		RSqlStatement stmt;
sl@0
   356
		stmt.ColumnIndex(_L("ABV"));//panic here
sl@0
   357
		}
sl@0
   358
	};
sl@0
   359
static TSqlStatement_NotCreated_ColumnIndex TheSqlStatement_NotCreated_ColumnIndex;
sl@0
   360
sl@0
   361
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   362
//Panic when calling RSqlStatement::ColumnType() on an invalid RSqlStatement object.
sl@0
   363
class TSqlStatement_NotCreated_ColumnType : public TFunctor
sl@0
   364
	{
sl@0
   365
private:		
sl@0
   366
	virtual void operator()()
sl@0
   367
		{
sl@0
   368
		RSqlStatement stmt;
sl@0
   369
		stmt.ColumnType(1);//panic here
sl@0
   370
		}
sl@0
   371
	};
sl@0
   372
static TSqlStatement_NotCreated_ColumnType TheSqlStatement_NotCreated_ColumnType;
sl@0
   373
	
sl@0
   374
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   375
//Panic when calling RSqlStatement::ColumnSize() on an invalid RSqlStatement object.
sl@0
   376
class TSqlStatement_NotCreated_ColumnSize : public TFunctor
sl@0
   377
	{
sl@0
   378
private:		
sl@0
   379
	virtual void operator()()
sl@0
   380
		{
sl@0
   381
		RSqlStatement stmt;
sl@0
   382
		stmt.ColumnSize(1);//panic here
sl@0
   383
		}
sl@0
   384
	};
sl@0
   385
static TSqlStatement_NotCreated_ColumnSize TheSqlStatement_NotCreated_ColumnSize;
sl@0
   386
	
sl@0
   387
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   388
//Panic when calling RSqlStatement::BindNull() on an invalid RSqlStatement object.
sl@0
   389
class TSqlStatement_NotCreated_BindNull : public TFunctor
sl@0
   390
	{
sl@0
   391
private:		
sl@0
   392
	virtual void operator()()
sl@0
   393
		{
sl@0
   394
		RSqlStatement stmt;
sl@0
   395
		stmt.BindNull(1);//panic here
sl@0
   396
		}
sl@0
   397
	};
sl@0
   398
static TSqlStatement_NotCreated_BindNull TheSqlStatement_NotCreated_BindNull;
sl@0
   399
	
sl@0
   400
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   401
//Panic when calling RSqlStatement::BindInt() on an invalid RSqlStatement object.
sl@0
   402
class TSqlStatement_NotCreated_BindInt : public TFunctor
sl@0
   403
	{
sl@0
   404
private:		
sl@0
   405
	virtual void operator()()
sl@0
   406
		{
sl@0
   407
		RSqlStatement stmt;
sl@0
   408
		stmt.BindInt(1, 2);//panic here
sl@0
   409
		}
sl@0
   410
	};
sl@0
   411
static TSqlStatement_NotCreated_BindInt TheSqlStatement_NotCreated_BindInt;
sl@0
   412
	
sl@0
   413
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   414
//Panic when calling RSqlStatement::BindInt64() on an invalid RSqlStatement object.
sl@0
   415
class TSqlStatement_NotCreated_BindInt64 : public TFunctor
sl@0
   416
	{
sl@0
   417
private:		
sl@0
   418
	virtual void operator()()
sl@0
   419
		{
sl@0
   420
		RSqlStatement stmt;
sl@0
   421
		stmt.BindInt64(1, TInt64(2));//panic here
sl@0
   422
		}
sl@0
   423
	};
sl@0
   424
static TSqlStatement_NotCreated_BindInt64 TheSqlStatement_NotCreated_BindInt64;
sl@0
   425
	
sl@0
   426
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   427
//Panic when calling RSqlStatement::BindReal() on an invalid RSqlStatement object.
sl@0
   428
class TSqlStatement_NotCreated_BindReal : public TFunctor
sl@0
   429
	{
sl@0
   430
private:		
sl@0
   431
	virtual void operator()()
sl@0
   432
		{
sl@0
   433
		RSqlStatement stmt;
sl@0
   434
		stmt.BindReal(1, 2.5);//panic here
sl@0
   435
		}
sl@0
   436
	};
sl@0
   437
static TSqlStatement_NotCreated_BindReal TheSqlStatement_NotCreated_BindReal;
sl@0
   438
	
sl@0
   439
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   440
//Panic when calling RSqlStatement::BindText() on an invalid RSqlStatement object.
sl@0
   441
class TSqlStatement_NotCreated_BindText : public TFunctor
sl@0
   442
	{
sl@0
   443
private:		
sl@0
   444
	virtual void operator()()
sl@0
   445
		{
sl@0
   446
		RSqlStatement stmt;
sl@0
   447
		stmt.BindText(1, _L("ABV"));//panic here
sl@0
   448
		}
sl@0
   449
	};
sl@0
   450
static TSqlStatement_NotCreated_BindText TheSqlStatement_NotCreated_BindText;
sl@0
   451
	
sl@0
   452
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   453
//Panic when calling RSqlStatement::BindBinary() on an invalid RSqlStatement object.
sl@0
   454
class TSqlStatement_NotCreated_BindBinary : public TFunctor
sl@0
   455
	{
sl@0
   456
private:		
sl@0
   457
	virtual void operator()()
sl@0
   458
		{
sl@0
   459
		RSqlStatement stmt;
sl@0
   460
		stmt.BindBinary(1, _L8("ABV"));//panic here
sl@0
   461
		}
sl@0
   462
	};
sl@0
   463
static TSqlStatement_NotCreated_BindBinary TheSqlStatement_NotCreated_BindBinary;
sl@0
   464
	
sl@0
   465
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   466
//Panic when calling RSqlStatement::BindZeroBlob() on an invalid RSqlStatement object.
sl@0
   467
class TSqlStatement_NotCreated_BindZeroBlob : public TFunctor
sl@0
   468
	{
sl@0
   469
private:		
sl@0
   470
	virtual void operator()()
sl@0
   471
		{
sl@0
   472
		RSqlStatement stmt;
sl@0
   473
		stmt.BindZeroBlob(1, 100);//panic here
sl@0
   474
		}
sl@0
   475
	};
sl@0
   476
static TSqlStatement_NotCreated_BindZeroBlob TheSqlStatement_NotCreated_BindZeroBlob;
sl@0
   477
sl@0
   478
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   479
//Panic when an attempt is made to call RSqlStatement::BindZeroBlob() giving an invalid parameter index.
sl@0
   480
class TSqlStatement_OutOfBounds_BindZeroBlob : public TFunctor
sl@0
   481
	{
sl@0
   482
private:		
sl@0
   483
	virtual void operator()()
sl@0
   484
		{
sl@0
   485
		RSqlDatabase db;
sl@0
   486
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   487
		TEST2(db.Exec(_L8("CREATE TABLE D(A INTEGER, B BLOB)")), 1);
sl@0
   488
		RSqlStatement stmt;
sl@0
   489
		TEST2(stmt.Prepare(db, _L8("INSERT INTO D VALUES(1, :Prm1)")), KErrNone);
sl@0
   490
		stmt.BindZeroBlob(12, 100);//panic here
sl@0
   491
		stmt.Close();
sl@0
   492
		db.Close();
sl@0
   493
		}
sl@0
   494
	};
sl@0
   495
static TSqlStatement_OutOfBounds_BindZeroBlob TheSqlStatement_OutOfBounds_BindZeroBlob;
sl@0
   496
	
sl@0
   497
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   498
//Panic when calling RSqlStatement::IsNull() on an invalid RSqlStatement object.
sl@0
   499
class TSqlStatement_NotCreated_IsNull : public TFunctor
sl@0
   500
	{
sl@0
   501
private:		
sl@0
   502
	virtual void operator()()
sl@0
   503
		{
sl@0
   504
		RSqlStatement stmt;
sl@0
   505
		stmt.IsNull(1);//panic here
sl@0
   506
		}
sl@0
   507
	};
sl@0
   508
static TSqlStatement_NotCreated_IsNull TheSqlStatement_NotCreated_IsNull;
sl@0
   509
	
sl@0
   510
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   511
//Panic when calling RSqlStatement::ColumnInt() on an invalid RSqlStatement object.
sl@0
   512
class TSqlStatement_NotCreated_ColumnInt : public TFunctor
sl@0
   513
	{
sl@0
   514
private:		
sl@0
   515
	virtual void operator()()
sl@0
   516
		{
sl@0
   517
		RSqlStatement stmt;
sl@0
   518
		stmt.ColumnInt(1);//panic here
sl@0
   519
		}
sl@0
   520
	};
sl@0
   521
static TSqlStatement_NotCreated_ColumnInt TheSqlStatement_NotCreated_ColumnInt;
sl@0
   522
	
sl@0
   523
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   524
//Panic when calling RSqlStatement::ColumnInt64() on an invalid RSqlStatement object.
sl@0
   525
class TSqlStatement_NotCreated_ColumnInt64 : public TFunctor
sl@0
   526
	{
sl@0
   527
private:		
sl@0
   528
	virtual void operator()()
sl@0
   529
		{
sl@0
   530
		RSqlStatement stmt;
sl@0
   531
		stmt.ColumnInt64(1);//panic here
sl@0
   532
		}
sl@0
   533
	};
sl@0
   534
static TSqlStatement_NotCreated_ColumnInt64 TheSqlStatement_NotCreated_ColumnInt64;
sl@0
   535
	
sl@0
   536
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   537
//Panic when calling RSqlStatement::ColumnReal() on an invalid RSqlStatement object.
sl@0
   538
class TSqlStatement_NotCreated_ColumnReal : public TFunctor
sl@0
   539
	{
sl@0
   540
private:		
sl@0
   541
	virtual void operator()()
sl@0
   542
		{
sl@0
   543
		RSqlStatement stmt;
sl@0
   544
		stmt.ColumnReal(1);//panic here
sl@0
   545
		}
sl@0
   546
	};
sl@0
   547
static TSqlStatement_NotCreated_ColumnReal TheSqlStatement_NotCreated_ColumnReal;
sl@0
   548
	
sl@0
   549
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   550
//Panic when calling RSqlStatement::ColumnText() on an invalid RSqlStatement object.
sl@0
   551
class TSqlStatement_NotCreated_ColumnText : public TFunctor
sl@0
   552
	{
sl@0
   553
private:		
sl@0
   554
	virtual void operator()()
sl@0
   555
		{
sl@0
   556
		RSqlStatement stmt;
sl@0
   557
		TPtrC ptr;
sl@0
   558
		(void)stmt.ColumnText(1, ptr);//panic here
sl@0
   559
		}
sl@0
   560
	};
sl@0
   561
static TSqlStatement_NotCreated_ColumnText TheSqlStatement_NotCreated_ColumnText;
sl@0
   562
	
sl@0
   563
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   564
//Panic when calling RSqlStatement::ColumnText() on an invalid RSqlStatement object.
sl@0
   565
class TSqlStatement_NotCreated_ColumnText2 : public TFunctor
sl@0
   566
	{
sl@0
   567
private:		
sl@0
   568
	virtual void operator()()
sl@0
   569
		{
sl@0
   570
		RSqlStatement stmt;
sl@0
   571
		TBuf<10> buf;
sl@0
   572
		stmt.ColumnText(1, buf);//panic here
sl@0
   573
		}
sl@0
   574
	};
sl@0
   575
static TSqlStatement_NotCreated_ColumnText2 TheSqlStatement_NotCreated_ColumnText2;
sl@0
   576
	
sl@0
   577
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   578
//Panic when calling RSqlStatement::ColumnBinary() on an invalid RSqlStatement object.
sl@0
   579
class TSqlStatement_NotCreated_ColumnBinary : public TFunctor
sl@0
   580
	{
sl@0
   581
private:		
sl@0
   582
	virtual void operator()()
sl@0
   583
		{
sl@0
   584
		RSqlStatement stmt;
sl@0
   585
		TPtrC8 ptr;
sl@0
   586
		(void)stmt.ColumnBinary(1, ptr);//panic here
sl@0
   587
		}
sl@0
   588
	};
sl@0
   589
static TSqlStatement_NotCreated_ColumnBinary TheSqlStatement_NotCreated_ColumnBinary;
sl@0
   590
	
sl@0
   591
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   592
//Panic when calling RSqlStatement::ColumnBinary() on an invalid RSqlStatement object.
sl@0
   593
class TSqlStatement_NotCreated_ColumnBinary2 : public TFunctor
sl@0
   594
	{
sl@0
   595
private:		
sl@0
   596
	virtual void operator()()
sl@0
   597
		{
sl@0
   598
		RSqlStatement stmt;
sl@0
   599
		TBuf8<10> buf;
sl@0
   600
		stmt.ColumnBinary(1, buf);//panic here
sl@0
   601
		}
sl@0
   602
	};
sl@0
   603
static TSqlStatement_NotCreated_ColumnBinary2 TheSqlStatement_NotCreated_ColumnBinary2;
sl@0
   604
	
sl@0
   605
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   606
//Panic when calling RSqlStatement::Prepare() giving an invalid RSqlDatabase object.
sl@0
   607
class TSqlStatement_DbNotCreated_Prepare : public TFunctor
sl@0
   608
	{
sl@0
   609
private:		
sl@0
   610
	virtual void operator()()
sl@0
   611
		{
sl@0
   612
		RSqlDatabase db;
sl@0
   613
		RSqlStatement stmt;
sl@0
   614
		stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)"));//panic here
sl@0
   615
		}
sl@0
   616
	};
sl@0
   617
static TSqlStatement_DbNotCreated_Prepare TheSqlStatement_DbNotCreated_Prepare;
sl@0
   618
	
sl@0
   619
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   620
//Panic when calling RSqlStatement::Prepare() giving an invalid RSqlDatabase object.
sl@0
   621
class TSqlStatement_DbNotCreated_Prepare8 : public TFunctor
sl@0
   622
	{
sl@0
   623
private:		
sl@0
   624
	virtual void operator()()
sl@0
   625
		{
sl@0
   626
		RSqlDatabase db;
sl@0
   627
		RSqlStatement stmt;
sl@0
   628
		stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)"));//panic here
sl@0
   629
		}
sl@0
   630
	};
sl@0
   631
static TSqlStatement_DbNotCreated_Prepare8 TheSqlStatement_DbNotCreated_Prepare8;
sl@0
   632
sl@0
   633
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   634
/*
sl@0
   635
//Panic when an attempt is made to call RSqlStatement::Prepare() twice on the same RSqlStatement object.
sl@0
   636
class TSqlStatement_CreateTwice : public TFunctor
sl@0
   637
	{
sl@0
   638
private:		
sl@0
   639
	virtual void operator()()
sl@0
   640
		{
sl@0
   641
		RSqlDatabase db;
sl@0
   642
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   643
		RSqlStatement stmt;
sl@0
   644
		TEST2(stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)")), KErrNone);
sl@0
   645
		stmt.Prepare(db, _L("CREATE TABLE A(d INTEGER)"));//panic here
sl@0
   646
		stmt.Close();
sl@0
   647
		db.Close();
sl@0
   648
		}
sl@0
   649
	};
sl@0
   650
static TSqlStatement_CreateTwice TheSqlStatement_CreateTwice;
sl@0
   651
		
sl@0
   652
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   653
//Panic when an attempt is made to call RSqlStatement::Prepare() twice on the same RSqlStatement object.
sl@0
   654
class TSqlStatement_CreateTwice8 : public TFunctor
sl@0
   655
	{
sl@0
   656
private:		
sl@0
   657
	virtual void operator()()
sl@0
   658
		{
sl@0
   659
		RSqlDatabase db;
sl@0
   660
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   661
		RSqlStatement stmt;
sl@0
   662
		TEST2(stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)")), KErrNone);
sl@0
   663
		stmt.Prepare(db, _L8("CREATE TABLE A(d INTEGER)"));//panic here
sl@0
   664
		stmt.Close();
sl@0
   665
		db.Close();
sl@0
   666
		}
sl@0
   667
	};
sl@0
   668
static TSqlStatement_CreateTwice8 TheSqlStatement_CreateTwice8;
sl@0
   669
*/		
sl@0
   670
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   671
//Panic when an attempt is made to call RSqlStatement::ColumnType() giving an invalid column index.
sl@0
   672
class TSqlStatement_OutOfBounds_ColumnType : public TFunctor
sl@0
   673
	{
sl@0
   674
private:		
sl@0
   675
	virtual void operator()()
sl@0
   676
		{
sl@0
   677
		RSqlDatabase db;
sl@0
   678
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   679
		TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
sl@0
   680
		RSqlStatement stmt;
sl@0
   681
		TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
sl@0
   682
		stmt.ColumnType(12);//panic here
sl@0
   683
		stmt.Close();
sl@0
   684
		db.Close();
sl@0
   685
		}
sl@0
   686
	};
sl@0
   687
static TSqlStatement_OutOfBounds_ColumnType TheSqlStatement_OutOfBounds_ColumnType;
sl@0
   688
		
sl@0
   689
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   690
//Panic when an attempt is made to call RSqlStatement::ColumnSize() giving an invalid column index.
sl@0
   691
class TSqlStatement_OutOfBounds_ColumnSize : public TFunctor
sl@0
   692
	{
sl@0
   693
private:		
sl@0
   694
	virtual void operator()()
sl@0
   695
		{
sl@0
   696
		RSqlDatabase db;
sl@0
   697
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   698
		TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
sl@0
   699
		RSqlStatement stmt;
sl@0
   700
		TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
sl@0
   701
		stmt.ColumnSize(-25);//panic here
sl@0
   702
		stmt.Close();
sl@0
   703
		db.Close();
sl@0
   704
		}
sl@0
   705
	};
sl@0
   706
static TSqlStatement_OutOfBounds_ColumnSize TheSqlStatement_OutOfBounds_ColumnSize;
sl@0
   707
		
sl@0
   708
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   709
//Panic when an attempt is made to call RSqlStatement::BindNull() giving an invalid parameter index.
sl@0
   710
class TSqlStatement_OutOfBounds_Bind : public TFunctor
sl@0
   711
	{
sl@0
   712
private:		
sl@0
   713
	virtual void operator()()
sl@0
   714
		{
sl@0
   715
		RSqlDatabase db;
sl@0
   716
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   717
		TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
sl@0
   718
		RSqlStatement stmt;
sl@0
   719
		TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D WHERE A = :V")), KErrNone);
sl@0
   720
		stmt.BindNull(2);//panic here
sl@0
   721
		stmt.Close();
sl@0
   722
		db.Close();
sl@0
   723
		}
sl@0
   724
	};
sl@0
   725
static TSqlStatement_OutOfBounds_Bind TheSqlStatement_OutOfBounds_Bind;
sl@0
   726
		
sl@0
   727
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   728
//Panic when an attempt is made to call RSqlStatement::ColumnInt() giving an invalid column index.
sl@0
   729
class TSqlStatement_OutOfBounds_ColumnValue : public TFunctor
sl@0
   730
	{
sl@0
   731
private:		
sl@0
   732
	virtual void operator()()
sl@0
   733
		{
sl@0
   734
		RSqlDatabase db;
sl@0
   735
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   736
		TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
sl@0
   737
		RSqlStatement stmt;
sl@0
   738
		TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
sl@0
   739
		stmt.ColumnInt(56);//panic here
sl@0
   740
		stmt.Close();
sl@0
   741
		db.Close();
sl@0
   742
		}
sl@0
   743
	};
sl@0
   744
static TSqlStatement_OutOfBounds_ColumnValue TheSqlStatement_OutOfBounds_ColumnValue;
sl@0
   745
sl@0
   746
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   747
//Panic when calling RSqlStatement::ColumnCount() on an invalid RSqlStatement object.
sl@0
   748
class TSqlStatement_NotCreated_ColumnCount : public TFunctor
sl@0
   749
	{
sl@0
   750
private:		
sl@0
   751
	virtual void operator()()
sl@0
   752
		{
sl@0
   753
		RSqlStatement stmt;
sl@0
   754
		stmt.ColumnCount();//panic here
sl@0
   755
		}
sl@0
   756
	};
sl@0
   757
static TSqlStatement_NotCreated_ColumnCount TheSqlStatement_NotCreated_ColumnCount;
sl@0
   758
		
sl@0
   759
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   760
//Panic when calling RSqlStatement::DeclaredColumnType() on an invalid RSqlStatement object.
sl@0
   761
class TSqlStatement_NotCreated_DeclaredColumnType : public TFunctor
sl@0
   762
	{
sl@0
   763
private:		
sl@0
   764
	virtual void operator()()
sl@0
   765
		{
sl@0
   766
		RSqlStatement stmt;
sl@0
   767
		TSqlColumnType colType;
sl@0
   768
		stmt.DeclaredColumnType(0, colType);//panic here
sl@0
   769
		}
sl@0
   770
	};
sl@0
   771
static TSqlStatement_NotCreated_DeclaredColumnType TheSqlStatement_NotCreated_DeclaredColumnType;
sl@0
   772
sl@0
   773
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   774
//Panic when an attempt is made to call RSqlStatement::DeclaredColumnType() giving an invalid column index.
sl@0
   775
class TSqlStatement_OutOfBounds_DeclaredColumnType : public TFunctor
sl@0
   776
	{
sl@0
   777
private:		
sl@0
   778
	virtual void operator()()
sl@0
   779
		{
sl@0
   780
		RSqlDatabase db;
sl@0
   781
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   782
		TEST(db.Exec(_L8("CREATE TABLE D(A INTEGER, B INTEGER, C INTEGER)")) >= 0);
sl@0
   783
		RSqlStatement stmt;
sl@0
   784
		TEST2(stmt.Prepare(db, _L8("SELECT A, B, C FROM D")), KErrNone);
sl@0
   785
		TSqlColumnType colType;
sl@0
   786
		stmt.DeclaredColumnType(8, colType);//panic here
sl@0
   787
		stmt.Close();
sl@0
   788
		db.Close();
sl@0
   789
		}
sl@0
   790
	};
sl@0
   791
static TSqlStatement_OutOfBounds_DeclaredColumnType TheSqlStatement_OutOfBounds_DeclaredColumnType;
sl@0
   792
		
sl@0
   793
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   794
//Panic when an attempt is made to call RSqlStatement::ColumnName() on an invalid RSqlStatement object.
sl@0
   795
class TSqlStatement_NotCreated_ColumnName : public TFunctor
sl@0
   796
	{
sl@0
   797
private:		
sl@0
   798
	virtual void operator()()
sl@0
   799
		{
sl@0
   800
		RSqlDatabase db;
sl@0
   801
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   802
		RSqlStatement stmt;
sl@0
   803
		TPtrC columnName;
sl@0
   804
		(void)stmt.ColumnName(0, columnName);//panic here
sl@0
   805
		stmt.Close();
sl@0
   806
		db.Close();
sl@0
   807
		}
sl@0
   808
	};
sl@0
   809
static TSqlStatement_NotCreated_ColumnName TheSqlStatement_NotCreated_ColumnName;
sl@0
   810
		
sl@0
   811
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   812
//Panic when an attempt is made to call RSqlStatement::ParameterName() on an invalid RSqlStatement object.
sl@0
   813
class TSqlStatement_NotCreated_ParameterName : public TFunctor
sl@0
   814
	{
sl@0
   815
private:		
sl@0
   816
	virtual void operator()()
sl@0
   817
		{
sl@0
   818
		RSqlDatabase db;
sl@0
   819
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   820
		RSqlStatement stmt;
sl@0
   821
		TPtrC parameterName;
sl@0
   822
		(void)stmt.ParameterName(0, parameterName);//panic here
sl@0
   823
		stmt.Close();
sl@0
   824
		db.Close();
sl@0
   825
		}
sl@0
   826
	};
sl@0
   827
static TSqlStatement_NotCreated_ParameterName TheSqlStatement_NotCreated_ParameterName;
sl@0
   828
sl@0
   829
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   830
//Panic when an attempt is made to call RSqlStatement::ParamName() on an invalid RSqlStatement object.
sl@0
   831
class TSqlStatement_NotCreated_ParamName : public TFunctor
sl@0
   832
	{
sl@0
   833
private:		
sl@0
   834
	virtual void operator()()
sl@0
   835
		{
sl@0
   836
		RSqlDatabase db;
sl@0
   837
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   838
		RSqlStatement stmt;
sl@0
   839
		TPtrC paramName;
sl@0
   840
		(void)stmt.ParamName(0, paramName);//panic here
sl@0
   841
		stmt.Close();
sl@0
   842
		db.Close();
sl@0
   843
		}
sl@0
   844
	};
sl@0
   845
static TSqlStatement_NotCreated_ParamName TheSqlStatement_NotCreated_ParamName;
sl@0
   846
		
sl@0
   847
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   848
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() with an invalid RSqlStatement object.
sl@0
   849
class TColumnReadStream_ColumnText_Statement : public TFunctor
sl@0
   850
	{
sl@0
   851
private:		
sl@0
   852
	virtual void operator()()
sl@0
   853
		{
sl@0
   854
		RSqlStatement stmt;
sl@0
   855
		RSqlColumnReadStream strm;
sl@0
   856
		strm.ColumnText(stmt, 0);//panic here
sl@0
   857
		strm.Close();
sl@0
   858
		}
sl@0
   859
	};
sl@0
   860
static TColumnReadStream_ColumnText_Statement TheColumnReadStream_ColumnText_Statement;
sl@0
   861
		
sl@0
   862
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   863
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() with an invalid RSqlStatement object.
sl@0
   864
class TColumnReadStream_ColumnBinary_Statement : public TFunctor
sl@0
   865
	{
sl@0
   866
private:		
sl@0
   867
	virtual void operator()()
sl@0
   868
		{
sl@0
   869
		RSqlStatement stmt;
sl@0
   870
		RSqlColumnReadStream strm;
sl@0
   871
		strm.ColumnBinary(stmt, 0);//panic here
sl@0
   872
		strm.Close();
sl@0
   873
		}
sl@0
   874
	};
sl@0
   875
static TColumnReadStream_ColumnBinary_Statement TheColumnReadStream_ColumnBinary_Statement;
sl@0
   876
		
sl@0
   877
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   878
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() with an invalid column index.
sl@0
   879
class TColumnReadStream_ColumnText_Column : public TFunctor
sl@0
   880
	{
sl@0
   881
private:		
sl@0
   882
	virtual void operator()()
sl@0
   883
		{
sl@0
   884
		RSqlDatabase db;
sl@0
   885
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   886
		TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
sl@0
   887
		
sl@0
   888
		RSqlStatement stmt;
sl@0
   889
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
sl@0
   890
		
sl@0
   891
		RSqlColumnReadStream strm;
sl@0
   892
		strm.ColumnText(stmt, 8);//panic here
sl@0
   893
		
sl@0
   894
		strm.Close();
sl@0
   895
		stmt.Close();
sl@0
   896
		db.Close();
sl@0
   897
		}
sl@0
   898
	};
sl@0
   899
static TColumnReadStream_ColumnText_Column TheColumnReadStream_ColumnText_Column;
sl@0
   900
		
sl@0
   901
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   902
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() with an invalid column index.
sl@0
   903
class TColumnReadStream_ColumnBinary_Column : public TFunctor
sl@0
   904
	{
sl@0
   905
private:		
sl@0
   906
	virtual void operator()()
sl@0
   907
		{
sl@0
   908
		RSqlDatabase db;
sl@0
   909
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   910
		TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
sl@0
   911
		
sl@0
   912
		RSqlStatement stmt;
sl@0
   913
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
sl@0
   914
		
sl@0
   915
		RSqlColumnReadStream strm;
sl@0
   916
		strm.ColumnBinary(stmt, 3);//panic here
sl@0
   917
		
sl@0
   918
		strm.Close();
sl@0
   919
		stmt.Close();
sl@0
   920
		db.Close();
sl@0
   921
		}
sl@0
   922
	};
sl@0
   923
static TColumnReadStream_ColumnBinary_Column TheColumnReadStream_ColumnBinary_Column;
sl@0
   924
		
sl@0
   925
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   926
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnText() when the statement object is not at row.
sl@0
   927
class TColumnReadStream_ColumnText_AtRow : public TFunctor
sl@0
   928
	{
sl@0
   929
private:		
sl@0
   930
	virtual void operator()()
sl@0
   931
		{
sl@0
   932
		RSqlDatabase db;
sl@0
   933
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   934
		TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
sl@0
   935
		
sl@0
   936
		RSqlStatement stmt;
sl@0
   937
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
sl@0
   938
		
sl@0
   939
		RSqlColumnReadStream strm;
sl@0
   940
		strm.ColumnText(stmt, 0);//panic here
sl@0
   941
		
sl@0
   942
		strm.Close();
sl@0
   943
		stmt.Close();
sl@0
   944
		db.Close();
sl@0
   945
		}
sl@0
   946
	};
sl@0
   947
static TColumnReadStream_ColumnText_AtRow TheColumnReadStream_ColumnText_AtRow;
sl@0
   948
		
sl@0
   949
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   950
//Panic when an attempt is made to call RSqlColumnReadStream::ColumnBinary() when the statement object is not at row.
sl@0
   951
class TColumnReadStream_ColumnBinary_AtRow : public TFunctor
sl@0
   952
	{
sl@0
   953
private:		
sl@0
   954
	virtual void operator()()
sl@0
   955
		{
sl@0
   956
		RSqlDatabase db;
sl@0
   957
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
   958
		TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
sl@0
   959
		
sl@0
   960
		RSqlStatement stmt;
sl@0
   961
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D")), KErrNone);
sl@0
   962
		
sl@0
   963
		RSqlColumnReadStream strm;
sl@0
   964
		strm.ColumnBinary(stmt, 0);//panic here
sl@0
   965
		
sl@0
   966
		strm.Close();
sl@0
   967
		stmt.Close();
sl@0
   968
		db.Close();
sl@0
   969
		}
sl@0
   970
	};
sl@0
   971
static TColumnReadStream_ColumnBinary_AtRow TheColumnReadStream_ColumnBinary_AtRow;
sl@0
   972
		
sl@0
   973
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   974
//Panic when an attempt is made to call RSqlParamWriteStream::BindText() with an invalid RSqlStatement object.
sl@0
   975
class TParamWriteStream_BindText_Statement : public TFunctor
sl@0
   976
	{
sl@0
   977
private:		
sl@0
   978
	virtual void operator()()
sl@0
   979
		{
sl@0
   980
		RSqlStatement stmt;
sl@0
   981
		RSqlParamWriteStream strm;
sl@0
   982
		strm.BindText(stmt, 0);//panic here
sl@0
   983
		strm.Close();
sl@0
   984
		}
sl@0
   985
	};
sl@0
   986
static TParamWriteStream_BindText_Statement TheParamWriteStream_BindText_Statement;
sl@0
   987
		
sl@0
   988
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   989
//Panic when an attempt is made to call RSqlParamWriteStream::BindBinary() with an invalid RSqlStatement object.
sl@0
   990
class TParamWriteStream_BindBinary_Statement : public TFunctor
sl@0
   991
	{
sl@0
   992
private:		
sl@0
   993
	virtual void operator()()
sl@0
   994
		{
sl@0
   995
		RSqlStatement stmt;
sl@0
   996
		RSqlParamWriteStream strm;
sl@0
   997
		strm.BindBinary(stmt, 0);//panic here
sl@0
   998
		strm.Close();
sl@0
   999
		}
sl@0
  1000
	};
sl@0
  1001
static TParamWriteStream_BindBinary_Statement TheParamWriteStream_BindBinary_Statement;
sl@0
  1002
		
sl@0
  1003
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1004
//Panic when an attempt is made to call RSqlParamWriteStream::BindText() with an invalid parameter index.
sl@0
  1005
class TParamWriteStream_BindText_Column : public TFunctor
sl@0
  1006
	{
sl@0
  1007
private:		
sl@0
  1008
	virtual void operator()()
sl@0
  1009
		{
sl@0
  1010
		RSqlDatabase db;
sl@0
  1011
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
  1012
		TEST(db.Exec(_L8("CREATE TABLE D(A TEXT)")) >= 0);
sl@0
  1013
		
sl@0
  1014
		RSqlStatement stmt;
sl@0
  1015
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D WHERE A = :Val")), KErrNone);
sl@0
  1016
		
sl@0
  1017
		RSqlParamWriteStream strm;
sl@0
  1018
		strm.BindText(stmt, 8);//panic here
sl@0
  1019
		
sl@0
  1020
		strm.Close();
sl@0
  1021
		stmt.Close();
sl@0
  1022
		db.Close();
sl@0
  1023
		}
sl@0
  1024
	};
sl@0
  1025
static TParamWriteStream_BindText_Column TheParamWriteStream_BindText_Column;
sl@0
  1026
		
sl@0
  1027
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1028
//Panic when an attempt is made to call RSqlParamWriteStream::BindBinary() with an invalid parameter index.
sl@0
  1029
class TParamWriteStream_BindBinary_Column : public TFunctor
sl@0
  1030
	{
sl@0
  1031
private:		
sl@0
  1032
	virtual void operator()()
sl@0
  1033
		{
sl@0
  1034
		RSqlDatabase db;
sl@0
  1035
		TEST2(db.Create(KTestDbName), KErrNone);
sl@0
  1036
		TEST(db.Exec(_L8("CREATE TABLE D(A BLOB)")) >= 0);
sl@0
  1037
		
sl@0
  1038
		RSqlStatement stmt;
sl@0
  1039
		TEST2(stmt.Prepare(db, _L8("SELECT * FROM D WHERE A = :Val")), KErrNone);
sl@0
  1040
		
sl@0
  1041
		RSqlParamWriteStream strm;
sl@0
  1042
		strm.BindBinary(stmt, 3);//panic here
sl@0
  1043
		
sl@0
  1044
		strm.Close();
sl@0
  1045
		stmt.Close();
sl@0
  1046
		db.Close();
sl@0
  1047
		}
sl@0
  1048
	};
sl@0
  1049
static TParamWriteStream_BindBinary_Column TheParamWriteStream_BindBinary_Column;
sl@0
  1050
sl@0
  1051
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1052
//Panic when an attempt is made to call RSqlSecurityPolicy::DefaultPolicy() on an invalid object.
sl@0
  1053
class TSqlSecurity_DefaultPolicy : public TFunctor
sl@0
  1054
	{
sl@0
  1055
private:		
sl@0
  1056
	virtual void operator()()
sl@0
  1057
		{
sl@0
  1058
		RSqlSecurityPolicy securityPolicy;
sl@0
  1059
		TSecurityPolicy policy = securityPolicy.DefaultPolicy();//panic here
sl@0
  1060
		UNUSED_VAR(policy);
sl@0
  1061
		}
sl@0
  1062
	};
sl@0
  1063
static TSqlSecurity_DefaultPolicy TheSqlSecurity_DefaultPolicy;
sl@0
  1064
		
sl@0
  1065
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1066
//Panic when an attempt is made to call RSqlSecurityPolicy::SetDbPolicy() with an invalid policy type.
sl@0
  1067
class TSqlSecurity_Set1 : public TFunctor
sl@0
  1068
	{
sl@0
  1069
private:		
sl@0
  1070
	virtual void operator()()
sl@0
  1071
		{
sl@0
  1072
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1073
		RSqlSecurityPolicy securityPolicy;
sl@0
  1074
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1075
		TEST2(err, KErrNone);
sl@0
  1076
		RSqlSecurityPolicy::TPolicyType policyType = static_cast <RSqlSecurityPolicy::TPolicyType> (12345);
sl@0
  1077
		TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
sl@0
  1078
		securityPolicy.SetDbPolicy(policyType, policy);//panic here
sl@0
  1079
		securityPolicy.Close();
sl@0
  1080
		}
sl@0
  1081
	};
sl@0
  1082
static TSqlSecurity_Set1 TheSqlSecurity_Set1;
sl@0
  1083
		
sl@0
  1084
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1085
//Panic when an attempt is made to call RSqlSecurityPolicy::SetPolicy() with an invalid database object type.
sl@0
  1086
class TSqlSecurity_Set2 : public TFunctor
sl@0
  1087
	{
sl@0
  1088
private:		
sl@0
  1089
	virtual void operator()()
sl@0
  1090
		{
sl@0
  1091
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1092
		RSqlSecurityPolicy securityPolicy;
sl@0
  1093
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1094
		TEST2(err, KErrNone);
sl@0
  1095
		RSqlSecurityPolicy::TObjectType objectType = static_cast <RSqlSecurityPolicy::TObjectType> (-113);
sl@0
  1096
		TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
sl@0
  1097
		securityPolicy.SetPolicy(objectType, _L("ATbl"), RSqlSecurityPolicy::EWritePolicy, policy);//panic here
sl@0
  1098
		securityPolicy.Close();
sl@0
  1099
		}
sl@0
  1100
	};
sl@0
  1101
static TSqlSecurity_Set2 TheSqlSecurity_Set2;
sl@0
  1102
		
sl@0
  1103
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1104
//Panic when an attempt is made to call RSqlSecurityPolicy::SetPolicy() with an invalid database object name.
sl@0
  1105
class TSqlSecurity_Set3 : public TFunctor
sl@0
  1106
	{
sl@0
  1107
private:		
sl@0
  1108
	virtual void operator()()
sl@0
  1109
		{
sl@0
  1110
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1111
		RSqlSecurityPolicy securityPolicy;
sl@0
  1112
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1113
		TEST2(err, KErrNone);
sl@0
  1114
		TSecurityPolicy policy(TSecurityPolicy::EAlwaysFail);
sl@0
  1115
		securityPolicy.SetPolicy(RSqlSecurityPolicy::ETable, KNullDesC, RSqlSecurityPolicy::EReadPolicy, policy);//panic here
sl@0
  1116
		securityPolicy.Close();
sl@0
  1117
		}
sl@0
  1118
	};
sl@0
  1119
static TSqlSecurity_Set3 TheSqlSecurity_Set3;
sl@0
  1120
		
sl@0
  1121
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1122
//Panic when an attempt is made to call RSqlSecurityPolicy::DbPolicy() with an invalid policy type.
sl@0
  1123
class TSqlSecurity_Get1 : public TFunctor
sl@0
  1124
	{
sl@0
  1125
private:		
sl@0
  1126
	virtual void operator()()
sl@0
  1127
		{
sl@0
  1128
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1129
		RSqlSecurityPolicy securityPolicy;
sl@0
  1130
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1131
		TEST2(err, KErrNone);
sl@0
  1132
		RSqlSecurityPolicy::TPolicyType policyType = static_cast <RSqlSecurityPolicy::TPolicyType> (12345);
sl@0
  1133
		securityPolicy.DbPolicy(policyType);//panic here
sl@0
  1134
		securityPolicy.Close();
sl@0
  1135
		}
sl@0
  1136
	};
sl@0
  1137
static TSqlSecurity_Get1 TheSqlSecurity_Get1;
sl@0
  1138
		
sl@0
  1139
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1140
//Panic when an attempt is made to call RSqlSecurityPolicy::Policy() with an invalid database object type.
sl@0
  1141
class TSqlSecurity_Get2 : public TFunctor
sl@0
  1142
	{
sl@0
  1143
private:		
sl@0
  1144
	virtual void operator()()
sl@0
  1145
		{
sl@0
  1146
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1147
		RSqlSecurityPolicy securityPolicy;
sl@0
  1148
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1149
		TEST2(err, KErrNone);
sl@0
  1150
		RSqlSecurityPolicy::TObjectType objectType = static_cast <RSqlSecurityPolicy::TObjectType> (-113);
sl@0
  1151
		securityPolicy.Policy(objectType, _L("BTbl"), RSqlSecurityPolicy::EReadPolicy);//panic here
sl@0
  1152
		securityPolicy.Close();
sl@0
  1153
		}
sl@0
  1154
	};
sl@0
  1155
static TSqlSecurity_Get2 TheSqlSecurity_Get2;
sl@0
  1156
		
sl@0
  1157
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1158
//Panic when an attempt is made to call RSqlSecurityPolicy::Policy() with an invalid database object name.
sl@0
  1159
class TSqlSecurity_Get3 : public TFunctor
sl@0
  1160
	{
sl@0
  1161
private:		
sl@0
  1162
	virtual void operator()()
sl@0
  1163
		{
sl@0
  1164
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1165
		RSqlSecurityPolicy securityPolicy;
sl@0
  1166
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1167
		TEST2(err, KErrNone);
sl@0
  1168
		securityPolicy.Policy(RSqlSecurityPolicy::ETable, KNullDesC, RSqlSecurityPolicy::EWritePolicy);//panic here
sl@0
  1169
		securityPolicy.Close();
sl@0
  1170
		}
sl@0
  1171
	};
sl@0
  1172
static TSqlSecurity_Get3 TheSqlSecurity_Get3;
sl@0
  1173
		
sl@0
  1174
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1175
/*
sl@0
  1176
//Panic when an attempt is made to call RSqlSecurityPolicy::Create() on an already created object.
sl@0
  1177
class TSqlSecurity_CreateTwice : public TFunctor
sl@0
  1178
	{
sl@0
  1179
private:		
sl@0
  1180
	virtual void operator()()
sl@0
  1181
		{
sl@0
  1182
		TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  1183
		RSqlSecurityPolicy securityPolicy;
sl@0
  1184
		TInt err = securityPolicy.Create(defaultPolicy);
sl@0
  1185
		TEST2(err, KErrNone);
sl@0
  1186
		securityPolicy.Create(defaultPolicy);//panic here
sl@0
  1187
		securityPolicy.Close();
sl@0
  1188
		}
sl@0
  1189
	};
sl@0
  1190
static TSqlSecurity_CreateTwice TheSqlSecurity_CreateTwice;
sl@0
  1191
*/		
sl@0
  1192
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1193
//Panic when an attempt is made to call RSqlSecurityPolicy::ExternalizeL() on an invalid object.
sl@0
  1194
class TSqlSecurity_Externalize : public TFunctor
sl@0
  1195
	{
sl@0
  1196
private:		
sl@0
  1197
	virtual void operator()()
sl@0
  1198
		{
sl@0
  1199
		RSqlSecurityPolicy securityPolicy;
sl@0
  1200
		RWriteStream stream;
sl@0
  1201
		TRAPD(err, securityPolicy.ExternalizeL(stream));//panic here
sl@0
  1202
		IGNORE_ERR(err);
sl@0
  1203
		}
sl@0
  1204
	};
sl@0
  1205
static TSqlSecurity_Externalize TheSqlSecurity_Externalize;
sl@0
  1206
		
sl@0
  1207
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1208
//Panic when an attempt is made to call TSqlScalarFullSelectQuery method and the database is not set.
sl@0
  1209
class TSqlScalarFullSelectQuery_InvalidDatabase : public TFunctor
sl@0
  1210
	{
sl@0
  1211
private:		
sl@0
  1212
	virtual void operator()()
sl@0
  1213
		{
sl@0
  1214
		TSqlScalarFullSelectQuery query;
sl@0
  1215
		TRAP_IGNORE((void)query.SelectIntL(_L("SELECT Id FROM A WHERE Name = 'AAA'")));
sl@0
  1216
		}
sl@0
  1217
	};
sl@0
  1218
static TSqlScalarFullSelectQuery_InvalidDatabase TheSqlScalarFullSelectQuery_InvalidDatabase;
sl@0
  1219
		
sl@0
  1220
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1221
//Panic when an attempt is made to call RSqlBlobReadStream::OpenL() with an invalid RSqlDatabase object.
sl@0
  1222
class TBlobReadStream_Open_Database1 : public TFunctor
sl@0
  1223
	{
sl@0
  1224
private:		
sl@0
  1225
	virtual void operator()()
sl@0
  1226
		{
sl@0
  1227
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1228
		
sl@0
  1229
		RSqlDatabase db;
sl@0
  1230
		RSqlBlobReadStream strm;
sl@0
  1231
		TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1));//panic here
sl@0
  1232
		strm.Close();
sl@0
  1233
		
sl@0
  1234
		delete tc;
sl@0
  1235
		}
sl@0
  1236
	};
sl@0
  1237
static TBlobReadStream_Open_Database1 TheBlobReadStream_Open_Database1;
sl@0
  1238
		
sl@0
  1239
class TBlobReadStream_Open_Database2 : public TFunctor
sl@0
  1240
	{
sl@0
  1241
private:		
sl@0
  1242
	virtual void operator()()
sl@0
  1243
		{
sl@0
  1244
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1245
		
sl@0
  1246
		RSqlDatabase db;
sl@0
  1247
		RSqlBlobReadStream strm;
sl@0
  1248
		TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1, _L("Db")));//panic here
sl@0
  1249
		strm.Close();
sl@0
  1250
		
sl@0
  1251
		delete tc;
sl@0
  1252
		}
sl@0
  1253
	};
sl@0
  1254
static TBlobReadStream_Open_Database2 TheBlobReadStream_Open_Database2;
sl@0
  1255
sl@0
  1256
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1257
//Panic when an attempt is made to call RSqlBlobReadStream::SizeL() on a unitialized RSqlBlobReadStream object.
sl@0
  1258
class TBlobReadStream_Size_Stream : public TFunctor
sl@0
  1259
	{
sl@0
  1260
private:		
sl@0
  1261
	virtual void operator()()
sl@0
  1262
		{
sl@0
  1263
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1264
		
sl@0
  1265
		RSqlBlobReadStream strm;
sl@0
  1266
		TRAP_IGNORE(strm.SizeL());//panic here
sl@0
  1267
		strm.Close();
sl@0
  1268
		
sl@0
  1269
		delete tc;
sl@0
  1270
		}
sl@0
  1271
	};
sl@0
  1272
TBlobReadStream_Size_Stream TheBlobReadStream_Size_Stream;
sl@0
  1273
sl@0
  1274
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1275
//Panic when an attempt is made to call RSqlBlobWriteStream::OpenL() with an invalid RSqlDatabase object.
sl@0
  1276
class TBlobWriteStream_Open_Database1 : public TFunctor
sl@0
  1277
	{
sl@0
  1278
private:		
sl@0
  1279
	virtual void operator()()
sl@0
  1280
		{
sl@0
  1281
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1282
		
sl@0
  1283
		RSqlDatabase db;
sl@0
  1284
		RSqlBlobWriteStream strm;
sl@0
  1285
		TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1));//panic here
sl@0
  1286
		strm.Close();
sl@0
  1287
		
sl@0
  1288
		delete tc;
sl@0
  1289
		}
sl@0
  1290
	};
sl@0
  1291
static TBlobWriteStream_Open_Database1 TheBlobWriteStream_Open_Database1;
sl@0
  1292
		
sl@0
  1293
class TBlobWriteStream_Open_Database2 : public TFunctor
sl@0
  1294
	{
sl@0
  1295
private:		
sl@0
  1296
	virtual void operator()()
sl@0
  1297
		{
sl@0
  1298
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1299
		
sl@0
  1300
		RSqlDatabase db;
sl@0
  1301
		RSqlBlobWriteStream strm;
sl@0
  1302
		TRAP_IGNORE(strm.OpenL(db, _L("Tbl"),_L("Col"), 1, _L("Db")));//panic here
sl@0
  1303
		strm.Close();
sl@0
  1304
		
sl@0
  1305
		delete tc;
sl@0
  1306
		}
sl@0
  1307
	};
sl@0
  1308
static TBlobWriteStream_Open_Database2 TheBlobWriteStream_Open_Database2;
sl@0
  1309
sl@0
  1310
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1311
//Panic when an attempt is made to call RSqlBlobWriteStream::SizeL() on a unitialized RSqlBlobWriteStream object.
sl@0
  1312
class TBlobWriteStream_Size_Stream : public TFunctor
sl@0
  1313
	{
sl@0
  1314
private:		
sl@0
  1315
	virtual void operator()()
sl@0
  1316
		{
sl@0
  1317
		CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1318
		
sl@0
  1319
		RSqlBlobWriteStream strm;
sl@0
  1320
		TRAP_IGNORE(strm.SizeL());//panic here
sl@0
  1321
		strm.Close();
sl@0
  1322
		
sl@0
  1323
		delete tc;
sl@0
  1324
		}
sl@0
  1325
	};
sl@0
  1326
TBlobWriteStream_Size_Stream TheBlobWriteStream_Size_Stream;
sl@0
  1327
sl@0
  1328
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1329
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
  1330
sl@0
  1331
/**
sl@0
  1332
@SYMTestCaseID			SYSLIB-SQL-CT-1619
sl@0
  1333
@SYMTestCaseDesc		RSqlDatabase panic tests
sl@0
  1334
						Run a second thread. The second thread executes given RSqlDatabase method calling
sl@0
  1335
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1336
						The main thread captures and checks the panic code.
sl@0
  1337
@SYMTestPriority		High
sl@0
  1338
@SYMTestActions			RSqlDatabase panic tests
sl@0
  1339
@SYMTestExpectedResults Test must not fail
sl@0
  1340
@SYMREQ					REQ5792
sl@0
  1341
                        REQ5793
sl@0
  1342
                        REQ10405
sl@0
  1343
                        REQ10407
sl@0
  1344
*/	
sl@0
  1345
void DatabaseTests()
sl@0
  1346
	{
sl@0
  1347
	TheTest.Printf(_L("'RSqlDatabase object not created - Exec 8' panic\r\n"));
sl@0
  1348
	PanicTest(TheSqlDatabase_NotCreated_Exec8, EExitPanic, KCategory, 2);
sl@0
  1349
sl@0
  1350
	TheTest.Printf(_L("'RSqlDatabase object not created - Exec' panic\r\n"));
sl@0
  1351
	PanicTest(TheSqlDatabase_NotCreated_Exec, EExitPanic, KCategory, 2);
sl@0
  1352
sl@0
  1353
	TheTest.Printf(_L("'RSqlDatabase object not created - GetSecuritySettings' panic\r\n"));
sl@0
  1354
	PanicTest(TheSqlDatabase_NotCreated_SecuritySettings, EExitPanic, KCategory, 2);
sl@0
  1355
sl@0
  1356
	TheTest.Printf(_L("'RSqlDatabase object not created - Attach' panic\r\n"));
sl@0
  1357
	PanicTest(TheSqlDatabase_NotCreated_Attach, EExitPanic, KCategory, 2);
sl@0
  1358
sl@0
  1359
	TheTest.Printf(_L("'RSqlDatabase object not created - Detach' panic\r\n"));
sl@0
  1360
	PanicTest(TheSqlDatabase_NotCreated_Detach, EExitPanic, KCategory, 2);
sl@0
  1361
sl@0
  1362
	TheTest.Printf(_L("'RSqlDatabase object not created - SetIsolationLevel' panic\r\n"));
sl@0
  1363
	PanicTest(TheSqlDatabase_NotCreated_SetIsolationLevel, EExitPanic, KCategory, 2);
sl@0
  1364
sl@0
  1365
	TheTest.Printf(_L("'RSqlDatabase object not created - LastErrorMessage' panic\r\n"));
sl@0
  1366
	PanicTest(TheSqlDatabase_NotCreated_LastErrorMessage, EExitPanic, KCategory, 2);
sl@0
  1367
sl@0
  1368
	TheTest.Printf(_L("'RSqlDatabase object not created - LastInsertedRowId' panic\r\n"));
sl@0
  1369
	PanicTest(TheSqlDatabase_NotCreated_LastInsertedRowId, EExitPanic, KCategory, 2);
sl@0
  1370
sl@0
  1371
	TheTest.Printf(_L("'RSqlDatabase object not created - Size' panic\r\n"));
sl@0
  1372
	PanicTest(TheSqlDatabase_NotCreated_Size, EExitPanic, KCategory, 2);
sl@0
  1373
sl@0
  1374
	TheTest.Printf(_L("'RSqlDatabase object not created - Size(TSize&)' panic\r\n"));
sl@0
  1375
	PanicTest(TheSqlDatabase_NotCreated_Size2, EExitPanic, KCategory, 2);
sl@0
  1376
sl@0
  1377
	TheTest.Printf(_L("'RSqlDatabase object not created - InTransaction' panic\r\n"));
sl@0
  1378
	PanicTest(TheSqlDatabase_NotCreated_InTransaction, EExitPanic, KCategory, 2);
sl@0
  1379
sl@0
  1380
	TheTest.Printf(_L("'RSqlDatabase object not created - Compact' panic\r\n"));
sl@0
  1381
	PanicTest(TheSqlDatabase_NotCreated_Compact, EExitPanic, KCategory, 2);
sl@0
  1382
sl@0
  1383
	TheTest.Printf(_L("'RSqlDatabase object not created - async Compact' panic\r\n"));
sl@0
  1384
	PanicTest(TheSqlDatabase_NotCreated_Compact2, EExitPanic, KCategory, 2);
sl@0
  1385
	}
sl@0
  1386
sl@0
  1387
/**
sl@0
  1388
@SYMTestCaseID			SYSLIB-SQL-CT-1620
sl@0
  1389
@SYMTestCaseDesc		RSqlStatement panic tests
sl@0
  1390
						Run a second thread. The second thread executes given RSqlStatement method calling
sl@0
  1391
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1392
						The main thread captures and checks the panic code.
sl@0
  1393
@SYMTestPriority		High
sl@0
  1394
@SYMTestActions			RSqlStatement panic tests
sl@0
  1395
@SYMTestExpectedResults Test must not fail
sl@0
  1396
@SYMREQ					REQ5792
sl@0
  1397
                        REQ5793
sl@0
  1398
*/	
sl@0
  1399
void StatementTests()
sl@0
  1400
	{
sl@0
  1401
	TheTest.Printf(_L("'RSqlStatement object not created - Reset' panic\r\n"));
sl@0
  1402
	PanicTest(TheSqlStatement_NotCreated_Reset, EExitPanic, KCategory, 2);
sl@0
  1403
sl@0
  1404
	TheTest.Printf(_L("'RSqlStatement object not created - Exec' panic\r\n"));
sl@0
  1405
	PanicTest(TheSqlStatement_NotCreated_Exec, EExitPanic, KCategory, 2);
sl@0
  1406
sl@0
  1407
	TheTest.Printf(_L("'RSqlStatement object not created - Next' panic\r\n"));
sl@0
  1408
	PanicTest(TheSqlStatement_NotCreated_Next, EExitPanic, KCategory, 2);
sl@0
  1409
sl@0
  1410
	TheTest.Printf(_L("'RSqlStatement object not created - ParameterIndex' panic\r\n"));
sl@0
  1411
	PanicTest(TheSqlStatement_NotCreated_ParameterIndex, EExitPanic, KCategory, 2);
sl@0
  1412
sl@0
  1413
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnIndex' panic\r\n"));
sl@0
  1414
	PanicTest(TheSqlStatement_NotCreated_ColumnIndex, EExitPanic, KCategory, 2);
sl@0
  1415
sl@0
  1416
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnType' panic\r\n"));
sl@0
  1417
	PanicTest(TheSqlStatement_NotCreated_ColumnType, EExitPanic, KCategory, 2);
sl@0
  1418
sl@0
  1419
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnSize' panic\r\n"));
sl@0
  1420
	PanicTest(TheSqlStatement_NotCreated_ColumnSize, EExitPanic, KCategory, 2);
sl@0
  1421
sl@0
  1422
	TheTest.Printf(_L("'RSqlStatement object not created - BindNull' panic\r\n"));
sl@0
  1423
	PanicTest(TheSqlStatement_NotCreated_BindNull, EExitPanic, KCategory, 2);
sl@0
  1424
sl@0
  1425
	TheTest.Printf(_L("'RSqlStatement object not created - BindInt' panic\r\n"));
sl@0
  1426
	PanicTest(TheSqlStatement_NotCreated_BindInt, EExitPanic, KCategory, 2);
sl@0
  1427
sl@0
  1428
	TheTest.Printf(_L("'RSqlStatement object not created - BindInt64' panic\r\n"));
sl@0
  1429
	PanicTest(TheSqlStatement_NotCreated_BindInt64, EExitPanic, KCategory, 2);
sl@0
  1430
	
sl@0
  1431
	TheTest.Printf(_L("'RSqlStatement object not created - BindReal' panic\r\n"));
sl@0
  1432
	PanicTest(TheSqlStatement_NotCreated_BindReal, EExitPanic, KCategory, 2);
sl@0
  1433
	
sl@0
  1434
	TheTest.Printf(_L("'RSqlStatement object not created - BindText' panic\r\n"));
sl@0
  1435
	PanicTest(TheSqlStatement_NotCreated_BindText, EExitPanic, KCategory, 2);
sl@0
  1436
	
sl@0
  1437
	TheTest.Printf(_L("'RSqlStatement object not created - BindBinary' panic\r\n"));
sl@0
  1438
	PanicTest(TheSqlStatement_NotCreated_BindBinary, EExitPanic, KCategory, 2);
sl@0
  1439
sl@0
  1440
	TheTest.Printf(_L("'RSqlStatement object not created - BindZeroBlob' panic\r\n"));
sl@0
  1441
	PanicTest(TheSqlStatement_NotCreated_BindZeroBlob, EExitPanic, KCategory, 2);
sl@0
  1442
sl@0
  1443
	TheTest.Printf(_L("'RSqlStatement::BindZeroBlob() - invalid parameter index' panic\r\n"));
sl@0
  1444
	PanicTest(TheSqlStatement_OutOfBounds_BindZeroBlob, EExitPanic, KCategory, 5);
sl@0
  1445
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1446
sl@0
  1447
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnInt' panic\r\n"));
sl@0
  1448
	PanicTest(TheSqlStatement_NotCreated_ColumnInt, EExitPanic, KCategory, 2);
sl@0
  1449
	
sl@0
  1450
	TheTest.Printf(_L("'RSqlStatement object not created - IsNull' panic\r\n"));
sl@0
  1451
	PanicTest(TheSqlStatement_NotCreated_ColumnInt, EExitPanic, KCategory, 2);
sl@0
  1452
	
sl@0
  1453
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnInt64' panic\r\n"));
sl@0
  1454
	PanicTest(TheSqlStatement_NotCreated_ColumnInt64, EExitPanic, KCategory, 2);
sl@0
  1455
	
sl@0
  1456
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnReal' panic\r\n"));
sl@0
  1457
	PanicTest(TheSqlStatement_NotCreated_ColumnReal, EExitPanic, KCategory, 2);
sl@0
  1458
	
sl@0
  1459
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnText' panic\r\n"));
sl@0
  1460
	PanicTest(TheSqlStatement_NotCreated_ColumnText, EExitPanic, KCategory, 2);
sl@0
  1461
	
sl@0
  1462
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnText2' panic\r\n"));
sl@0
  1463
	PanicTest(TheSqlStatement_NotCreated_ColumnText2, EExitPanic, KCategory, 2);
sl@0
  1464
	
sl@0
  1465
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnBinary' panic\r\n"));
sl@0
  1466
	PanicTest(TheSqlStatement_NotCreated_ColumnBinary, EExitPanic, KCategory, 2);
sl@0
  1467
	
sl@0
  1468
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnBinary2' panic\r\n"));
sl@0
  1469
	PanicTest(TheSqlStatement_NotCreated_ColumnBinary2, EExitPanic, KCategory, 2);
sl@0
  1470
	
sl@0
  1471
	TheTest.Printf(_L("'RSqlStatement - database not created - Prepare' panic\r\n"));
sl@0
  1472
	PanicTest(TheSqlStatement_DbNotCreated_Prepare, EExitPanic, KCategory, 2);
sl@0
  1473
	
sl@0
  1474
	TheTest.Printf(_L("'RSqlStatement - database not created - Prepare 8' panic\r\n"));
sl@0
  1475
	PanicTest(TheSqlStatement_DbNotCreated_Prepare8, EExitPanic, KCategory, 2);
sl@0
  1476
	
sl@0
  1477
	TheTest.Printf(_L("'RSqlStatement - ColumnType - Column index out of bounds' panic\r\n"));
sl@0
  1478
	PanicTest(TheSqlStatement_OutOfBounds_ColumnType, EExitPanic, KCategory, 5);
sl@0
  1479
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1480
	
sl@0
  1481
	TheTest.Printf(_L("'RSqlStatement - ColumnSize - Column index out of bounds' panic\r\n"));
sl@0
  1482
	PanicTest(TheSqlStatement_OutOfBounds_ColumnSize, EExitPanic, KCategory, 5);
sl@0
  1483
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1484
	
sl@0
  1485
	TheTest.Printf(_L("'RSqlStatement - Bind - Parameter index out of bounds' panic\r\n"));
sl@0
  1486
	PanicTest(TheSqlStatement_OutOfBounds_Bind, EExitPanic, KCategory, 5);
sl@0
  1487
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1488
	
sl@0
  1489
	TheTest.Printf(_L("'RSqlStatement - Column value - Parameter index out of bounds' panic\r\n"));
sl@0
  1490
	PanicTest(TheSqlStatement_OutOfBounds_ColumnValue, EExitPanic, KCategory, 5);
sl@0
  1491
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1492
	
sl@0
  1493
	TheTest.Printf(_L("'RSqlStatement object not created - ColumnCount' panic\r\n"));
sl@0
  1494
	PanicTest(TheSqlStatement_NotCreated_ColumnCount, EExitPanic, KCategory, 2);
sl@0
  1495
	
sl@0
  1496
	TheTest.Printf(_L("'RSqlStatement object not created - DeclaredColumnType' panic\r\n"));
sl@0
  1497
	PanicTest(TheSqlStatement_NotCreated_DeclaredColumnType, EExitPanic, KCategory, 2);
sl@0
  1498
sl@0
  1499
	TheTest.Printf(_L("'RSqlStatement - DeclaredColumnType - Column index out of bounds' panic\r\n"));
sl@0
  1500
	PanicTest(TheSqlStatement_OutOfBounds_DeclaredColumnType, EExitPanic, KCategory, 5);
sl@0
  1501
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1502
sl@0
  1503
	TheTest.Printf(_L("'RSqlStatement - ColumnName' panic\r\n"));
sl@0
  1504
	PanicTest(TheSqlStatement_NotCreated_ColumnName, EExitPanic, KCategory, 2);
sl@0
  1505
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1506
sl@0
  1507
	TheTest.Printf(_L("'RSqlStatement - ParameterName' panic\r\n"));
sl@0
  1508
	PanicTest(TheSqlStatement_NotCreated_ParameterName, EExitPanic, KCategory, 2);
sl@0
  1509
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1510
	
sl@0
  1511
	TheTest.Printf(_L("'RSqlStatement - ParamName' panic\r\n"));
sl@0
  1512
	PanicTest(TheSqlStatement_NotCreated_ParamName, EExitPanic, KCategory, 2);
sl@0
  1513
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1514
	}
sl@0
  1515
sl@0
  1516
/**
sl@0
  1517
@SYMTestCaseID			SYSLIB-SQL-CT-1625
sl@0
  1518
@SYMTestCaseDesc		RSqlColumnReadStream panic tests
sl@0
  1519
						Run a second thread. The second thread executes given RSqlColumnReadStream method calling
sl@0
  1520
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1521
						The main thread captures and checks the panic code.
sl@0
  1522
@SYMTestPriority		High
sl@0
  1523
@SYMTestActions			RSqlColumnReadStream panic tests
sl@0
  1524
@SYMTestExpectedResults Test must not fail
sl@0
  1525
@SYMREQ					REQ5792
sl@0
  1526
                        REQ5793
sl@0
  1527
*/	
sl@0
  1528
void ColumnStreamTests()
sl@0
  1529
	{
sl@0
  1530
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - invalid statement' panic\r\n"));
sl@0
  1531
	PanicTest(TheColumnReadStream_ColumnText_Statement, EExitPanic, KCategory, 2);
sl@0
  1532
	
sl@0
  1533
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - invalid statement' panic\r\n"));
sl@0
  1534
	PanicTest(TheColumnReadStream_ColumnBinary_Statement, EExitPanic, KCategory, 2);
sl@0
  1535
	
sl@0
  1536
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - invalid column index' panic\r\n"));
sl@0
  1537
	PanicTest(TheColumnReadStream_ColumnText_Column, EExitPanic, KCategory, 5);
sl@0
  1538
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1539
	
sl@0
  1540
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - invalid column index' panic\r\n"));
sl@0
  1541
	PanicTest(TheColumnReadStream_ColumnBinary_Column, EExitPanic, KCategory, 5);
sl@0
  1542
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1543
sl@0
  1544
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnText - not at row' panic\r\n"));
sl@0
  1545
	PanicTest(TheColumnReadStream_ColumnText_AtRow, EExitPanic, KCategory, 11);
sl@0
  1546
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1547
sl@0
  1548
	TheTest.Printf(_L("'RSqlColumnReadStream - ColumnBinary - not at row' panic\r\n"));
sl@0
  1549
	PanicTest(TheColumnReadStream_ColumnBinary_AtRow, EExitPanic, KCategory, 11);
sl@0
  1550
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1551
	}
sl@0
  1552
sl@0
  1553
/**
sl@0
  1554
@SYMTestCaseID			SYSLIB-SQL-CT-1626
sl@0
  1555
@SYMTestCaseDesc		RSqlParamWriteStream panic tests
sl@0
  1556
						Run a second thread. The second thread executes given RSqlParamWriteStream method calling
sl@0
  1557
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1558
						The main thread captures and checks the panic code.
sl@0
  1559
@SYMTestPriority		High
sl@0
  1560
@SYMTestActions			RSqlParamWriteStream panic tests
sl@0
  1561
@SYMTestExpectedResults Test must not fail
sl@0
  1562
@SYMREQ					REQ5792
sl@0
  1563
                        REQ5793
sl@0
  1564
*/	
sl@0
  1565
void ParameterStreamTests()
sl@0
  1566
	{
sl@0
  1567
	TheTest.Printf(_L("'RSqlParamWriteStream - BindText - invalid statement' panic\r\n"));
sl@0
  1568
	PanicTest(TheParamWriteStream_BindText_Statement, EExitPanic, KCategory, 2);
sl@0
  1569
	
sl@0
  1570
	TheTest.Printf(_L("'RSqlParamWriteStream - BindBinary - invalid statement' panic\r\n"));
sl@0
  1571
	PanicTest(TheParamWriteStream_BindBinary_Statement, EExitPanic, KCategory, 2);
sl@0
  1572
	
sl@0
  1573
	TheTest.Printf(_L("'RSqlParamWriteStream - BindText - invalid parameter index' panic\r\n"));
sl@0
  1574
	PanicTest(TheParamWriteStream_BindText_Column, EExitPanic, KCategory, 5);
sl@0
  1575
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1576
	
sl@0
  1577
	TheTest.Printf(_L("'RSqlParamWriteStream - BindBinary - invalid parameter index' panic\r\n"));
sl@0
  1578
	PanicTest(TheParamWriteStream_BindBinary_Column, EExitPanic, KCategory, 5);
sl@0
  1579
	TEST2(RSqlDatabase::Delete(KTestDbName), KErrNone);
sl@0
  1580
	}
sl@0
  1581
sl@0
  1582
/**
sl@0
  1583
@SYMTestCaseID			SYSLIB-SQL-CT-1638
sl@0
  1584
@SYMTestCaseDesc		RSqlSecurityPolicy panic tests
sl@0
  1585
						Run a second thread. The second thread executes given RSqlSecurityPolicy method calling
sl@0
  1586
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1587
						The main thread captures and checks the panic code.
sl@0
  1588
@SYMTestPriority		High
sl@0
  1589
@SYMTestActions			RSqlSecurityPolicy panic tests
sl@0
  1590
@SYMTestExpectedResults Test must not fail
sl@0
  1591
@SYMREQ					REQ5792
sl@0
  1592
                        REQ5793
sl@0
  1593
*/	
sl@0
  1594
void SecuritySettingsTests()
sl@0
  1595
	{
sl@0
  1596
	TheTest.Printf(_L("'RSqlSecurityPolicy::SetDbPolicy - invalid policy type' panic\r\n"));
sl@0
  1597
	PanicTest(TheSqlSecurity_Set1, EExitPanic, KCategory, 4);
sl@0
  1598
	
sl@0
  1599
	TheTest.Printf(_L("'RSqlSecurityPolicy::SetPolicy - invalid database object type' panic\r\n"));
sl@0
  1600
	PanicTest(TheSqlSecurity_Set2, EExitPanic, KCategory, 4);
sl@0
  1601
	
sl@0
  1602
	TheTest.Printf(_L("'RSqlSecurityPolicy::SetPolicy - invalid database object name' panic\r\n"));
sl@0
  1603
	PanicTest(TheSqlSecurity_Set3, EExitPanic, KCategory, 4);
sl@0
  1604
sl@0
  1605
	TheTest.Printf(_L("'RSqlSecurityPolicy::DbPolicy - invalid policy type' panic\r\n"));
sl@0
  1606
	PanicTest(TheSqlSecurity_Get1, EExitPanic, KCategory, 4);
sl@0
  1607
	
sl@0
  1608
	TheTest.Printf(_L("'RSqlSecurityPolicy::Policy - invalid database object type' panic\r\n"));
sl@0
  1609
	PanicTest(TheSqlSecurity_Get2, EExitPanic, KCategory, 4);
sl@0
  1610
	
sl@0
  1611
	TheTest.Printf(_L("'RSqlSecurityPolicy::Policy - invalid database object name' panic\r\n"));
sl@0
  1612
	PanicTest(TheSqlSecurity_Get3, EExitPanic, KCategory, 4);
sl@0
  1613
sl@0
  1614
	TheTest.Printf(_L("'RSqlSecurityPolicy::DefaultPolicy - invalid object' panic\r\n"));
sl@0
  1615
	PanicTest(TheSqlSecurity_DefaultPolicy, EExitPanic, KCategory, 2);
sl@0
  1616
sl@0
  1617
	TheTest.Printf(_L("'RSqlSecurityPolicy::Externalize - panic\r\n"));
sl@0
  1618
	PanicTest(TheSqlSecurity_Externalize, EExitPanic, KCategory, 2);
sl@0
  1619
	}
sl@0
  1620
sl@0
  1621
/**
sl@0
  1622
@SYMTestCaseID			SYSLIB-SQL-CT-1812
sl@0
  1623
@SYMTestCaseDesc		TSqlScalarFullSelectQuery panic tests
sl@0
  1624
						Run a second thread. The second thread executes given TSqlScalarFullSelectQuery method calling
sl@0
  1625
						it with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1626
						The main thread captures and checks the panic code.
sl@0
  1627
@SYMTestPriority		High
sl@0
  1628
@SYMTestActions			TSqlScalarFullSelectQuery panic tests
sl@0
  1629
@SYMTestExpectedResults Test must not fail
sl@0
  1630
@SYMREQ					REQ5792
sl@0
  1631
                        REQ5793
sl@0
  1632
*/
sl@0
  1633
void ScalarFullSelectTests()
sl@0
  1634
	{
sl@0
  1635
	TheTest.Printf(_L("'TheSqlScalarFullSelectQuery, invalid database' - panic\r\n"));
sl@0
  1636
	PanicTest(TheSqlScalarFullSelectQuery_InvalidDatabase, EExitPanic, KCategory, 2);
sl@0
  1637
	}
sl@0
  1638
sl@0
  1639
/**
sl@0
  1640
@SYMTestCaseID			SYSLIB-SQL-UT-4092
sl@0
  1641
@SYMTestCaseDesc		RSqlBlobReadStream panic tests
sl@0
  1642
						Run a second thread. The second thread executes a given RSqlBlobReadStream method calling
sl@0
  1643
						the method with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1644
						The main thread captures and checks the panic code.
sl@0
  1645
@SYMTestPriority		High
sl@0
  1646
@SYMTestActions			RSqlBlobReadStream panic tests
sl@0
  1647
@SYMTestExpectedResults Test must not fail
sl@0
  1648
@SYMREQ					REQ5792
sl@0
  1649
                        REQ5793
sl@0
  1650
                        REQ10410
sl@0
  1651
                        REQ10411
sl@0
  1652
*/
sl@0
  1653
void BlobReadStreamTests()
sl@0
  1654
	{
sl@0
  1655
	TheTest.Printf(_L("'RSqlBlobReadStream::OpenL(), invalid database' - panic test 1\r\n"));
sl@0
  1656
	PanicTest(TheBlobReadStream_Open_Database1, EExitPanic, KCategory, 2);
sl@0
  1657
sl@0
  1658
	TheTest.Printf(_L("'RSqlBlobReadStream::OpenL(), invalid database' - panic test 2\r\n"));
sl@0
  1659
	PanicTest(TheBlobReadStream_Open_Database2, EExitPanic, KCategory, 2);
sl@0
  1660
sl@0
  1661
	TheTest.Printf(_L("'RSqlBlobReadStream::SizeL(), invalid stream' - panic test\r\n"));
sl@0
  1662
	PanicTest(TheBlobReadStream_Size_Stream, EExitPanic, KCategory, 2);
sl@0
  1663
	}
sl@0
  1664
sl@0
  1665
/**
sl@0
  1666
@SYMTestCaseID			SYSLIB-SQL-UT-4093
sl@0
  1667
@SYMTestCaseDesc		RSqlBlobWriteStream panic tests
sl@0
  1668
						Run a second thread. The second thread executes a given RSqlBlobWriteStream method calling
sl@0
  1669
						the method with wrong arguments, or in a bad context,...The method panics the second thread. 
sl@0
  1670
						The main thread captures and checks the panic code.
sl@0
  1671
@SYMTestPriority		High
sl@0
  1672
@SYMTestActions			RSqlBlobWriteStream panic tests
sl@0
  1673
@SYMTestExpectedResults Test must not fail
sl@0
  1674
@SYMREQ					REQ5792
sl@0
  1675
                        REQ5793
sl@0
  1676
                        REQ10418
sl@0
  1677
*/
sl@0
  1678
void BlobWriteStreamTests()
sl@0
  1679
	{
sl@0
  1680
	TheTest.Printf(_L("'RSqlBlobWriteStream::OpenL(), invalid database' - panic test 1\r\n"));
sl@0
  1681
	PanicTest(TheBlobWriteStream_Open_Database1, EExitPanic, KCategory, 2);
sl@0
  1682
sl@0
  1683
	TheTest.Printf(_L("'RSqlBlobWriteStream::OpenL(), invalid database' - panic test 2\r\n"));
sl@0
  1684
	PanicTest(TheBlobWriteStream_Open_Database2, EExitPanic, KCategory, 2);
sl@0
  1685
sl@0
  1686
	TheTest.Printf(_L("'RSqlBlobWriteStream::SizeL(), invalid stream' - panic test\r\n"));
sl@0
  1687
	PanicTest(TheBlobWriteStream_Size_Stream, EExitPanic, KCategory, 2);
sl@0
  1688
	}
sl@0
  1689
sl@0
  1690
void DoTests()
sl@0
  1691
	{
sl@0
  1692
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1619 RSqlDatabase - panic tests"));
sl@0
  1693
	DatabaseTests();
sl@0
  1694
sl@0
  1695
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1620 RSqlStatement - panic tests"));
sl@0
  1696
	StatementTests();
sl@0
  1697
	
sl@0
  1698
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1625 RSqlColumnReadStream - panic tests"));
sl@0
  1699
	ColumnStreamTests();
sl@0
  1700
	
sl@0
  1701
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1626 RSqlParamWriteStream - panic tests"));
sl@0
  1702
	ParameterStreamTests();
sl@0
  1703
	
sl@0
  1704
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1638 RSqlSecurityPolicy - panic tests"));
sl@0
  1705
	SecuritySettingsTests();
sl@0
  1706
	
sl@0
  1707
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1812 TheSqlScalarFullSelectQuery - panic tests"));
sl@0
  1708
	ScalarFullSelectTests();
sl@0
  1709
	
sl@0
  1710
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4092 RSqlBlobReadStream - panic tests"));
sl@0
  1711
	BlobReadStreamTests();
sl@0
  1712
	
sl@0
  1713
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4093 RSqlBlobWriteStream - panic tests"));
sl@0
  1714
	BlobWriteStreamTests();
sl@0
  1715
	}
sl@0
  1716
sl@0
  1717
TInt E32Main()
sl@0
  1718
	{
sl@0
  1719
	TheTest.Title();
sl@0
  1720
	
sl@0
  1721
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  1722
	
sl@0
  1723
	__UHEAP_MARK;
sl@0
  1724
	
sl@0
  1725
	CreateTestDir();
sl@0
  1726
	DeleteTestFiles();
sl@0
  1727
	DoTests();
sl@0
  1728
	DeleteTestFiles();
sl@0
  1729
sl@0
  1730
	__UHEAP_MARKEND;
sl@0
  1731
	
sl@0
  1732
	TheTest.End();
sl@0
  1733
	TheTest.Close();
sl@0
  1734
	
sl@0
  1735
	delete tc;
sl@0
  1736
sl@0
  1737
	User::Heap().Check();
sl@0
  1738
	return KErrNone;
sl@0
  1739
	}