os/persistentdata/persistentstorage/sql/TEST/t_sqlapi.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
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 <s32buf.h>				//MStreamBuf
sl@0
    19
#include <sqldb.h>
sl@0
    20
sl@0
    21
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    22
sl@0
    23
RTest TheTest(_L("t_sqlapi test"));
sl@0
    24
_LIT(KTestDir, "c:\\test\\");
sl@0
    25
_LIT(KTestDbName1, "c:\\test\\t_sqlapi1.db");
sl@0
    26
_LIT(KTestDbName2, "c:[1111CCCC]t_sqlapi2.db");
sl@0
    27
_LIT(KTestDbName3, "C:\\TEST\\t_sqlapi3.db");
sl@0
    28
_LIT(KTestDbName4, "C:[1111CCCC]D012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789.db");
sl@0
    29
_LIT(KTestDbName5, "C:\\TEST\\D012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789.db");
sl@0
    30
_LIT(KTestDbName6, "C:[1111CCCC]t_sqlapi6.db");
sl@0
    31
_LIT(KTestDbName7, "C:[1111CCCC]t_sqlapi7.db");
sl@0
    32
_LIT(KTestDbName8, "c:\\test\\t_sqlapi8.db");
sl@0
    33
_LIT(KTestDbName9, "c:\\private\\1111CCCC\\t_sqlapi9.db");
sl@0
    34
_LIT(KTestCfgDbName, "c:\\test\\t_sqlapi_cfg.db");
sl@0
    35
_LIT(KTestCfgDbName2, "c:[1111CCCC]t_sqlapi_cfg.db");
sl@0
    36
_LIT(KServerPrivateDir, "\\private\\10281e17\\");
sl@0
    37
sl@0
    38
_LIT(KDbName7, "C:\\TEST\\t_sqlapi7_2.db");
sl@0
    39
sl@0
    40
// used for the config test
sl@0
    41
_LIT8(KServerConfigString1, "   ;  cache_size =  1024 ; page_size =1024 ;encoding =  \"UTF-8\"   ");
sl@0
    42
_LIT8(KServerConfigString2, " badconfigstring ");
sl@0
    43
_LIT8(KServerConfigString3, " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
sl@0
    44
_LIT8(KServerConfigString4, "");
sl@0
    45
_LIT8(KServerConfigString5, "dfgdfrgdkfjgjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj43w3wk4jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn");
sl@0
    46
sl@0
    47
const TUid KSecureUid = {0x1111CCCC};//The same as the UID in the MMP file
sl@0
    48
sl@0
    49
_LIT(KCreateDbScript, "z:\\test\\contacts_schema_to_vendors.sql");
sl@0
    50
_LIT(KFillDbScript, "z:\\test\\add_simple_contacts.sql");
sl@0
    51
_LIT8(KCommitStr8, "COMMIT;");
sl@0
    52
_LIT16(KCommitStr16, "COMMIT;");
sl@0
    53
sl@0
    54
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    55
sl@0
    56
void DeleteTestFiles()
sl@0
    57
	{
sl@0
    58
	RSqlDatabase::Delete(KTestDbName1);
sl@0
    59
	RSqlDatabase::Delete(KTestDbName2);
sl@0
    60
	RSqlDatabase::Delete(KTestDbName3);
sl@0
    61
	RSqlDatabase::Delete(KTestDbName4);
sl@0
    62
	RSqlDatabase::Delete(KTestDbName5);
sl@0
    63
	RSqlDatabase::Delete(KTestDbName6);
sl@0
    64
	RSqlDatabase::Delete(KTestDbName7);
sl@0
    65
	RSqlDatabase::Delete(KTestDbName8);
sl@0
    66
	RSqlDatabase::Delete(KTestDbName9);
sl@0
    67
	RSqlDatabase::Delete(KTestCfgDbName);
sl@0
    68
	RSqlDatabase::Delete(KTestCfgDbName2);
sl@0
    69
	RSqlDatabase::Delete(KDbName7);
sl@0
    70
	}
sl@0
    71
sl@0
    72
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    73
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    74
//Test macros and functions
sl@0
    75
void Check(TInt aValue, TInt aLine)
sl@0
    76
	{
sl@0
    77
	if(!aValue)
sl@0
    78
		{
sl@0
    79
		DeleteTestFiles();
sl@0
    80
		TheTest(EFalse, aLine);
sl@0
    81
		}
sl@0
    82
	}
sl@0
    83
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    84
	{
sl@0
    85
	if(aValue != aExpected)
sl@0
    86
		{
sl@0
    87
		DeleteTestFiles();
sl@0
    88
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    89
		TheTest(EFalse, aLine);
sl@0
    90
		}
sl@0
    91
	}
sl@0
    92
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    93
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    94
sl@0
    95
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    96
sl@0
    97
void CreateTestDir()
sl@0
    98
    {
sl@0
    99
    RFs fs;
sl@0
   100
	TInt err = fs.Connect();
sl@0
   101
	TEST2(err, KErrNone);
sl@0
   102
sl@0
   103
	err = fs.MkDir(KTestDir);
sl@0
   104
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   105
sl@0
   106
	err = fs.CreatePrivatePath(EDriveC);	
sl@0
   107
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   108
	
sl@0
   109
	fs.Close();
sl@0
   110
	}
sl@0
   111
sl@0
   112
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   113
sl@0
   114
template <class DES, class BUF> void ExecSqlStmtOnDb(RSqlDatabase& aDb, const TDesC8& aSqlString, 
sl@0
   115
												     TInt aExpectedError)
sl@0
   116
	{
sl@0
   117
	BUF sqlBuf;
sl@0
   118
	sqlBuf.Copy(aSqlString);
sl@0
   119
	
sl@0
   120
	TInt rc = aDb.Exec(sqlBuf);
sl@0
   121
	if(rc < 0 && SqlRetCodeClass(rc) == ESqlDbError)
sl@0
   122
		{
sl@0
   123
		TPtrC msg = aDb.LastErrorMessage();
sl@0
   124
		RDebug::Print(_L("Execute SQL error - '%S'\r\n"), &msg);
sl@0
   125
		}
sl@0
   126
	if(aExpectedError < 0)
sl@0
   127
		{
sl@0
   128
		TEST2(rc, aExpectedError);
sl@0
   129
		}
sl@0
   130
	else
sl@0
   131
		{
sl@0
   132
		TEST(rc >= 0);
sl@0
   133
		}
sl@0
   134
	}
sl@0
   135
sl@0
   136
template <class DES, class BUF>  RSqlStatement PrepareSqlStmt(RSqlDatabase& aDb, const TDesC8& aSqlString,
sl@0
   137
															  TInt aExpectedError)
sl@0
   138
	{
sl@0
   139
	BUF sqlBuf;
sl@0
   140
	sqlBuf.Copy(aSqlString);
sl@0
   141
	
sl@0
   142
	RSqlStatement stmt;
sl@0
   143
	TInt rc = stmt.Prepare(aDb, sqlBuf);
sl@0
   144
	if(rc != KErrNone && SqlRetCodeClass(rc) == ESqlDbError)
sl@0
   145
		{
sl@0
   146
		TPtrC msg = aDb.LastErrorMessage();
sl@0
   147
		RDebug::Print(_L("Execute SQL error - '%S'\r\n"), &msg);
sl@0
   148
		}
sl@0
   149
	TEST2(rc, aExpectedError);
sl@0
   150
	return stmt;
sl@0
   151
	}
sl@0
   152
sl@0
   153
void ExecSqlStmt(RSqlDatabase& aDb, RSqlStatement& aStmt, TInt aExpectedError)
sl@0
   154
	{
sl@0
   155
	TInt rc = aStmt.Exec();
sl@0
   156
	if(rc < 0 && SqlRetCodeClass(rc) == ESqlDbError)
sl@0
   157
		{
sl@0
   158
		TPtrC msg = aDb.LastErrorMessage();
sl@0
   159
		RDebug::Print(_L("Execute SQL error - '%S'\r\n"), &msg);
sl@0
   160
		}
sl@0
   161
	if(aExpectedError < 0)
sl@0
   162
		{
sl@0
   163
		TEST2(rc, aExpectedError);
sl@0
   164
		}
sl@0
   165
	else
sl@0
   166
		{
sl@0
   167
		TEST(rc >= 0);
sl@0
   168
		}
sl@0
   169
	}
sl@0
   170
		
sl@0
   171
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   172
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   173
sl@0
   174
/**
sl@0
   175
@SYMTestCaseID			SYSLIB-SQL-CT-1601
sl@0
   176
@SYMTestCaseDesc		Create/Open/Close database tests. Invalid database names, very long database names,
sl@0
   177
						private databases, public databases, open twice database, create already
sl@0
   178
						existing database, open non-exisitng database, open corrupted database.
sl@0
   179
@SYMTestPriority		High
sl@0
   180
@SYMTestActions			Tests for RSqlDatabase::Create(), RSqlDatabase::Open() methods.
sl@0
   181
@SYMTestExpectedResults Test must not fail
sl@0
   182
@SYMREQ					REQ5792
sl@0
   183
                        REQ5793
sl@0
   184
*/	
sl@0
   185
void OpenCloseDatabaseTest()
sl@0
   186
	{
sl@0
   187
	RSqlDatabase db;
sl@0
   188
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
   189
	RSqlSecurityPolicy securityPolicy;
sl@0
   190
	TInt rc = securityPolicy.Create(defaultPolicy);
sl@0
   191
	TEST2(rc, KErrNone);
sl@0
   192
	
sl@0
   193
	//Secure shared database file on a non-existing drive (A:)
sl@0
   194
	_LIT(KDbPath1, "A:[1111CCCC]db1.db");
sl@0
   195
	rc = db.Create(KDbPath1, securityPolicy);
sl@0
   196
	TEST2(rc, KErrNotReady);
sl@0
   197
	db.Close();
sl@0
   198
sl@0
   199
	//Attempt to open a non-existing file.
sl@0
   200
	_LIT(KDbFName, "c:\\test\\nofile.db");
sl@0
   201
	rc = db.Open(KDbFName);
sl@0
   202
	TEST2(rc, KErrNotFound);
sl@0
   203
		
sl@0
   204
	//Zero length database file name.
sl@0
   205
	rc = db.Create(_L(""));
sl@0
   206
	TEST2(rc,  KErrBadName);
sl@0
   207
	db.Close();
sl@0
   208
	
sl@0
   209
	//Database file name containing only the drive name
sl@0
   210
	rc = db.Create(_L("C:"));
sl@0
   211
	TEST2(rc, KErrBadName);
sl@0
   212
	db.Close();
sl@0
   213
	
sl@0
   214
	//Database file name containing only the path, without the file name
sl@0
   215
	rc = db.Create(_L("C:\\TEST\\"));
sl@0
   216
	TEST2(rc, KErrBadName);
sl@0
   217
	db.Close();
sl@0
   218
	
sl@0
   219
	//Public shared database file on a non-existing drive (A:)	
sl@0
   220
	_LIT(KDbPath2, "A:\\test\\db1.db");
sl@0
   221
	rc = db.Create(KDbPath2);
sl@0
   222
	TEST2(rc, KErrNotReady);
sl@0
   223
	db.Close();
sl@0
   224
sl@0
   225
	// create database with good config specified
sl@0
   226
	rc = db.Create(KTestCfgDbName,&KServerConfigString1);
sl@0
   227
	TEST2(rc, KErrNone);
sl@0
   228
	db.Close();
sl@0
   229
	TInt rc2 = RSqlDatabase::Delete(KTestCfgDbName);
sl@0
   230
	TEST2(rc2, KErrNone);
sl@0
   231
	
sl@0
   232
	// create database with bad config specified
sl@0
   233
	rc = db.Create(KTestCfgDbName,&KServerConfigString2);
sl@0
   234
	TEST2(rc, KErrArgument);
sl@0
   235
	db.Close();
sl@0
   236
sl@0
   237
	// create database with long config specified
sl@0
   238
	rc = db.Create(KTestCfgDbName,&KServerConfigString3);
sl@0
   239
	TEST2(rc, KErrArgument);
sl@0
   240
	db.Close();
sl@0
   241
sl@0
   242
	// create database with empty config specified - not an error
sl@0
   243
	rc = db.Create(KTestCfgDbName,&KServerConfigString4);
sl@0
   244
	TEST2(rc, KErrNone);
sl@0
   245
	db.Close();
sl@0
   246
	rc2 = RSqlDatabase::Delete(KTestCfgDbName);
sl@0
   247
	TEST2(rc2, KErrNone);
sl@0
   248
sl@0
   249
    // create database with very long config specified
sl@0
   250
    rc = db.Create(KTestCfgDbName, &KServerConfigString5);
sl@0
   251
    TEST2(rc, KErrArgument);
sl@0
   252
    db.Close();
sl@0
   253
	
sl@0
   254
	//Secure shared database file on an existing drive (C:). 
sl@0
   255
	//Very long database file name (> 90 characters) but still a valid name.
sl@0
   256
	rc = db.Create(KTestDbName4, securityPolicy);
sl@0
   257
	db.Close();
sl@0
   258
	rc2 = RSqlDatabase::Delete(KTestDbName4);
sl@0
   259
	TEST2(rc, KErrNone);
sl@0
   260
	TEST2(rc2, KErrNone);
sl@0
   261
sl@0
   262
	//Secure shared database file on an existing drive (C:). 
sl@0
   263
	//Very long database file name (> 90 characters) but still a valid name.
sl@0
   264
	//With config
sl@0
   265
	rc = db.Create(KTestCfgDbName2, securityPolicy, &KServerConfigString1);
sl@0
   266
	db.Close();
sl@0
   267
	rc2 = RSqlDatabase::Delete(KTestCfgDbName2);
sl@0
   268
	TEST2(rc, KErrNone);
sl@0
   269
	TEST2(rc2, KErrNone);
sl@0
   270
	
sl@0
   271
	//Public shared database file on an existing drive (C:). 
sl@0
   272
	//Very long database file name (> 90 characters) but still a valid name.
sl@0
   273
	rc = db.Create(KTestDbName5);
sl@0
   274
	db.Close();
sl@0
   275
	rc2 = RSqlDatabase::Delete(KTestDbName5);
sl@0
   276
	TEST2(rc, KErrNone);
sl@0
   277
	TEST2(rc2, KErrNone);
sl@0
   278
	
sl@0
   279
	RFs fs;
sl@0
   280
	TEST2(fs.Connect(), KErrNone);
sl@0
   281
	TFileName privatePath;
sl@0
   282
	TEST2(fs.PrivatePath(privatePath), KErrNone);
sl@0
   283
	
sl@0
   284
	//Private shared database file on an existing drive (C:). 
sl@0
   285
	//Very long database file name.
sl@0
   286
	TBuf<50>filesysname;
sl@0
   287
	fs.FileSystemName(filesysname,(TInt) EDriveC);
sl@0
   288
    fs.Close();
sl@0
   289
sl@0
   290
	RDebug::Print(_L("file system name = %S"), &filesysname);
sl@0
   291
	TInt maxFileName = KMaxFileName -40;//"-40" because the SQLITE engine creates a journal file if begins
sl@0
   292
	                                                 //a transaction. The name of the journal file is 
sl@0
   293
	                                                 //"<dbFileName>-journal.<ext>". It is obvious that if the 
sl@0
   294
	                                                 //database file name is too long but still valid and its creation
sl@0
   295
	                                                 //succeeds, the journal file creation may fail because the journal
sl@0
   296
	                                                 //file name becomes too long
sl@0
   297
sl@0
   298
	if(filesysname.CompareF(_L("HVFS")) == 0)
sl@0
   299
	    {
sl@0
   300
        maxFileName = KMaxFileName -150;//The test will panic in PlatSim when the file name is too long. This line should be removed when platsim team fixes the file system defect.
sl@0
   301
	    }
sl@0
   302
	HBufC* dbPath = HBufC::New(maxFileName);
sl@0
   303
	TEST(dbPath != NULL);
sl@0
   304
	TPtr dbPathPtr = dbPath->Des();
sl@0
   305
	_LIT(KExt, ".DB");
sl@0
   306
	dbPathPtr.Copy(_L("C:"));
sl@0
   307
	dbPathPtr.Append(KSecureUid.Name());
sl@0
   308
	TInt len = maxFileName + 1 - (dbPathPtr.Length() + KExt().Length() + privatePath.Length());
sl@0
   309
	
sl@0
   310
	while(--len)
sl@0
   311
		{
sl@0
   312
        dbPathPtr.Append(TChar('A'));	
sl@0
   313
		}
sl@0
   314
	dbPathPtr.Append(KExt);	
sl@0
   315
	TEST(dbPathPtr.Length() == (maxFileName - privatePath.Length()));	
sl@0
   316
	rc = db.Create(dbPathPtr, securityPolicy);
sl@0
   317
	TEST2(rc, KErrNone);
sl@0
   318
	db.Close();
sl@0
   319
	rc2 = RSqlDatabase::Delete(dbPathPtr);
sl@0
   320
	TEST2(rc2, KErrNone);
sl@0
   321
	
sl@0
   322
	// Private database with config
sl@0
   323
	TBuf<KMaxFileName> cfgPath;
sl@0
   324
	cfgPath.Copy(_L("C:"));
sl@0
   325
	cfgPath.Append(KSecureUid.Name());
sl@0
   326
	cfgPath.Append(KExt);
sl@0
   327
	rc = db.Create(cfgPath,securityPolicy,&KServerConfigString1);
sl@0
   328
	db.Close();
sl@0
   329
	rc2 = RSqlDatabase::Delete(cfgPath);
sl@0
   330
	TEST2(rc, KErrNone);
sl@0
   331
	TEST2(rc2, KErrNone);
sl@0
   332
	
sl@0
   333
	//Public shared database file on an existing drive (C:). 
sl@0
   334
	//Very long database file name.
sl@0
   335
	dbPathPtr.Copy(_L("C:\\TEST\\D"));
sl@0
   336
	len = maxFileName + 1 - (dbPathPtr.Length() + KExt().Length());
sl@0
   337
	while(--len)
sl@0
   338
		{
sl@0
   339
        dbPathPtr.Append(TChar('A'));	
sl@0
   340
		}
sl@0
   341
	dbPathPtr.Append(KExt);	
sl@0
   342
	TEST(dbPathPtr.Length() == maxFileName);
sl@0
   343
	rc = db.Create(dbPathPtr);
sl@0
   344
	db.Close();
sl@0
   345
	rc2 = RSqlDatabase::Delete(dbPathPtr);
sl@0
   346
	
sl@0
   347
	delete dbPath;
sl@0
   348
sl@0
   349
	TEST2(rc, KErrNone);
sl@0
   350
	TEST2(rc2, KErrNone);
sl@0
   351
sl@0
   352
	//Create/Close/Open/Close secure shared database test
sl@0
   353
	rc = db.Create(KTestDbName6, securityPolicy);
sl@0
   354
	db.Close();
sl@0
   355
	rc2 = db.Open(KTestDbName6);
sl@0
   356
	db.Close();
sl@0
   357
	TInt rc3 = RSqlDatabase::Delete(KTestDbName6);
sl@0
   358
	TEST2(rc, KErrNone);
sl@0
   359
	TEST2(rc2, KErrNone);
sl@0
   360
	TEST2(rc3, KErrNone);
sl@0
   361
	
sl@0
   362
	//An attempt to create already existing secure shared file.	
sl@0
   363
	rc = db.Create(KTestDbName6, securityPolicy);
sl@0
   364
	db.Close();
sl@0
   365
	rc2 = db.Create(KTestDbName6, securityPolicy);
sl@0
   366
	db.Close();
sl@0
   367
	rc3 = RSqlDatabase::Delete(KTestDbName6);
sl@0
   368
	TEST2(rc, KErrNone);
sl@0
   369
	TEST2(rc2, KErrAlreadyExists);
sl@0
   370
	TEST2(rc3, KErrNone);
sl@0
   371
	
sl@0
   372
	//An attempt to open twice the same database file using different RSqlDatabase objects
sl@0
   373
	rc = db.Create(KTestDbName6, securityPolicy);
sl@0
   374
	RSqlDatabase db2;	
sl@0
   375
	rc2 = db2.Open(KTestDbName6);
sl@0
   376
	db2.Close();
sl@0
   377
	db.Close();
sl@0
   378
	rc3 = RSqlDatabase::Delete(KTestDbName6);
sl@0
   379
	TEST2(rc, KErrNone);
sl@0
   380
	TEST2(rc2, KErrNone);//-- KErrInUse -- in case EFileRead | EFileWrite file open mode!
sl@0
   381
	TEST2(rc3, KErrNone);
sl@0
   382
sl@0
   383
	//An attempt to create secure shared database file on a read-only drive (Z:)
sl@0
   384
	_LIT(KDbPath8, "Z:[1111CCCC]db1.db");
sl@0
   385
	rc = db.Create(KDbPath8, securityPolicy);
sl@0
   386
	TEST2(rc, KErrAccessDenied);
sl@0
   387
	db.Close();
sl@0
   388
sl@0
   389
	//An attempt to create non-secure shared database file on a read-only drive (Z:)
sl@0
   390
	_LIT(KDbPath8a, "Z:\\db1.db");
sl@0
   391
	rc = db.Create(KDbPath8a);
sl@0
   392
	TEST2(rc, KErrAccessDenied);
sl@0
   393
	db.Close();
sl@0
   394
sl@0
   395
	//An attempt to open non-existing secure shared database file on a read-only drive (Z:)
sl@0
   396
	rc = db.Open(KDbPath8);
sl@0
   397
	TEST(rc == KErrNotFound || rc == KErrPathNotFound);
sl@0
   398
	db.Close();
sl@0
   399
sl@0
   400
	//An attempt to open existing public shared database file on a read-only drive (Z:)
sl@0
   401
	_LIT(KDbPath9, "Z:\\TEST\\TestDb1.db");
sl@0
   402
	rc = db.Open(KDbPath9);
sl@0
   403
	TEST2(rc, KErrNone);
sl@0
   404
	db.Close();
sl@0
   405
	
sl@0
   406
	//An attempt to open corrupted public shared database file on a read-only drive (Z:)
sl@0
   407
	_LIT(KDbPath10, "Z:\\TEST\\CorruptDb.db");
sl@0
   408
	rc = db.Open(KDbPath10);
sl@0
   409
	// it will be KErrNotDb if SqlServer.cfg exists, else KErrNone if it doesn't
sl@0
   410
	// this is because we can detect a corrupt database when we attempt to
sl@0
   411
	// set the configuration. If there is no cfg file, then there will be no
sl@0
   412
	// attempt to set the pragmas and so the corrupt file is undetected
sl@0
   413
	TEST(rc==KSqlErrNotDb || rc==KErrNone);
sl@0
   414
	db.Close();
sl@0
   415
sl@0
   416
	//An attempt to open database with name containing non-convertible characters.
sl@0
   417
    TBuf<6> invName;
sl@0
   418
    invName.SetLength(6);
sl@0
   419
    invName[0] = TChar('c'); 
sl@0
   420
    invName[1] = TChar(':'); 
sl@0
   421
    invName[2] = TChar('\\'); 
sl@0
   422
    invName[3] = TChar(0xD800); 
sl@0
   423
    invName[4] = TChar(0xFC00); 
sl@0
   424
    invName[5] = TChar(0x0000);
sl@0
   425
	rc = db.Open(invName);
sl@0
   426
	db.Close();
sl@0
   427
	TEST(rc != KErrNone);
sl@0
   428
sl@0
   429
	//Copy the corrupted database file on drive C:
sl@0
   430
	TEST2(fs.Connect(), KErrNone);
sl@0
   431
	rc = BaflUtils::CopyFile(fs, KDbPath10, KTestDbName3);
sl@0
   432
	TEST2(rc, KErrNone);
sl@0
   433
	(void)fs.SetAtt(KTestDbName3, 0, KEntryAttReadOnly);
sl@0
   434
	fs.Close();
sl@0
   435
sl@0
   436
	//An attempt to open corrupted public shared database file on a drive (C:)
sl@0
   437
	rc = db.Open(KTestDbName3);
sl@0
   438
	TEST(rc == KSqlErrNotDb || rc == KErrNone);//Note: but it may be a different error code as well
sl@0
   439
	db.Close();
sl@0
   440
	(void)RSqlDatabase::Delete(KTestDbName3);
sl@0
   441
	
sl@0
   442
	//Create, Close, Open, Close and again Open database test
sl@0
   443
	rc = db.Create(KTestDbName2, securityPolicy);
sl@0
   444
	TEST2(rc, KErrNone);
sl@0
   445
	db.Close();
sl@0
   446
	rc = db.Open(KTestDbName2);
sl@0
   447
	TEST2(rc, KErrNone);
sl@0
   448
	db.Close();
sl@0
   449
	rc = db.Open(KTestDbName2);
sl@0
   450
	TEST2(rc, KErrNone);
sl@0
   451
	db.Close();
sl@0
   452
sl@0
   453
	//Open two connections to the same database.
sl@0
   454
	rc = db.Open(KTestDbName2);
sl@0
   455
	TEST2(rc, KErrNone);
sl@0
   456
	rc = db2.Open(KTestDbName2);
sl@0
   457
	TEST2(rc, KErrNone);
sl@0
   458
	db2.Close();
sl@0
   459
	db.Close();
sl@0
   460
	
sl@0
   461
	rc = RSqlDatabase::Delete(KTestDbName2);
sl@0
   462
	TEST2(rc, KErrNone);
sl@0
   463
	
sl@0
   464
	securityPolicy.Close();
sl@0
   465
	}
sl@0
   466
sl@0
   467
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   468
sl@0
   469
/**
sl@0
   470
@SYMTestCaseID			SYSLIB-SQL-CT-1602
sl@0
   471
@SYMTestCaseDesc		Setting database isolation level tests.
sl@0
   472
@SYMTestPriority		High
sl@0
   473
@SYMTestActions			Tests for RSqlDatabase::SetIsolationLevel() method.
sl@0
   474
@SYMTestExpectedResults Test must not fail
sl@0
   475
@SYMREQ					REQ5792
sl@0
   476
                        REQ5793
sl@0
   477
*/	
sl@0
   478
void SetIsolationLevelTest()
sl@0
   479
	{
sl@0
   480
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
   481
sl@0
   482
	RSqlDatabase db;		
sl@0
   483
	TInt err = db.Create(KTestDbName1);
sl@0
   484
	TEST2(err, KErrNone);
sl@0
   485
sl@0
   486
	err = db.SetIsolationLevel(RSqlDatabase::EReadCommitted);
sl@0
   487
	TEST2(err, KErrNotSupported);
sl@0
   488
	
sl@0
   489
	err = db.SetIsolationLevel(RSqlDatabase::ERepeatableRead);
sl@0
   490
	TEST2(err, KErrNotSupported);
sl@0
   491
	
sl@0
   492
	err = db.SetIsolationLevel(RSqlDatabase::EReadUncommitted);
sl@0
   493
	TEST2(err, KErrNone);
sl@0
   494
	
sl@0
   495
	err = db.SetIsolationLevel(RSqlDatabase::ESerializable);
sl@0
   496
	TEST2(err, KErrNone);
sl@0
   497
	
sl@0
   498
	db.Close();
sl@0
   499
	
sl@0
   500
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
   501
	}
sl@0
   502
sl@0
   503
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   504
sl@0
   505
/**
sl@0
   506
@SYMTestCaseID			SYSLIB-SQL-CT-1603
sl@0
   507
@SYMTestCaseDesc		Deleting database tests. Deleting non-existing database, opened database, 
sl@0
   508
						database on non-existing drive, zero-length database name, only path (no file name),
sl@0
   509
						rom drive based database.
sl@0
   510
@SYMTestPriority		High
sl@0
   511
@SYMTestActions			Tests for RSqlDatabase::Delete() method.
sl@0
   512
@SYMTestExpectedResults Test must not fail
sl@0
   513
@SYMREQ					REQ5792
sl@0
   514
                        REQ5793
sl@0
   515
*/	
sl@0
   516
void DeleteDatabaseTest()
sl@0
   517
	{
sl@0
   518
	//An attempt to delete non-existing secure shared database
sl@0
   519
	_LIT(KDbName1, "C:[1111CCCC]EE__900000.adb");
sl@0
   520
	TInt err = RSqlDatabase::Delete(KDbName1);
sl@0
   521
	TEST2(err, KErrNotFound);
sl@0
   522
sl@0
   523
	//An attempt to delete non-existing public database
sl@0
   524
	_LIT(KDbName2, "C:\\TEST\\__900000.adb");
sl@0
   525
	err = RSqlDatabase::Delete(KDbName2);
sl@0
   526
	TEST2(err, KErrNotFound);
sl@0
   527
	
sl@0
   528
	//Zero length database file name.
sl@0
   529
	_LIT(KDbName3, "");
sl@0
   530
	err = RSqlDatabase::Delete(KDbName3);
sl@0
   531
	TEST2(err,  KErrBadName);
sl@0
   532
	
sl@0
   533
	//Database file name containing only the drive name
sl@0
   534
	_LIT(KDbName4, "C:");
sl@0
   535
	err = RSqlDatabase::Delete(KDbName4);
sl@0
   536
	TEST2(err, KErrBadName);
sl@0
   537
	
sl@0
   538
	//Database file name containing only the path, without the file name
sl@0
   539
	_LIT(KDbName5, "C:");
sl@0
   540
	err = RSqlDatabase::Delete(KDbName5);
sl@0
   541
	TEST2(err, KErrBadName);
sl@0
   542
	
sl@0
   543
	//Public shared database file on a non-existing drive (A:)	
sl@0
   544
	_LIT(KDbName6, "A:\\test\\db1.db");
sl@0
   545
	err = RSqlDatabase::Delete(KDbName6);
sl@0
   546
	TEST2(err, KErrNotReady);
sl@0
   547
sl@0
   548
	//An attempt to delete opened database.
sl@0
   549
	RSqlDatabase db;	
sl@0
   550
	err = db.Create(KDbName7);
sl@0
   551
	TEST2(err, KErrNone);
sl@0
   552
	err = RSqlDatabase::Delete(KDbName7);
sl@0
   553
	TEST2(err, KErrInUse);
sl@0
   554
	db.Close();
sl@0
   555
	err = RSqlDatabase::Delete(KDbName7);
sl@0
   556
	TEST2(err, KErrNone);
sl@0
   557
sl@0
   558
	//An attempt to delete existing public shared database file on a read-only drive (Z:)
sl@0
   559
	_LIT(KDbName8, "Z:\\TEST\\TestDb1.db");
sl@0
   560
	err = RSqlDatabase::Delete(KDbName8);
sl@0
   561
	TEST2(err, KErrAccessDenied);
sl@0
   562
	
sl@0
   563
	//Create secure database
sl@0
   564
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
   565
	RSqlSecurityPolicy securityPolicy;
sl@0
   566
	err = securityPolicy.Create(defaultPolicy);
sl@0
   567
	TEST2(err, KErrNone);
sl@0
   568
	err = db.Create(KTestDbName7, securityPolicy);
sl@0
   569
	TEST2(err, KErrNone);
sl@0
   570
	db.Close();
sl@0
   571
	securityPolicy.Close();
sl@0
   572
	
sl@0
   573
	//Attempt to delete a secure public database.
sl@0
   574
	//The calling application has no rights to delete a file with that name from the server's 
sl@0
   575
	//private data cage.
sl@0
   576
   	err = RSqlDatabase::Delete(_L("C:[45454545]qq.db"));
sl@0
   577
	TEST2(err, KErrPermissionDenied);
sl@0
   578
sl@0
   579
	//Attempt to delete a secure public database. No drive specified.
sl@0
   580
	//The calling application has no rights to delete a file with that name from the server's 
sl@0
   581
	//private data cage.
sl@0
   582
	err = RSqlDatabase::Delete(_L("[45454545]qq.db"));
sl@0
   583
	TEST2(err, KErrPermissionDenied);
sl@0
   584
sl@0
   585
	//Attempt to delete secure database specifying the full database path
sl@0
   586
	TParse parse;
sl@0
   587
	parse.Set(KTestDbName7, &KServerPrivateDir(), 0);
sl@0
   588
	err = RSqlDatabase::Delete(parse.FullName());
sl@0
   589
	TEST2(err, KErrArgument);
sl@0
   590
sl@0
   591
	//Attempt to delete secure database specifying only the database name
sl@0
   592
	err = RSqlDatabase::Delete(parse.NameAndExt());
sl@0
   593
	//If C: is the system drive then the operation must pass.
sl@0
   594
	TEST2(err, KErrNone);
sl@0
   595
	}
sl@0
   596
sl@0
   597
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   598
sl@0
   599
/**
sl@0
   600
@SYMTestCaseID			SYSLIB-SQL-CT-1640
sl@0
   601
@SYMTestCaseDesc		Copying database tests. Copying:
sl@0
   602
						- non-secure to non-secure database;
sl@0
   603
						- non-secure to secure database;
sl@0
   604
						- secure to non-secure database;
sl@0
   605
						- secure to secure database;
sl@0
   606
						- secure database, when the application is not the database creator (owner);
sl@0
   607
@SYMTestPriority		High
sl@0
   608
@SYMTestActions			Tests for RSqlDatabase::Copy() method.
sl@0
   609
@SYMTestExpectedResults Test must not fail
sl@0
   610
@SYMREQ					REQ5792
sl@0
   611
                        REQ5793
sl@0
   612
*/	
sl@0
   613
void CopyDatabaseTest()
sl@0
   614
	{
sl@0
   615
	RSqlDatabase db;	
sl@0
   616
sl@0
   617
	//Create secure database
sl@0
   618
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
   619
	RSqlSecurityPolicy securityPolicy;
sl@0
   620
	TInt err = securityPolicy.Create(defaultPolicy);
sl@0
   621
	TEST2(err, KErrNone);
sl@0
   622
	err = db.Create(KTestDbName7, securityPolicy);
sl@0
   623
	TEST2(err, KErrNone);
sl@0
   624
	db.Close();
sl@0
   625
	securityPolicy.Close();
sl@0
   626
	
sl@0
   627
	//Create non-secure database
sl@0
   628
	err = db.Create(KTestDbName1);
sl@0
   629
	TEST2(err, KErrNone);
sl@0
   630
	db.Close();
sl@0
   631
sl@0
   632
	//Copy non-secure to non-secure database	
sl@0
   633
	err = RSqlDatabase::Copy(KTestDbName1, KTestDbName8);
sl@0
   634
	TEST2(err, KErrNone);
sl@0
   635
sl@0
   636
	//Attempt to copy non-secure to secure database	
sl@0
   637
	err = RSqlDatabase::Copy(KTestDbName1, _L("C:[99999999]pkk.db"));
sl@0
   638
	TEST2(err, KErrPermissionDenied);
sl@0
   639
sl@0
   640
	//Attempt to copy secure to non-secure database	
sl@0
   641
	err = RSqlDatabase::Copy(KTestDbName7, _L("C:\\test\\asdf.db"));
sl@0
   642
	TEST2(err, KErrPermissionDenied);
sl@0
   643
sl@0
   644
	//Copy secure to secure database. The test application is the database owner.
sl@0
   645
	err = RSqlDatabase::Copy(KTestDbName7, KTestDbName4);
sl@0
   646
	TEST2(err, KErrNone);
sl@0
   647
	err = RSqlDatabase::Delete(KTestDbName4);
sl@0
   648
	TEST2(err, KErrNone);
sl@0
   649
sl@0
   650
	//Attempt to copy secure to secure database. The test application is not the database owner.
sl@0
   651
	err = RSqlDatabase::Copy(KTestDbName7, _L("C:[11111111]ff.db"));
sl@0
   652
	TEST2(err, KErrPermissionDenied);
sl@0
   653
	err = RSqlDatabase::Copy(_L("C:[11111111]ff.db"), _L("C:[22222222]ff.db"));
sl@0
   654
	TEST2(err, KErrPermissionDenied);
sl@0
   655
	err = RSqlDatabase::Copy(_L("C:[11111111]ff.db"), KTestDbName7);
sl@0
   656
	TEST2(err, KErrPermissionDenied);
sl@0
   657
	
sl@0
   658
	(void)RSqlDatabase::Delete(KTestDbName8);
sl@0
   659
	(void)RSqlDatabase::Delete(KTestDbName7);
sl@0
   660
	(void)RSqlDatabase::Delete(KTestDbName4);
sl@0
   661
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
   662
	}
sl@0
   663
sl@0
   664
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   665
sl@0
   666
/**
sl@0
   667
@SYMTestCaseID			SYSLIB-SQL-CT-1604
sl@0
   668
@SYMTestCaseDesc		Create a table with two integer columns. The second column has a default value NULL.
sl@0
   669
						Check what will be the result of "column1 + column2" operation, if "column2" 
sl@0
   670
						value is NULL.
sl@0
   671
@SYMTestPriority		High
sl@0
   672
@SYMTestActions			Tests mathematical operations with ESqlNull column values.
sl@0
   673
@SYMTestExpectedResults Test must not fail
sl@0
   674
@SYMREQ					REQ5792
sl@0
   675
                        REQ5793
sl@0
   676
*/	
sl@0
   677
void NullColumnValues()
sl@0
   678
	{
sl@0
   679
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
   680
	
sl@0
   681
	RSqlDatabase db;		
sl@0
   682
	TInt err = db.Create(KTestDbName1);
sl@0
   683
	TEST2(err, KErrNone);
sl@0
   684
sl@0
   685
	err = db.Exec(_L8("CREATE TABLE test(int_fld integer, null_int_fld integer default null)"));
sl@0
   686
	TEST(err >= 0);
sl@0
   687
sl@0
   688
	err = db.Exec(_L8("INSERT INTO test(int_fld) values(200)"));
sl@0
   689
	TEST2(err, 1);
sl@0
   690
sl@0
   691
	RSqlStatement stmt;
sl@0
   692
	
sl@0
   693
	err = stmt.Prepare(db, _L8("SELECT * from test"));
sl@0
   694
	TEST2(err, KErrNone);
sl@0
   695
	
sl@0
   696
	err = stmt.Next();
sl@0
   697
	TEST2(err, KSqlAtRow);
sl@0
   698
sl@0
   699
	TSqlColumnType colType = stmt.ColumnType(0);
sl@0
   700
	TEST(colType == ESqlInt);
sl@0
   701
	
sl@0
   702
	colType = stmt.ColumnType(1);
sl@0
   703
	TEST(colType == ESqlNull);
sl@0
   704
	
sl@0
   705
	TInt val = stmt.ColumnInt(0);
sl@0
   706
	TEST(val == 200);
sl@0
   707
	
sl@0
   708
	val = stmt.ColumnInt(1);
sl@0
   709
	TEST(val == 0);
sl@0
   710
sl@0
   711
	stmt.Close();
sl@0
   712
	
sl@0
   713
	err = stmt.Prepare(db, _L8("SELECT (int_fld + null_int_fld) as res from test"));
sl@0
   714
	TEST2(err, KErrNone);
sl@0
   715
	
sl@0
   716
	err = stmt.Next();
sl@0
   717
	TEST2(err, KSqlAtRow);
sl@0
   718
	
sl@0
   719
	colType = stmt.ColumnType(0);
sl@0
   720
	TEST(colType == ESqlNull);
sl@0
   721
	
sl@0
   722
	val = stmt.ColumnInt(0);
sl@0
   723
	TEST(val == 0);
sl@0
   724
	
sl@0
   725
	stmt.Close();
sl@0
   726
	db.Close();
sl@0
   727
sl@0
   728
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
   729
	}
sl@0
   730
sl@0
   731
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   732
sl@0
   733
_LIT8(KStmt1, "CREATE TABLE A1(Fld1 INTEGER, Fld2 DOUBLE);\
sl@0
   734
									   CREATE TABLE A2(Fld1 INTEGER, Fld2 DOUBLE);\
sl@0
   735
									   CREATE TRIGGER TrgA1Ins BEFORE Insert ON A1\
sl@0
   736
									   BEGIN\
sl@0
   737
									      INSERT INTO A2(Fld1, Fld2) VALUES(new.Fld1, new.Fld2);\
sl@0
   738
									   END;");
sl@0
   739
_LIT8(KStmt2, "INSERT INTO A1(Fld1, Fld2) VALUES(1, 2.0)");
sl@0
   740
_LIT8(KStmt3, "SELECT * FROM A2");
sl@0
   741
_LIT8(KStmt4, "INSERT INTO A1(Fld1, Fld2) VALUES(2, 4.0); UPDATE A2 SET Fld2 = 11.3 WHERE Fld1 = 2");
sl@0
   742
_LIT8(KStmt5, "");
sl@0
   743
_LIT8(KStmt6, "INSERT INTO A1(Fld1, Fld2) VALUESa(6, 234.0);");
sl@0
   744
_LIT8(KStmt7, "");
sl@0
   745
_LIT8(KStmt8, ";;;;;");
sl@0
   746
_LIT8(KStmt9, "INSERT INTO A1(Fld1, Fld2) VALUES(:v1, :v2)");
sl@0
   747
sl@0
   748
/**
sl@0
   749
@SYMTestCaseID			SYSLIB-SQL-CT-1605
sl@0
   750
@SYMTestCaseDesc		SQL statements execution. Valid SQL statements. Empty SQL statement. 
sl@0
   751
						More than one SQL statements, separated with ";". SQL statement which syntax is
sl@0
   752
						incorrect. SQL statement with parameters. INSERT/SELECT/CREATE TABLE SQL statements.
sl@0
   753
@SYMTestPriority		High
sl@0
   754
@SYMTestActions			RSqlDatabase::Exec() tests, 16-bit and 8-bit SQL statements
sl@0
   755
@SYMTestExpectedResults Test must not fail
sl@0
   756
@SYMREQ					REQ5792
sl@0
   757
                        REQ5793
sl@0
   758
*/	
sl@0
   759
template <class DES, class BUF> void ExecOnDbTest()
sl@0
   760
	{
sl@0
   761
	RSqlDatabase db;
sl@0
   762
	TInt rc = db.Create(KTestDbName1);
sl@0
   763
	TEST2(rc, KErrNone);
sl@0
   764
sl@0
   765
	//Create two tables and a trigger	              	  
sl@0
   766
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt1, KErrNone); 
sl@0
   767
sl@0
   768
	//INSERT sql statement execution
sl@0
   769
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt2, KErrNone); 
sl@0
   770
sl@0
   771
	//SELECT sql statement execution
sl@0
   772
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt3, KErrNone); 
sl@0
   773
sl@0
   774
	//Executing more than one SQL statement in a single Exec() call.
sl@0
   775
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt4, KErrNone); 
sl@0
   776
sl@0
   777
	//Executing zero length SQL statement.
sl@0
   778
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt5, KErrNone); 
sl@0
   779
	
sl@0
   780
	//Executing a SQL statement with syntax errors.
sl@0
   781
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt6, KSqlErrGeneral); 
sl@0
   782
sl@0
   783
	//Executing an empty SQL statement.
sl@0
   784
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt7, KErrNone); 
sl@0
   785
	
sl@0
   786
	//Executing a SQL string, which does not have any SQL statements inside, but has valid syntax.
sl@0
   787
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt8, KErrNone); 
sl@0
   788
	
sl@0
   789
	//Executing SQL statement with parameters. They will be set with NULL values, if not set explicitly.
sl@0
   790
	ExecSqlStmtOnDb<DES, BUF>(db, KStmt9, KErrNone); 
sl@0
   791
	
sl@0
   792
	db.Close();
sl@0
   793
sl@0
   794
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
   795
	TEST2(rc, KErrNone);
sl@0
   796
	}
sl@0
   797
sl@0
   798
_LIT8(KStmt10, "");
sl@0
   799
_LIT8(KStmt11, ";   ;  ;;;");
sl@0
   800
_LIT8(KStmt12, "CREATE TABLE AAA(Fld1 INTEGER, Fld2 VARCHAR(100))");
sl@0
   801
_LIT8(KStmt13, "INSERT INTO AAA(Fld1, Fld2) VALUES(5, 'FldVal1-1234567890')");
sl@0
   802
_LIT8(KStmt14, "SELECT fld1, fld2 FROM AAA");
sl@0
   803
_LIT8(KStmt15, "SELECT fld2, fld1 FROM AAA");
sl@0
   804
_LIT8(KStmt16, "SELECT fld2, fld1 FROM AAA WHERE Fld1 > :Prm1 AND fld2 = :PRM2");
sl@0
   805
_LIT8(KStmt17, "INSERT INTO AAA(Fld1, Fld2) VALUES(:b, :a);");
sl@0
   806
_LIT8(KStmt18, "CREATE TABLE BBB(Fld1 INTEGER, Fld2 BIGINT, Fld3 DOUBLE, \
sl@0
   807
					                       Fld4 TEXT, Fld5 LONGBLOB, Fld6 TEXT NULL)");
sl@0
   808
_LIT8(KStmt19, "INSERT INTO BBB(Fld1, Fld2, Fld3, Fld4, Fld5, Fld6)\
sl@0
   809
	                                       VALUES(:V1, :V2, :V3, :V4, :V5, :V6)");
sl@0
   810
_LIT8(KStmt20, "SELECT * FROM BBB");
sl@0
   811
_LIT8(KStmt21, "SELECT fld1, fld2 FROM AAA;SELECT fld1, fld2 FROM AAA");
sl@0
   812
sl@0
   813
/**
sl@0
   814
@SYMTestCaseID			SYSLIB-SQL-CT-1606
sl@0
   815
@SYMTestCaseDesc		Preparing SQL statements. Moving to the next record. Retrieving and verifying 
sl@0
   816
						the column types and values. Binding parameter values.
sl@0
   817
@SYMTestPriority		High
sl@0
   818
@SYMTestActions			RSqlStatement::Prepare(), RSqlStatement::Next() tests, 16-bit and 8-bit SQL statements.
sl@0
   819
						RSqlStatement::ColumnIndex(), RSqlStatement::Column<DataType>(), RSqlStatement::Bind<DataType>(),
sl@0
   820
						RSqlStatement::Column<DataType>().				
sl@0
   821
@SYMTestExpectedResults Test must not fail
sl@0
   822
@SYMREQ					REQ5792
sl@0
   823
                        REQ5793
sl@0
   824
*/	
sl@0
   825
template <class DES, class BUF> void StatementTest()
sl@0
   826
	{
sl@0
   827
	RSqlDatabase db;	
sl@0
   828
	TInt rc = db.Create(KTestDbName1);
sl@0
   829
	TEST2(rc, KErrNone);
sl@0
   830
sl@0
   831
	//Executing an empty SQL statement.
sl@0
   832
	RSqlStatement stmt = PrepareSqlStmt<DES, BUF>(db, KStmt10, KErrArgument);
sl@0
   833
	stmt.Close();
sl@0
   834
sl@0
   835
	//Executing a SQL string, which does not have any SQL statements inside, but has valid syntax.
sl@0
   836
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt11, KErrArgument); 
sl@0
   837
	stmt.Close();
sl@0
   838
	
sl@0
   839
	//SQL statement without parameters. Create a table.
sl@0
   840
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt12, KErrNone);
sl@0
   841
	ExecSqlStmt(db, stmt, KErrNone);
sl@0
   842
	stmt.Close();
sl@0
   843
sl@0
   844
	//String containg more than one SQL statement.
sl@0
   845
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt21, KErrArgument); 
sl@0
   846
	stmt.Close();
sl@0
   847
	
sl@0
   848
	//SQL statement without parameters. Insert a record into the table.
sl@0
   849
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt13, KErrNone);
sl@0
   850
	ExecSqlStmt(db, stmt, KErrNone);
sl@0
   851
	stmt.Close();
sl@0
   852
		
sl@0
   853
	//Test RSqlStatement::ColumnIndex().
sl@0
   854
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt14, KErrNone);
sl@0
   855
	TInt idx1 = stmt.ColumnIndex(_L("FLD1"));
sl@0
   856
	TEST(idx1 == 0);
sl@0
   857
	TInt idx2 = stmt.ColumnIndex(_L("FlD2"));
sl@0
   858
	TEST(idx2 == 1);
sl@0
   859
	TInt idx3 = stmt.ColumnIndex(_L("fld3"));
sl@0
   860
	TEST(idx3 < 0);
sl@0
   861
	stmt.Close();
sl@0
   862
	
sl@0
   863
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt15, KErrNone);
sl@0
   864
	idx1 = stmt.ColumnIndex(_L("FLD1"));
sl@0
   865
	TEST(idx1 == 1);
sl@0
   866
	idx2 = stmt.ColumnIndex(_L("FlD2"));
sl@0
   867
	TEST(idx2 == 0);
sl@0
   868
	idx3 = stmt.ColumnIndex(_L("fld3"));
sl@0
   869
	TEST(idx3 < 0);
sl@0
   870
	
sl@0
   871
	//Test RSqlStatement::Column<DataType>() methods.
sl@0
   872
	TInt recCnt = 0;
sl@0
   873
	while((rc = stmt.Next()) == KSqlAtRow)
sl@0
   874
		{
sl@0
   875
		++recCnt;
sl@0
   876
		
sl@0
   877
		TInt intVal = stmt.ColumnInt(idx1);
sl@0
   878
		TEST(intVal == 5);
sl@0
   879
		
sl@0
   880
		//Integer column value retrieved as a text.
sl@0
   881
		TPtrC strVal1;
sl@0
   882
		TInt err = stmt.ColumnText(idx1, strVal1);
sl@0
   883
		TEST2(err, KErrNone);
sl@0
   884
		TEST(strVal1 == KNullDesC);
sl@0
   885
		
sl@0
   886
		//Text column value retrieved as a binary
sl@0
   887
		TBuf8<50> strVal3;
sl@0
   888
		err = stmt.ColumnBinary(idx2, strVal3);
sl@0
   889
		TEST2(err, KErrNone);
sl@0
   890
		TEST(strVal3 == KNullDesC8);
sl@0
   891
		
sl@0
   892
		TPtrC strVal2;
sl@0
   893
		err = stmt.ColumnText(idx2, strVal2);
sl@0
   894
		TEST2(err, KErrNone);
sl@0
   895
		TEST(strVal2 == _L("FldVal1-1234567890"));
sl@0
   896
				
sl@0
   897
		//Invalid column index. Panic: "SqlDb 5"
sl@0
   898
		//intVal = stmt.ColumnInt(1002);
sl@0
   899
		//intVal = stmt.ColumnInt(-24);
sl@0
   900
		}
sl@0
   901
	stmt.Close();
sl@0
   902
	TEST2(rc, KSqlAtEnd);
sl@0
   903
	TEST2(SqlRetCodeClass(rc), ESqlInformation);
sl@0
   904
	TEST(recCnt == 1);
sl@0
   905
	
sl@0
   906
	//Test RSqlStatement::Bind<DataType>() methods.
sl@0
   907
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt16, KErrNone);
sl@0
   908
	idx1 = stmt.ColumnIndex(_L("FLD1"));
sl@0
   909
	TEST(idx1 == 1);
sl@0
   910
	idx2 = stmt.ColumnIndex(_L("FlD2"));
sl@0
   911
	TEST(idx2 == 0);
sl@0
   912
	TInt prmIdx1 = stmt.ParameterIndex(_L(":prm1"));
sl@0
   913
	TEST(prmIdx1 == 0);
sl@0
   914
	TInt prmIdx2 = stmt.ParameterIndex(_L(":prm2"));
sl@0
   915
	TEST(prmIdx2 == 1);
sl@0
   916
	rc = stmt.BindInt(prmIdx1, -4);
sl@0
   917
	//No problem to bind whatever value type we like
sl@0
   918
	//rc = stmt.BindBinary(prmIdx1, KSqlStmt4());
sl@0
   919
	TEST2(rc, KErrNone);
sl@0
   920
	rc = stmt.BindText(prmIdx2, _L("FldVal1-1234567890"));
sl@0
   921
	TEST2(rc, KErrNone);
sl@0
   922
	//Test RSqlStatement::Column<DataType>() methods.
sl@0
   923
	recCnt = 0;
sl@0
   924
	while((rc = stmt.Next()) == KSqlAtRow)
sl@0
   925
		{
sl@0
   926
		++recCnt;
sl@0
   927
		TInt intVal = stmt.ColumnInt(idx1);
sl@0
   928
		TEST(intVal == 5);
sl@0
   929
		TPtrC strVal;
sl@0
   930
		TInt err = stmt.ColumnText(idx2, strVal);
sl@0
   931
		TEST2(err, KErrNone);
sl@0
   932
		TEST(strVal == _L("FldVal1-1234567890"));
sl@0
   933
		}
sl@0
   934
	stmt.Close();
sl@0
   935
	TEST2(rc, KSqlAtEnd);
sl@0
   936
	TEST2(SqlRetCodeClass(rc), ESqlInformation);
sl@0
   937
	TEST(recCnt == 1);
sl@0
   938
	
sl@0
   939
	//Test an INSERT SQL - prepare, bind, exec.
sl@0
   940
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt17, KErrNone);
sl@0
   941
	prmIdx1 = stmt.ParameterIndex(_L(":A"));
sl@0
   942
	TEST(prmIdx1 == 1);
sl@0
   943
	prmIdx2 = stmt.ParameterIndex(_L(":B"));
sl@0
   944
	TEST(prmIdx2 == 0);
sl@0
   945
	rc = stmt.BindInt(prmIdx1, 20);
sl@0
   946
	TEST2(rc, KErrNone);
sl@0
   947
	rc = stmt.BindText(prmIdx2, _L("FldVal2"));
sl@0
   948
	TEST2(rc, KErrNone);
sl@0
   949
	rc = stmt.Exec();
sl@0
   950
	TEST2(rc, 1);
sl@0
   951
	
sl@0
   952
	stmt.Close();
sl@0
   953
	
sl@0
   954
	//Create a table with INTEGER, INT64, REAL, TEXT, BINARY, NULL, field types
sl@0
   955
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt18, KErrNone);
sl@0
   956
	ExecSqlStmt(db, stmt, KErrNone);
sl@0
   957
	stmt.Close();
sl@0
   958
	
sl@0
   959
	enum {KLow = 1, KHigh = 2};
sl@0
   960
	//Insert (KHigh - KLow + 1) records
sl@0
   961
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt19, KErrNone);
sl@0
   962
	TInt v32 = 1024;
sl@0
   963
	TInt64 v64 = MAKE_TINT64(0x00FF00FF, 0x12345678);
sl@0
   964
	TReal vReal = 234.75;
sl@0
   965
	TBuf<10> vText;
sl@0
   966
	TBuf8<10> vBinary;
sl@0
   967
	for(TInt i=KLow;i<=KHigh;++i)
sl@0
   968
		{
sl@0
   969
		rc = stmt.BindInt(0, v32 * i);
sl@0
   970
		TEST2(rc, KErrNone);
sl@0
   971
		
sl@0
   972
		rc = stmt.BindInt64(1, v64 * i);
sl@0
   973
		TEST2(rc, KErrNone);
sl@0
   974
		
sl@0
   975
		rc = stmt.BindReal(2, vReal * i);
sl@0
   976
		TEST2(rc, KErrNone);
sl@0
   977
		
sl@0
   978
		vText.Copy(_L("TEXT"));
sl@0
   979
		vText.Append(TChar(i + '0'));
sl@0
   980
		rc = stmt.BindText(3, vText);
sl@0
   981
		TEST2(rc, KErrNone);
sl@0
   982
sl@0
   983
		vBinary.Copy(_L("BINARY"));
sl@0
   984
		vBinary.Append(TChar(i + '0'));
sl@0
   985
		rc = stmt.BindBinary(4, vBinary);
sl@0
   986
		TEST2(rc, KErrNone);
sl@0
   987
sl@0
   988
		rc = stmt.BindNull(5);
sl@0
   989
		TEST2(rc, KErrNone);
sl@0
   990
sl@0
   991
		rc = stmt.Exec();
sl@0
   992
		TEST2(rc, 1);
sl@0
   993
sl@0
   994
		rc = stmt.Reset();
sl@0
   995
		TEST2(rc, KErrNone);
sl@0
   996
		}
sl@0
   997
	stmt.Close();
sl@0
   998
sl@0
   999
	//Read and test (KHigh - KLow + 1) records
sl@0
  1000
	stmt = PrepareSqlStmt<DES, BUF>(db, KStmt20, KErrNone);
sl@0
  1001
	recCnt = 0;
sl@0
  1002
	while((rc = stmt.Next()) == KSqlAtRow)
sl@0
  1003
		{
sl@0
  1004
		++recCnt;
sl@0
  1005
		TInt v1 = stmt.ColumnInt(0);
sl@0
  1006
		TEST(v1 == v32 * recCnt);
sl@0
  1007
sl@0
  1008
		TInt64 v2 = stmt.ColumnInt64(1);
sl@0
  1009
		TEST(v2 == v64 * recCnt);
sl@0
  1010
sl@0
  1011
		TReal v3 = stmt.ColumnReal(2);
sl@0
  1012
		TEST(Abs(v3 - vReal * recCnt) < 0.000001);
sl@0
  1013
		
sl@0
  1014
		vText.Copy(_L("TEXT"));
sl@0
  1015
		vText.Append(TChar(recCnt + '0'));
sl@0
  1016
		TPtrC v4;
sl@0
  1017
		TInt err = stmt.ColumnText(3, v4);
sl@0
  1018
		TEST2(err, KErrNone);
sl@0
  1019
		TEST(v4 == vText);
sl@0
  1020
		
sl@0
  1021
		vBinary.Copy(_L("BINARY"));
sl@0
  1022
		vBinary.Append(TChar(recCnt + '0'));
sl@0
  1023
		TPtrC8 v5;
sl@0
  1024
		err = stmt.ColumnBinary(4, v5);
sl@0
  1025
		TEST2(err, KErrNone);
sl@0
  1026
		TEST(v5 == vBinary);
sl@0
  1027
		
sl@0
  1028
		TBool b = stmt.IsNull(5);
sl@0
  1029
		TEST(b != 0);
sl@0
  1030
		}
sl@0
  1031
	stmt.Close();
sl@0
  1032
	TEST2(rc, KSqlAtEnd);
sl@0
  1033
	TEST2(SqlRetCodeClass(rc), ESqlInformation);
sl@0
  1034
	TEST(recCnt == (KHigh - KLow + 1));
sl@0
  1035
	
sl@0
  1036
	db.Close();
sl@0
  1037
sl@0
  1038
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1039
	TEST2(rc, KErrNone);
sl@0
  1040
	}
sl@0
  1041
sl@0
  1042
/**
sl@0
  1043
@SYMTestCaseID			SYSLIB-SQL-CT-1607
sl@0
  1044
@SYMTestCaseDesc		Retrieving long text column values test.
sl@0
  1045
						Retrieving long column values using RSqlStatement::ColumnText() when the recipient buffer
sl@0
  1046
						is not big enough.
sl@0
  1047
@SYMTestPriority		High
sl@0
  1048
@SYMTestActions			RSqlColumnReadStream::ColumnText() test.
sl@0
  1049
@SYMTestExpectedResults Test must not fail
sl@0
  1050
@SYMREQ					REQ5792
sl@0
  1051
                        REQ5793
sl@0
  1052
*/	
sl@0
  1053
void ColumnTextStreamTest()
sl@0
  1054
	{
sl@0
  1055
	RSqlDatabase db;	
sl@0
  1056
	TInt rc = db.Create(KTestDbName1);
sl@0
  1057
	TEST2(rc, KErrNone);
sl@0
  1058
sl@0
  1059
	enum {KSqlBufSize = 64};
sl@0
  1060
	
sl@0
  1061
	//Create a table
sl@0
  1062
	_LIT8(KSqlStmt1, "CREATE TABLE A(Fld1 INTEGER, Fld2 TEXT);");
sl@0
  1063
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt1(), KErrNone); 
sl@0
  1064
	
sl@0
  1065
	const TInt KTextLen = 3101;
sl@0
  1066
sl@0
  1067
	_LIT(KSqlStmt2, "INSERT INTO A(Fld1, Fld2) VALUES(");
sl@0
  1068
	
sl@0
  1069
	//Allocate a buffer for the SQL statement.
sl@0
  1070
	HBufC* buf = HBufC::New(KSqlStmt2().Length() + KTextLen + 10);
sl@0
  1071
	TEST(buf != NULL);
sl@0
  1072
sl@0
  1073
	TPtr sql = buf->Des();
sl@0
  1074
	
sl@0
  1075
	//Insert row 1
sl@0
  1076
	
sl@0
  1077
	const TChar KChar1('A');
sl@0
  1078
	sql.Copy(KSqlStmt2);
sl@0
  1079
	sql.Append(_L("1, '"));
sl@0
  1080
	TInt i;
sl@0
  1081
	for(i=0;i<KTextLen;++i)
sl@0
  1082
		{
sl@0
  1083
		sql.Append(KChar1);
sl@0
  1084
		}
sl@0
  1085
	sql.Append(_L("')"));
sl@0
  1086
sl@0
  1087
	rc = db.Exec(sql);
sl@0
  1088
	TEST2(rc, 1);
sl@0
  1089
sl@0
  1090
	//Insert row 2
sl@0
  1091
	
sl@0
  1092
	const TChar KChar2('B');
sl@0
  1093
	sql.Copy(KSqlStmt2);
sl@0
  1094
	sql.Append(_L("2, '"));
sl@0
  1095
	for(i=0;i<KTextLen;++i)
sl@0
  1096
		{
sl@0
  1097
		sql.Append(KChar2);
sl@0
  1098
		}
sl@0
  1099
	sql.Append(_L("')"));
sl@0
  1100
sl@0
  1101
	rc = db.Exec(sql);
sl@0
  1102
	TEST2(rc, 1);
sl@0
  1103
sl@0
  1104
	//Prepare SELECT SQL statement
sl@0
  1105
	_LIT8(KSqlStmt3, "SELECT * FROM A");
sl@0
  1106
	RSqlStatement stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt3, KErrNone);
sl@0
  1107
sl@0
  1108
	//Move on row 1
sl@0
  1109
	rc = stmt.Next();
sl@0
  1110
	TEST2(rc, KSqlAtRow);
sl@0
  1111
sl@0
  1112
	//An attempt to read integer column using binary stream
sl@0
  1113
	RSqlColumnReadStream strm2;
sl@0
  1114
	rc = strm2.ColumnBinary(stmt, 0);
sl@0
  1115
	strm2.Close();
sl@0
  1116
	TEST2(rc, KErrArgument);
sl@0
  1117
sl@0
  1118
	//An attempt to read integer column using text stream
sl@0
  1119
	rc = strm2.ColumnText(stmt, 0);
sl@0
  1120
	strm2.Close();
sl@0
  1121
	TEST2(rc, KErrArgument);
sl@0
  1122
	
sl@0
  1123
	//Read the long text column using a stream
sl@0
  1124
	RSqlColumnReadStream columnStream;
sl@0
  1125
	rc = columnStream.ColumnText(stmt, 1);
sl@0
  1126
	columnStream.Close();
sl@0
  1127
	TEST2(rc, KErrNone);
sl@0
  1128
sl@0
  1129
	//...and the leaving version of ColumnText() 
sl@0
  1130
	TRAP(rc, columnStream.ColumnTextL(stmt, 1));
sl@0
  1131
	TEST2(rc, KErrNone);
sl@0
  1132
	
sl@0
  1133
	TInt size = stmt.ColumnSize(1);
sl@0
  1134
	TPtr colData = buf->Des();
sl@0
  1135
	TRAP(rc, columnStream.ReadL(colData, size));
sl@0
  1136
	columnStream.Close();
sl@0
  1137
	TEST2(rc, KErrNone);
sl@0
  1138
	
sl@0
  1139
	//Check the column value
sl@0
  1140
	for(i=0;i<KTextLen;++i)
sl@0
  1141
		{
sl@0
  1142
		TEST(colData[i] == (TUint8)KChar1);	
sl@0
  1143
		}
sl@0
  1144
sl@0
  1145
	//Move on row 2
sl@0
  1146
	rc = stmt.Next();
sl@0
  1147
	TEST2(rc, KSqlAtRow);
sl@0
  1148
sl@0
  1149
	//Read row 2 using ColumnText(TInt aColumnIndex, TPtrC& aPtr).
sl@0
  1150
	TPtrC colDataPtr;
sl@0
  1151
	rc = stmt.ColumnText(1, colDataPtr);
sl@0
  1152
	TEST2(rc, KErrNone);
sl@0
  1153
	
sl@0
  1154
	//Check the column value
sl@0
  1155
	for(i=0;i<KTextLen;++i)
sl@0
  1156
		{
sl@0
  1157
		TEST(colDataPtr[i] == (TUint8)KChar2);	
sl@0
  1158
		}
sl@0
  1159
sl@0
  1160
	//Read row 2 using ColumnText(TInt aColumnIndex, TDes& aDest).
sl@0
  1161
	rc = stmt.ColumnText(1, colData);
sl@0
  1162
	TEST2(rc, KErrNone);
sl@0
  1163
	//Too small target buffer
sl@0
  1164
	TBuf<3> buf1;
sl@0
  1165
    rc = stmt.ColumnText(1, buf1);
sl@0
  1166
    TEST2(rc, KErrOverflow);
sl@0
  1167
	
sl@0
  1168
	//Check the column value
sl@0
  1169
	for(i=0;i<KTextLen;++i)
sl@0
  1170
		{
sl@0
  1171
		TEST(colData[i] == (TUint8)KChar2);	
sl@0
  1172
		}
sl@0
  1173
	
sl@0
  1174
	//Read row 2 using a stream
sl@0
  1175
	colData.Zero();
sl@0
  1176
	rc = columnStream.ColumnText(stmt, 1);
sl@0
  1177
	TEST2(rc, KErrNone);
sl@0
  1178
	size = stmt.ColumnSize(1);
sl@0
  1179
	TRAP(rc, columnStream.ReadL(colData, size));
sl@0
  1180
	columnStream.Close();
sl@0
  1181
	TEST2(rc, KErrNone);
sl@0
  1182
	
sl@0
  1183
	//Check the column value
sl@0
  1184
	for(i=0;i<KTextLen;++i)
sl@0
  1185
		{
sl@0
  1186
		TEST(colData[i] == (TUint8)KChar2);	
sl@0
  1187
		}
sl@0
  1188
	
sl@0
  1189
	//Read the column value using RSqlStatement::ColumnText(). 
sl@0
  1190
	//The recipient buffer max length is smaller than the column value length.
sl@0
  1191
	rc = stmt.Reset();
sl@0
  1192
	TEST2(rc, KErrNone);
sl@0
  1193
	rc = stmt.Next();
sl@0
  1194
	TEST2(rc, KSqlAtRow);
sl@0
  1195
	const TInt KBufMaxLen = 100;
sl@0
  1196
	TBuf<KBufMaxLen> colBuf;
sl@0
  1197
	rc = stmt.ColumnText(1, colBuf);
sl@0
  1198
	TEST2(rc, KErrOverflow);
sl@0
  1199
	//Check the column value
sl@0
  1200
	for(i=0;i<KBufMaxLen;++i)
sl@0
  1201
		{
sl@0
  1202
		TEST(colBuf[i] == (TUint8)KChar1);	
sl@0
  1203
		}
sl@0
  1204
		
sl@0
  1205
	stmt.Close();
sl@0
  1206
	
sl@0
  1207
	//Deallocate buf
sl@0
  1208
	delete buf; 
sl@0
  1209
	buf = NULL;
sl@0
  1210
	
sl@0
  1211
	db.Close();
sl@0
  1212
sl@0
  1213
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1214
	TEST2(rc, KErrNone);
sl@0
  1215
	}
sl@0
  1216
sl@0
  1217
/**
sl@0
  1218
@SYMTestCaseID			SYSLIB-SQL-CT-1621
sl@0
  1219
@SYMTestCaseDesc		Retrieving long binary column values test.
sl@0
  1220
						Retrieving long column values using RSqlStatement::ColumnBinary() when the recipient buffer
sl@0
  1221
						is not big enough.
sl@0
  1222
@SYMTestPriority		High
sl@0
  1223
@SYMTestActions			RSqlColumnReadStream::ColumnBinary() test.
sl@0
  1224
@SYMTestExpectedResults Test must not fail
sl@0
  1225
@SYMREQ					REQ5792
sl@0
  1226
                        REQ5793
sl@0
  1227
*/	
sl@0
  1228
void ColumnBinaryStreamTest()
sl@0
  1229
	{
sl@0
  1230
	RSqlDatabase db;	
sl@0
  1231
	TInt rc = db.Create(KTestDbName1);
sl@0
  1232
	TEST2(rc, KErrNone);
sl@0
  1233
sl@0
  1234
	enum {KSqlBufSize = 64};
sl@0
  1235
	
sl@0
  1236
	//Create a table
sl@0
  1237
	_LIT8(KSqlStmt1, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB);");
sl@0
  1238
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt1(), KErrNone); 
sl@0
  1239
	
sl@0
  1240
	const TInt KDataLen = 3311;
sl@0
  1241
sl@0
  1242
	_LIT8(KSqlStmt2, "INSERT INTO A(Fld1, Fld2) VALUES(");
sl@0
  1243
	
sl@0
  1244
	//Allocate a buffer for the SQL statement.
sl@0
  1245
	HBufC8* buf = HBufC8::New(KSqlStmt2().Length() + KDataLen * 2 + 10);//"* 2" - SQL statement with HEX values
sl@0
  1246
	TEST(buf != NULL);
sl@0
  1247
sl@0
  1248
	TPtr8 sql = buf->Des();
sl@0
  1249
	
sl@0
  1250
	//Insert row 1
sl@0
  1251
sl@0
  1252
	const TUint8 KHexVal1 = 0x7E;
sl@0
  1253
	_LIT8(KHexValStr1, "7E");
sl@0
  1254
	sql.Copy(KSqlStmt2);
sl@0
  1255
	sql.Append(_L8("1, x'"));
sl@0
  1256
	TInt i;
sl@0
  1257
	for(i=0;i<KDataLen;++i)
sl@0
  1258
		{
sl@0
  1259
		sql.Append(KHexValStr1);
sl@0
  1260
		}
sl@0
  1261
	sql.Append(_L8("')"));
sl@0
  1262
sl@0
  1263
	rc = db.Exec(sql);
sl@0
  1264
	TEST2(rc, 1);
sl@0
  1265
sl@0
  1266
	//Insert row 2
sl@0
  1267
	
sl@0
  1268
	const TUint8 KHexVal2 = 0xA3;
sl@0
  1269
	_LIT8(KHexValStr2, "A3");
sl@0
  1270
	sql.Copy(KSqlStmt2);
sl@0
  1271
	sql.Append(_L8("2, x'"));
sl@0
  1272
	for(i=0;i<KDataLen;++i)
sl@0
  1273
		{
sl@0
  1274
		sql.Append(KHexValStr2);
sl@0
  1275
		}
sl@0
  1276
	sql.Append(_L8("')"));
sl@0
  1277
sl@0
  1278
	rc = db.Exec(sql);
sl@0
  1279
	TEST2(rc, 1);
sl@0
  1280
sl@0
  1281
    //Insert row 3: the binary column length is just 2 bytes
sl@0
  1282
    rc = db.Exec(_L("INSERT INTO A VALUES(3, x'A5D3')"));
sl@0
  1283
    TEST2(rc, 1);
sl@0
  1284
	
sl@0
  1285
	//Prepare SELECT SQL statement
sl@0
  1286
	_LIT8(KSqlStmt3, "SELECT * FROM A");
sl@0
  1287
	RSqlStatement stmt = PrepareSqlStmt<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt3, KErrNone);
sl@0
  1288
sl@0
  1289
	//Move on row 1
sl@0
  1290
	rc = stmt.Next();
sl@0
  1291
	TEST2(rc, KSqlAtRow);
sl@0
  1292
sl@0
  1293
	//Read the long binary column using a stream
sl@0
  1294
	RSqlColumnReadStream columnStream;
sl@0
  1295
	rc = columnStream.ColumnBinary(stmt, 1);
sl@0
  1296
	columnStream.Close();
sl@0
  1297
	TEST2(rc, KErrNone);
sl@0
  1298
	
sl@0
  1299
	//...and the leaving version of ColumnBinary() 
sl@0
  1300
	TRAP(rc, columnStream.ColumnBinaryL(stmt, 1));
sl@0
  1301
	TEST2(rc, KErrNone);
sl@0
  1302
	
sl@0
  1303
	TInt size = stmt.ColumnSize(1);
sl@0
  1304
	TPtr8 colData = buf->Des();
sl@0
  1305
	TRAP(rc, columnStream.ReadL(colData, size));
sl@0
  1306
	columnStream.Close();
sl@0
  1307
	TEST2(rc, KErrNone);
sl@0
  1308
	
sl@0
  1309
	//Check the column value
sl@0
  1310
	for(i=0;i<KDataLen;++i)
sl@0
  1311
		{
sl@0
  1312
		TUint8 val = colData[i];
sl@0
  1313
		TEST(val = KHexVal1);	
sl@0
  1314
		}
sl@0
  1315
sl@0
  1316
	//Move on row 2
sl@0
  1317
	rc = stmt.Next();
sl@0
  1318
	TEST2(rc, KSqlAtRow);
sl@0
  1319
sl@0
  1320
	//Read row 2 using ColumnBinary(TInt aColumnIndex, TPtrC8& aPtr).
sl@0
  1321
	TPtrC8 colDataPtr;
sl@0
  1322
	rc = stmt.ColumnBinary(1, colDataPtr);
sl@0
  1323
	TEST2(rc, KErrNone);
sl@0
  1324
	
sl@0
  1325
	//Check the column value
sl@0
  1326
	for(i=0;i<KDataLen;++i)
sl@0
  1327
		{
sl@0
  1328
		TUint8 val = colDataPtr[i];
sl@0
  1329
		TEST(val = KHexVal2);	
sl@0
  1330
		}
sl@0
  1331
sl@0
  1332
	//Read row 2 using ColumnBinary(TInt aColumnIndex, TDes8& aDest).
sl@0
  1333
	rc = stmt.ColumnBinary(1, colData);
sl@0
  1334
	TEST2(rc, KErrNone);
sl@0
  1335
	
sl@0
  1336
	//Check the column value
sl@0
  1337
	for(i=0;i<KDataLen;++i)
sl@0
  1338
		{
sl@0
  1339
		TUint8 val = colData[i];
sl@0
  1340
		TEST(val = KHexVal2);	
sl@0
  1341
		}
sl@0
  1342
	
sl@0
  1343
	//Read row 2 using a stream
sl@0
  1344
	colData.Zero();
sl@0
  1345
	rc = columnStream.ColumnBinary(stmt, 1);
sl@0
  1346
	TEST2(rc, KErrNone);
sl@0
  1347
	size = stmt.ColumnSize(1);
sl@0
  1348
	TRAP(rc, columnStream.ReadL(colData, size));
sl@0
  1349
	columnStream.Close();
sl@0
  1350
	TEST2(rc, KErrNone);
sl@0
  1351
	
sl@0
  1352
	//Check the column value
sl@0
  1353
	for(i=0;i<KDataLen;++i)
sl@0
  1354
		{
sl@0
  1355
		TUint8 val = colData[i];
sl@0
  1356
		TEST(val = KHexVal2);	
sl@0
  1357
		}
sl@0
  1358
		
sl@0
  1359
	//Read the column value using RSqlStatement::ColumnBinary(). 
sl@0
  1360
	//The recipient buffer max length is smaller than the column value length.
sl@0
  1361
	rc = stmt.Reset();
sl@0
  1362
	TEST2(rc, KErrNone);
sl@0
  1363
	rc = stmt.Next();
sl@0
  1364
	TEST2(rc, KSqlAtRow);
sl@0
  1365
	const TInt KBufMaxLen = 100;
sl@0
  1366
	TBuf8<KBufMaxLen> colBuf;
sl@0
  1367
	rc = stmt.ColumnBinary(1, colBuf);
sl@0
  1368
	TEST2(rc, KErrOverflow);
sl@0
  1369
	//Check the column value
sl@0
  1370
	for(i=0;i<KBufMaxLen;++i)
sl@0
  1371
		{
sl@0
  1372
		TUint8 val = colBuf[i];
sl@0
  1373
		TEST(val = KHexVal2);	
sl@0
  1374
		}
sl@0
  1375
	
sl@0
  1376
    //Move on row 3. The binary column value length is just 2 bytes.
sl@0
  1377
    rc = stmt.Next();
sl@0
  1378
    TEST2(rc, KSqlAtRow);
sl@0
  1379
    rc = stmt.Next();
sl@0
  1380
    TEST2(rc, KSqlAtRow);
sl@0
  1381
    TBuf8<2> buf1;
sl@0
  1382
    rc = stmt.ColumnBinary(1, buf1); 
sl@0
  1383
    TEST2(rc, KErrNone);
sl@0
  1384
    TEST2(buf1.Length(), 2);
sl@0
  1385
    TBuf8<1> buf2;
sl@0
  1386
    rc = stmt.ColumnBinary(1, buf2); 
sl@0
  1387
    TEST2(rc, KErrOverflow);
sl@0
  1388
    
sl@0
  1389
	stmt.Close();
sl@0
  1390
	
sl@0
  1391
	//Deallocate buf
sl@0
  1392
	delete buf; 
sl@0
  1393
	buf = NULL;
sl@0
  1394
	
sl@0
  1395
	db.Close();
sl@0
  1396
sl@0
  1397
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1398
	TEST2(rc, KErrNone);
sl@0
  1399
	}
sl@0
  1400
sl@0
  1401
/**
sl@0
  1402
@SYMTestCaseID          PDS-SQL-CT-4191
sl@0
  1403
@SYMTestCaseDesc        The test creates a test database and inserts one record using a stream.
sl@0
  1404
                        MStreamBuf::SeekL() is used to modify the parameter data at specific positions.
sl@0
  1405
                        Then the test executes a SELECT statement to read the just written record.
sl@0
  1406
                        MStreamBuf::SeekL() is used to read the column content at specific positions 
sl@0
  1407
                        (the same positions used during the record write operation). The read byte values must
sl@0
  1408
                        match the written byte values.
sl@0
  1409
@SYMTestPriority        High
sl@0
  1410
@SYMTestActions         RSqlColumnReadStream::ColumnBinary() and RSqlParamWriteStream::BindBinary() - MStreamBuf::SeekL() test.
sl@0
  1411
@SYMTestExpectedResults Test must not fail
sl@0
  1412
@SYMDEF                 DEF145125
sl@0
  1413
*/  
sl@0
  1414
void StreamSeekTestL()
sl@0
  1415
    {
sl@0
  1416
    RSqlDatabase db;
sl@0
  1417
    CleanupClosePushL(db);
sl@0
  1418
    TInt rc = db.Create(KTestDbName1);
sl@0
  1419
    TEST2(rc, KErrNone);
sl@0
  1420
    rc = db.Exec(_L("CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB)"));
sl@0
  1421
    TEST(rc >= 0);
sl@0
  1422
    //Write a record to the database using a stream. MStreamBuf::SeekL() is used to modify the content at a specific position.
sl@0
  1423
    RSqlStatement stmt;
sl@0
  1424
    CleanupClosePushL(stmt);
sl@0
  1425
    rc = stmt.Prepare(db, _L("INSERT INTO A(Fld1, Fld2) VALUES(1, ?)"));
sl@0
  1426
    TEST2(rc, KErrNone);
sl@0
  1427
    
sl@0
  1428
    RSqlParamWriteStream strm1;
sl@0
  1429
    CleanupClosePushL(strm1);
sl@0
  1430
    rc = strm1.BindBinary(stmt, 0);
sl@0
  1431
    TEST2(rc, KErrNone);
sl@0
  1432
sl@0
  1433
    for(TInt i=0;i<256;++i)
sl@0
  1434
        {
sl@0
  1435
        strm1 << (TUint8)i;
sl@0
  1436
        }
sl@0
  1437
    
sl@0
  1438
    const TInt KStreamOffset = 10;
sl@0
  1439
    const TUint8 KByte = 'z';
sl@0
  1440
    _LIT8(KData, "QWERTYUIOPASDFG");
sl@0
  1441
    
sl@0
  1442
    MStreamBuf* strm1buf = strm1.Sink();
sl@0
  1443
    TEST(strm1buf != NULL);
sl@0
  1444
    
sl@0
  1445
    strm1buf->SeekL(MStreamBuf::EWrite, EStreamBeginning, 0);
sl@0
  1446
    strm1buf->WriteL(&KByte, 1);
sl@0
  1447
    
sl@0
  1448
    strm1buf->SeekL(MStreamBuf::EWrite, EStreamMark, KStreamOffset);
sl@0
  1449
    strm1buf->WriteL(&KByte, 1);
sl@0
  1450
    
sl@0
  1451
    strm1buf->SeekL(MStreamBuf::EWrite, EStreamEnd, 0);
sl@0
  1452
    strm1buf->WriteL(KData().Ptr(), KData().Length());
sl@0
  1453
    
sl@0
  1454
    strm1buf->SeekL(MStreamBuf::EWrite, EStreamEnd, -4 * KStreamOffset);
sl@0
  1455
    strm1buf->WriteL(&KByte, 1);
sl@0
  1456
    
sl@0
  1457
    strm1.CommitL();
sl@0
  1458
    CleanupStack::PopAndDestroy(&strm1);
sl@0
  1459
    
sl@0
  1460
    rc = stmt.Exec();
sl@0
  1461
    TEST2(rc, 1);
sl@0
  1462
    CleanupStack::PopAndDestroy(&stmt);
sl@0
  1463
    
sl@0
  1464
    //Read the record using a stream. MStreamBuf::SeekL() is used to read the content at a specific position.
sl@0
  1465
    CleanupClosePushL(stmt);
sl@0
  1466
    rc = stmt.Prepare(db, _L("SELECT Fld2 FROM A WHERE Fld1 = 1"));
sl@0
  1467
    TEST2(rc, KErrNone);
sl@0
  1468
    rc = stmt.Next();
sl@0
  1469
    TEST2(rc, KSqlAtRow);
sl@0
  1470
    
sl@0
  1471
    RSqlColumnReadStream strm2;
sl@0
  1472
    CleanupClosePushL(strm2);
sl@0
  1473
    rc = strm2.ColumnBinary(stmt, 0);
sl@0
  1474
    TEST2(rc, KErrNone);
sl@0
  1475
sl@0
  1476
    TUint8 byte = 0;
sl@0
  1477
    MStreamBuf* strm2buf = strm2.Source();
sl@0
  1478
    TEST(strm1buf != NULL);
sl@0
  1479
    
sl@0
  1480
    strm2buf->SeekL(MStreamBuf::ERead, EStreamBeginning, 0);
sl@0
  1481
    rc = strm2buf->ReadL(&byte, 1);
sl@0
  1482
    TEST2(rc, 1);
sl@0
  1483
    TEST2(byte, KByte);
sl@0
  1484
    
sl@0
  1485
    strm2buf->SeekL(MStreamBuf::ERead, EStreamMark, KStreamOffset);
sl@0
  1486
    rc = strm2buf->ReadL(&byte, 1);
sl@0
  1487
    TEST2(rc, 1);
sl@0
  1488
    TEST2(byte, KByte);
sl@0
  1489
    
sl@0
  1490
    strm2buf->SeekL(MStreamBuf::ERead, EStreamEnd, -KData().Length());
sl@0
  1491
    TUint8 buf[20];
sl@0
  1492
    rc = strm2buf->ReadL(buf, KData().Length());
sl@0
  1493
    TEST2(rc, KData().Length());
sl@0
  1494
    TPtrC8 bufptr(buf, rc);
sl@0
  1495
    TEST(bufptr == KData);
sl@0
  1496
    
sl@0
  1497
    strm2buf->SeekL(MStreamBuf::ERead, EStreamEnd, -4 * KStreamOffset);
sl@0
  1498
    rc = strm2buf->ReadL(&byte, 1);
sl@0
  1499
    TEST2(rc, 1);
sl@0
  1500
    TEST2(byte, KByte);
sl@0
  1501
    
sl@0
  1502
    CleanupStack::PopAndDestroy(&strm2);
sl@0
  1503
    CleanupStack::PopAndDestroy(&stmt);
sl@0
  1504
    
sl@0
  1505
    CleanupStack::PopAndDestroy(&db);
sl@0
  1506
    rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1507
    TEST2(rc, KErrNone);
sl@0
  1508
    }
sl@0
  1509
sl@0
  1510
/**
sl@0
  1511
@SYMTestCaseID          PDS-SQL-CT-4174
sl@0
  1512
@SYMTestCaseDesc        Test for DEF144937: SQL, SQL server, the code coverage can be improved in some areas.
sl@0
  1513
@SYMTestPriority        High
sl@0
  1514
@SYMTestActions         The test creates a test database with a table with 3 records.
sl@0
  1515
                        The first record has a BLOB column with 0 length.
sl@0
  1516
                        The second record has a BLOB column with length less than KSqlMaxDesLen
sl@0
  1517
                        (in debug mode) in which case no IPC call is needed to be made in order 
sl@0
  1518
                        to access the column value via stream.
sl@0
  1519
                        The third record has a BLOB column with length exactly KSqlMaxDesLen 
sl@0
  1520
                        in which case an IPC call will be made in order to retrieve the column value,
sl@0
  1521
                        but the column value will be copied directly to the client - no stream object is created. 
sl@0
  1522
@SYMTestExpectedResults Test must not fail
sl@0
  1523
@SYMDEF                 DEF144937
sl@0
  1524
*/  
sl@0
  1525
void ColumnBinaryStreamTest2()
sl@0
  1526
    {
sl@0
  1527
    RSqlDatabase db;    
sl@0
  1528
    TInt rc = db.Create(KTestDbName1);
sl@0
  1529
    TEST2(rc, KErrNone);
sl@0
  1530
sl@0
  1531
    enum {KSqlBufSize = 128};
sl@0
  1532
    
sl@0
  1533
    //Create a table
sl@0
  1534
    _LIT8(KSqlStmt1, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB);");
sl@0
  1535
    ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt1(), KErrNone);
sl@0
  1536
    
sl@0
  1537
    //Insert one record where the BLOB length is 0. 
sl@0
  1538
    //Insert second record where the BLOB length is smaller than the max inline column length - KSqlMaxDesLen.
sl@0
  1539
    //Insert third record where the BLOB length is exactly the max inline column length - KSqlMaxDesLen.
sl@0
  1540
    _LIT8(KSqlStmt2, "INSERT INTO A VALUES(1, '');INSERT INTO A VALUES(2, x'0102030405');INSERT INTO A VALUES(3, x'0102030405060708');");
sl@0
  1541
    ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt2(), KErrNone);
sl@0
  1542
    
sl@0
  1543
    RSqlStatement stmt;
sl@0
  1544
    rc = stmt.Prepare(db, _L("SELECT Fld2 FROM A"));
sl@0
  1545
    TEST2(rc, KErrNone);
sl@0
  1546
sl@0
  1547
    TBuf8<16> databuf;
sl@0
  1548
    
sl@0
  1549
    rc = stmt.Next();
sl@0
  1550
    TEST2(rc, KSqlAtRow);
sl@0
  1551
    //ColumnBinary() does not make an IPC call because the BLOB length is 0.
sl@0
  1552
    RSqlColumnReadStream strm;
sl@0
  1553
    rc = strm.ColumnBinary(stmt, 0);
sl@0
  1554
    TEST2(rc, KErrNone);
sl@0
  1555
    TRAP(rc, strm.ReadL(databuf, stmt.ColumnSize(0)));
sl@0
  1556
    strm.Close();
sl@0
  1557
    TEST2(rc, KErrNone);
sl@0
  1558
    TEST2(databuf.Length(), 0);
sl@0
  1559
sl@0
  1560
    rc = stmt.Next();
sl@0
  1561
    TEST2(rc, KSqlAtRow);
sl@0
  1562
    //ColumnBinary() does not make an IPC call because the BLOB length is less than the max inline 
sl@0
  1563
    //column length - KSqlMaxDesLen.
sl@0
  1564
    rc = strm.ColumnBinary(stmt, 0);
sl@0
  1565
    TEST2(rc, KErrNone);
sl@0
  1566
    TRAP(rc, strm.ReadL(databuf, stmt.ColumnSize(0)));
sl@0
  1567
    strm.Close();
sl@0
  1568
    TEST2(rc, KErrNone);
sl@0
  1569
    TEST(databuf == _L8("\x1\x2\x3\x4\x5"));
sl@0
  1570
sl@0
  1571
    rc = stmt.Next();
sl@0
  1572
    TEST2(rc, KSqlAtRow);
sl@0
  1573
    //ColumnBinary() makes an IPC call  (in _DEBUG mode) because:
sl@0
  1574
    // - the column length is exactly KSqlMaxDesLen.  
sl@0
  1575
    // - but at the same time the column length is equal to KIpcBufSize (in debug mode).
sl@0
  1576
    rc = strm.ColumnBinary(stmt, 0);
sl@0
  1577
    TEST2(rc, KErrNone);
sl@0
  1578
    TRAP(rc, strm.ReadL(databuf, stmt.ColumnSize(0)));
sl@0
  1579
    strm.Close();
sl@0
  1580
    TEST2(rc, KErrNone);
sl@0
  1581
    TEST(databuf == _L8("\x1\x2\x3\x4\x5\x6\x7\x8"));
sl@0
  1582
    
sl@0
  1583
    stmt.Close();
sl@0
  1584
    db.Close();
sl@0
  1585
sl@0
  1586
    rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1587
    TEST2(rc, KErrNone);
sl@0
  1588
    }
sl@0
  1589
sl@0
  1590
/**
sl@0
  1591
@SYMTestCaseID			SYSLIB-SQL-CT-1608
sl@0
  1592
@SYMTestCaseDesc		Setting long text parameter values test.
sl@0
  1593
@SYMTestPriority		High
sl@0
  1594
@SYMTestActions			RSqlParamWriteStream::BindText() test.
sl@0
  1595
@SYMTestExpectedResults Test must not fail
sl@0
  1596
@SYMREQ					REQ5792
sl@0
  1597
                        REQ5793
sl@0
  1598
*/	
sl@0
  1599
void TextParameterStreamTest()
sl@0
  1600
	{
sl@0
  1601
	RSqlDatabase db;	
sl@0
  1602
	TInt rc = db.Create(KTestDbName1);
sl@0
  1603
	TEST2(rc, KErrNone);
sl@0
  1604
sl@0
  1605
	enum {KSqlBufSize = 64};
sl@0
  1606
	
sl@0
  1607
	//Create a table
sl@0
  1608
	_LIT8(KSqlStmt1, "CREATE TABLE A(Fld1 INTEGER, Fld2 TEXT);");
sl@0
  1609
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt1(), KErrNone); 
sl@0
  1610
sl@0
  1611
	const TInt KTextLen = 3001;
sl@0
  1612
sl@0
  1613
	_LIT(KSqlStmt2, "INSERT INTO A(Fld1, Fld2) VALUES(");
sl@0
  1614
	
sl@0
  1615
	//Allocate a buffer for the SQL statement.
sl@0
  1616
	HBufC* buf = HBufC::New(KSqlStmt2().Length() + KTextLen + 10);
sl@0
  1617
	TEST(buf != NULL);
sl@0
  1618
sl@0
  1619
	TPtr sql = buf->Des();
sl@0
  1620
	
sl@0
  1621
	//Insert a row
sl@0
  1622
sl@0
  1623
	const TChar KChar('g');
sl@0
  1624
	sql.Copy(KSqlStmt2);
sl@0
  1625
	sql.Append(_L("1, '"));
sl@0
  1626
	TInt i;
sl@0
  1627
	for(i=0;i<KTextLen;++i)
sl@0
  1628
		{
sl@0
  1629
		sql.Append(KChar);
sl@0
  1630
		}
sl@0
  1631
	sql.Append(_L("')"));
sl@0
  1632
sl@0
  1633
	rc = db.Exec(sql);
sl@0
  1634
	TEST2(rc, 1);
sl@0
  1635
sl@0
  1636
	//Prepare parametrized SQL statement
sl@0
  1637
	_LIT8(KSqlStmt3, "SELECT * FROM A WHERE Fld2 = :Val");
sl@0
  1638
	RSqlStatement stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt3, KErrNone);
sl@0
  1639
sl@0
  1640
	//Open the parameter stream
sl@0
  1641
	RSqlParamWriteStream paramStream;
sl@0
  1642
	rc = paramStream.BindText(stmt, 0);
sl@0
  1643
	paramStream.Close();
sl@0
  1644
	TEST2(rc, KErrNone);
sl@0
  1645
sl@0
  1646
	//...and the leaving version of BindText()
sl@0
  1647
	TRAP(rc, paramStream.BindTextL(stmt, 0));
sl@0
  1648
	TEST2(rc, KErrNone);
sl@0
  1649
	
sl@0
  1650
	//Prepare and set the parameter value
sl@0
  1651
	TPtr val = buf->Des();
sl@0
  1652
	val.Zero();
sl@0
  1653
	for(i=0;i<KTextLen;++i)
sl@0
  1654
		{
sl@0
  1655
		val.Append(KChar);
sl@0
  1656
		}
sl@0
  1657
	TRAP(rc, (paramStream.WriteL(val), paramStream.CommitL()));
sl@0
  1658
	TEST2(rc, KErrNone);
sl@0
  1659
sl@0
  1660
	//Move on row 1
sl@0
  1661
	rc = stmt.Next();
sl@0
  1662
	TEST2(rc, KSqlAtRow);
sl@0
  1663
sl@0
  1664
	paramStream.Close();
sl@0
  1665
sl@0
  1666
	//Read the row using ColumnText(TInt aColumnIndex, TPtrC& aPtr).
sl@0
  1667
	TPtrC colDataPtr;
sl@0
  1668
	rc = stmt.ColumnText(1, colDataPtr);
sl@0
  1669
	TEST2(rc, KErrNone);
sl@0
  1670
	
sl@0
  1671
	//Check the column value
sl@0
  1672
	for(i=0;i<KTextLen;++i)
sl@0
  1673
		{
sl@0
  1674
		TEST(colDataPtr[i] == (TUint8)KChar);	
sl@0
  1675
		}
sl@0
  1676
	
sl@0
  1677
	stmt.Close();
sl@0
  1678
sl@0
  1679
	//Deallocate buf
sl@0
  1680
	delete buf; 
sl@0
  1681
	buf = NULL;
sl@0
  1682
sl@0
  1683
	///////////////////////////////////////////////////////////////////////////////////////////////	
sl@0
  1684
	//Open a "short" text parameter. The streaming API should work with "short" text parameters too.
sl@0
  1685
	_LIT(KTextVal, "U012");
sl@0
  1686
sl@0
  1687
	//Delete all records
sl@0
  1688
	_LIT8(KSqlStmt4, "DELETE FROM A");
sl@0
  1689
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt4(), KErrNone); 
sl@0
  1690
sl@0
  1691
	//Prepare INSERT SQL statement.	
sl@0
  1692
	_LIT8(KSqlStmt5, "INSERT INTO A(Fld1, Fld2) VALUES(1, :Val)");
sl@0
  1693
	stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt5, KErrNone);
sl@0
  1694
sl@0
  1695
	//Open the parameter stream
sl@0
  1696
	rc = paramStream.BindText(stmt, 0);
sl@0
  1697
	TEST2(rc, KErrNone);
sl@0
  1698
sl@0
  1699
	//Prepare and set the parameter value
sl@0
  1700
	TRAP(rc, (paramStream.WriteL(KTextVal), paramStream.CommitL()));
sl@0
  1701
	TEST2(rc, KErrNone);
sl@0
  1702
sl@0
  1703
	//Execute the prepared SQL statement
sl@0
  1704
	rc = stmt.Exec();
sl@0
  1705
	TEST2(rc, 1);
sl@0
  1706
sl@0
  1707
	paramStream.Close();
sl@0
  1708
	stmt.Close();
sl@0
  1709
	
sl@0
  1710
	//Prepare SELECT SQL statement
sl@0
  1711
	_LIT8(KSqlStmt6, "SELECT * FROM A WHERE Fld1 = 1");
sl@0
  1712
	stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt6, KErrNone);
sl@0
  1713
sl@0
  1714
	//Move on row 1
sl@0
  1715
	rc = stmt.Next();
sl@0
  1716
	TEST2(rc, KSqlAtRow);
sl@0
  1717
sl@0
  1718
	///////////////////////////////////////////////////////////////////////////////////////////////	
sl@0
  1719
	//Open a stream for a "short" text column. The streaming API should work with "short" text columns too.
sl@0
  1720
sl@0
  1721
	TBuf<20> columnVal;
sl@0
  1722
	RSqlColumnReadStream columnStream;
sl@0
  1723
	rc = columnStream.ColumnText(stmt, 1);
sl@0
  1724
	TEST2(rc, KErrNone);
sl@0
  1725
	TInt size = stmt.ColumnSize(1);
sl@0
  1726
	TRAP(rc, columnStream.ReadL(columnVal, size));
sl@0
  1727
	columnStream.Close();
sl@0
  1728
	TEST2(rc, KErrNone);
sl@0
  1729
	
sl@0
  1730
	//Check the column value
sl@0
  1731
	TEST(columnVal == KTextVal);
sl@0
  1732
	
sl@0
  1733
	stmt.Close();
sl@0
  1734
	
sl@0
  1735
	db.Close();
sl@0
  1736
sl@0
  1737
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1738
	TEST2(rc, KErrNone);
sl@0
  1739
	}
sl@0
  1740
sl@0
  1741
/**
sl@0
  1742
@SYMTestCaseID			SYSLIB-SQL-CT-1622
sl@0
  1743
@SYMTestCaseDesc		Setting long binary parameter values test.
sl@0
  1744
@SYMTestPriority		High
sl@0
  1745
@SYMTestActions			RSqlParamWriteStream::BindBinary() test.
sl@0
  1746
@SYMTestExpectedResults Test must not fail
sl@0
  1747
@SYMREQ					REQ5792
sl@0
  1748
                        REQ5793
sl@0
  1749
*/	
sl@0
  1750
void BinaryParameterStreamTest()
sl@0
  1751
	{
sl@0
  1752
	//Create a test database
sl@0
  1753
	RSqlDatabase db;	
sl@0
  1754
	TInt rc = db.Create(KTestDbName1);
sl@0
  1755
	TEST2(rc, KErrNone);
sl@0
  1756
sl@0
  1757
	enum {KSqlBufSize = 64};
sl@0
  1758
	
sl@0
  1759
	//Create a table
sl@0
  1760
	_LIT8(KSqlStmt1, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB);");
sl@0
  1761
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt1(), KErrNone); 
sl@0
  1762
sl@0
  1763
	const TInt KDataLen = 3731;
sl@0
  1764
sl@0
  1765
	_LIT8(KSqlStmt2, "INSERT INTO A(Fld1, Fld2) VALUES(");
sl@0
  1766
	
sl@0
  1767
	//Allocate a buffer for the SQL statement.
sl@0
  1768
	HBufC8* buf = HBufC8::New(KSqlStmt2().Length() + KDataLen * 2 + 10);//"* 2" - SQL statement with HEX values
sl@0
  1769
	TEST(buf != NULL);
sl@0
  1770
sl@0
  1771
	TPtr8 sql = buf->Des();
sl@0
  1772
	
sl@0
  1773
	//Insert a row
sl@0
  1774
sl@0
  1775
	const TUint8 KHexVal = 0xD3;
sl@0
  1776
	_LIT8(KHexValStr, "D3");
sl@0
  1777
	sql.Copy(KSqlStmt2);
sl@0
  1778
	sql.Append(_L8("1, x'"));
sl@0
  1779
	TInt i;
sl@0
  1780
	for(i=0;i<KDataLen;++i)
sl@0
  1781
		{
sl@0
  1782
		sql.Append(KHexValStr);
sl@0
  1783
		}
sl@0
  1784
	sql.Append(_L8("')"));
sl@0
  1785
sl@0
  1786
	rc = db.Exec(sql);
sl@0
  1787
	TEST2(rc, 1);
sl@0
  1788
sl@0
  1789
	//Prepare parametrized SQL statement
sl@0
  1790
	_LIT8(KSqlStmt3, "SELECT * FROM A WHERE Fld2 = :Val");
sl@0
  1791
	RSqlStatement stmt = PrepareSqlStmt<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt3, KErrNone);
sl@0
  1792
sl@0
  1793
	//Open the parameter stream
sl@0
  1794
	RSqlParamWriteStream paramStream;
sl@0
  1795
	rc = paramStream.BindBinary(stmt, 0);
sl@0
  1796
	TEST2(rc, KErrNone);
sl@0
  1797
	paramStream.Close();
sl@0
  1798
    //Open the parameter stream with BindBinaryL()
sl@0
  1799
    TRAP(rc, paramStream.BindBinaryL(stmt, 0));
sl@0
  1800
    TEST2(rc, KErrNone);
sl@0
  1801
sl@0
  1802
	//Prepare and set the parameter value (NULL parameter value)
sl@0
  1803
	TPtr8 prmVal = buf->Des();
sl@0
  1804
	prmVal.SetLength(0);
sl@0
  1805
	
sl@0
  1806
	TRAP(rc, (paramStream.WriteL(prmVal), paramStream.CommitL()));
sl@0
  1807
	TEST2(rc, KErrNone);
sl@0
  1808
sl@0
  1809
	rc = stmt.Next();
sl@0
  1810
	TEST2(rc, KSqlAtEnd);
sl@0
  1811
	
sl@0
  1812
	paramStream.Close();
sl@0
  1813
	stmt.Reset();
sl@0
  1814
	
sl@0
  1815
	//Prepare and set the parameter value (non-NULL binary value)
sl@0
  1816
	rc = paramStream.BindBinary(stmt, 0);
sl@0
  1817
	TEST2(rc, KErrNone);
sl@0
  1818
	
sl@0
  1819
	prmVal.SetLength(KDataLen);
sl@0
  1820
	for(i=0;i<KDataLen;++i)
sl@0
  1821
		{
sl@0
  1822
		prmVal[i] = KHexVal;
sl@0
  1823
		}
sl@0
  1824
	TRAP(rc, (paramStream.WriteL(prmVal), paramStream.CommitL()));
sl@0
  1825
	TEST2(rc, KErrNone);
sl@0
  1826
sl@0
  1827
	//Move on row 1
sl@0
  1828
	rc = stmt.Next();
sl@0
  1829
	TEST2(rc, KSqlAtRow);
sl@0
  1830
sl@0
  1831
	paramStream.Close();
sl@0
  1832
sl@0
  1833
	//Read the row using ColumnBinary(TInt aColumnIndex, TPtrC8& aPtr).
sl@0
  1834
	TPtrC8 colDataPtr;
sl@0
  1835
	rc = stmt.ColumnBinary(1, colDataPtr);
sl@0
  1836
	TEST2(rc, KErrNone);
sl@0
  1837
	
sl@0
  1838
	//Check the column value
sl@0
  1839
	for(i=0;i<KDataLen;++i)
sl@0
  1840
		{
sl@0
  1841
		TUint8 byte = colDataPtr[i];
sl@0
  1842
		TEST(byte == KHexVal);	
sl@0
  1843
		}
sl@0
  1844
	
sl@0
  1845
	stmt.Close();
sl@0
  1846
sl@0
  1847
	//Deallocate buf
sl@0
  1848
	delete buf; 
sl@0
  1849
	buf = NULL;
sl@0
  1850
sl@0
  1851
sl@0
  1852
	///////////////////////////////////////////////////////////////////////////////////////////////	
sl@0
  1853
	//Open a "short" binary parameter. The streaming API should work with "short" binary parameters too.
sl@0
  1854
	_LIT8(KBinVal, "\x1\x2\x3\x4");
sl@0
  1855
sl@0
  1856
	//Delete all records
sl@0
  1857
	_LIT8(KSqlStmt4, "DELETE FROM A");
sl@0
  1858
	ExecSqlStmtOnDb<TDesC8, TBuf8<KSqlBufSize> >(db, KSqlStmt4(), KErrNone); 
sl@0
  1859
sl@0
  1860
	//Prepare INSERT SQL statement.	
sl@0
  1861
	_LIT8(KSqlStmt5, "INSERT INTO A(Fld1, Fld2) VALUES(1, :Val)");
sl@0
  1862
	stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt5, KErrNone);
sl@0
  1863
sl@0
  1864
	//Open the parameter stream
sl@0
  1865
	rc = paramStream.BindBinary(stmt, 0);
sl@0
  1866
	TEST2(rc, KErrNone);
sl@0
  1867
sl@0
  1868
	//Prepare and set the parameter value
sl@0
  1869
	TRAP(rc, (paramStream.WriteL(KBinVal), paramStream.CommitL()));
sl@0
  1870
	TEST2(rc, KErrNone);
sl@0
  1871
sl@0
  1872
	//Execute the prepared SQL statement
sl@0
  1873
	rc = stmt.Exec();
sl@0
  1874
	TEST2(rc, 1);
sl@0
  1875
sl@0
  1876
	paramStream.Close();
sl@0
  1877
	stmt.Close();
sl@0
  1878
	
sl@0
  1879
	//Prepare SELECT SQL statement
sl@0
  1880
	_LIT8(KSqlStmt6, "SELECT * FROM A WHERE Fld1 = 1");
sl@0
  1881
	stmt = PrepareSqlStmt<TDesC, TBuf<KSqlBufSize> >(db, KSqlStmt6, KErrNone);
sl@0
  1882
sl@0
  1883
	//Move on row 1
sl@0
  1884
	rc = stmt.Next();
sl@0
  1885
	TEST2(rc, KSqlAtRow);
sl@0
  1886
sl@0
  1887
	///////////////////////////////////////////////////////////////////////////////////////////////	
sl@0
  1888
	//Open a stream for a "short" binary column. The streaming API should work with "short" binary columns too.
sl@0
  1889
sl@0
  1890
	TBuf8<20> columnVal;
sl@0
  1891
	RSqlColumnReadStream columnStream;
sl@0
  1892
	rc = columnStream.ColumnBinary(stmt, 1);
sl@0
  1893
	TEST2(rc, KErrNone);
sl@0
  1894
	TInt size = stmt.ColumnSize(1);
sl@0
  1895
	TRAP(rc, columnStream.ReadL(columnVal, size));
sl@0
  1896
	columnStream.Close();
sl@0
  1897
	TEST2(rc, KErrNone);
sl@0
  1898
	
sl@0
  1899
	//Check the column value
sl@0
  1900
	TEST(columnVal == KBinVal);
sl@0
  1901
	
sl@0
  1902
	stmt.Close();
sl@0
  1903
		
sl@0
  1904
	db.Close();
sl@0
  1905
sl@0
  1906
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1907
	TEST2(rc, KErrNone);
sl@0
  1908
	}
sl@0
  1909
sl@0
  1910
/**
sl@0
  1911
@SYMTestCaseID			SYSLIB-SQL-CT-1634
sl@0
  1912
@SYMTestCaseDesc		RSqlStatement test - nameless parameter.
sl@0
  1913
						Tests RSqlStatement behaviour if the prepared statement has nameless parameters.
sl@0
  1914
@SYMTestPriority		High
sl@0
  1915
@SYMTestActions			RSqlStatement test - nameless parameter.
sl@0
  1916
@SYMTestExpectedResults Test must not fail
sl@0
  1917
@SYMREQ					REQ5792
sl@0
  1918
                        REQ5793
sl@0
  1919
*/	
sl@0
  1920
void NamelessParameterTest()
sl@0
  1921
	{
sl@0
  1922
	//Create a test database
sl@0
  1923
	RSqlDatabase db;	
sl@0
  1924
	TInt rc = db.Create(KTestDbName1);
sl@0
  1925
	TEST2(rc, KErrNone);
sl@0
  1926
sl@0
  1927
	rc = db.Exec(_L("CREATE TABLE A(F1 INTEGER, F2 INTEGER, F3 INTEGER)"));
sl@0
  1928
	TEST(rc >= 0);
sl@0
  1929
sl@0
  1930
	RSqlStatement stmt;
sl@0
  1931
	rc = stmt.Prepare(db, _L("SELECT * FROM A WHERE F1 = ? AND F2 = ? AND F3 = :Val"));
sl@0
  1932
	TEST2(rc, KErrNone);
sl@0
  1933
sl@0
  1934
	TEST(stmt.ParameterIndex(_L("?0")) == 0);
sl@0
  1935
	TEST(stmt.ParameterIndex(_L("?1")) == 1);
sl@0
  1936
	TEST(stmt.ParameterIndex(_L(":VAL")) == 2);
sl@0
  1937
		
sl@0
  1938
	stmt.Close();
sl@0
  1939
sl@0
  1940
	db.Close();
sl@0
  1941
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  1942
	TEST2(rc, KErrNone);
sl@0
  1943
	}
sl@0
  1944
sl@0
  1945
//Reads a SQL file and returns the file content as HBUFC string.
sl@0
  1946
//The caller is responsible for destroying the returned HBUFC object.
sl@0
  1947
template <class HBUFC> HBUFC* ReadSqlScript(const TDesC& aSqlFileName)
sl@0
  1948
	{
sl@0
  1949
	RFs fs;
sl@0
  1950
	TEST2(fs.Connect(), KErrNone);
sl@0
  1951
	
sl@0
  1952
	RFile file;
sl@0
  1953
	TEST2(file.Open(fs, aSqlFileName, EFileRead), KErrNone);
sl@0
  1954
	
sl@0
  1955
	TInt size = 0;
sl@0
  1956
	TEST2(file.Size(size), KErrNone);
sl@0
  1957
	
sl@0
  1958
	HBufC8* sql = HBufC8::New(size);
sl@0
  1959
	TEST(sql != NULL);
sl@0
  1960
	
sl@0
  1961
	TPtr8 ptr = sql->Des();
sl@0
  1962
	TEST2(file.Read(ptr, size), KErrNone);
sl@0
  1963
sl@0
  1964
	file.Close();
sl@0
  1965
	fs.Close();
sl@0
  1966
	
sl@0
  1967
	HBUFC* sql2 = HBUFC::New(size);
sl@0
  1968
	TEST(sql2 != NULL);
sl@0
  1969
	sql2->Des().Copy(sql->Des());
sl@0
  1970
	delete sql;
sl@0
  1971
	
sl@0
  1972
	return sql2;
sl@0
  1973
	}
sl@0
  1974
//Explicit ReadSqlScript() template instantiations.
sl@0
  1975
template HBufC8* ReadSqlScript<HBufC8>(const TDesC&);
sl@0
  1976
template HBufC16* ReadSqlScript<HBufC16>(const TDesC&);
sl@0
  1977
sl@0
  1978
//Searches for the next aCommitStr appearance in aSqlScript string and returns a PTRC object holding
sl@0
  1979
//the SQL strings from the beginning of aSqlScript till the aCommitStr (including it).
sl@0
  1980
template <class PTRC, class DESC> PTRC GetNextTrans(PTRC& aSqlScript, const DESC& aCommitStr)
sl@0
  1981
	{
sl@0
  1982
	PTRC res(NULL, 0);
sl@0
  1983
	TInt pos = aSqlScript.FindF(aCommitStr);
sl@0
  1984
	if(pos >= 0)
sl@0
  1985
		{
sl@0
  1986
		pos += aCommitStr.Length();
sl@0
  1987
		res.Set(aSqlScript.Left(pos));
sl@0
  1988
		aSqlScript.Set(aSqlScript.Mid(pos));
sl@0
  1989
		}
sl@0
  1990
	return res;
sl@0
  1991
	}
sl@0
  1992
//Explicit GetNextTrans() template instantiations.
sl@0
  1993
template TPtrC8 GetNextTrans<TPtrC8, TDesC8>(TPtrC8&, const TDesC8&);
sl@0
  1994
template TPtrC16 GetNextTrans<TPtrC16, TDesC16>(TPtrC16&, const TDesC16&);
sl@0
  1995
sl@0
  1996
//Creates aDb database schema.
sl@0
  1997
void CreateDbSchema(RSqlDatabase& aDb)
sl@0
  1998
	{
sl@0
  1999
	HBufC8* createDbScript = ReadSqlScript<HBufC8>(KCreateDbScript());
sl@0
  2000
	TInt err = aDb.Exec(createDbScript->Des());
sl@0
  2001
	TEST(err >= 0);	
sl@0
  2002
	delete createDbScript;
sl@0
  2003
	}
sl@0
  2004
sl@0
  2005
/**
sl@0
  2006
@SYMTestCaseID			SYSLIB-SQL-CT-1768
sl@0
  2007
@SYMTestCaseDesc		The test creates a database.
sl@0
  2008
						Then the test executes 8-bit and 16-bit sql statements asynchronously
sl@0
  2009
						(using asynchronous versions of RSqlDatabase::Exec() and RSqlStatement::Exec())
sl@0
  2010
@SYMTestPriority		High
sl@0
  2011
@SYMTestActions			SQL, Asynchronous sql statements execution.
sl@0
  2012
@SYMTestExpectedResults Test must not fail
sl@0
  2013
@SYMREQ					REQ5792
sl@0
  2014
                        REQ5793
sl@0
  2015
*/	
sl@0
  2016
void AsyncTest()
sl@0
  2017
	{
sl@0
  2018
	//////////////////////////////////////////////////////////////////////////
sl@0
  2019
	//Asynchronous execution, 8-bit sql statements
sl@0
  2020
	//Create the database
sl@0
  2021
	RSqlDatabase db;
sl@0
  2022
	TInt err = db.Create(KTestDbName1);
sl@0
  2023
	TEST2(err, KErrNone);
sl@0
  2024
	CreateDbSchema(db);
sl@0
  2025
	//Read the sql script file and execute the statements 
sl@0
  2026
	HBufC8* fillDbScript1 = ReadSqlScript<HBufC8>(KFillDbScript());
sl@0
  2027
	TPtrC8 ptr1(fillDbScript1->Des());
sl@0
  2028
	TPtrC8 sql1(GetNextTrans<TPtrC8, TDesC8>(ptr1, KCommitStr8()));
sl@0
  2029
	TRequestStatus status;
sl@0
  2030
	db.Exec(sql1, status);
sl@0
  2031
    TEST2(status.Int(), KRequestPending);
sl@0
  2032
    User::WaitForRequest(status); 
sl@0
  2033
    TEST(status.Int() >= 0);
sl@0
  2034
	delete fillDbScript1;
sl@0
  2035
	//////////////////////////////////////////////////////////////////////////
sl@0
  2036
	//Asynchronous execution, RSqlStatement::Exec().
sl@0
  2037
	RSqlStatement stmt;
sl@0
  2038
	
sl@0
  2039
	err = stmt.Prepare(db, _L("UPDATE IDENTITYTABLE SET CM_FIRSTNAME=:V1"));
sl@0
  2040
    TEST2(err, KErrNone);
sl@0
  2041
    err = stmt.BindText(0, _L("+++first+++"));
sl@0
  2042
    TEST2(err, KErrNone);
sl@0
  2043
	stmt.Exec(status);
sl@0
  2044
    TEST2(status.Int(), KRequestPending);
sl@0
  2045
    User::WaitForRequest(status); 
sl@0
  2046
    TEST(status.Int() >= 0);
sl@0
  2047
	stmt.Close();
sl@0
  2048
	
sl@0
  2049
	err = stmt.Prepare(db, _L("UPDATE IDENTITYTABLE SET CM_FIRSTNAME='+++first+++'"));
sl@0
  2050
    TEST2(err, KErrNone);
sl@0
  2051
	stmt.Exec(status);
sl@0
  2052
    TEST2(status.Int(), KRequestPending);
sl@0
  2053
    User::WaitForRequest(status); 
sl@0
  2054
    TEST(status.Int() >= 0);
sl@0
  2055
	stmt.Close();
sl@0
  2056
	
sl@0
  2057
	//Verify the UPDATE operation
sl@0
  2058
	err = stmt.Prepare(db, _L("SELECT COUNT(*) FROM identitytable WHERE cm_firstname = '+++first+++'"));
sl@0
  2059
    TEST2(err, KErrNone);
sl@0
  2060
    err = stmt.Next();
sl@0
  2061
    TEST2(err, KSqlAtRow);
sl@0
  2062
    TInt cnt = stmt.ColumnInt(0);
sl@0
  2063
    TEST2(cnt, 64);
sl@0
  2064
    stmt.Close();
sl@0
  2065
	//Close and delete the database
sl@0
  2066
	db.Close();
sl@0
  2067
	err = RSqlDatabase::Delete(KTestDbName1);
sl@0
  2068
	TEST2(err, KErrNone);
sl@0
  2069
	//////////////////////////////////////////////////////////////////////////
sl@0
  2070
	//Asynchronous execution, 16-bit sql statements
sl@0
  2071
	//Create the database
sl@0
  2072
	err = db.Create(KTestDbName1);
sl@0
  2073
	TEST2(err, KErrNone);
sl@0
  2074
	CreateDbSchema(db);
sl@0
  2075
	//Read the sql script file and execute the statements 
sl@0
  2076
	HBufC16* fillDbScript2 = ReadSqlScript<HBufC16>(KFillDbScript());
sl@0
  2077
	TPtrC16 ptr2(fillDbScript2->Des());
sl@0
  2078
	TPtrC16 sql2(GetNextTrans<TPtrC16, TDesC16>(ptr2, KCommitStr16()));
sl@0
  2079
	db.Exec(sql2, status);
sl@0
  2080
    TEST2(status.Int(), KRequestPending);
sl@0
  2081
    User::WaitForRequest(status); 
sl@0
  2082
    TEST(status.Int() >= 0);
sl@0
  2083
	delete fillDbScript2;
sl@0
  2084
	//Close and delete the database
sl@0
  2085
	db.Close();
sl@0
  2086
	err = RSqlDatabase::Delete(KTestDbName1);
sl@0
  2087
	TEST2(err, KErrNone);
sl@0
  2088
	}
sl@0
  2089
sl@0
  2090
/**
sl@0
  2091
@SYMTestCaseID			SYSLIB-SQL-CT-1816
sl@0
  2092
@SYMTestCaseDesc		RSqlDatabase::Size() test.
sl@0
  2093
						Call RSqlDatabase::Size() in various situations and check that the call does not fail.
sl@0
  2094
@SYMTestPriority		High
sl@0
  2095
@SYMTestActions			Call RSqlDatabase::Size() in various situations and check that the call does not fail.
sl@0
  2096
@SYMTestExpectedResults Test must not fail
sl@0
  2097
@SYMREQ					REQ7141
sl@0
  2098
*/
sl@0
  2099
void SizeTest()
sl@0
  2100
	{
sl@0
  2101
	const TInt KTestDbCnt = 3;
sl@0
  2102
	TPtrC dbNames[KTestDbCnt];
sl@0
  2103
	dbNames[0].Set(KTestDbName1); //Non-secure shared database
sl@0
  2104
	dbNames[1].Set(KTestDbName9); //Private database
sl@0
  2105
	dbNames[2].Set(KTestDbName7); //Secure shared database
sl@0
  2106
	
sl@0
  2107
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  2108
	RSqlSecurityPolicy securityPolicy;
sl@0
  2109
	TInt rc = securityPolicy.Create(defaultPolicy);
sl@0
  2110
	TEST2(rc, KErrNone);
sl@0
  2111
	
sl@0
  2112
	for(TInt i=0;i<KTestDbCnt;++i)
sl@0
  2113
		{
sl@0
  2114
		(void)RSqlDatabase::Delete(dbNames[i]);
sl@0
  2115
		RSqlDatabase db;
sl@0
  2116
		TInt rc = i == 2 ? db.Create(dbNames[i], securityPolicy) : db.Create(dbNames[i]);
sl@0
  2117
		TEST2(rc, KErrNone);
sl@0
  2118
		//Check database size
sl@0
  2119
		TInt size1 = db.Size();
sl@0
  2120
		TEST(size1 >= 0);
sl@0
  2121
		//Insert some data and check the size again
sl@0
  2122
		rc = db.Exec(_L("CREATE TABLE A(Id INTEGER, T TEXT)"));
sl@0
  2123
		TEST(rc >= 0);
sl@0
  2124
		rc = db.Exec(_L("INSERT INTO A VALUES(1, '1111111')"));
sl@0
  2125
		TEST(rc >= 0);
sl@0
  2126
		rc = db.Exec(_L("INSERT INTO A VALUES(2, '22222222222222')"));
sl@0
  2127
		TEST(rc >= 0);
sl@0
  2128
		TInt size2 = db.Size();
sl@0
  2129
		TEST(size2 > size1);
sl@0
  2130
		//Check the database size in a transaction
sl@0
  2131
		rc = db.Exec(_L("BEGIN"));
sl@0
  2132
		TEST(rc >= 0);
sl@0
  2133
		TInt size3 = db.Size();
sl@0
  2134
		TEST(size3 == size2);
sl@0
  2135
		rc = db.Exec(_L("INSERT INTO A VALUES(3, '3333333333333333333333333333333333333333333333333333333333333')"));
sl@0
  2136
		TEST(rc >= 0);
sl@0
  2137
		rc = db.Exec(_L("INSERT INTO A VALUES(4, '4444444444444444444444444444444444444444444444444444444444444')"));
sl@0
  2138
		TEST(rc >= 0);
sl@0
  2139
		rc = db.Exec(_L("INSERT INTO A VALUES(5, '5555555555555555555555555555555555555555555555555555555555555')"));
sl@0
  2140
		TEST(rc >= 0);
sl@0
  2141
		TInt size4 = db.Size();
sl@0
  2142
		TEST(size4 == size2);
sl@0
  2143
		rc = db.Exec(_L("COMMIT"));
sl@0
  2144
		TEST(rc >= 0);
sl@0
  2145
		TInt size5 = db.Size();
sl@0
  2146
		TEST(size5 == size2);
sl@0
  2147
		//Cleanup
sl@0
  2148
		db.Close();
sl@0
  2149
		rc = RSqlDatabase::Delete(dbNames[i]);
sl@0
  2150
		TEST2(rc, KErrNone);
sl@0
  2151
		}
sl@0
  2152
	securityPolicy.Close();
sl@0
  2153
	}
sl@0
  2154
sl@0
  2155
/**
sl@0
  2156
@SYMTestCaseID			SYSLIB-SQL-CT-1817
sl@0
  2157
@SYMTestCaseDesc		RSqlDatabase::InTransaction() test.
sl@0
  2158
						Call RSqlDatabase::InTransaction() in various situations and check that the method reports 
sl@0
  2159
						database's transaction state correctly.
sl@0
  2160
@SYMTestPriority		High
sl@0
  2161
@SYMTestActions			Call RSqlDatabase::InTransaction() in various situations and check that the method reports 
sl@0
  2162
						database's transaction state correctly.
sl@0
  2163
@SYMTestExpectedResults Test must not fail
sl@0
  2164
@SYMREQ					REQ7141
sl@0
  2165
*/
sl@0
  2166
void InTransactionTest()
sl@0
  2167
	{
sl@0
  2168
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2169
	RSqlDatabase db;
sl@0
  2170
	TInt rc = db.Create(KTestDbName1);
sl@0
  2171
	TEST2(rc, KErrNone);
sl@0
  2172
	//
sl@0
  2173
	TBool state = db.InTransaction();
sl@0
  2174
	TEST(!state);
sl@0
  2175
	rc = db.Exec(_L("BEGIN"));
sl@0
  2176
	TEST(rc >= 0);
sl@0
  2177
	state = db.InTransaction();
sl@0
  2178
	TEST(!!state);
sl@0
  2179
	rc = db.Exec(_L("ROLLBACK"));
sl@0
  2180
	TEST(rc >= 0);
sl@0
  2181
	state = db.InTransaction();
sl@0
  2182
	TEST(!state);
sl@0
  2183
	//Cleanup
sl@0
  2184
	db.Close();
sl@0
  2185
	rc = RSqlDatabase::Delete(KTestDbName1);
sl@0
  2186
	TEST2(rc, KErrNone);
sl@0
  2187
	}
sl@0
  2188
sl@0
  2189
/**
sl@0
  2190
@SYMTestCaseID			SYSLIB-SQL-UT-4039
sl@0
  2191
@SYMTestCaseDesc		RSqlDatabase::Size(TSize&) functional test.
sl@0
  2192
						The test creates a non-secure shared database, private database, secure shared database
sl@0
  2193
						and tests that the new RSqlDatabase::Size(TSize&) can be used on the created databases.
sl@0
  2194
@SYMTestPriority		High
sl@0
  2195
@SYMTestActions			RSqlDatabase::Size(TSize&) functional test.
sl@0
  2196
@SYMTestExpectedResults Test must not fail
sl@0
  2197
@SYMREQ					REQ10407
sl@0
  2198
*/
sl@0
  2199
void SizeTest2()
sl@0
  2200
	{
sl@0
  2201
	const TInt KTestDbCnt = 3;
sl@0
  2202
	TPtrC dbNames[KTestDbCnt];
sl@0
  2203
	dbNames[0].Set(KTestDbName1); //Non-secure shared database
sl@0
  2204
	dbNames[1].Set(KTestDbName9); //Private database
sl@0
  2205
	dbNames[2].Set(KTestDbName7); //Secure shared database
sl@0
  2206
	
sl@0
  2207
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
  2208
	RSqlSecurityPolicy securityPolicy;
sl@0
  2209
	TInt rc = securityPolicy.Create(defaultPolicy);
sl@0
  2210
	TEST2(rc, KErrNone);
sl@0
  2211
	
sl@0
  2212
	_LIT8(KConfig, "compaction=background");
sl@0
  2213
	
sl@0
  2214
	for(TInt i=0;i<KTestDbCnt;++i)
sl@0
  2215
		{
sl@0
  2216
		(void)RSqlDatabase::Delete(dbNames[i]);
sl@0
  2217
		RSqlDatabase db;
sl@0
  2218
		TInt rc = i == 2 ? db.Create(dbNames[i], securityPolicy, &KConfig) : db.Create(dbNames[i], &KConfig);
sl@0
  2219
		TEST2(rc, KErrNone);
sl@0
  2220
		//Check database size
sl@0
  2221
		RSqlDatabase::TSize size;
sl@0
  2222
		rc = db.Size(size);
sl@0
  2223
		TEST2(rc, KErrNone);
sl@0
  2224
		TEST(size.iSize > 0);
sl@0
  2225
		TEST2(size.iFree, 0);
sl@0
  2226
		//Insert some data and check the size again
sl@0
  2227
		rc = db.Exec(_L("CREATE TABLE A(Id INTEGER, T TEXT)"));
sl@0
  2228
		TEST(rc >= 0);
sl@0
  2229
		const TInt KTestRecCnt = 50;
sl@0
  2230
		rc = db.Exec(_L("BEGIN"));
sl@0
  2231
		TEST(rc >= 0);
sl@0
  2232
		for(TInt k=0;k<KTestRecCnt;++k)
sl@0
  2233
			{
sl@0
  2234
			TBuf<100> sql;
sl@0
  2235
			sql.Format(_L("INSERT INTO A VALUES(%d, 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')"), k + 1);
sl@0
  2236
			rc = db.Exec(sql);
sl@0
  2237
			TEST2(rc, 1);
sl@0
  2238
			}
sl@0
  2239
		rc = db.Exec(_L("COMMIT"));
sl@0
  2240
		TEST(rc >= 0);
sl@0
  2241
		rc = db.Size(size);
sl@0
  2242
		TEST2(rc, KErrNone);
sl@0
  2243
		TEST(size.iSize > 0);
sl@0
  2244
		TEST2(size.iFree, 0);
sl@0
  2245
		//Delete the records and check the size again.
sl@0
  2246
		rc = db.Exec(_L("DELETE FROM A"));
sl@0
  2247
		rc = db.Size(size);
sl@0
  2248
		TEST2(rc, KErrNone);
sl@0
  2249
		TEST(size.iSize > 0);
sl@0
  2250
		TEST(size.iFree > 0);
sl@0
  2251
		//Cleanup
sl@0
  2252
		db.Close();
sl@0
  2253
		rc = RSqlDatabase::Delete(dbNames[i]);
sl@0
  2254
		TEST2(rc, KErrNone);
sl@0
  2255
		}
sl@0
  2256
	securityPolicy.Close();
sl@0
  2257
	}
sl@0
  2258
sl@0
  2259
/**
sl@0
  2260
@SYMTestCaseID			SYSLIB-SQL-UT-4040
sl@0
  2261
@SYMTestCaseDesc		RSqlDatabase::Size(TSize&) on an attached database - functional test.
sl@0
  2262
						The test creates a database and attaches another database. Then the test
sl@0
  2263
						verifies that the new RSqlDatabase::Size(TSize&) method can be used on the attached 
sl@0
  2264
						database. The test also calls the new method with an invalid attached database
sl@0
  2265
						name and check that an appropriate error is reported.
sl@0
  2266
@SYMTestPriority		High
sl@0
  2267
@SYMTestActions			RSqlDatabase::Size(TSize&) on an attached database - functional test.
sl@0
  2268
@SYMTestExpectedResults Test must not fail
sl@0
  2269
@SYMREQ					REQ10407
sl@0
  2270
*/
sl@0
  2271
void AttachedSizeTest2()
sl@0
  2272
	{
sl@0
  2273
	RSqlDatabase db;
sl@0
  2274
	
sl@0
  2275
	TInt err = db.Create(KTestDbName1);
sl@0
  2276
	TEST2(err, KErrNone);
sl@0
  2277
	err = db.Exec(_L("CREATE TABLE A(I INTEGER)"));
sl@0
  2278
	TEST(err >= 0);
sl@0
  2279
	db.Close();
sl@0
  2280
	err = db.Create(KTestDbName8);
sl@0
  2281
	TEST2(err, KErrNone);
sl@0
  2282
	err = db.Exec(_L("CREATE TABLE B(J INTEGER)"));
sl@0
  2283
	TEST(err >= 0);
sl@0
  2284
	err = db.Exec(_L("BEGIN"));
sl@0
  2285
	TEST(err >= 0);
sl@0
  2286
	for(TInt i=0;i<1000;++i)
sl@0
  2287
		{
sl@0
  2288
		err = db.Exec(_L("INSERT INTO B(J) VALUES(1)"));
sl@0
  2289
		TEST2(err, 1);
sl@0
  2290
		}
sl@0
  2291
	err = db.Exec(_L("COMMIT"));
sl@0
  2292
	TEST(err >= 0);
sl@0
  2293
	db.Close();
sl@0
  2294
	
sl@0
  2295
	err = db.Open(KTestDbName1);
sl@0
  2296
	TEST2(err, KErrNone);
sl@0
  2297
	_LIT(KAttachDbName, "B");
sl@0
  2298
	err = db.Attach(KTestDbName8, KAttachDbName);
sl@0
  2299
	TEST2(err, KErrNone);
sl@0
  2300
	
sl@0
  2301
	//Size(TSize&) - main and the attached databse
sl@0
  2302
	RSqlDatabase::TSize	size1;
sl@0
  2303
	err = db.Size(size1);
sl@0
  2304
	TEST2(err, KErrNone);
sl@0
  2305
	TEST(size1.iSize > 0);
sl@0
  2306
	TEST(size1.iFree >= 0);
sl@0
  2307
	RSqlDatabase::TSize	size2;
sl@0
  2308
	err = db.Size(size2, KAttachDbName);
sl@0
  2309
	TEST2(err, KErrNone);
sl@0
  2310
	TEST(size2.iSize > 0);
sl@0
  2311
	TEST(size2.iFree >= 0);
sl@0
  2312
	TEST(size2.iSize > size1.iSize);
sl@0
  2313
sl@0
  2314
	//Very long attached database name
sl@0
  2315
	TBuf<KMaxFileName + 10> longDbName;
sl@0
  2316
	longDbName.SetLength(longDbName.MaxLength());
sl@0
  2317
	err = db.Size(size1, longDbName);
sl@0
  2318
	TEST2(err, KErrBadName);
sl@0
  2319
	
sl@0
  2320
	//An attempt to get the size of a non-existing attached database
sl@0
  2321
	err = db.Size(size1, _L("TheDbDoesNotExist"));
sl@0
  2322
	TEST2(err, KSqlErrGeneral);
sl@0
  2323
	TPtrC msg = db.LastErrorMessage();
sl@0
  2324
	TheTest.Printf(_L("Non-existing attached database, error message: %S\r\n"), &msg);
sl@0
  2325
	
sl@0
  2326
    //An attempt to get the size when the attached database name contains "bad" unicode characters (cannot be converted to UTF8)
sl@0
  2327
    TBuf<2> dbName3;
sl@0
  2328
    dbName3.SetLength(2);
sl@0
  2329
    dbName3[0] = TChar(0xD800); 
sl@0
  2330
    dbName3[1] = TChar(0xFC00); 
sl@0
  2331
    err = db.Size(size1, dbName3);
sl@0
  2332
    TEST2(err, KErrGeneral);
sl@0
  2333
	
sl@0
  2334
	err = db.Detach(KAttachDbName);
sl@0
  2335
	TEST2(err, KErrNone);
sl@0
  2336
	db.Close();
sl@0
  2337
	(void)RSqlDatabase::Delete(KTestDbName8);
sl@0
  2338
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2339
	}
sl@0
  2340
sl@0
  2341
/**
sl@0
  2342
@SYMTestCaseID			SYSLIB-SQL-UT-4041
sl@0
  2343
@SYMTestCaseDesc		RSqlDatabase::Size(TSize&) and different compaction modes - functional test.
sl@0
  2344
						The test creates databases using all possible compaction modes and
sl@0
  2345
						verifies that the new RSqlDatabase::Size(TSize&) method can be used on these 
sl@0
  2346
						databases without any problems.
sl@0
  2347
@SYMTestPriority		High
sl@0
  2348
@SYMTestActions			RSqlDatabase::Size(TSize&) and different compaction modes - functional test.
sl@0
  2349
@SYMTestExpectedResults Test must not fail
sl@0
  2350
@SYMREQ					REQ10407
sl@0
  2351
*/
sl@0
  2352
void DiffCompactModeSize2Test()
sl@0
  2353
	{
sl@0
  2354
	_LIT8(KAutoCompaction, "compaction = auto");
sl@0
  2355
	RSqlDatabase db;
sl@0
  2356
	TInt err = db.Create(KTestDbName1, &KAutoCompaction);
sl@0
  2357
	TEST2(err, KErrNone);
sl@0
  2358
	err = db.Exec(_L("CREATE TABLE A(I INTEGER)"));
sl@0
  2359
	TEST(err >= 0);
sl@0
  2360
	RSqlDatabase::TSize	size;
sl@0
  2361
	err = db.Size(size);
sl@0
  2362
	TEST2(err, KErrNone);
sl@0
  2363
	TEST(size.iSize > 0);
sl@0
  2364
	TEST(size.iFree >= 0);
sl@0
  2365
	db.Close();
sl@0
  2366
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2367
	
sl@0
  2368
	_LIT8(KManualCompaction, "compaction = manual");
sl@0
  2369
	err = db.Create(KTestDbName1, &KManualCompaction);
sl@0
  2370
	TEST2(err, KErrNone);
sl@0
  2371
	err = db.Exec(_L("CREATE TABLE A(I INTEGER)"));
sl@0
  2372
	TEST(err >= 0);
sl@0
  2373
	err = db.Size(size);
sl@0
  2374
	TEST2(err, KErrNone);
sl@0
  2375
	TEST(size.iSize > 0);
sl@0
  2376
	TEST(size.iFree >= 0);
sl@0
  2377
	db.Close();
sl@0
  2378
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2379
	
sl@0
  2380
	_LIT8(KBackgroundCompaction, "compaction = background");
sl@0
  2381
	err = db.Create(KTestDbName1, &KBackgroundCompaction);
sl@0
  2382
	TEST2(err, KErrNone);
sl@0
  2383
	err = db.Exec(_L("CREATE TABLE A(I INTEGER)"));
sl@0
  2384
	TEST(err >= 0);
sl@0
  2385
	err = db.Size(size);
sl@0
  2386
	TEST2(err, KErrNone);
sl@0
  2387
	TEST(size.iSize > 0);
sl@0
  2388
	TEST(size.iFree >= 0);
sl@0
  2389
	db.Close();
sl@0
  2390
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2391
	}
sl@0
  2392
sl@0
  2393
/**
sl@0
  2394
@SYMTestCaseID			PDS-SQL-CT-4205
sl@0
  2395
@SYMTestCaseDesc		"PRAGMA count_changes" test.
sl@0
  2396
						When "count_changes" pragma is ON, sqlite3_step() is called two times by the 
sl@0
  2397
						SQL server, before getting the SQLITE_DONE return code.
sl@0
  2398
						Everything else is the same (statement processing, etc.).
sl@0
  2399
@SYMTestPriority		High
sl@0
  2400
@SYMTestActions			"PRAGMA count_changes" test.
sl@0
  2401
@SYMTestExpectedResults Test must not fail
sl@0
  2402
*/
sl@0
  2403
void CountChangesTest()
sl@0
  2404
	{
sl@0
  2405
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2406
	RSqlDatabase db;
sl@0
  2407
	TInt err = db.Create(KTestDbName1);
sl@0
  2408
	TEST2(err, KErrNone);
sl@0
  2409
	err = db.Exec(_L("CREATE TABLE A(I INTEGER)"));
sl@0
  2410
	TEST(err >= 0);
sl@0
  2411
	
sl@0
  2412
	err = db.Exec(_L("PRAGMA count_changes=ON"));
sl@0
  2413
	TEST(err >= 0);
sl@0
  2414
	
sl@0
  2415
	err = db.Exec(_L("INSERT INTO A VALUES(1)"));
sl@0
  2416
	TEST2(err, 1);
sl@0
  2417
	
sl@0
  2418
	err = db.Exec(_L8("INSERT INTO A VALUES(2)"));
sl@0
  2419
	TEST2(err, 1);
sl@0
  2420
	
sl@0
  2421
	RSqlStatement stmt;
sl@0
  2422
	err = stmt.Prepare(db, _L("DELETE FROM A WHERE I>=1 AND I<=2"));
sl@0
  2423
	TEST2(err, KErrNone);
sl@0
  2424
	err = stmt.Exec();
sl@0
  2425
	TEST2(err, 2);
sl@0
  2426
	stmt.Close();
sl@0
  2427
	
sl@0
  2428
	err = db.Exec(_L("PRAGMA count_changes=OFF"));
sl@0
  2429
	TEST(err >= 0);
sl@0
  2430
	
sl@0
  2431
	db.Close();
sl@0
  2432
	(void)RSqlDatabase::Delete(KTestDbName1);
sl@0
  2433
	}
sl@0
  2434
sl@0
  2435
void DoTestsL()
sl@0
  2436
	{
sl@0
  2437
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1601 Create/Open/Close database tests "));
sl@0
  2438
	OpenCloseDatabaseTest();
sl@0
  2439
sl@0
  2440
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1602 SetIsolationLevel() database tests "));	
sl@0
  2441
	SetIsolationLevelTest();
sl@0
  2442
	
sl@0
  2443
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1603 Delete database tests "));	
sl@0
  2444
	DeleteDatabaseTest();
sl@0
  2445
	
sl@0
  2446
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1640 Copy database tests "));	
sl@0
  2447
	CopyDatabaseTest();
sl@0
  2448
	
sl@0
  2449
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1604 Operations with NULL column values "));
sl@0
  2450
	NullColumnValues();
sl@0
  2451
	
sl@0
  2452
	enum {KSqlBufSize = 1024};
sl@0
  2453
	
sl@0
  2454
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1605 RSqlDatabase::Exec() test. 16-bit SQL strings. "));	
sl@0
  2455
	ExecOnDbTest<TDesC, TBuf<KSqlBufSize> >();
sl@0
  2456
	
sl@0
  2457
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1605 RSqlDatabase::Exec() test. 8-bit SQL strings. "));	
sl@0
  2458
	ExecOnDbTest<TDesC8, TBuf8<KSqlBufSize> >();
sl@0
  2459
	
sl@0
  2460
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1606 RSqlStatement test. 16-bit SQL strings. "));	
sl@0
  2461
	StatementTest<TDesC, TBuf<KSqlBufSize> >();
sl@0
  2462
	
sl@0
  2463
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1606 RSqlStatement test. 8-bit SQL strings. "));
sl@0
  2464
	StatementTest<TDesC8, TBuf8<KSqlBufSize> >();
sl@0
  2465
	
sl@0
  2466
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1607 RSqlColumnReadStream test. Long text column "));
sl@0
  2467
	ColumnTextStreamTest();
sl@0
  2468
sl@0
  2469
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1621 RSqlColumnReadStream test. Long binary column "));
sl@0
  2470
	ColumnBinaryStreamTest();
sl@0
  2471
sl@0
  2472
    TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-CT-4174 CSqlSrvSession::NewOutputStreamL() coverage test"));
sl@0
  2473
	ColumnBinaryStreamTest2();
sl@0
  2474
	
sl@0
  2475
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1608 RSqlParamWriteStream test. Long text parameter "));
sl@0
  2476
	TextParameterStreamTest();
sl@0
  2477
sl@0
  2478
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1622 RSqlParamWriteStream test. Long binary parameter "));
sl@0
  2479
	BinaryParameterStreamTest();
sl@0
  2480
sl@0
  2481
    TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4191 MStreamBuf::SeekL() test"));
sl@0
  2482
    StreamSeekTestL();
sl@0
  2483
	
sl@0
  2484
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1634 RSqlStatement test. Nameless parameter "));
sl@0
  2485
	NamelessParameterTest();
sl@0
  2486
sl@0
  2487
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1768 Asynchronous execution tests "));
sl@0
  2488
	AsyncTest();	
sl@0
  2489
	
sl@0
  2490
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1816 RSqlDatabase::Size() tests "));
sl@0
  2491
	SizeTest();
sl@0
  2492
	
sl@0
  2493
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1817 RSqlDatabase::InTransaction() tests "));
sl@0
  2494
	InTransactionTest();
sl@0
  2495
sl@0
  2496
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4039 RSqlDatabase::Size(RSqlDatabase::TSize&) tests"));
sl@0
  2497
	SizeTest2();
sl@0
  2498
sl@0
  2499
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4040 RSqlDatabase::Size(RSqlDatabase::TSize&) - attached database tests"));
sl@0
  2500
	AttachedSizeTest2();
sl@0
  2501
	
sl@0
  2502
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4041 RSqlDatabase::Size(RSqlDatabase::TSize&) - different compaction modes tests"));
sl@0
  2503
	DiffCompactModeSize2Test();
sl@0
  2504
sl@0
  2505
	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4205 PRAGMA \"count_changes\" test"));
sl@0
  2506
	CountChangesTest();
sl@0
  2507
	}
sl@0
  2508
sl@0
  2509
TInt E32Main()
sl@0
  2510
	{
sl@0
  2511
	TheTest.Title();
sl@0
  2512
	
sl@0
  2513
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  2514
	
sl@0
  2515
	__UHEAP_MARK;
sl@0
  2516
	
sl@0
  2517
	CreateTestDir();
sl@0
  2518
	DeleteTestFiles();
sl@0
  2519
	TRAPD(err, DoTestsL());
sl@0
  2520
	DeleteTestFiles();
sl@0
  2521
	TEST2(err, KErrNone);
sl@0
  2522
	
sl@0
  2523
	__UHEAP_MARKEND;
sl@0
  2524
	
sl@0
  2525
	TheTest.End();
sl@0
  2526
	TheTest.Close();
sl@0
  2527
	
sl@0
  2528
	delete tc;
sl@0
  2529
	
sl@0
  2530
	User::Heap().Check();
sl@0
  2531
	return KErrNone;
sl@0
  2532
	}