os/persistentdata/persistentstorage/sql/TEST/t_sqlconfigfile.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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 <sqldb.h>
sl@0
    18
//#include "SqlUtil.h"
sl@0
    19
#include "SqlSrvConfig.h"
sl@0
    20
#include "SqlResourceTester.h"
sl@0
    21
sl@0
    22
/////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
/// This test works only if the whole SQL component is built with SYSLIBS_TEST macro defined! ///
sl@0
    24
/////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    25
sl@0
    26
RTest TheTest(_L("t_sqlconfigfile test"));
sl@0
    27
sl@0
    28
#ifdef SYSLIBS_TEST	
sl@0
    29
sl@0
    30
RFs TheFs;
sl@0
    31
RSqlDatabase TheDb;
sl@0
    32
sl@0
    33
_LIT(KTestDir, "c:\\test\\");
sl@0
    34
_LIT(KTestDbName, "c:\\test\\t_sqlconfigfile.db");
sl@0
    35
_LIT(KSqlSrvConfigFile, "c:\\test\\t_sqlserver.cfg");
sl@0
    36
_LIT(KSqlSrvName, "sqlsrv.exe");
sl@0
    37
sl@0
    38
enum TConfigParamType {EPrmCacheSize, EPrmPageSize, EPrmDbEncoding};
sl@0
    39
sl@0
    40
//Default configuration parameter values, defined in ../test/sqlserver.cfg file
sl@0
    41
//(the same as the build-time configuration parameter values)
sl@0
    42
const TInt KDefaultPageSize = 1024;
sl@0
    43
const TInt KDefaultCacheSize = (TSqlSrvConfigParams::KDefaultSoftHeapLimitKb * 1024) / KDefaultPageSize;
sl@0
    44
const TSqlSrvConfigParams::TDbEncoding KDefaultEncoding = TSqlSrvConfigParams::EEncUtf16;
sl@0
    45
sl@0
    46
TInt KillProcess(const TDesC& aProcessName);
sl@0
    47
sl@0
    48
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    49
// Destroy functions
sl@0
    50
sl@0
    51
TInt KillProcess(const TDesC& aProcessName)
sl@0
    52
	{
sl@0
    53
	TFullName name;
sl@0
    54
	//RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
sl@0
    55
	TBuf<64> pattern(aProcessName);
sl@0
    56
	TInt length = pattern.Length();
sl@0
    57
	pattern += _L("*");
sl@0
    58
	TFindProcess procFinder(pattern);
sl@0
    59
sl@0
    60
	while (procFinder.Next(name) == KErrNone)
sl@0
    61
		{
sl@0
    62
		if (name.Length() > length)
sl@0
    63
			{//If found name is a string containing aProcessName string.
sl@0
    64
			TChar c(name[length]);
sl@0
    65
			if (c.IsAlphaDigit() ||
sl@0
    66
				c == TChar('_') ||
sl@0
    67
				c == TChar('-'))
sl@0
    68
				{
sl@0
    69
				// If the found name is other valid application name
sl@0
    70
				// starting with aProcessName string.
sl@0
    71
				//RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
sl@0
    72
				continue;
sl@0
    73
				}
sl@0
    74
			}
sl@0
    75
		RProcess proc;
sl@0
    76
		if (proc.Open(name) == KErrNone)
sl@0
    77
			{
sl@0
    78
			proc.Kill(0);
sl@0
    79
			//RDebug::Print(_L("\"%S\" process killed.\n"), &name);
sl@0
    80
			}
sl@0
    81
		proc.Close();
sl@0
    82
		}
sl@0
    83
	return KErrNone;
sl@0
    84
	}
sl@0
    85
sl@0
    86
void DestroyTestEnv()
sl@0
    87
	{
sl@0
    88
	TheDb.Close();
sl@0
    89
	(void)KillProcess(KSqlSrvName);
sl@0
    90
	(void)TheFs.Delete(KTestDbName);
sl@0
    91
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
    92
	TheFs.Close();
sl@0
    93
	}
sl@0
    94
	
sl@0
    95
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    96
// Test macros and functions
sl@0
    97
sl@0
    98
void Check(TInt aValue, TInt aLine)
sl@0
    99
	{
sl@0
   100
	if(!aValue)
sl@0
   101
		{
sl@0
   102
		DestroyTestEnv();
sl@0
   103
		TheTest(EFalse, aLine);
sl@0
   104
		}
sl@0
   105
	}
sl@0
   106
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
   107
	{
sl@0
   108
	if(aValue != aExpected)
sl@0
   109
		{
sl@0
   110
		DestroyTestEnv();
sl@0
   111
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
   112
		TheTest(EFalse, aLine);
sl@0
   113
		}
sl@0
   114
	}
sl@0
   115
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   116
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   117
sl@0
   118
// OOM test functions
sl@0
   119
sl@0
   120
static TInt TheHandleCount1;
sl@0
   121
static TInt TheHandleCount2;
sl@0
   122
static TInt TheAllocatedCellsCount;
sl@0
   123
sl@0
   124
void MarkHandles()
sl@0
   125
	{
sl@0
   126
	RThread().HandleCount(TheHandleCount1, TheHandleCount2);
sl@0
   127
	}
sl@0
   128
sl@0
   129
void CheckHandles()
sl@0
   130
	{
sl@0
   131
	TInt endHandleCount1;
sl@0
   132
	TInt endHandleCount2;
sl@0
   133
sl@0
   134
	RThread().HandleCount(endHandleCount1, endHandleCount2);
sl@0
   135
sl@0
   136
	TEST(TheHandleCount1 == endHandleCount1);
sl@0
   137
	TEST(TheHandleCount2 == endHandleCount2);
sl@0
   138
	}
sl@0
   139
sl@0
   140
void MarkAllocatedCells()
sl@0
   141
	{
sl@0
   142
	TheAllocatedCellsCount = User::CountAllocCells();
sl@0
   143
	}
sl@0
   144
sl@0
   145
void CheckAllocatedCells()
sl@0
   146
	{
sl@0
   147
	TInt allocatedCellsCount = User::CountAllocCells();
sl@0
   148
	TEST(allocatedCellsCount == TheAllocatedCellsCount);
sl@0
   149
	}
sl@0
   150
sl@0
   151
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   152
// Set up functions
sl@0
   153
sl@0
   154
TInt DoCreateSecurityPolicy(RSqlSecurityPolicy& securityPolicy)
sl@0
   155
	{
sl@0
   156
	const TSecurityPolicy KDefaultPolicy(TSecurityPolicy::EAlwaysPass);
sl@0
   157
	if((KErrNone != securityPolicy.Create(KDefaultPolicy))
sl@0
   158
	   ||
sl@0
   159
	   (KErrNone != securityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, KDefaultPolicy))
sl@0
   160
	   ||
sl@0
   161
	   (KErrNone != securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, KDefaultPolicy))
sl@0
   162
	   ||
sl@0
   163
	   (KErrNone != securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EReadPolicy, KDefaultPolicy)))
sl@0
   164
		{
sl@0
   165
		return KErrGeneral;
sl@0
   166
		}
sl@0
   167
		
sl@0
   168
	return KErrNone;
sl@0
   169
	}
sl@0
   170
	
sl@0
   171
void SetupTestEnv()
sl@0
   172
    {
sl@0
   173
	TInt err = TheFs.Connect();
sl@0
   174
	TEST2(err, KErrNone);
sl@0
   175
sl@0
   176
	err = TheFs.MkDir(KTestDir);
sl@0
   177
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   178
sl@0
   179
	err = TheFs.CreatePrivatePath(EDriveC);
sl@0
   180
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   181
sl@0
   182
	(void)TheFs.Delete(KTestDbName);
sl@0
   183
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   184
	}
sl@0
   185
sl@0
   186
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   187
// Parameter check functions
sl@0
   188
sl@0
   189
TInt DoGetConfigParamValueL(RSqlDatabase& aDb, TConfigParamType aPrmType)
sl@0
   190
	{
sl@0
   191
	TSqlScalarFullSelectQuery q(aDb);
sl@0
   192
	TInt res = 0;
sl@0
   193
	switch(aPrmType)
sl@0
   194
		{
sl@0
   195
		case EPrmCacheSize:
sl@0
   196
			res = q.SelectIntL(_L8("PRAGMA cache_size"));
sl@0
   197
			break;
sl@0
   198
		case EPrmPageSize:
sl@0
   199
			res = q.SelectIntL(_L8("PRAGMA page_size"));
sl@0
   200
			break;
sl@0
   201
		case EPrmDbEncoding:
sl@0
   202
			{
sl@0
   203
			TBuf<20> dbEncodingText;
sl@0
   204
			res = q.SelectTextL(_L8("PRAGMA encoding"), dbEncodingText);
sl@0
   205
			TEST2(res, KErrNone);
sl@0
   206
			if(dbEncodingText.FindF(_L("UTF-16")) >= 0)
sl@0
   207
				{
sl@0
   208
				res = TSqlSrvConfigParams::EEncUtf16;	
sl@0
   209
				}
sl@0
   210
			else if(dbEncodingText.FindF(_L("UTF-8")) >= 0)
sl@0
   211
				{
sl@0
   212
				res = TSqlSrvConfigParams::EEncUtf8;	
sl@0
   213
				}
sl@0
   214
			else
sl@0
   215
				{
sl@0
   216
				TEST2(0, 1);
sl@0
   217
				}
sl@0
   218
			}
sl@0
   219
			break;
sl@0
   220
		default:
sl@0
   221
			TEST2(0, 1);
sl@0
   222
			break;
sl@0
   223
		}
sl@0
   224
	return res;
sl@0
   225
	}
sl@0
   226
sl@0
   227
TInt GetConfigParamValue(RSqlDatabase& aDb, TConfigParamType aPrmType)
sl@0
   228
	{
sl@0
   229
	TInt res = 0;
sl@0
   230
	TRAPD(err, res = DoGetConfigParamValueL(aDb, aPrmType));
sl@0
   231
	TEST2(err, KErrNone);
sl@0
   232
	return res;
sl@0
   233
	}
sl@0
   234
sl@0
   235
void AssertConfigPrmValues(RSqlDatabase& aDb, TInt aExpectedCacheSize, TInt aExpectedPageSize, TInt aExpectedDbEncoding)
sl@0
   236
	{
sl@0
   237
	TInt cacheSize = GetConfigParamValue(aDb, EPrmCacheSize);
sl@0
   238
	TInt pageSize = GetConfigParamValue(aDb, EPrmPageSize);
sl@0
   239
	TInt dbEncoding = GetConfigParamValue(aDb, EPrmDbEncoding);
sl@0
   240
	TEST2(cacheSize, aExpectedCacheSize);
sl@0
   241
	TEST2(pageSize, aExpectedPageSize);
sl@0
   242
	TEST2(dbEncoding, aExpectedDbEncoding);
sl@0
   243
	}
sl@0
   244
sl@0
   245
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   246
// Config file replacement functions
sl@0
   247
sl@0
   248
// File config strings are 16-bit.
sl@0
   249
void ReplaceConfigFile(const TDesC16& aConfig)
sl@0
   250
	{
sl@0
   251
	(void)KillProcess(KSqlSrvName);
sl@0
   252
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   253
	RFile file;
sl@0
   254
	TInt err = file.Create(TheFs, KSqlSrvConfigFile, EFileRead | EFileWrite);
sl@0
   255
	TEST2(err, KErrNone);
sl@0
   256
	TPtrC8 p((const TUint8*)aConfig.Ptr(), aConfig.Length() * sizeof(TUint16));
sl@0
   257
	err = file.Write(p);
sl@0
   258
	file.Close();
sl@0
   259
	TEST2(err, KErrNone);
sl@0
   260
	}
sl@0
   261
	
sl@0
   262
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   263
//
sl@0
   264
sl@0
   265
/**
sl@0
   266
@SYMTestCaseID			SYSLIB-SQL-UT-3603
sl@0
   267
@SYMTestCaseDesc		Bad config file test
sl@0
   268
						The test creates bad config files like:
sl@0
   269
							- empty config file;
sl@0
   270
							- "\n" config file;
sl@0
   271
							- "\r\n" config file;
sl@0
   272
							- config file with comment lines only;
sl@0
   273
						Then the test restarts the SQL server and checks that the bad config file is detected and 
sl@0
   274
						appropriate error code - returned to the caller (during "database create" operation).
sl@0
   275
@SYMTestPriority		High
sl@0
   276
@SYMTestActions			Bad config file test
sl@0
   277
@SYMTestExpectedResults The test must not fail
sl@0
   278
@SYMREQ					REQ8162
sl@0
   279
*/
sl@0
   280
void BadCfgFileTest()
sl@0
   281
	{
sl@0
   282
	//Empty config file	
sl@0
   283
	ReplaceConfigFile(_L(""));
sl@0
   284
	TInt err = TheDb.Create(KTestDbName);
sl@0
   285
	TEST2(err, KErrEof);//BC kept - an empty config file is treated as invalid
sl@0
   286
	TheDb.Close();
sl@0
   287
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   288
	//"\n" config file	
sl@0
   289
	ReplaceConfigFile(_L("\n"));
sl@0
   290
	err = TheDb.Create(KTestDbName);
sl@0
   291
	TEST2(err, KErrEof);//BC compatible
sl@0
   292
	TheDb.Close();
sl@0
   293
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   294
	//"\r\n" config file	
sl@0
   295
	ReplaceConfigFile(_L("\r\n"));
sl@0
   296
	err = TheDb.Create(KTestDbName);
sl@0
   297
	TEST2(err, KErrEof);//BC compatible
sl@0
   298
	TheDb.Close();
sl@0
   299
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   300
	//"        \r\n" config file	
sl@0
   301
	ReplaceConfigFile(_L("        \r\n"));
sl@0
   302
	err = TheDb.Create(KTestDbName);
sl@0
   303
	TEST2(err, KErrEof);//BC compatible
sl@0
   304
	TheDb.Close();
sl@0
   305
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   306
	//"  # \r\n" config file
sl@0
   307
	ReplaceConfigFile(_L("  # \r\n"));
sl@0
   308
	err = TheDb.Create(KTestDbName);
sl@0
   309
	TEST2(err, KErrEof);//BC compatible
sl@0
   310
	TheDb.Close();
sl@0
   311
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   312
	//"  # \r\na=b\r\n" config file
sl@0
   313
	ReplaceConfigFile(_L("  # \r\na=b\r\n"));
sl@0
   314
	err = TheDb.Create(KTestDbName);
sl@0
   315
	TEST2(err, KErrNone);
sl@0
   316
	AssertConfigPrmValues(TheDb, KDefaultCacheSize, KDefaultPageSize, KDefaultEncoding);
sl@0
   317
	TheDb.Close();
sl@0
   318
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   319
	//"  # \r\n   a=b   \r\n" config file
sl@0
   320
	ReplaceConfigFile(_L("  # \r\n   a=b   \r\n"));
sl@0
   321
	err = TheDb.Create(KTestDbName);
sl@0
   322
	TEST2(err, KErrNone);
sl@0
   323
	AssertConfigPrmValues(TheDb, KDefaultCacheSize, KDefaultPageSize, KDefaultEncoding);
sl@0
   324
	TheDb.Close();
sl@0
   325
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   326
	//"  # \r\n   a=b  " config file
sl@0
   327
	ReplaceConfigFile(_L("  # \r\n   a=b  "));
sl@0
   328
	err = TheDb.Create(KTestDbName);
sl@0
   329
	TEST2(err, KErrNone);
sl@0
   330
	AssertConfigPrmValues(TheDb, KDefaultCacheSize, KDefaultPageSize, KDefaultEncoding);
sl@0
   331
	TheDb.Close();
sl@0
   332
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   333
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   334
	}
sl@0
   335
sl@0
   336
/**
sl@0
   337
@SYMTestCaseID			SYSLIB-SQL-UT-3604
sl@0
   338
@SYMTestCaseDesc		Config file with bad parameters test
sl@0
   339
						The test creates config files with bad parameters like:
sl@0
   340
							- negative cache size;
sl@0
   341
							- non-numeric cache size value;
sl@0
   342
							- empty cache size value;
sl@0
   343
							- negative page size;
sl@0
   344
							- non-numeric page size value;
sl@0
   345
							- empty page size value;
sl@0
   346
							- negative soft heap limit size;
sl@0
   347
							- non-numeric soft heap limit value;
sl@0
   348
							- empty soft heap limit value;
sl@0
   349
							- too small soft heap limit value;
sl@0
   350
							- too big soft heap limit value;
sl@0
   351
							- negative free page threshold value;
sl@0
   352
							- empty free page threshold value;
sl@0
   353
							- non-numeric free page threshold value;
sl@0
   354
						Then the test restarts the SQL server and checks that the bad config file is detected and 
sl@0
   355
						appropriate error code - returned to the caller (during "database create" operation).
sl@0
   356
@SYMTestPriority		High
sl@0
   357
@SYMTestActions			Config file with bad parameters test
sl@0
   358
@SYMTestExpectedResults The test must not fail
sl@0
   359
@SYMREQ					REQ8162
sl@0
   360
                        REQ10271
sl@0
   361
*/
sl@0
   362
void BadCfgFileParametersTest()
sl@0
   363
	{
sl@0
   364
	/////////////// cache_size  ////////////////
sl@0
   365
	//"cache_size=-20;" config file
sl@0
   366
	ReplaceConfigFile(_L("cache_size=-20;"));
sl@0
   367
	TInt err = TheDb.Create(KTestDbName);
sl@0
   368
	TEST2(err, KErrArgument);
sl@0
   369
	TheDb.Close();
sl@0
   370
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   371
	//"cache_size=456.90" config file
sl@0
   372
	ReplaceConfigFile(_L("cache_size=456.90"));
sl@0
   373
	err = TheDb.Create(KTestDbName);
sl@0
   374
	TEST2(err, KErrNone);
sl@0
   375
	TheDb.Close();
sl@0
   376
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   377
	//"cache_size='dfjkhdfjk';" config file
sl@0
   378
	ReplaceConfigFile(_L("cache_size='dfjkhdfjk';"));
sl@0
   379
	err = TheDb.Create(KTestDbName);
sl@0
   380
	TEST2(err, KErrArgument);
sl@0
   381
	TheDb.Close();
sl@0
   382
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   383
	//"cache_size=;" config file
sl@0
   384
	ReplaceConfigFile(_L("cache_size=;"));
sl@0
   385
	err = TheDb.Create(KTestDbName);
sl@0
   386
	TEST2(err, KErrArgument);
sl@0
   387
	TheDb.Close();
sl@0
   388
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   389
	/////////////// page_size  ////////////////
sl@0
   390
	//"page_size=-55" config file
sl@0
   391
	ReplaceConfigFile(_L("page_size=-55"));
sl@0
   392
	err = TheDb.Create(KTestDbName);
sl@0
   393
	TEST2(err, KErrArgument);
sl@0
   394
	TheDb.Close();
sl@0
   395
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   396
	//"page_size=25.89" config file
sl@0
   397
	ReplaceConfigFile(_L("page_size=25.89"));
sl@0
   398
	err = TheDb.Create(KTestDbName);
sl@0
   399
	TEST2(err, KErrNone);//BC compatible
sl@0
   400
	TheDb.Close();
sl@0
   401
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   402
	//"page_size=gffgrtj" config file
sl@0
   403
	ReplaceConfigFile(_L("page_size=gffgrtj"));
sl@0
   404
	err = TheDb.Create(KTestDbName);
sl@0
   405
	TEST2(err, KErrArgument);
sl@0
   406
	TheDb.Close();
sl@0
   407
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   408
	//"page_size=" config file
sl@0
   409
	ReplaceConfigFile(_L("page_size="));
sl@0
   410
	err = TheDb.Create(KTestDbName);
sl@0
   411
	TEST2(err, KErrArgument);
sl@0
   412
	TheDb.Close();
sl@0
   413
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   414
	////////   soft_heap_limit_kb    ///////////
sl@0
   415
	//"soft_heap_limit_kb=-10" config file
sl@0
   416
	ReplaceConfigFile(_L("soft_heap_limit_kb=-10"));
sl@0
   417
	err = TheDb.Create(KTestDbName);
sl@0
   418
	TEST2(err, KErrArgument);
sl@0
   419
	TheDb.Close();
sl@0
   420
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   421
	//"soft_heap_limit_kb=5" config file (bellow min limit - 8Kb when SYSLIBS_TEST macro is defined)
sl@0
   422
	ReplaceConfigFile(_L("soft_heap_limit_kb=5"));
sl@0
   423
	err = TheDb.Create(KTestDbName);
sl@0
   424
	TEST2(err, KErrArgument);
sl@0
   425
	TheDb.Close();
sl@0
   426
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   427
	//"soft_heap_limit_kb=8" config file (the min limit - 8Kb when SYSLIBS_TEST macro is defined)
sl@0
   428
	ReplaceConfigFile(_L("soft_heap_limit_kb=8"));
sl@0
   429
	err = TheDb.Create(KTestDbName);
sl@0
   430
	TEST2(err, KErrNone);
sl@0
   431
	TheDb.Close();
sl@0
   432
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   433
	//"soft_heap_limit_kb=2000000000" config file (above max limit)
sl@0
   434
	ReplaceConfigFile(_L("soft_heap_limit_kb=2000000000"));
sl@0
   435
	err = TheDb.Create(KTestDbName);
sl@0
   436
	TEST2(err, KErrArgument);
sl@0
   437
	TheDb.Close();
sl@0
   438
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   439
	//"soft_heap_limit_kb=KMaxTInt/1024" config file (the max limit)
sl@0
   440
	TBuf<32> configBuf;
sl@0
   441
	configBuf.Copy(_L("soft_heap_limit_kb="));
sl@0
   442
	TInt maxSoftHeapLimit = KMaxTInt / 1024;
sl@0
   443
	configBuf.AppendNum(maxSoftHeapLimit);
sl@0
   444
	ReplaceConfigFile(configBuf);
sl@0
   445
	err = TheDb.Create(KTestDbName);
sl@0
   446
	TEST2(err, KErrNone);
sl@0
   447
	TheDb.Close();
sl@0
   448
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   449
	//"soft_heap_limit_kb=sdfcvyua" config file
sl@0
   450
	ReplaceConfigFile(_L("soft_heap_limit_kb=sdfcvyua"));
sl@0
   451
	err = TheDb.Create(KTestDbName);
sl@0
   452
	TEST2(err, KErrArgument);
sl@0
   453
	TheDb.Close();
sl@0
   454
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   455
	//"soft_heap_limit_kb=" config file
sl@0
   456
	ReplaceConfigFile(_L("soft_heap_limit_kb="));
sl@0
   457
	err = TheDb.Create(KTestDbName);
sl@0
   458
	TEST2(err, KErrArgument);
sl@0
   459
	TheDb.Close();
sl@0
   460
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   461
	//"soft_heap_limit_kb=1023.456" config file
sl@0
   462
	ReplaceConfigFile(_L("soft_heap_limit_kb=1023.456"));
sl@0
   463
	err = TheDb.Create(KTestDbName);
sl@0
   464
	TEST2(err, KErrNone);
sl@0
   465
	TheDb.Close();
sl@0
   466
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   467
	////////   free_space_threshold_kb    ///////////
sl@0
   468
	//"free_space_threshold_kb=-10" config file
sl@0
   469
	ReplaceConfigFile(_L("free_space_threshold_kb=-10"));
sl@0
   470
	err = TheDb.Create(KTestDbName);
sl@0
   471
	TEST2(err, KErrArgument);
sl@0
   472
	TheDb.Close();
sl@0
   473
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   474
	//"free_space_threshold_kb=0" config file
sl@0
   475
	ReplaceConfigFile(_L("free_space_threshold_kb=0"));
sl@0
   476
	err = TheDb.Create(KTestDbName);
sl@0
   477
	TEST2(err, KErrNone);
sl@0
   478
	TheDb.Close();
sl@0
   479
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   480
	//"free_space_threshold_kb=" config file
sl@0
   481
	ReplaceConfigFile(_L("free_space_threshold_kb="));
sl@0
   482
	err = TheDb.Create(KTestDbName);
sl@0
   483
	TEST2(err, KErrArgument);
sl@0
   484
	TheDb.Close();
sl@0
   485
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   486
	//"free_space_threshold_kb=34.56" config file
sl@0
   487
	ReplaceConfigFile(_L("free_space_threshold_kb=34.56"));
sl@0
   488
	err = TheDb.Create(KTestDbName);
sl@0
   489
	TEST2(err, KErrNone);
sl@0
   490
	TheDb.Close();
sl@0
   491
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   492
	//"free_space_threshold_kb=gfghfg" config file
sl@0
   493
	ReplaceConfigFile(_L("free_space_threshold_kb=gfghfg"));
sl@0
   494
	err = TheDb.Create(KTestDbName);
sl@0
   495
	TEST2(err, KErrArgument);
sl@0
   496
	TheDb.Close();
sl@0
   497
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   498
	/////////////////////////////////////////////
sl@0
   499
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   500
	}
sl@0
   501
sl@0
   502
/**
sl@0
   503
@SYMTestCaseID			SYSLIB-SQL-UT-3605
sl@0
   504
@SYMTestCaseDesc		Config parameters conflict test.
sl@0
   505
						1) The test creates a database with cache size parameter value specified in both the config file and the
sl@0
   506
							config string. The expectation is that the config string parameter will be used.
sl@0
   507
						2) The test creates a database with page size parameter value specified in both the config file and the
sl@0
   508
							config string. The expectation is that the config string parameter will be used.
sl@0
   509
						3) The test creates a database with encoding parameter value specified in both the config file and the
sl@0
   510
							config string. The expectation is that the config string parameter will be used.
sl@0
   511
						4) The test creates a database with soft heap limit value specified in both the config file and the
sl@0
   512
							config string. The expectation is that the database creation will fail (the soft heap limit
sl@0
   513
							cannot be configured using a config string).
sl@0
   514
						5) The test creates a database with free page threshold value specified in both the config file and the
sl@0
   515
							config string. The expectation is that the database creation will succeeds. The free page threshold
sl@0
   516
							value from the config file will be used.
sl@0
   517
@SYMTestPriority		High
sl@0
   518
@SYMTestActions			Config parameters conflict test
sl@0
   519
@SYMTestExpectedResults The test must not fail
sl@0
   520
@SYMREQ					REQ8162
sl@0
   521
                        REQ10271
sl@0
   522
*/
sl@0
   523
void CfgFileConflictTest()
sl@0
   524
	{
sl@0
   525
	//"cache_size=200" config file
sl@0
   526
	//"cache_size=100" client config string
sl@0
   527
	ReplaceConfigFile(_L("cache_size=200"));
sl@0
   528
	_LIT8(KConfigStr1, "cache_size=100");
sl@0
   529
	TInt err = TheDb.Create(KTestDbName, &KConfigStr1);
sl@0
   530
	TEST2(err, KErrNone);
sl@0
   531
	AssertConfigPrmValues(TheDb, 100, KDefaultPageSize, KDefaultEncoding);
sl@0
   532
	TheDb.Close();
sl@0
   533
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   534
	//"page_size=512" config file
sl@0
   535
	//"page_size=8192" client config string
sl@0
   536
	ReplaceConfigFile(_L("page_size=512"));
sl@0
   537
	_LIT8(KConfigStr2, "page_size=8192");
sl@0
   538
	err = TheDb.Create(KTestDbName, &KConfigStr2);
sl@0
   539
	TEST2(err, KErrNone);
sl@0
   540
	AssertConfigPrmValues(TheDb, (TSqlSrvConfigParams::KDefaultSoftHeapLimitKb * 1024) / 8192, 8192, KDefaultEncoding);
sl@0
   541
	TheDb.Close();
sl@0
   542
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   543
	//"encoding=UTF-16" config file
sl@0
   544
	//"encoding=UTF-8" client config string
sl@0
   545
	ReplaceConfigFile(_L("encoding=UTF-16"));
sl@0
   546
	_LIT8(KConfigStr3, "encoding=UTF-8");
sl@0
   547
	err = TheDb.Create(KTestDbName, &KConfigStr3);
sl@0
   548
	TEST2(err, KErrNone);
sl@0
   549
	AssertConfigPrmValues(TheDb, KDefaultCacheSize, KDefaultPageSize, TSqlSrvConfigParams::EEncUtf8);
sl@0
   550
	TheDb.Close();
sl@0
   551
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   552
	//"soft_heap_limit_kb=900" config file
sl@0
   553
	//"soft_heap_limit_kb=800" client config string
sl@0
   554
	ReplaceConfigFile(_L("soft_heap_limit_kb=900"));
sl@0
   555
	_LIT8(KConfigStr4, "soft_heap_limit_kb=800");
sl@0
   556
	err = TheDb.Create(KTestDbName, &KConfigStr4);
sl@0
   557
	TEST2(err, KErrArgument);
sl@0
   558
	TheDb.Close();
sl@0
   559
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   560
	//"free_space_threshold_kb=100" config file
sl@0
   561
	//"free_space_threshold_kb=200" client config string
sl@0
   562
	ReplaceConfigFile(_L("free_space_threshold_kb=100"));
sl@0
   563
	_LIT8(KConfigStr5, "free_space_threshold_kb=200");
sl@0
   564
	err = TheDb.Create(KTestDbName, &KConfigStr5);
sl@0
   565
	TEST2(err, KErrArgument);
sl@0
   566
	TheDb.Close();
sl@0
   567
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   568
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   569
	}
sl@0
   570
sl@0
   571
/**
sl@0
   572
@SYMTestCaseID			SYSLIB-SQL-UT-3606
sl@0
   573
@SYMTestCaseDesc		Soft Heap Limit - functional test.
sl@0
   574
						The test attempts to create a database with the soft heap limit value specified in the config file
sl@0
   575
						and different combinations of the page size and cache size parameters in both config file and client
sl@0
   576
						config string. The expectation is that when the cache size parameter value is not specified explicitly
sl@0
   577
						in the config file or in the config string, the cache size value will be calculated, using the soft
sl@0
   578
						heap limit and the database page size.
sl@0
   579
@SYMTestPriority		High
sl@0
   580
@SYMTestActions			Soft Heap Limit - functional test.
sl@0
   581
@SYMTestExpectedResults The test must not fail
sl@0
   582
@SYMREQ					REQ8162
sl@0
   583
*/
sl@0
   584
void SoftHeapLimitFunctionalTest1()
sl@0
   585
	{
sl@0
   586
	///////////////////// CREATE DATABASE /////////////////////////////////////////////////////////
sl@0
   587
	//"soft_heap_limit_kb=512" config file. (512 is the min soft heap limit value)
sl@0
   588
	//Expected result: the database cache size will be (512 * 1024)/page_size;
sl@0
   589
	ReplaceConfigFile(_L("soft_heap_limit_kb=512"));
sl@0
   590
	TInt err = TheDb.Create(KTestDbName);
sl@0
   591
	TEST2(err, KErrNone);
sl@0
   592
	AssertConfigPrmValues(TheDb, (512 * 1024) / KDefaultPageSize, KDefaultPageSize, KDefaultEncoding);
sl@0
   593
	TheDb.Close();
sl@0
   594
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   595
	//"soft_heap_limit_kb=KMaxTInt/1024" config file. (KMaxTInt / 1024 is the max soft heap limit value)
sl@0
   596
	//Expected result: the database cache size will be KMaxTInt/page_size;
sl@0
   597
	TBuf<32> configBuf;
sl@0
   598
	configBuf.Copy(_L("soft_heap_limit_kb="));
sl@0
   599
	TInt maxSoftHeapLimit = KMaxTInt / 1024;
sl@0
   600
	configBuf.AppendNum(maxSoftHeapLimit);
sl@0
   601
	ReplaceConfigFile(configBuf);
sl@0
   602
	err = TheDb.Create(KTestDbName);
sl@0
   603
	TEST2(err, KErrNone);
sl@0
   604
	AssertConfigPrmValues(TheDb, KMaxTInt / KDefaultPageSize, KDefaultPageSize, KDefaultEncoding);
sl@0
   605
	TheDb.Close();
sl@0
   606
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   607
	//"soft_heap_limit_kb=512;page_size=2048" config file.
sl@0
   608
	//Expected result: the database cache size will be (512 * 1024)/2048. The page size value from the config file is used.
sl@0
   609
	ReplaceConfigFile(_L("soft_heap_limit_kb=512;page_size=2048"));
sl@0
   610
	err = TheDb.Create(KTestDbName);
sl@0
   611
	TEST2(err, KErrNone);
sl@0
   612
	AssertConfigPrmValues(TheDb, (512 * 1024) / 2048, 2048, KDefaultEncoding);
sl@0
   613
	TheDb.Close();
sl@0
   614
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   615
	//"soft_heap_limit_kb=512" config file.
sl@0
   616
	//"page_size=4096" client config string.
sl@0
   617
	//Expected result: the database cache size will be (512 * 1024)/4096. The page size value from the client config string is used.
sl@0
   618
	ReplaceConfigFile(_L("soft_heap_limit_kb=512;"));
sl@0
   619
	_LIT8(KConfigStr1, "page_size=4096");
sl@0
   620
	err = TheDb.Create(KTestDbName, &KConfigStr1);
sl@0
   621
	TEST2(err, KErrNone);
sl@0
   622
	AssertConfigPrmValues(TheDb, (512 * 1024) / 4096, 4096, KDefaultEncoding);
sl@0
   623
	TheDb.Close();
sl@0
   624
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   625
	//"soft_heap_limit_kb=512;page_size=8192" config file.
sl@0
   626
	//"page_size=2048" client config string.
sl@0
   627
	//Expected result: the database cache size will be (512 * 1024)/2048. The page size value from the client config string is used.
sl@0
   628
	ReplaceConfigFile(_L("soft_heap_limit_kb=512;page_size=8192"));
sl@0
   629
	_LIT8(KConfigStr2, "page_size=2048");
sl@0
   630
	err = TheDb.Create(KTestDbName, &KConfigStr2);
sl@0
   631
	TEST2(err, KErrNone);
sl@0
   632
	AssertConfigPrmValues(TheDb, (512 * 1024) / 2048, 2048, KDefaultEncoding);
sl@0
   633
	TheDb.Close();
sl@0
   634
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   635
	//"soft_heap_limit_kb=512;page_size=2048;encoding=UTF-8" config file.
sl@0
   636
	//"cache_size=100" client config string.
sl@0
   637
	//Expected result: the database cache size will be 100. The soft heap limit is not used for the cache size calculation.
sl@0
   638
	ReplaceConfigFile(_L("soft_heap_limit_kb=512;page_size=2048;encoding=UTF-8"));
sl@0
   639
	_LIT8(KConfigStr3, "cache_size=100");
sl@0
   640
	err = TheDb.Create(KTestDbName, &KConfigStr3);
sl@0
   641
	TEST2(err, KErrNone);
sl@0
   642
	AssertConfigPrmValues(TheDb, 100, 2048, TSqlSrvConfigParams::EEncUtf8);
sl@0
   643
	TheDb.Close();
sl@0
   644
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   645
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   646
	}
sl@0
   647
sl@0
   648
/**
sl@0
   649
@SYMTestCaseID			SYSLIB-SQL-UT-3607
sl@0
   650
@SYMTestCaseDesc		Soft Heap Limit - functional test.
sl@0
   651
						The test attempts to open a database with the soft heap limit value specified in the config file
sl@0
   652
						and different combinations of the page size and cache size parameters in both config file and client
sl@0
   653
						config string. The expectation is that when the cache size parameter value is not specified explicitly
sl@0
   654
						in the config file or in the config string, the cache size value will be calculated, using the soft
sl@0
   655
						heap limit and the database page size (read from the database, not from the config file or string).
sl@0
   656
@SYMTestPriority		High
sl@0
   657
@SYMTestActions			Soft Heap Limit - functional test.
sl@0
   658
@SYMTestExpectedResults The test must not fail
sl@0
   659
@SYMREQ					REQ8162
sl@0
   660
*/
sl@0
   661
void SoftHeapLimitFunctionalTest2()
sl@0
   662
	{
sl@0
   663
	///////////////////// OPEN DATABASE /////////////////////////////////////////////////////////
sl@0
   664
	//"soft_heap_limit_kb=512;page_size=2048" config file.
sl@0
   665
	//Expected result: the database cache size will be (512 * 1024)/2048. The database page size value is used (not the built-time one).
sl@0
   666
	ReplaceConfigFile(_L("soft_heap_limit_kb=512;page_size=2048"));
sl@0
   667
	TInt err = TheDb.Create(KTestDbName);
sl@0
   668
	TEST2(err, KErrNone);
sl@0
   669
	AssertConfigPrmValues(TheDb, (512 * 1024) / 2048, 2048, KDefaultEncoding);
sl@0
   670
	TheDb.Close();
sl@0
   671
	ReplaceConfigFile(_L("soft_heap_limit_kb=1024;page_size=8192"));
sl@0
   672
	err = TheDb.Open(KTestDbName);
sl@0
   673
	TEST2(err, KErrNone);
sl@0
   674
	AssertConfigPrmValues(TheDb, (1024 * 1024) / 2048, 2048, KDefaultEncoding);
sl@0
   675
	TheDb.Close();
sl@0
   676
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   677
	//"soft_heap_limit_kb=512" config file.
sl@0
   678
	//"page_size=4096" client config string.
sl@0
   679
	//Expected result: the database cache size will be (512 * 1024)/4096. The database page size value is used (not the built-time one).
sl@0
   680
	ReplaceConfigFile(_L("soft_heap_limit_kb=512"));
sl@0
   681
	_LIT8(KConfigStr1, "page_size=4096");
sl@0
   682
	err = TheDb.Create(KTestDbName, &KConfigStr1);
sl@0
   683
	TEST2(err, KErrNone);
sl@0
   684
	AssertConfigPrmValues(TheDb, (512 * 1024) / 4096, 4096, KDefaultEncoding);
sl@0
   685
	TheDb.Close();
sl@0
   686
	ReplaceConfigFile(_L("soft_heap_limit_kb=1024;page_size=8192"));
sl@0
   687
	err = TheDb.Open(KTestDbName);
sl@0
   688
	TEST2(err, KErrNone);
sl@0
   689
	AssertConfigPrmValues(TheDb, (1024 * 1024) / 4096, 4096, KDefaultEncoding);
sl@0
   690
	TheDb.Close();
sl@0
   691
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   692
	//"soft_heap_limit_kb=512" config file.
sl@0
   693
	//"page_size=4096" client config string when openning the database.
sl@0
   694
	//Expected result: the database cache size will be 512. The database page size value is used (the built-time one).
sl@0
   695
	ReplaceConfigFile(_L("soft_heap_limit_kb=512"));
sl@0
   696
	err = TheDb.Create(KTestDbName);
sl@0
   697
	TEST2(err, KErrNone);
sl@0
   698
	AssertConfigPrmValues(TheDb, 512, KDefaultPageSize, KDefaultEncoding);
sl@0
   699
	TheDb.Close();
sl@0
   700
	ReplaceConfigFile(_L("soft_heap_limit_kb=1024;page_size=512"));
sl@0
   701
	_LIT8(KConfigStr2, "page_size=4096");
sl@0
   702
	err = TheDb.Open(KTestDbName, &KConfigStr2);
sl@0
   703
	TEST2(err, KErrNone);
sl@0
   704
	AssertConfigPrmValues(TheDb, 1024, KDefaultPageSize, KDefaultEncoding);
sl@0
   705
	TheDb.Close();
sl@0
   706
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   707
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   708
	}
sl@0
   709
	
sl@0
   710
/**
sl@0
   711
@SYMTestCaseID			SYSLIB-SQL-UT-3608
sl@0
   712
@SYMTestCaseDesc		Soft Heap Limit - file I/O failure simulation test.
sl@0
   713
						The test creates a database with very small soft heap limit value (8Kb).
sl@0
   714
						Then the test attempts to insert a record in an explicit transaction while doing
sl@0
   715
						file I/O failure simulation.
sl@0
   716
@SYMTestPriority		High
sl@0
   717
@SYMTestActions			Soft Heap Limit - file I/O failure simulation test.
sl@0
   718
@SYMTestExpectedResults The test must not fail
sl@0
   719
@SYMREQ					REQ8162
sl@0
   720
                        REQ10271
sl@0
   721
*/
sl@0
   722
void FileIOFailureTest()
sl@0
   723
	{
sl@0
   724
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   725
	ReplaceConfigFile(_L("soft_heap_limit_kb=8;cache_size=16;page_size=512;free_space_threshold_kb=100"));
sl@0
   726
	TInt err = TheDb.Create(KTestDbName);
sl@0
   727
	TEST2(err, KErrNone);
sl@0
   728
	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
sl@0
   729
	TEST(err >= 0);
sl@0
   730
	TheDb.Close();
sl@0
   731
	err = -1;
sl@0
   732
	const TInt KTestRecCnt = 100;
sl@0
   733
	for(TInt cnt=0;err<KErrNone;++cnt)
sl@0
   734
		{		
sl@0
   735
		TheTest.Printf(_L("%d \r"), cnt);		
sl@0
   736
		err = TheDb.Open(KTestDbName);
sl@0
   737
		TEST2(err, KErrNone);
sl@0
   738
		TInt recCntBegin = 0;
sl@0
   739
		TSqlScalarFullSelectQuery q1(TheDb);
sl@0
   740
		TRAP(err, recCntBegin = q1.SelectIntL(_L("SELECT COUNT (*) FROM A")));
sl@0
   741
		TEST2(err, KErrNone);
sl@0
   742
		(void)TheFs.SetErrorCondition(KErrGeneral, cnt);
sl@0
   743
		err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   744
		if(err == KErrNone)
sl@0
   745
			{
sl@0
   746
			for(TInt i=0;i<KTestRecCnt;++i)
sl@0
   747
				{
sl@0
   748
				TBuf<300> sql;
sl@0
   749
				sql.Format(_L("INSERT INTO A(Id,Name) VALUES(%d, 'A1234567890B1234567890C1234567890D1234567890E1234567890F1234567890G1234567890H1234567890I1234567890J1234567890K1234567890L1234567890M1234567890N1234567890O1234567890P1234567890Q1234567890R1234567890')"), cnt);
sl@0
   750
				err = TheDb.Exec(sql);
sl@0
   751
				TEST(err == 1 || err < 0);
sl@0
   752
				if(err < 0)
sl@0
   753
					{
sl@0
   754
					break;
sl@0
   755
					}
sl@0
   756
				}
sl@0
   757
			if(err == 1)
sl@0
   758
				{
sl@0
   759
				err = TheDb.Exec(_L("COMMIT TRANSACTION"));
sl@0
   760
				}
sl@0
   761
			else if(TheDb.InTransaction()) //the transaction may have been rolled back automatically
sl@0
   762
				{
sl@0
   763
				err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
sl@0
   764
				}
sl@0
   765
			if(err == 0)
sl@0
   766
				{
sl@0
   767
				err = 1;	
sl@0
   768
				}
sl@0
   769
			}
sl@0
   770
		(void)TheFs.SetErrorCondition(KErrNone);
sl@0
   771
		if(err < 1)
sl@0
   772
			{
sl@0
   773
			TheDb.Close();//close the database to recover from the last error
sl@0
   774
			TInt err2 = TheDb.Open(KTestDbName);
sl@0
   775
			TEST2(err2, KErrNone);
sl@0
   776
			}
sl@0
   777
		TSqlScalarFullSelectQuery q2(TheDb);
sl@0
   778
		TInt recCntEnd = 0;
sl@0
   779
		TRAPD(err3, recCntEnd = q2.SelectIntL(_L("SELECT COUNT (*) FROM A")));
sl@0
   780
		TheDb.Close();
sl@0
   781
		TEST2(err3, KErrNone);
sl@0
   782
		//check the database content - all bets are off in a case of an I/O error. 
sl@0
   783
		//The new records may have actually been inserted.
sl@0
   784
		TEST(recCntEnd == recCntBegin || recCntEnd == (recCntBegin + KTestRecCnt));
sl@0
   785
		}
sl@0
   786
	(void)TheFs.SetErrorCondition(KErrNone);
sl@0
   787
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   788
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   789
	}
sl@0
   790
	
sl@0
   791
/**
sl@0
   792
@SYMTestCaseID			SYSLIB-SQL-UT-3609
sl@0
   793
@SYMTestCaseDesc		Soft Heap Limit - OOM test.
sl@0
   794
						The test creates a database with very small soft heap limit value (8Kb).
sl@0
   795
						The the test attempts to insert a record in an explicit transaction while doing
sl@0
   796
						OOM simulation.
sl@0
   797
@SYMTestPriority		High
sl@0
   798
@SYMTestActions			Soft Heap Limit - OOM test.
sl@0
   799
@SYMTestExpectedResults The test must not fail
sl@0
   800
@SYMREQ					REQ8162
sl@0
   801
                        REQ10271
sl@0
   802
*/
sl@0
   803
void OOMtest()
sl@0
   804
	{
sl@0
   805
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   806
	ReplaceConfigFile(_L("soft_heap_limit_kb=8;cache_size=16;page_size=512;free_space_threshold_kb=150"));
sl@0
   807
	TInt err = TheDb.Create(KTestDbName);
sl@0
   808
	TEST2(err, KErrNone);
sl@0
   809
	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
sl@0
   810
	TEST(err >= 0);
sl@0
   811
	TheDb.Close();
sl@0
   812
sl@0
   813
	const TInt KOomIterationCount = 1000;//Instead fo doing the OOM test while "err == KErrNoMemory", the test is
sl@0
   814
										 //performed KOomIterationCount times, because the "soft heap limit" will
sl@0
   815
										 //force the SQLite library to reuse some of the already allocated but not used pages.
sl@0
   816
	TInt failingAllocationNo = 0;
sl@0
   817
	while(failingAllocationNo < KOomIterationCount)
sl@0
   818
		{
sl@0
   819
		__UHEAP_MARK;
sl@0
   820
sl@0
   821
		const TInt KDelayedDbHeapFailureMask = 0x1000;
sl@0
   822
		TSqlResourceTester::SetDbHeapFailure(RHeap::EFailNext | KDelayedDbHeapFailureMask, ++failingAllocationNo);
sl@0
   823
sl@0
   824
		err = TheDb.Open(KTestDbName);
sl@0
   825
		TEST2(err, KErrNone);
sl@0
   826
sl@0
   827
		err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   828
		if(err == KErrNone)
sl@0
   829
			{
sl@0
   830
			const TInt KTestRecCnt = 4;
sl@0
   831
			for(TInt i=0;i<KTestRecCnt;++i)
sl@0
   832
				{
sl@0
   833
				err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1, 'A1234567890B1234567890C1234567890D1234567890E1234567890F1234567890G1234567890H1234567890I1234567890J1234567890K1234567890L1234567890M1234567890N1234567890O1234567890P1234567890Q1234567890R1234567890')"));
sl@0
   834
				if(err < 1)
sl@0
   835
					{
sl@0
   836
					break;
sl@0
   837
					}
sl@0
   838
				}
sl@0
   839
			if(err == 1)
sl@0
   840
				{
sl@0
   841
				err = TheDb.Exec(_L("COMMIT TRANSACTION"));
sl@0
   842
				}
sl@0
   843
			else if(TheDb.InTransaction()) //the transaction may have been rolled back automatically
sl@0
   844
				{
sl@0
   845
				err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
sl@0
   846
				}
sl@0
   847
			}
sl@0
   848
		
sl@0
   849
		TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
sl@0
   850
	
sl@0
   851
		TheDb.Close();	
sl@0
   852
sl@0
   853
		TheTest.Printf(_L("%d/%d   \r"), failingAllocationNo, err);
sl@0
   854
		
sl@0
   855
		__UHEAP_MARKEND;
sl@0
   856
		
sl@0
   857
		TEST(err >= 0 || err == KErrNoMemory);
sl@0
   858
		}
sl@0
   859
	TEST(err >= 0);
sl@0
   860
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   861
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   862
	}
sl@0
   863
sl@0
   864
/**
sl@0
   865
@SYMTestCaseID			SYSLIB-SQL-UT-4081
sl@0
   866
@SYMTestCaseDesc		Background compaction, free page threshold - functional test.
sl@0
   867
						The test creates a server config file, where the free page threshold is set to be 20 Kb.
sl@0
   868
						Then the test creates a database. The test inserts 40 pages (40 Kb) into the database, closes and 
sl@0
   869
						reopens the database. Then the test deletes some records from the database.
sl@0
   870
						But the space in the free pages is not big enough to kick-off the background compaction.
sl@0
   871
						The test checks that no compaction has occurred after the deletions.
sl@0
   872
						The test deletes more records and the free page threshold is reached.
sl@0
   873
						The test checks that after the last deletion the database really has been compacted.
sl@0
   874
@SYMTestPriority		Medium
sl@0
   875
@SYMTestActions			Background compaction, free page threshold - functional test.
sl@0
   876
@SYMTestExpectedResults Test must not fail
sl@0
   877
@SYMREQ					REQ10271
sl@0
   878
*/
sl@0
   879
void FreePageThresholdTest()
sl@0
   880
	{
sl@0
   881
	const TInt KFreePageThresholdSrvCfgKb = 20;
sl@0
   882
	TBuf<50> cfgBuf1;
sl@0
   883
	cfgBuf1.Format(_L("free_space_threshold_kb=%d"), KFreePageThresholdSrvCfgKb);
sl@0
   884
	ReplaceConfigFile(cfgBuf1);
sl@0
   885
	
sl@0
   886
	const TInt KPageSize = 1024;
sl@0
   887
	TBuf8<50> cfgBuf2;
sl@0
   888
	cfgBuf2.Format(_L8("page_size=%d;"), KPageSize);
sl@0
   889
	//Create a database and insert some records. At the end the database size is bigger than the free pages threshold.
sl@0
   890
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   891
	TInt err = TheDb.Create(KTestDbName, &cfgBuf2);
sl@0
   892
	TEST2(err, KErrNone);
sl@0
   893
	err = TheDb.Exec(_L("CREATE TABLE A(B BLOB)"));
sl@0
   894
	TEST2(err, 1);
sl@0
   895
	TBuf8<(KPageSize - 150) * 2> blob;
sl@0
   896
	blob.SetLength((KPageSize - 150) * 2);
sl@0
   897
	blob.Fill(TChar('A'));
sl@0
   898
	for(TInt i=0;i<KFreePageThresholdSrvCfgKb*2;++i)
sl@0
   899
		{
sl@0
   900
		TBuf8<KPageSize * 2> sql;
sl@0
   901
		sql.Format(_L8("INSERT INTO A VALUES(x'%S')"), &blob);
sl@0
   902
		err = TheDb.Exec(sql);
sl@0
   903
		TEST2(err, 1);
sl@0
   904
		}
sl@0
   905
	TheDb.Close();
sl@0
   906
	//Reopen the database and delete some records. The free spave is not big enough to kick-off the background compaction.
sl@0
   907
	err = TheDb.Open(KTestDbName);
sl@0
   908
	TEST2(err, KErrNone);
sl@0
   909
	for(TInt i=0;i<10;++i)
sl@0
   910
		{
sl@0
   911
		TBuf8<50> sql;
sl@0
   912
		sql.Format(_L8("DELETE FROM A WHERE ROWID=%d"), i + 1);
sl@0
   913
		err = TheDb.Exec(sql);
sl@0
   914
		TEST2(err, 1);
sl@0
   915
		}
sl@0
   916
	User::After(1000000);
sl@0
   917
	RSqlDatabase::TSize size;
sl@0
   918
	err = TheDb.Size(size);
sl@0
   919
	TEST2(err, KErrNone);
sl@0
   920
	TEST(size.iFree > 0);
sl@0
   921
	//Delete more records, the free page threshold is reached, the background compaction - kicked-off.
sl@0
   922
	for(TInt i=10;i<20;++i)
sl@0
   923
		{
sl@0
   924
		TBuf8<50> sql;
sl@0
   925
		sql.Format(_L8("DELETE FROM A WHERE ROWID=%d"), i + 1);
sl@0
   926
		err = TheDb.Exec(sql);
sl@0
   927
		TEST2(err, 1);
sl@0
   928
		}
sl@0
   929
	User::After(1000000);
sl@0
   930
	err = TheDb.Size(size);
sl@0
   931
	TEST2(err, KErrNone);
sl@0
   932
	TEST2(size.iFree, 0);
sl@0
   933
	//
sl@0
   934
	TheDb.Close();
sl@0
   935
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   936
	(void)TheFs.Delete(KSqlSrvConfigFile);
sl@0
   937
	}
sl@0
   938
sl@0
   939
/**
sl@0
   940
@SYMTestCaseID			SYSLIB-SQL-UT-4075
sl@0
   941
@SYMTestCaseDesc		Server configuration file, large string test.
sl@0
   942
						The test creates a server config file, where all parameters are used
sl@0
   943
						and checks the the parameter values are processed normally.
sl@0
   944
@SYMTestPriority		Medium
sl@0
   945
@SYMTestActions			Server configuration file, large string test.
sl@0
   946
@SYMTestExpectedResults Test must not fail
sl@0
   947
@SYMREQ					REQ10271
sl@0
   948
*/
sl@0
   949
void LargeStringTest()
sl@0
   950
	{
sl@0
   951
	ReplaceConfigFile(_L("page_size=32768;cache_size=2048;encoding=UTF-16;soft_heap_limit_kb=2048;free_space_threshold_kb=100000000;compaction=background"));
sl@0
   952
	TInt err = TheDb.Create(KTestDbName);
sl@0
   953
	TEST2(err, KErrNone);
sl@0
   954
	AssertConfigPrmValues(TheDb, (2048 * 1024) / 32768, 32768, TSqlSrvConfigParams::EEncUtf16);
sl@0
   955
	TheDb.Close();
sl@0
   956
	(void)RSqlDatabase::Delete(KTestDbName);
sl@0
   957
	}
sl@0
   958
sl@0
   959
void DoTests()
sl@0
   960
	{
sl@0
   961
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3603 Bad config file "));
sl@0
   962
	BadCfgFileTest();
sl@0
   963
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3604 Config file - bad parameters "));
sl@0
   964
	BadCfgFileParametersTest();
sl@0
   965
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3605 Config file - conflict test "));
sl@0
   966
	CfgFileConflictTest();
sl@0
   967
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3606 Soft heap limit - functional test (\"create database\") "));
sl@0
   968
 	SoftHeapLimitFunctionalTest1();
sl@0
   969
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3607 Soft heap limit - functional test (\"open database\") "));
sl@0
   970
 	SoftHeapLimitFunctionalTest2();
sl@0
   971
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3608 Soft heap limit - file I/O failure "));
sl@0
   972
    FileIOFailureTest();
sl@0
   973
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3609 Soft heap limit - OOM failure "));
sl@0
   974
	OOMtest();
sl@0
   975
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4081 SQL server configuration file + free page threshold - functional test "));
sl@0
   976
 	FreePageThresholdTest();
sl@0
   977
 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4075 SQL server configuration file + large string "));
sl@0
   978
 	LargeStringTest();
sl@0
   979
	}
sl@0
   980
	
sl@0
   981
#endif	//SYSLIBS_TEST
sl@0
   982
sl@0
   983
TInt E32Main()
sl@0
   984
	{
sl@0
   985
	TheTest.Title();
sl@0
   986
	
sl@0
   987
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   988
	TheTest(tc != NULL);
sl@0
   989
	
sl@0
   990
	__UHEAP_MARK;
sl@0
   991
sl@0
   992
#ifdef SYSLIBS_TEST	
sl@0
   993
	TheTest.Start(_L("t_sqlconfigfile tests"));
sl@0
   994
sl@0
   995
	SetupTestEnv();
sl@0
   996
	DoTests();
sl@0
   997
 	DestroyTestEnv();
sl@0
   998
	
sl@0
   999
	TheTest.End();
sl@0
  1000
#else
sl@0
  1001
 	TheTest.Start(_L("This test works only if the whole SQL component is built with SYSLIBS_TEST macro defined!"));
sl@0
  1002
	TheTest.End();
sl@0
  1003
#endif	
sl@0
  1004
	
sl@0
  1005
	__UHEAP_MARKEND;
sl@0
  1006
	
sl@0
  1007
	TheTest.Close();
sl@0
  1008
	
sl@0
  1009
	delete tc;
sl@0
  1010
	
sl@0
  1011
	User::Heap().Check();
sl@0
  1012
	return KErrNone;
sl@0
  1013
	}