os/mm/mmtestenv/mmtestfw/Source/TestFrameworkClient/TestSuite.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) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This contains CTestSuite which is the base class for all the TestSuite DLLs
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// EPOC includes
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
// Test system includes
sl@0
    22
#include <testframework.h>
sl@0
    23
sl@0
    24
// do not export if Unit Testing
sl@0
    25
#if defined (__TSU_TESTFRAMEWORK__)
sl@0
    26
#undef EXPORT_C
sl@0
    27
#define EXPORT_C
sl@0
    28
#endif
sl@0
    29
sl@0
    30
/**
sl@0
    31
 *
sl@0
    32
 * Default test suite version string
sl@0
    33
 *
sl@0
    34
 * @xxxx 
sl@0
    35
 *
sl@0
    36
 */
sl@0
    37
_LIT(KTxtVersion,"?.?");
sl@0
    38
sl@0
    39
/**
sl@0
    40
 *
sl@0
    41
 * Test suite destructor
sl@0
    42
 * This destroys all the test steps contained in this class and
sl@0
    43
 * in classes derived from it
sl@0
    44
 *
sl@0
    45
 * @xxxx 
sl@0
    46
 *
sl@0
    47
 */
sl@0
    48
EXPORT_C CTestSuite::~CTestSuite()
sl@0
    49
	{
sl@0
    50
	// free all test steps
sl@0
    51
	if (iArrayTestSteps)
sl@0
    52
		iArrayTestSteps->ResetAndDestroy();
sl@0
    53
sl@0
    54
	// free the dynamic array used for test steps
sl@0
    55
	delete iArrayTestSteps;
sl@0
    56
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
 *
sl@0
    61
 * Test suite constructor (second phase)
sl@0
    62
 *
sl@0
    63
 * @xxxx 
sl@0
    64
 *
sl@0
    65
 */
sl@0
    66
EXPORT_C void CTestSuite::ConstructL()
sl@0
    67
	{
sl@0
    68
	// create a new Array to store the test steps in
sl@0
    69
	iArrayTestSteps = new(ELeave) CArrayPtrFlat<RTestStep>(1);
sl@0
    70
sl@0
    71
	// default severity
sl@0
    72
	SetSeverity(ESevrAll);
sl@0
    73
	iLogger = NULL;
sl@0
    74
sl@0
    75
	// initialise the derived test suites
sl@0
    76
	InitialiseL();
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
 *
sl@0
    81
 * Get test suite version.
sl@0
    82
 *
sl@0
    83
 * NOTE : this function is not pure virtual i.e. a test suite
sl@0
    84
 * does not have to provide a version string - however this
sl@0
    85
 * may change. It is strongly recommended that a test suite DLL
sl@0
    86
 * overrides this method.
sl@0
    87
 *
sl@0
    88
 * @return	"TPtrC"
sl@0
    89
 *			The version string.
sl@0
    90
 *
sl@0
    91
 * @xxxx 
sl@0
    92
 *
sl@0
    93
 */
sl@0
    94
EXPORT_C TPtrC CTestSuite::GetVersion() const
sl@0
    95
	{
sl@0
    96
	return KTxtVersion();
sl@0
    97
	}
sl@0
    98
sl@0
    99
/**
sl@0
   100
 *
sl@0
   101
 * Add a test step into the suite
sl@0
   102
 *
sl@0
   103
 * @param	"RTestStep* aTestStep"
sl@0
   104
 *			The test step to add.
sl@0
   105
 *
sl@0
   106
 * @xxxx 
sl@0
   107
 *
sl@0
   108
 */
sl@0
   109
EXPORT_C void CTestSuite::AddTestStepL(RTestStep* aTestStep)
sl@0
   110
	{
sl@0
   111
	__ASSERT_ALWAYS(aTestStep, User::Panic(_L("CTestSuite::AddTestStepL"), KErrArgument));
sl@0
   112
	// test steps contain a pointer back to the suite which owns them
sl@0
   113
	aTestStep->SetSuite(this);
sl@0
   114
	// add the step; order is not important, so add it at position 1
sl@0
   115
	iArrayTestSteps->AppendL(aTestStep, 1);
sl@0
   116
	}
sl@0
   117
sl@0
   118
sl@0
   119
/**
sl@0
   120
 *
sl@0
   121
 * Perform a test step.
sl@0
   122
 *
sl@0
   123
 * @param	"const TDesC& aStep"
sl@0
   124
 *			The test step to run.
sl@0
   125
 *
sl@0
   126
 * @param	"const TDesC& aConfig"
sl@0
   127
 *			The configuration file name.
sl@0
   128
 *
sl@0
   129
 * @return	"TVerdict"
sl@0
   130
 *			Result of the test.
sl@0
   131
 *
sl@0
   132
 * @xxxx 
sl@0
   133
 *
sl@0
   134
 */
sl@0
   135
EXPORT_C TVerdict CTestSuite::DoTestStep(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet)
sl@0
   136
	{
sl@0
   137
	// This function traps leaves in the test steps, so should never leave
sl@0
   138
sl@0
   139
	//	get the number of tests available in this suite
sl@0
   140
	TInt noOfTests = iArrayTestSteps->Count();
sl@0
   141
sl@0
   142
	// search the available test steps for the required one
sl@0
   143
	for (TInt i = 0; i < noOfTests; i++)
sl@0
   144
	{
sl@0
   145
		RTestStep* theStep = iArrayTestSteps->At(i);
sl@0
   146
		if (theStep->StepName().MatchF(aStep) != KErrNotFound)
sl@0
   147
			{
sl@0
   148
sl@0
   149
			// found required test so initialise to PASS
sl@0
   150
			theStep->SetResult(EPass);
sl@0
   151
			
sl@0
   152
			// set the param set to use
sl@0
   153
			theStep->SetDefaultParamSet(aParamSet);
sl@0
   154
sl@0
   155
			// pass the config file info into the test step
sl@0
   156
			theStep->LoadConfig(aConfig);
sl@0
   157
sl@0
   158
			// assume it's going to work
sl@0
   159
			TVerdict result = EPass;
sl@0
   160
sl@0
   161
			// set step status
sl@0
   162
			iStepStatus = EStepStatusStart;
sl@0
   163
sl@0
   164
			// execute pre-preamble (cleanup stack growth)
sl@0
   165
			TRAPD(rPreOpen, theStep->PreOpenL());
sl@0
   166
sl@0
   167
			if (rPreOpen != KErrNone)
sl@0
   168
				{
sl@0
   169
				WARN_PRINTF4(_L("Warning: Test step:%S PreOpenL in suite:%S left, error %d"), &aStep, &iSuiteName, rPreOpen);
sl@0
   170
				result = EInconclusive;
sl@0
   171
				}
sl@0
   172
			else
sl@0
   173
				{
sl@0
   174
				// execute test step preamble (if any) inside a trap
sl@0
   175
				TRAPD(rPreAmble, result = theStep->OpenL());
sl@0
   176
sl@0
   177
				if (result != EPass)
sl@0
   178
					{
sl@0
   179
					WARN_PRINTF3(_L("Warning: Test step:%S preamble in suite:%S failed"), &aStep, &iSuiteName);
sl@0
   180
					// here : call to virtual cleanup function in test step, if it exists...
sl@0
   181
					theStep->CleanupAfterOpenFail();
sl@0
   182
					result = EInconclusive;
sl@0
   183
					}
sl@0
   184
				else if (rPreAmble != KErrNone)
sl@0
   185
					{
sl@0
   186
					WARN_PRINTF4(_L("Warning: Test step:%S preamble in suite:%S left, error %d"), &aStep, &iSuiteName, rPreAmble);
sl@0
   187
					// here : call to virtual cleanup function in test step, if it exists...
sl@0
   188
					theStep->CleanupAfterOpenFail();
sl@0
   189
					result = EInconclusive;
sl@0
   190
					}
sl@0
   191
				}
sl@0
   192
sl@0
   193
			// only continue if the preamble passed
sl@0
   194
			if (result == EPass)
sl@0
   195
				{
sl@0
   196
sl@0
   197
				// set step status
sl@0
   198
				iStepStatus = EStepStatusPreamble;
sl@0
   199
sl@0
   200
				// now execute test step inside a trap
sl@0
   201
				TRAPD(r, result = theStep->DoTestStepL());
sl@0
   202
sl@0
   203
				if (r!= KErrNone)
sl@0
   204
					{
sl@0
   205
					WARN_PRINTF4(_L("Warning: Test step:%S in suite:%S left, error %d"), &aStep, &iSuiteName, r);
sl@0
   206
					result = EFail;
sl@0
   207
					}
sl@0
   208
sl@0
   209
				// set step status
sl@0
   210
				iStepStatus = EStepStatusTest;
sl@0
   211
sl@0
   212
				// execute test step postamble
sl@0
   213
				// NB - postamble does not leave, but may panic
sl@0
   214
				theStep->Close();
sl@0
   215
sl@0
   216
				// set step status
sl@0
   217
				iStepStatus = EStepStatusFinished;
sl@0
   218
				}
sl@0
   219
sl@0
   220
			// *** TO DO - check if there are problems when the preamble leaves.
sl@0
   221
			// In this case the postamble is not called - there may be memory leaks.
sl@0
   222
			// (Preambles may allocate memory, call __UHEAP_MARK, etc.)
sl@0
   223
			// If so, move Close() to this point, and check again.
sl@0
   224
sl@0
   225
			// clean up Config data object
sl@0
   226
			theStep->UnloadConfig();
sl@0
   227
sl@0
   228
			return result;
sl@0
   229
sl@0
   230
			}
sl@0
   231
		}
sl@0
   232
sl@0
   233
	// suite has been searched but test step not found, so error.
sl@0
   234
 	ERR_PRINTF3(_L("Failed to find test step:%S in suite:%S"), &aStep, &iSuiteName);
sl@0
   235
sl@0
   236
	return ETestSuiteError;
sl@0
   237
sl@0
   238
	}
sl@0
   239
sl@0
   240
/**
sl@0
   241
 *
sl@0
   242
 * Gets a step's heap and stack size.
sl@0
   243
 *
sl@0
   244
 * @param	"const TDesC& aStep"
sl@0
   245
 *			The step name
sl@0
   246
 * @param	"TInt* aHeapSize"
sl@0
   247
 *			Returns the step's heap size
sl@0
   248
 * @param	"TInt* aStackSize"
sl@0
   249
 *			Returns the step's stack size
sl@0
   250
 *
sl@0
   251
 * @xxxx
sl@0
   252
 *
sl@0
   253
 */
sl@0
   254
EXPORT_C void CTestSuite::GetHeapAndStackSize(const TDesC& aStep, TInt* aHeapSize, TInt* aStackSize)
sl@0
   255
	{
sl@0
   256
	//get the number of tests available in this suite
sl@0
   257
	TInt noOfTests = iArrayTestSteps->Count();
sl@0
   258
sl@0
   259
	// search the available test steps for the required one
sl@0
   260
	for (TInt i = 0; i < noOfTests; i++)
sl@0
   261
		{
sl@0
   262
		RTestStep* theStep = iArrayTestSteps->At(i);
sl@0
   263
		if (theStep->StepName().MatchF(aStep) != KErrNotFound)
sl@0
   264
			{
sl@0
   265
sl@0
   266
			// found required test, so get the stack and heap size
sl@0
   267
			*aHeapSize = theStep->HeapSize();
sl@0
   268
			*aStackSize = theStep->StackSize();
sl@0
   269
			}
sl@0
   270
		}
sl@0
   271
	}
sl@0
   272
sl@0
   273
/**
sl@0
   274
 *
sl@0
   275
 * General logging function for test suites.
sl@0
   276
 *
sl@0
   277
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   278
 *			Printf-style format.
sl@0
   279
 *
sl@0
   280
 * @param	"..."
sl@0
   281
 *			Variable print parameters
sl@0
   282
 *
sl@0
   283
 * @xxxx 
sl@0
   284
 *
sl@0
   285
 */
sl@0
   286
EXPORT_C void CTestSuite::Log(TRefByValue<const TDesC16> aFmt, ...)
sl@0
   287
	{
sl@0
   288
sl@0
   289
	VA_LIST aList;
sl@0
   290
	VA_START(aList, aFmt);
sl@0
   291
sl@0
   292
	if(iLogger) 
sl@0
   293
		iLogger->Log(aFmt, aList);
sl@0
   294
sl@0
   295
	VA_END(aList);
sl@0
   296
	}
sl@0
   297
sl@0
   298
/**
sl@0
   299
 *
sl@0
   300
 * General logging function for test suites, with severity.
sl@0
   301
 *
sl@0
   302
 * @param	"TInt aSeverity"
sl@0
   303
 *			Severity level required to log
sl@0
   304
 *
sl@0
   305
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   306
 *			Printf-style format.
sl@0
   307
 *
sl@0
   308
 * @param	"..."
sl@0
   309
 *			Variable print parameters
sl@0
   310
 *
sl@0
   311
 * @xxxx 
sl@0
   312
 *
sl@0
   313
 */
sl@0
   314
EXPORT_C void CTestSuite::Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...)
sl@0
   315
	{
sl@0
   316
	VA_LIST aList;
sl@0
   317
	VA_START(aList, aFmt);
sl@0
   318
sl@0
   319
	if(LogSeverity::IsActive(aSeverity, Severity()))
sl@0
   320
		{
sl@0
   321
		if(iLogger) 
sl@0
   322
			iLogger->Log(aFmt, aList);
sl@0
   323
		}
sl@0
   324
sl@0
   325
	VA_END(aList);
sl@0
   326
	}
sl@0
   327
sl@0
   328
/**
sl@0
   329
 *
sl@0
   330
 * Traceable logging function for test suites.
sl@0
   331
 *
sl@0
   332
 * @param	"const TText8* aFile"
sl@0
   333
 *			Source code file name
sl@0
   334
 *
sl@0
   335
 * @param	"TInt aLine"
sl@0
   336
 *			Source code line
sl@0
   337
 *
sl@0
   338
 * @param	"TInt aSeverity"
sl@0
   339
 *			Severity level required to log
sl@0
   340
 *
sl@0
   341
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   342
 *			Printf-style format.
sl@0
   343
 *
sl@0
   344
 * @param	"..."
sl@0
   345
 *			Variable print parameters
sl@0
   346
 *
sl@0
   347
 * @xxxx 
sl@0
   348
 *
sl@0
   349
 */
sl@0
   350
EXPORT_C void CTestSuite::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   351
		TRefByValue<const TDesC16> aFmt,...)
sl@0
   352
	{
sl@0
   353
	VA_LIST aList;
sl@0
   354
	VA_START(aList, aFmt);
sl@0
   355
sl@0
   356
	if(LogSeverity::IsActive(aSeverity, Severity()))
sl@0
   357
		{
sl@0
   358
		if(iLogger)
sl@0
   359
			{
sl@0
   360
			iLogger->LogExtra(aFile, aLine, aSeverity, aFmt, aList);
sl@0
   361
			}
sl@0
   362
		}
sl@0
   363
sl@0
   364
	VA_END(aList);
sl@0
   365
	}
sl@0
   366
sl@0
   367
sl@0
   368
/**
sl@0
   369
 *
sl@0
   370
 * Traceable Boolean condition tester.
sl@0
   371
 *
sl@0
   372
 * @param	"TBool aCondition"
sl@0
   373
 *			Condition to be checked
sl@0
   374
 *
sl@0
   375
 * @param	"const TText8* aFile"
sl@0
   376
 *			Source code file name
sl@0
   377
 *
sl@0
   378
 * @param	"TInt aLine"
sl@0
   379
 *			Source code line
sl@0
   380
 *
sl@0
   381
 * @xxxx 
sl@0
   382
 *
sl@0
   383
 */
sl@0
   384
EXPORT_C void CTestSuite::TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine)
sl@0
   385
	{
sl@0
   386
sl@0
   387
	// check condition
sl@0
   388
	if (aCondition)
sl@0
   389
		return;
sl@0
   390
sl@0
   391
	// convert filename for log
sl@0
   392
	TBuf<KMaxLogFilenameLength> fileName;
sl@0
   393
	TPtrC8 fileName8(aFile);
sl@0
   394
	fileName.Copy(fileName8);  // TText8->TBuf16
sl@0
   395
sl@0
   396
	// display a log message
sl@0
   397
 	ERR_PRINTF3(_L("Test Failed in file:%S line:%d"), &fileName, aLine);
sl@0
   398
sl@0
   399
	// leave with error code
sl@0
   400
	User::Leave(KTestErrorCode);
sl@0
   401
sl@0
   402
	}
sl@0
   403
sl@0
   404
/**
sl@0
   405
 *
sl@0
   406
 * Set log severity.
sl@0
   407
 *
sl@0
   408
 * @param	"TInt aSeverity"
sl@0
   409
 *			The required severity
sl@0
   410
 *
sl@0
   411
 * @xxxx 
sl@0
   412
 *
sl@0
   413
 */
sl@0
   414
EXPORT_C void CTestSuite::SetSeverity(TInt aSeverity)
sl@0
   415
	{
sl@0
   416
	iSeverity = aSeverity;
sl@0
   417
	}
sl@0
   418
sl@0
   419
/**
sl@0
   420
 *
sl@0
   421
 * Get log severity.
sl@0
   422
 *
sl@0
   423
 * @return	"TInt"
sl@0
   424
 *			The current severity
sl@0
   425
 *
sl@0
   426
 * @xxxx 
sl@0
   427
 *
sl@0
   428
 */
sl@0
   429
EXPORT_C TInt CTestSuite::Severity() const
sl@0
   430
	{
sl@0
   431
	return iSeverity;
sl@0
   432
	}
sl@0
   433
sl@0
   434
/**
sl@0
   435
 *
sl@0
   436
 * Set logging system.
sl@0
   437
 *
sl@0
   438
 * @param	"CLog *aLogger"
sl@0
   439
 *			The log to use.
sl@0
   440
 *
sl@0
   441
 * @xxxx 
sl@0
   442
 *
sl@0
   443
 */
sl@0
   444
EXPORT_C void CTestSuite::SetLogSystem(CLog* aLogger)
sl@0
   445
	{
sl@0
   446
	iLogger = aLogger;
sl@0
   447
	}
sl@0
   448
sl@0
   449
/**
sl@0
   450
 *
sl@0
   451
 * Get logging system.
sl@0
   452
 *
sl@0
   453
 * @return	"CLog*"
sl@0
   454
 *			The log the test suite is currently using.
sl@0
   455
 *
sl@0
   456
 * @xxxx 
sl@0
   457
 *
sl@0
   458
 */
sl@0
   459
EXPORT_C CLog* CTestSuite::LogSystem() const
sl@0
   460
	{
sl@0
   461
	return iLogger;
sl@0
   462
	}
sl@0
   463
sl@0
   464
/**
sl@0
   465
 *
sl@0
   466
 * Set step status.
sl@0
   467
 *
sl@0
   468
 * @param	"TTestStepStatus aStatus"
sl@0
   469
 *			The status to set.
sl@0
   470
 *
sl@0
   471
 * @xxxx 
sl@0
   472
 *
sl@0
   473
 */
sl@0
   474
EXPORT_C void CTestSuite::SetStepStatus(TTestStepStatus aStatus)
sl@0
   475
	{
sl@0
   476
	iStepStatus = aStatus;
sl@0
   477
	}
sl@0
   478
sl@0
   479
/**
sl@0
   480
 *
sl@0
   481
 * Get step status.
sl@0
   482
 *
sl@0
   483
 * @return "TTestStepStatus"
sl@0
   484
 *			The step status.
sl@0
   485
 *
sl@0
   486
 * @xxxx 
sl@0
   487
 *
sl@0
   488
 */
sl@0
   489
EXPORT_C TTestStepStatus CTestSuite::StepStatus() const
sl@0
   490
	{
sl@0
   491
	return iStepStatus;
sl@0
   492
	}