os/persistentdata/persistentstorage/sql/TEST/t_sqlbur2.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) 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 <e32math.h>
sl@0
    20
#include "SqlBur.h"
sl@0
    21
sl@0
    22
//CSqlSrvTestBurInterface - test implementation of the MSqlSrvBurInterface, implemented in the production code by the SQL server.
sl@0
    23
class CSqlSrvTestBurInterface : public CBase, public MSqlSrvBurInterface
sl@0
    24
	{
sl@0
    25
	public:
sl@0
    26
		static CSqlSrvTestBurInterface* New();
sl@0
    27
		virtual ~CSqlSrvTestBurInterface();
sl@0
    28
		virtual RFs& Fs();
sl@0
    29
		virtual void GetBackUpListL(TSecureId aUid, TDriveNumber aDrive, RArray<HBufC*>& aFileList);
sl@0
    30
		
sl@0
    31
	private:
sl@0
    32
		void Construct();
sl@0
    33
		
sl@0
    34
	private:
sl@0
    35
		RFs iFs;
sl@0
    36
		
sl@0
    37
	};
sl@0
    38
sl@0
    39
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    40
sl@0
    41
RTest TheTest(_L("t_sqlbur2"));
sl@0
    42
sl@0
    43
#ifdef _DEBUG
sl@0
    44
static const TInt KBurstRate = 100;
sl@0
    45
#endif
sl@0
    46
sl@0
    47
TDriveNumber KTestDrive = EDriveC;
sl@0
    48
_LIT(KTestDir, "c:\\test\\");
sl@0
    49
CActiveScheduler* TheScheduler = NULL;
sl@0
    50
CSqlSrvTestBurInterface* TheSqlSrvTestBurInterface = NULL;
sl@0
    51
TInt TestModeSqlBurError = KErrNone;//The CSqlBurEventMonitor code will set the error here
sl@0
    52
sl@0
    53
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    54
sl@0
    55
void DestroyTestEnv()
sl@0
    56
	{
sl@0
    57
	delete TheSqlSrvTestBurInterface;
sl@0
    58
	TheSqlSrvTestBurInterface = NULL;		
sl@0
    59
	
sl@0
    60
	delete TheScheduler;
sl@0
    61
	TheScheduler = NULL;
sl@0
    62
	
sl@0
    63
	(void)RProperty::Delete(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey);  
sl@0
    64
	}
sl@0
    65
sl@0
    66
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    67
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    68
//Test macros and functions
sl@0
    69
void Check(TInt aValue, TInt aLine)
sl@0
    70
	{
sl@0
    71
	if(!aValue)
sl@0
    72
		{
sl@0
    73
		DestroyTestEnv();
sl@0
    74
		RDebug::Print(_L("*** Boolean expression evaluated to false.\r\n"));
sl@0
    75
		TheTest(EFalse, aLine);
sl@0
    76
		}
sl@0
    77
	}
sl@0
    78
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    79
	{
sl@0
    80
	if(aValue != aExpected)
sl@0
    81
		{
sl@0
    82
		DestroyTestEnv();
sl@0
    83
		RDebug::Print(_L("*** Expected error: %d, got: %d.\r\n"), aExpected, aValue);
sl@0
    84
		TheTest(EFalse, aLine);
sl@0
    85
		}
sl@0
    86
	}
sl@0
    87
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    88
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    89
sl@0
    90
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    91
sl@0
    92
CSqlSrvTestBurInterface* CSqlSrvTestBurInterface::New()
sl@0
    93
	{
sl@0
    94
	CSqlSrvTestBurInterface* self = new CSqlSrvTestBurInterface;
sl@0
    95
	TEST(self != NULL);
sl@0
    96
	self->Construct();
sl@0
    97
	return self;
sl@0
    98
	}
sl@0
    99
sl@0
   100
void CSqlSrvTestBurInterface::Construct()
sl@0
   101
	{
sl@0
   102
	TInt err = iFs.Connect();
sl@0
   103
	TEST2(err, KErrNone);
sl@0
   104
sl@0
   105
	err = iFs.MkDir(KTestDir);
sl@0
   106
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   107
sl@0
   108
	err = iFs.CreatePrivatePath(KTestDrive);
sl@0
   109
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   110
	}
sl@0
   111
sl@0
   112
CSqlSrvTestBurInterface::~CSqlSrvTestBurInterface()
sl@0
   113
	{
sl@0
   114
	iFs.Close();
sl@0
   115
	}
sl@0
   116
sl@0
   117
RFs& CSqlSrvTestBurInterface::Fs()
sl@0
   118
	{
sl@0
   119
	return iFs;
sl@0
   120
	}
sl@0
   121
sl@0
   122
//No-op. Not needed in this test app.
sl@0
   123
void CSqlSrvTestBurInterface::GetBackUpListL(TSecureId, TDriveNumber, RArray<HBufC*>&)
sl@0
   124
	{
sl@0
   125
	TEST(EFalse);
sl@0
   126
	}
sl@0
   127
sl@0
   128
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   129
sl@0
   130
void CreateTestEnv()
sl@0
   131
    {
sl@0
   132
	TheScheduler = new CActiveScheduler;
sl@0
   133
	TEST(TheScheduler != NULL);
sl@0
   134
	CActiveScheduler::Install(TheScheduler);
sl@0
   135
	
sl@0
   136
	TheSqlSrvTestBurInterface = CSqlSrvTestBurInterface::New();
sl@0
   137
	TEST(TheSqlSrvTestBurInterface != NULL);
sl@0
   138
	
sl@0
   139
	TInt err = RProperty::Define(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, 0);  
sl@0
   140
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   141
	}
sl@0
   142
sl@0
   143
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   144
sl@0
   145
/**
sl@0
   146
@SYMTestCaseID			PDS-SQL-UT-4233
sl@0
   147
@SYMTestCaseDesc		CSqlBurEventMonitor object creation - OOM test
sl@0
   148
						The test runs CSqlBurEventMonitor::NewL() in an OOM loop.
sl@0
   149
@SYMTestActions			CSqlBurEventMonitor object creation - OOM test
sl@0
   150
@SYMTestExpectedResults Test must not fail
sl@0
   151
@SYMTestPriority		High
sl@0
   152
*/
sl@0
   153
void SqlBurEventMonitorOomTest()
sl@0
   154
	{
sl@0
   155
	TInt err = KErrNoMemory;
sl@0
   156
	TInt failingAllocationNo = 0;
sl@0
   157
	TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   158
	while(err == KErrNoMemory)
sl@0
   159
		{
sl@0
   160
		TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   161
		
sl@0
   162
		TInt startProcessHandleCount;
sl@0
   163
		TInt startThreadHandleCount;
sl@0
   164
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   165
		__UHEAP_MARK;
sl@0
   166
		__UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, failingAllocationNo, KBurstRate);
sl@0
   167
sl@0
   168
		CSqlBurEventMonitor* monitor = NULL;
sl@0
   169
		TRAP(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
sl@0
   170
		delete monitor;
sl@0
   171
		
sl@0
   172
		__UHEAP_RESET;
sl@0
   173
		__UHEAP_MARKEND;
sl@0
   174
		TInt endProcessHandleCount;
sl@0
   175
		TInt endThreadHandleCount;
sl@0
   176
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   177
		
sl@0
   178
		TEST2(startProcessHandleCount, endProcessHandleCount);
sl@0
   179
		TEST2(startThreadHandleCount, endThreadHandleCount);
sl@0
   180
		}
sl@0
   181
	TEST2(err, KErrNone);
sl@0
   182
	TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   183
	}
sl@0
   184
sl@0
   185
/**
sl@0
   186
@SYMTestCaseID			PDS-SQL-UT-4234
sl@0
   187
@SYMTestCaseDesc		CSqlBurEventMonitor functional test
sl@0
   188
						The test sets the backup & restore property status and then checks
sl@0
   189
						how the backup & restore property monitor (CSqlBurEventMonitor) reacts to the event.
sl@0
   190
@SYMTestActions			CSqlBurEventMonitor functional test
sl@0
   191
@SYMTestExpectedResults Test must not fail
sl@0
   192
@SYMTestPriority		High
sl@0
   193
*/
sl@0
   194
void SqlBurEventMonitorFunctionalTest()
sl@0
   195
	{
sl@0
   196
	CSqlBurEventMonitor* monitor = NULL;
sl@0
   197
	TRAPD(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
sl@0
   198
	TEST2(err, KErrNone);
sl@0
   199
	TEST(!monitor->ActiveBackupClient());
sl@0
   200
	TEST(!monitor->SqlBurCallback());
sl@0
   201
	//Set the property to conn::EBURBackupFull, conn::EBURBackupPartial, conn::EBURRestoreFull, conn::EBURRestorePartial, 
sl@0
   202
	//then start the scheduler. CSqlBurEventMonitor::RunL() gets called and 
sl@0
   203
	//CSqlBurCallback and CActiveBackupClient interfaces get created (if the interfaces do exist, they are destroyed first).
sl@0
   204
	TInt burPropertyStatus[] = {conn::EBURBackupFull, conn::EBURBackupPartial, conn::EBURRestoreFull, conn::EBURRestorePartial};
sl@0
   205
	for(TInt i=0;i<(sizeof(burPropertyStatus)/sizeof(burPropertyStatus[0]));++i)
sl@0
   206
		{
sl@0
   207
		err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, burPropertyStatus[i]);
sl@0
   208
		TEST2(err, KErrNone);
sl@0
   209
		TestModeSqlBurError = KErrNone;
sl@0
   210
		if(i > 0)
sl@0
   211
			{
sl@0
   212
			__UHEAP_MARK;
sl@0
   213
			}
sl@0
   214
		CActiveScheduler::Start();
sl@0
   215
		if(i > 0)
sl@0
   216
			{
sl@0
   217
			__UHEAP_MARKEND;
sl@0
   218
			}
sl@0
   219
		TEST2(TestModeSqlBurError, KErrNone);
sl@0
   220
		TEST(monitor->ActiveBackupClient() != NULL);
sl@0
   221
		TEST(monitor->SqlBurCallback() != NULL);
sl@0
   222
		}
sl@0
   223
	//Set the property to conn::EBURUnset, start the scheduler. CSqlBurEventMonitor::RunL() gets called 
sl@0
   224
	//and CSqlBurCallback interface gets destroyed.
sl@0
   225
	err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURUnset);
sl@0
   226
	TEST2(err, KErrNone);
sl@0
   227
	TestModeSqlBurError = KErrNone;
sl@0
   228
	CActiveScheduler::Start();
sl@0
   229
	TEST2(TestModeSqlBurError, KErrNone);
sl@0
   230
	TEST(!monitor->ActiveBackupClient());
sl@0
   231
	TEST(!monitor->SqlBurCallback());
sl@0
   232
	//Set the property to conn::EBURNormal, start the scheduler. CSqlBurEventMonitor::RunL() gets called. 
sl@0
   233
	//CSqlBurCallback interface has been destroyed alread. No memory deallocations should be made during this call.
sl@0
   234
	err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURNormal);
sl@0
   235
	TEST2(err, KErrNone);
sl@0
   236
	__UHEAP_MARK;
sl@0
   237
	TestModeSqlBurError = KErrNone;
sl@0
   238
	CActiveScheduler::Start();
sl@0
   239
	TEST2(TestModeSqlBurError, KErrNone);
sl@0
   240
	TEST(!monitor->ActiveBackupClient());
sl@0
   241
	TEST(!monitor->SqlBurCallback());
sl@0
   242
	__UHEAP_MARKEND;
sl@0
   243
	//Set the property, then delete it. CSqlBurEventMonitor::RunL() should get called, but the call should
sl@0
   244
	//fail because the property does not exist.
sl@0
   245
	err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURBackupFull);
sl@0
   246
	TEST2(err, KErrNone);
sl@0
   247
	err = RProperty::Delete(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey);  
sl@0
   248
	TEST2(err, KErrNone);
sl@0
   249
	__UHEAP_MARK;
sl@0
   250
	TestModeSqlBurError = KErrNone;
sl@0
   251
	CActiveScheduler::Start();
sl@0
   252
	TEST2(TestModeSqlBurError, KErrNotFound);
sl@0
   253
	TEST(!monitor->ActiveBackupClient());
sl@0
   254
	TEST(!monitor->SqlBurCallback());
sl@0
   255
	__UHEAP_MARKEND;
sl@0
   256
	//Restore the property
sl@0
   257
	err = RProperty::Define(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, 0);  
sl@0
   258
	TEST2(err, KErrNone);
sl@0
   259
	//
sl@0
   260
	delete monitor;
sl@0
   261
	}
sl@0
   262
sl@0
   263
/**
sl@0
   264
@SYMTestCaseID			PDS-SQL-UT-4235
sl@0
   265
@SYMTestCaseDesc		CSqlBurEventMonitor::RunL() - OOM test
sl@0
   266
						The test sets the backup & restore property status and then checks
sl@0
   267
						how the backup & restore property monitor (CSqlBurEventMonitor) reacts to the event.
sl@0
   268
						The test is performed in an OOM loop.
sl@0
   269
@SYMTestActions			CSqlBurEventMonitor::RunL() - OOM test
sl@0
   270
@SYMTestExpectedResults Test must not fail
sl@0
   271
@SYMTestPriority		High
sl@0
   272
*/
sl@0
   273
void SqlBurEventMonitorRunOomTest()
sl@0
   274
	{
sl@0
   275
	CSqlBurEventMonitor* monitor = NULL;
sl@0
   276
	TRAPD(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
sl@0
   277
	
sl@0
   278
	err = KErrNoMemory;
sl@0
   279
	TInt failingAllocationNo = 0;
sl@0
   280
	TheTest.Printf(_L("Iteration:\r\n"));
sl@0
   281
	while(err == KErrNoMemory)
sl@0
   282
		{
sl@0
   283
		TheTest.Printf(_L(" %d"), ++failingAllocationNo);
sl@0
   284
		
sl@0
   285
		TInt startProcessHandleCount;
sl@0
   286
		TInt startThreadHandleCount;
sl@0
   287
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   288
		__UHEAP_MARK;
sl@0
   289
		__UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, failingAllocationNo, KBurstRate);
sl@0
   290
sl@0
   291
		TEST(!monitor->ActiveBackupClient());
sl@0
   292
		TEST(!monitor->SqlBurCallback());
sl@0
   293
		//Set the property, start the scheduler. CSqlBurEventMonitor::RunL() gets called and CSqlBurCallback
sl@0
   294
		//interface gets created.
sl@0
   295
		err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURBackupFull);
sl@0
   296
		if(err == KErrNone)
sl@0
   297
			{
sl@0
   298
			TestModeSqlBurError = KErrNone;
sl@0
   299
			CActiveScheduler::Start();
sl@0
   300
			err = TestModeSqlBurError;
sl@0
   301
			if(err == KErrNone)
sl@0
   302
				{
sl@0
   303
				TEST(monitor->ActiveBackupClient() != NULL);
sl@0
   304
				TEST(monitor->SqlBurCallback() != NULL);
sl@0
   305
				//Destroy the SQL backup & restore callback
sl@0
   306
				err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURNormal);
sl@0
   307
				TestModeSqlBurError = KErrNone;
sl@0
   308
				CActiveScheduler::Start();
sl@0
   309
				err = TestModeSqlBurError;
sl@0
   310
				if(err == KErrNone)
sl@0
   311
					{
sl@0
   312
					TEST(!monitor->ActiveBackupClient());
sl@0
   313
					TEST(!monitor->SqlBurCallback());
sl@0
   314
					}
sl@0
   315
				}
sl@0
   316
			}
sl@0
   317
		
sl@0
   318
		__UHEAP_RESET;
sl@0
   319
		__UHEAP_MARKEND;
sl@0
   320
		TInt endProcessHandleCount;
sl@0
   321
		TInt endThreadHandleCount;
sl@0
   322
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   323
		
sl@0
   324
		TEST2(startProcessHandleCount, endProcessHandleCount);
sl@0
   325
		TEST2(startThreadHandleCount, endThreadHandleCount);
sl@0
   326
		}
sl@0
   327
	TEST2(err, KErrNone);
sl@0
   328
	TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
sl@0
   329
	delete monitor;
sl@0
   330
	}
sl@0
   331
sl@0
   332
void DoTestsL()
sl@0
   333
	{
sl@0
   334
	TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-UT-4233 CSqlBurEventMonitor object creation - OOM test"));
sl@0
   335
	SqlBurEventMonitorOomTest();
sl@0
   336
	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4234 CSqlBurEventMonitor functional test"));
sl@0
   337
	SqlBurEventMonitorFunctionalTest();
sl@0
   338
	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4235 CSqlBurEventMonitor::RunL() - OOM test"));
sl@0
   339
	SqlBurEventMonitorRunOomTest();
sl@0
   340
	}
sl@0
   341
sl@0
   342
TInt E32Main()
sl@0
   343
	{
sl@0
   344
	TheTest.Title();
sl@0
   345
sl@0
   346
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   347
	TheTest(tc != NULL);
sl@0
   348
sl@0
   349
	__UHEAP_MARK;
sl@0
   350
sl@0
   351
	CreateTestEnv();
sl@0
   352
	TRAPD(err, DoTestsL());
sl@0
   353
	DestroyTestEnv();
sl@0
   354
	TEST2(err, KErrNone);
sl@0
   355
sl@0
   356
	__UHEAP_MARKEND;
sl@0
   357
sl@0
   358
	TheTest.End();
sl@0
   359
	TheTest.Close();
sl@0
   360
sl@0
   361
	delete tc;
sl@0
   362
sl@0
   363
	User::Heap().Check();
sl@0
   364
	return KErrNone;
sl@0
   365
	}