os/persistentdata/persistentstorage/sql/TEST/t_sqlcompact1.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) 2008-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 <sqldb.h>
sl@0
    19
#include <hal.h>
sl@0
    20
#include "SqlUtil.h"
sl@0
    21
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
sl@0
    24
RTest TheTest(_L("t_sqlcompact1 test"));
sl@0
    25
sl@0
    26
RSqlDatabase TheDb;
sl@0
    27
sl@0
    28
const TInt KTextLen = 400;
sl@0
    29
TBuf<KTextLen> TheText;
sl@0
    30
TBuf<KTextLen + 100> TheSqlBuf;
sl@0
    31
sl@0
    32
_LIT(KTestDir, "c:\\test\\");
sl@0
    33
_LIT(KDbName1, "c:\\test\\t_sqlcompact1_1.db");
sl@0
    34
_LIT(KDbName2, "c:\\test\\t_sqlcompact1_2.db");
sl@0
    35
_LIT(KDbName3, "c:\\test\\t_sqlcompact1_3.db");
sl@0
    36
_LIT(KDbName4, "c:\\test\\t_sqlcompact1_4.db");
sl@0
    37
sl@0
    38
_LIT(KAttachName1, "UOOO");
sl@0
    39
_LIT(KAttachName2, "FOOO");
sl@0
    40
_LIT(KAttachName3, "AOOO");
sl@0
    41
_LIT(KAttachName4, "EOOO");
sl@0
    42
sl@0
    43
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    44
sl@0
    45
void DestroyTestEnv()
sl@0
    46
	{
sl@0
    47
	TheDb.Close();
sl@0
    48
	(void)RSqlDatabase::Delete(KDbName4);
sl@0
    49
	(void)RSqlDatabase::Delete(KDbName3);
sl@0
    50
	(void)RSqlDatabase::Delete(KDbName2);
sl@0
    51
	(void)RSqlDatabase::Delete(KDbName1);
sl@0
    52
	}
sl@0
    53
sl@0
    54
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    55
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    56
//Test macros and functions
sl@0
    57
void Check(TInt aValue, TInt aLine)
sl@0
    58
	{
sl@0
    59
	if(!aValue)
sl@0
    60
		{
sl@0
    61
		DestroyTestEnv();
sl@0
    62
		RDebug::Print(_L("*** Test failure. Boolean expression evaluates to false.\r\n"));
sl@0
    63
		TheTest(EFalse, aLine);
sl@0
    64
		}
sl@0
    65
	}
sl@0
    66
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    67
	{
sl@0
    68
	if(aValue != aExpected)
sl@0
    69
		{
sl@0
    70
		DestroyTestEnv();
sl@0
    71
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    72
		TheTest(EFalse, aLine);
sl@0
    73
		}
sl@0
    74
	}
sl@0
    75
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    76
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    77
sl@0
    78
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    79
sl@0
    80
//t_sqlcompact1 timeouts in WDP builds.
sl@0
    81
//This function is used to check whether the time limit is reaqched or not.
sl@0
    82
TBool IsTimeLimitReached()
sl@0
    83
	{
sl@0
    84
	struct TStartTime
sl@0
    85
		{
sl@0
    86
		TStartTime()
sl@0
    87
			{
sl@0
    88
			iTime.HomeTime();
sl@0
    89
			}
sl@0
    90
		TTime iTime;
sl@0
    91
		};
sl@0
    92
	
sl@0
    93
	static TStartTime startTime; 
sl@0
    94
	const TInt KTestTimeLimit = 100;//seconds
sl@0
    95
	
sl@0
    96
	TTime currTime;
sl@0
    97
	currTime.HomeTime();
sl@0
    98
	
sl@0
    99
	TTimeIntervalSeconds s;
sl@0
   100
	TInt err = currTime.SecondsFrom(startTime.iTime, s);
sl@0
   101
	TEST2(err, KErrNone);
sl@0
   102
	return s.Int() > KTestTimeLimit;
sl@0
   103
	}
sl@0
   104
sl@0
   105
void GetHomeTimeAsString(TDes& aStr)
sl@0
   106
	{
sl@0
   107
	TTime time;
sl@0
   108
	time.HomeTime();
sl@0
   109
	TDateTime dt = time.DateTime();
sl@0
   110
	aStr.Format(_L("%02d:%02d:%02d.%06d"), dt.Hour(), dt.Minute(), dt.Second(), dt.MicroSecond());
sl@0
   111
	}
sl@0
   112
sl@0
   113
void CreateTestEnv()
sl@0
   114
    {
sl@0
   115
    RFs fs;
sl@0
   116
	TInt err = fs.Connect();
sl@0
   117
	TEST2(err, KErrNone);
sl@0
   118
sl@0
   119
	err = fs.MkDir(KTestDir);
sl@0
   120
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   121
sl@0
   122
	fs.Close();
sl@0
   123
	}
sl@0
   124
sl@0
   125
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   126
sl@0
   127
void ReplaceDb(const TDesC& aDbName, TInt aPageSize)
sl@0
   128
	{
sl@0
   129
	(void)RSqlDatabase::Delete(aDbName);
sl@0
   130
	_LIT8(KConfigStr, "compaction=manual;page_size=");
sl@0
   131
	TBuf8<50> config;
sl@0
   132
	config.Copy(KConfigStr);
sl@0
   133
	config.AppendNum(aPageSize);
sl@0
   134
	TInt err = TheDb.Create(aDbName, &config);
sl@0
   135
	TEST2(err, KErrNone);
sl@0
   136
	TheDb.Close();
sl@0
   137
	}
sl@0
   138
sl@0
   139
void CreateTable(const TDesC& aDbName)
sl@0
   140
	{
sl@0
   141
	TInt err = TheDb.Open(aDbName);
sl@0
   142
	TEST2(err, KErrNone);
sl@0
   143
	err = TheDb.Exec(_L("CREATE TABLE A(I INTEGER, T TEXT)"));
sl@0
   144
	TEST(err >= 0);
sl@0
   145
	TheDb.Close();
sl@0
   146
	}
sl@0
   147
sl@0
   148
void InsertRecords(const TDesC& aDbName)
sl@0
   149
	{
sl@0
   150
	TInt err = TheDb.Open(aDbName);
sl@0
   151
	TEST2(err, KErrNone);
sl@0
   152
	err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   153
	TEST(err >= 0);
sl@0
   154
	TheText.SetLength(TheText.MaxLength());
sl@0
   155
	TheText.Fill(TChar('A'));
sl@0
   156
	for(TInt i=0;i<100;++i)
sl@0
   157
		{
sl@0
   158
		TheSqlBuf.Format(_L("INSERT INTO A VALUES(%d, '%S')"), i + 1, &TheText);
sl@0
   159
		err = TheDb.Exec(TheSqlBuf);
sl@0
   160
		TEST2(err, 1);
sl@0
   161
		}
sl@0
   162
	err = TheDb.Exec(_L("COMMIT TRANSACTION"));
sl@0
   163
	TEST(err >= 0);
sl@0
   164
	TheDb.Close();
sl@0
   165
	}
sl@0
   166
sl@0
   167
TInt DeleteRecords(const TDesC& aDbName, TInt aPageCount, TInt aPageSize)
sl@0
   168
	{
sl@0
   169
	TInt freePageCount = -1;
sl@0
   170
	TInt err = TheDb.Open(aDbName);
sl@0
   171
	TEST2(err, KErrNone);
sl@0
   172
	err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   173
	TEST(err >= 0);
sl@0
   174
	for(TInt i=0;;++i)
sl@0
   175
		{
sl@0
   176
		TheSqlBuf.Format(_L("DELETE FROM A WHERE I=%d"), i + 1);
sl@0
   177
		err = TheDb.Exec(TheSqlBuf);
sl@0
   178
		TEST2(err, 1);
sl@0
   179
		RSqlDatabase::TSize s;
sl@0
   180
		err = TheDb.Size(s);
sl@0
   181
		TEST2(err, KErrNone);
sl@0
   182
		freePageCount = s.iFree / aPageSize;
sl@0
   183
		if(freePageCount >= aPageCount)
sl@0
   184
			{
sl@0
   185
			break;	
sl@0
   186
			}
sl@0
   187
		}
sl@0
   188
	err = TheDb.Exec(_L("COMMIT TRANSACTION"));
sl@0
   189
	TEST(err >= 0);
sl@0
   190
	TheDb.Close();
sl@0
   191
	return freePageCount;
sl@0
   192
	}
sl@0
   193
sl@0
   194
/**
sl@0
   195
@SYMTestCaseID			SYSLIB-SQL-UT-4072
sl@0
   196
@SYMTestCaseDesc		Manual compaction on attached databases with different page size.
sl@0
   197
						The test creates couple of databases with manual compaction and 
sl@0
   198
						different page sizes, then inserts some records and deletes part of
sl@0
   199
						the just inserted records thus making some free pages.
sl@0
   200
						The test opens the first database and attaches all other databases the the first one.
sl@0
   201
						Then the test checks that RSqlDatabase::Size() returns correct information
sl@0
   202
						about the free database space. The test runs the manual compaction on the
sl@0
   203
						databases and checks again that the free database space is reported correctly.
sl@0
   204
@SYMTestPriority		Medium
sl@0
   205
@SYMTestActions			Manual compaction on attached databases with different page size.
sl@0
   206
@SYMTestExpectedResults Test must not fail
sl@0
   207
@SYMREQ					REQ10405
sl@0
   208
                        REQ10407
sl@0
   209
*/
sl@0
   210
void CompactDbTest1()
sl@0
   211
	{
sl@0
   212
	const TPtrC KDbName[] = 	{KDbName1(), 	KDbName2(), 	KDbName3(), 	KDbName4()};
sl@0
   213
	const TPtrC KDbAttachName[]={KAttachName1(),KAttachName2(), KAttachName3(), KAttachName4()};
sl@0
   214
	const TInt KDbPageSize[] = 	{8192, 			1024, 			4096, 			2048};
sl@0
   215
	const TInt KFreePageCount[]={9, 			30, 			17, 			7};
sl@0
   216
		  TInt freePageCount[] ={0, 0, 0, 0};
sl@0
   217
	const TInt KSize = sizeof(KDbName) / sizeof(KDbName[0]);
sl@0
   218
	
sl@0
   219
	TInt i;
sl@0
   220
	
sl@0
   221
	TBuf<50> timeBuf;
sl@0
   222
	GetHomeTimeAsString(timeBuf);
sl@0
   223
	TheTest.Printf(_L("===Time1: %S\r\n"), &timeBuf);
sl@0
   224
	
sl@0
   225
	//Create databases, tables, insert records, delete part of the just inserted records.
sl@0
   226
	for(i=0;i<KSize;++i)
sl@0
   227
		{
sl@0
   228
		ReplaceDb(KDbName[i], KDbPageSize[i]);
sl@0
   229
		CreateTable(KDbName[i]);
sl@0
   230
		InsertRecords(KDbName[i]);
sl@0
   231
		freePageCount[i] = DeleteRecords(KDbName[i], KFreePageCount[i], KDbPageSize[i]);
sl@0
   232
		}
sl@0
   233
sl@0
   234
	GetHomeTimeAsString(timeBuf);
sl@0
   235
	TheTest.Printf(_L("===Time2: %S\r\n"), &timeBuf);
sl@0
   236
	
sl@0
   237
	//Open the first database, attach all others.
sl@0
   238
	TInt err = TheDb.Open(KDbName1());
sl@0
   239
	TEST2(err, KErrNone);
sl@0
   240
	for(i=0;i<KSize;++i)
sl@0
   241
		{
sl@0
   242
		err = TheDb.Attach(KDbName[i], KDbAttachName[i]);
sl@0
   243
		TEST2(err, KErrNone);
sl@0
   244
		}
sl@0
   245
sl@0
   246
	GetHomeTimeAsString(timeBuf);
sl@0
   247
	TheTest.Printf(_L("===Time3: %S\r\n"), &timeBuf);
sl@0
   248
	
sl@0
   249
	//Check the size of the main database.
sl@0
   250
	RSqlDatabase::TSize size;
sl@0
   251
	err = TheDb.Size(size);
sl@0
   252
	TEST2(err, KErrNone);
sl@0
   253
	TEST2((size.iFree / KDbPageSize[0]), freePageCount[0]);
sl@0
   254
		
sl@0
   255
	//For all attached database: check the size of the database, compact, check the size again.
sl@0
   256
	for(i=0;i<KSize;++i)
sl@0
   257
		{
sl@0
   258
		err = TheDb.Size(size, KDbAttachName[i]);
sl@0
   259
		TEST2(err, KErrNone);
sl@0
   260
		TEST2((size.iFree / KDbPageSize[i]), freePageCount[i]);
sl@0
   261
		
sl@0
   262
		const TInt KCompactPageCount = 3;
sl@0
   263
		TInt rc = TheDb.Compact(KCompactPageCount * KDbPageSize[i], KDbAttachName[i]);
sl@0
   264
		TInt expected = KCompactPageCount * KDbPageSize[i];
sl@0
   265
		TEST2(rc, expected);
sl@0
   266
		err = TheDb.Size(size, KDbAttachName[i]);
sl@0
   267
		TEST2(err, KErrNone);
sl@0
   268
		TInt count = size.iFree / KDbPageSize[i];
sl@0
   269
		expected = freePageCount[i] - KCompactPageCount;
sl@0
   270
		TEST2(count, expected);
sl@0
   271
		}
sl@0
   272
	
sl@0
   273
	GetHomeTimeAsString(timeBuf);
sl@0
   274
	TheTest.Printf(_L("===Time4: %S\r\n"), &timeBuf);
sl@0
   275
	
sl@0
   276
	//Detach databases and close the main database.
sl@0
   277
	for(i=0;i<KSize;++i)
sl@0
   278
		{
sl@0
   279
		err = TheDb.Detach(KDbAttachName[i]);
sl@0
   280
		TEST2(err, KErrNone);
sl@0
   281
		}
sl@0
   282
	TheDb.Close();
sl@0
   283
sl@0
   284
	GetHomeTimeAsString(timeBuf);
sl@0
   285
	TheTest.Printf(_L("===Time5: %S\r\n"), &timeBuf);
sl@0
   286
	
sl@0
   287
	//Cleanup.
sl@0
   288
	for(i=0;i<KSize;++i)
sl@0
   289
		{
sl@0
   290
		(void)RSqlDatabase::Delete(KDbName[i]);
sl@0
   291
		}
sl@0
   292
	}
sl@0
   293
sl@0
   294
//Creates a test database (with KDbName1 name). Inserts aRecordCount records.
sl@0
   295
//The page size is specified in aPageSize parameter. But practically the page size is always 1024 bytes.
sl@0
   296
//The record size is such that there is only one record per page.
sl@0
   297
void PrepareDb(TInt aPageSize, TInt aRecordCount, TBool aManualCompaction = EFalse)
sl@0
   298
	{
sl@0
   299
	//Create the database
sl@0
   300
	(void)RSqlDatabase::Delete(KDbName1);
sl@0
   301
	_LIT8(KConfigStr, "page_size=");
sl@0
   302
	TBuf8<100> config;
sl@0
   303
	config.Copy(KConfigStr);
sl@0
   304
	config.AppendNum(aPageSize);
sl@0
   305
	if(aManualCompaction)
sl@0
   306
		{
sl@0
   307
		config.Append(_L(";compaction=manual;"));
sl@0
   308
		}
sl@0
   309
	TInt err = TheDb.Create(KDbName1, &config);
sl@0
   310
	TEST2(err, KErrNone);
sl@0
   311
	
sl@0
   312
	err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   313
	TEST(err >= 0);
sl@0
   314
	err = TheDb.Exec(_L("CREATE TABLE A(I INTEGER, T TEXT)"));
sl@0
   315
	TEST(err >= 0);
sl@0
   316
	//Insert records
sl@0
   317
	TheText.SetLength(TheText.MaxLength());
sl@0
   318
	TheText.Fill(TChar('A'));
sl@0
   319
	for(TInt i=0;i<aRecordCount;++i)
sl@0
   320
		{
sl@0
   321
		TheSqlBuf.Format(_L("INSERT INTO A VALUES(%d, '%S')"), i + 1, &TheText);
sl@0
   322
		err = TheDb.Exec(TheSqlBuf);
sl@0
   323
		TEST2(err, 1);
sl@0
   324
		}
sl@0
   325
	err = TheDb.Exec(_L("COMMIT TRANSACTION"));
sl@0
   326
	TEST(err >= 0);
sl@0
   327
	//Delete all records making a lot of free pages. This operation should kick-off the background compaction
sl@0
   328
	err = TheDb.Exec(_L("DELETE FROM A WHERE 1"));
sl@0
   329
	TEST2(err, aRecordCount);
sl@0
   330
	}
sl@0
   331
sl@0
   332
/**
sl@0
   333
@SYMTestCaseID			SYSLIB-SQL-UT-4073
sl@0
   334
@SYMTestCaseDesc		Background compaction steps test.
sl@0
   335
						The test creates a database with background compaction mode, 
sl@0
   336
						then inserts records and deletes all of them. The count of records is such that when
sl@0
   337
						the records get deleted, the number of the free pages is very big and all free pages cannot
sl@0
   338
						be removed for just one compaction step.
sl@0
   339
						The test waits for ("compaction interval"/10 ms) time and checks that no compaction
sl@0
   340
						step has been run by the server during the pause and the free space size is the same as before the
sl@0
   341
						pause. Then the test waits for ("compaction interval" + "compaction step") time and checks that
sl@0
   342
						the background compaction step really happened and removed only part of the free pages.
sl@0
   343
						The same test is repeated again and the same check is performed again.
sl@0
   344
@SYMTestPriority		Medium
sl@0
   345
@SYMTestActions			Background compaction steps test.
sl@0
   346
@SYMTestExpectedResults Test must not fail
sl@0
   347
@SYMREQ					REQ10271
sl@0
   348
                        REQ10272
sl@0
   349
*/
sl@0
   350
void CompactDbTest2()
sl@0
   351
	{
sl@0
   352
	TBuf<50> timeBuf;
sl@0
   353
	GetHomeTimeAsString(timeBuf);
sl@0
   354
	TheTest.Printf(_L("===Time1: %S\r\n"), &timeBuf);
sl@0
   355
	
sl@0
   356
	const TInt KPageSize = 1024;
sl@0
   357
	//Number of records to be added and removed from database. Need to be increased when testing on a faster 
sl@0
   358
	// hardware, otherwise at fastest case the background compaction could be finished in just 1 step.
sl@0
   359
	const TInt KRecordCount = 2000;	
sl@0
   360
	PrepareDb(KPageSize, KRecordCount);
sl@0
   361
sl@0
   362
	GetHomeTimeAsString(timeBuf);
sl@0
   363
	TheTest.Printf(_L("===Time2: %S\r\n"), &timeBuf);
sl@0
   364
	
sl@0
   365
	//Check the free space-1
sl@0
   366
	RSqlDatabase::TSize size1;
sl@0
   367
	TInt err = TheDb.Size(size1);
sl@0
   368
	TEST2(err, KErrNone);
sl@0
   369
	TheTest.Printf(_L("===Free space before compaction, pages=%d\r\n"), size1.iFree / KPageSize);
sl@0
   370
	TEST(size1.iSize >= (KRecordCount * KPageSize));
sl@0
   371
	
sl@0
   372
	//Wait KSqlCompactStepIntervalMs/10 ms. The background compaction should not be kicked-off.
sl@0
   373
	TTime time1;
sl@0
   374
	time1.HomeTime();
sl@0
   375
	User::After((KSqlCompactStepIntervalMs / 10) * 1000);
sl@0
   376
	TTime time2;
sl@0
   377
	time2.HomeTime();
sl@0
   378
	TTimeIntervalMicroSeconds intervalUs = time2.MicroSecondsFrom(time1);	
sl@0
   379
	//Check the free space-2
sl@0
   380
	RSqlDatabase::TSize size2;
sl@0
   381
	err = TheDb.Size(size2);
sl@0
   382
	TEST2(err, KErrNone);
sl@0
   383
	TheTest.Printf(_L("=== Wait time: %ld ms. Free space after compaction-1, pages=%d\r\n"), intervalUs.Int64() / 1000 ,size2.iFree / KPageSize);
sl@0
   384
	if(intervalUs > KSqlCompactStepIntervalMs * 1000)
sl@0
   385
		{
sl@0
   386
		TEST(size2.iFree <= size1.iFree);
sl@0
   387
		}
sl@0
   388
	else
sl@0
   389
		{
sl@0
   390
		TEST(size2.iFree == size1.iFree);
sl@0
   391
		}
sl@0
   392
sl@0
   393
	GetHomeTimeAsString(timeBuf);
sl@0
   394
	TheTest.Printf(_L("===Time3: %S\r\n"), &timeBuf);
sl@0
   395
	
sl@0
   396
	//Wait (KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs) ms. During the pause only part of the free pages
sl@0
   397
	//should be removed (whatever can be completed for KSqlCompactStepLengthMs ms).
sl@0
   398
	User::After((KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs) * 1000);
sl@0
   399
	//Check the free space-3
sl@0
   400
	RSqlDatabase::TSize size3;
sl@0
   401
	err = TheDb.Size(size3);
sl@0
   402
	TEST2(err, KErrNone);
sl@0
   403
	TheTest.Printf(_L("===Free space after compaction-2, pages=%d\r\n"), size3.iFree / KPageSize);
sl@0
   404
	if(size3.iFree == 0)
sl@0
   405
		{
sl@0
   406
		TheTest.Printf(_L("WARNING: Background compaction finished in 1 step. Initial number of records need to be increased.\r\n"));
sl@0
   407
		}
sl@0
   408
	TEST(size3.iFree > 0 && size3.iFree < size2.iFree);
sl@0
   409
sl@0
   410
	GetHomeTimeAsString(timeBuf);
sl@0
   411
	TheTest.Printf(_L("===Time4: %S\r\n"), &timeBuf);
sl@0
   412
	
sl@0
   413
	//Wait another (KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs) ms. During the pause only part of the free pages
sl@0
   414
	//should be removed (whatever can be completed for KSqlCompactStepLengthMs ms).
sl@0
   415
	User::After((KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs) * 1000);
sl@0
   416
	//Check the free space-4
sl@0
   417
	RSqlDatabase::TSize size4;
sl@0
   418
	err = TheDb.Size(size4);
sl@0
   419
	TEST2(err, KErrNone);
sl@0
   420
	TheTest.Printf(_L("===Free space after compaction-3, pages=%d\r\n"), size4.iFree / KPageSize);
sl@0
   421
	TEST((size4.iFree > 0 && size4.iFree < size3.iFree) || (size4.iFree == 0));
sl@0
   422
sl@0
   423
	GetHomeTimeAsString(timeBuf);
sl@0
   424
	TheTest.Printf(_L("===Time5: %S\r\n"), &timeBuf);
sl@0
   425
	
sl@0
   426
	//Cleanup
sl@0
   427
	TheDb.Close();
sl@0
   428
	(void)RSqlDatabase::Delete(KDbName1);
sl@0
   429
	}
sl@0
   430
sl@0
   431
/**
sl@0
   432
@SYMTestCaseID			SYSLIB-SQL-UT-4074
sl@0
   433
@SYMTestCaseDesc		Background compaction timer test.
sl@0
   434
						The test creates a database with background compaction mode, 
sl@0
   435
						then inserts records and deletes all of them. The count of records is such that when
sl@0
   436
						the records get deleted, the number of the free pages is very big and all free pages cannot
sl@0
   437
						be removed for just one compaction step.
sl@0
   438
						Then the test executes a set of operations with the server. The amount of time needed for the
sl@0
   439
						operations to be executed is bigger than the ("compaction interval" + "compaction step") time.
sl@0
   440
						No compaction step should be executed during that time, because every operation resets the background 
sl@0
   441
						compaction timer.
sl@0
   442
@SYMTestPriority		Medium
sl@0
   443
@SYMTestActions			Background compaction timer test.
sl@0
   444
@SYMTestExpectedResults Test must not fail
sl@0
   445
@SYMREQ					REQ10271
sl@0
   446
                        REQ10272
sl@0
   447
*/
sl@0
   448
void CompactDbTest3()
sl@0
   449
	{
sl@0
   450
	TBuf<50> timeBuf;
sl@0
   451
	GetHomeTimeAsString(timeBuf);
sl@0
   452
	TheTest.Printf(_L("===Time1: %S\r\n"), &timeBuf);
sl@0
   453
	
sl@0
   454
	const TInt KPageSize = 1024;
sl@0
   455
	const TInt KRecordCount = 1000;
sl@0
   456
	PrepareDb(KPageSize, KRecordCount);
sl@0
   457
sl@0
   458
	GetHomeTimeAsString(timeBuf);
sl@0
   459
	TheTest.Printf(_L("===Time2: %S\r\n"), &timeBuf);
sl@0
   460
	
sl@0
   461
	//Check the free space-1
sl@0
   462
	RSqlDatabase::TSize size1;
sl@0
   463
	TInt err = TheDb.Size(size1);
sl@0
   464
	TEST2(err, KErrNone);
sl@0
   465
	TheTest.Printf(_L("===Free space before operations, pages=%d. Db.Size=%d, Db.Free=%d\r\n"), size1.iFree / KPageSize, size1.iSize, size1.iFree);
sl@0
   466
	TEST(size1.iSize >= (KRecordCount * KPageSize));
sl@0
   467
sl@0
   468
	//Execute a set of operations. The time needed for the operations to complete is bigger than
sl@0
   469
	//(KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs) ms
sl@0
   470
	TInt freq = 0;
sl@0
   471
	TEST2(HAL::Get(HAL::EFastCounterFrequency, freq), KErrNone);
sl@0
   472
	TUint32 begin = User::FastCounter();
sl@0
   473
	TInt count = 0;
sl@0
   474
	TInt time = -1;
sl@0
   475
	for(;;++count)
sl@0
   476
		{
sl@0
   477
		err = TheDb.Exec(_L("SELECT COUNT(*) FROM A"));
sl@0
   478
		TEST(err >= 0);
sl@0
   479
		TUint32 current = User::FastCounter();
sl@0
   480
		TInt64 diffTicks = (TInt64)current - (TInt64)begin;
sl@0
   481
		if(diffTicks < 0)
sl@0
   482
			{
sl@0
   483
			diffTicks = KMaxTUint32 + diffTicks + 1;
sl@0
   484
			}
sl@0
   485
		const TInt KMicroSecIn1Sec = 1000000;
sl@0
   486
		TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
sl@0
   487
		time = us / 1000;
sl@0
   488
		if(time > ((KSqlCompactStepIntervalMs + KSqlCompactStepLengthMs)))
sl@0
   489
			{
sl@0
   490
			break;	
sl@0
   491
			}
sl@0
   492
		}
sl@0
   493
	
sl@0
   494
	GetHomeTimeAsString(timeBuf);
sl@0
   495
	TheTest.Printf(_L("===Time3: %S\r\n"), &timeBuf);
sl@0
   496
	
sl@0
   497
	//Check the free space-2
sl@0
   498
	RSqlDatabase::TSize size2;
sl@0
   499
	err = TheDb.Size(size2);
sl@0
   500
	TEST2(err, KErrNone);
sl@0
   501
	TheTest.Printf(_L("===%d operations completed for %d ms\r\n"), count, time);
sl@0
   502
	TheTest.Printf(_L("===Free space after operations, pages=%d\r\n"), size2.iFree / KPageSize);
sl@0
   503
	TEST(size1.iFree == size2.iFree);
sl@0
   504
	
sl@0
   505
	//Cleanup
sl@0
   506
	TheDb.Close();
sl@0
   507
	(void)RSqlDatabase::Delete(KDbName1);
sl@0
   508
	}
sl@0
   509
sl@0
   510
/**
sl@0
   511
@SYMTestCaseID			SYSLIB-SQL-UT-4103
sl@0
   512
@SYMTestCaseDesc		Big manual compaction test.
sl@0
   513
						The test creates a database with 1000 free pages, then calls 
sl@0
   514
						RSqlDatabase::Compact(RSqlDatabase::EMaxCompaction).
sl@0
   515
@SYMTestPriority		Medium
sl@0
   516
@SYMTestActions			Big manual compaction test.
sl@0
   517
@SYMTestExpectedResults Test must not fail
sl@0
   518
@SYMREQ					REQ10271
sl@0
   519
                        REQ10272
sl@0
   520
*/
sl@0
   521
void ManualCompactTest()
sl@0
   522
	{
sl@0
   523
	TBuf<50> timeBuf;
sl@0
   524
	GetHomeTimeAsString(timeBuf);
sl@0
   525
	TheTest.Printf(_L("===Time1: %S\r\n"), &timeBuf);
sl@0
   526
	
sl@0
   527
	//Create a database with 1000 free pages
sl@0
   528
	const TInt KPageSize = 1024;
sl@0
   529
	const TInt KRecordCount = 1000;
sl@0
   530
	PrepareDb(KPageSize, KRecordCount, ETrue);//create the database with manual compaction mode
sl@0
   531
	
sl@0
   532
	GetHomeTimeAsString(timeBuf);
sl@0
   533
	TheTest.Printf(_L("===Time2: %S\r\n"), &timeBuf);
sl@0
   534
	
sl@0
   535
	//Check the free space-1
sl@0
   536
	RSqlDatabase::TSize size1;
sl@0
   537
	TInt err = TheDb.Size(size1);
sl@0
   538
	TEST2(err, KErrNone);
sl@0
   539
	const TInt KFreePageCount = size1.iFree / KPageSize;
sl@0
   540
	TheTest.Printf(_L("===Free space before operations, pages=%d\r\n"), KFreePageCount);
sl@0
   541
	TEST(size1.iSize >= (KRecordCount * KPageSize));
sl@0
   542
	//Compact
sl@0
   543
	err = TheDb.Compact(RSqlDatabase::EMaxCompaction);
sl@0
   544
	TEST2(err, size1.iFree);
sl@0
   545
	
sl@0
   546
	GetHomeTimeAsString(timeBuf);
sl@0
   547
	TheTest.Printf(_L("===Time3: %S\r\n"), &timeBuf);
sl@0
   548
	
sl@0
   549
	//Cleanup
sl@0
   550
	TheDb.Close();
sl@0
   551
	(void)RSqlDatabase::Delete(KDbName1);
sl@0
   552
	}
sl@0
   553
sl@0
   554
void DoTestsL()
sl@0
   555
	{
sl@0
   556
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4072 Manual Compact() - attached databases, different page sizes"));	
sl@0
   557
	CompactDbTest1();
sl@0
   558
sl@0
   559
	if(IsTimeLimitReached())
sl@0
   560
		{
sl@0
   561
		TheTest.Printf(_L("===Test timeout!\r\n"));
sl@0
   562
		return;
sl@0
   563
		}
sl@0
   564
	
sl@0
   565
	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4073 Background compaction steps test"));	
sl@0
   566
	CompactDbTest2();
sl@0
   567
sl@0
   568
	if(IsTimeLimitReached())
sl@0
   569
		{
sl@0
   570
		TheTest.Printf(_L("===Test timeout!\r\n"));
sl@0
   571
		return;
sl@0
   572
		}
sl@0
   573
	
sl@0
   574
	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4074 Background compaction timer test"));	
sl@0
   575
	CompactDbTest3();
sl@0
   576
sl@0
   577
	if(IsTimeLimitReached())
sl@0
   578
		{
sl@0
   579
		TheTest.Printf(_L("===Test timeout!\r\n"));
sl@0
   580
		return;
sl@0
   581
		}
sl@0
   582
	
sl@0
   583
	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4103 Big manual compaction test"));	
sl@0
   584
	ManualCompactTest();
sl@0
   585
	}
sl@0
   586
sl@0
   587
TInt E32Main()
sl@0
   588
	{
sl@0
   589
	TheTest.Title();
sl@0
   590
	
sl@0
   591
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   592
	TheTest(tc != NULL);
sl@0
   593
	
sl@0
   594
	__UHEAP_MARK;
sl@0
   595
	
sl@0
   596
	CreateTestEnv();
sl@0
   597
	TRAPD(err, DoTestsL());
sl@0
   598
	DestroyTestEnv();
sl@0
   599
	TEST2(err, KErrNone);
sl@0
   600
	
sl@0
   601
	__UHEAP_MARKEND;
sl@0
   602
	
sl@0
   603
	TheTest.End();
sl@0
   604
	TheTest.Close();
sl@0
   605
	
sl@0
   606
	delete tc;
sl@0
   607
	
sl@0
   608
	User::Heap().Check();
sl@0
   609
	return KErrNone;
sl@0
   610
	}