Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This contains CTestSuite which is the base class for all the TestSuite DLLs
21 // Test system includes
22 #include <testframework.h>
24 // do not export if Unit Testing
25 #if defined (__TSU_TESTFRAMEWORK__)
32 * Default test suite version string
37 _LIT(KTxtVersion,"?.?");
41 * Test suite destructor
42 * This destroys all the test steps contained in this class and
43 * in classes derived from it
48 EXPORT_C CTestSuite::~CTestSuite()
50 // free all test steps
52 iArrayTestSteps->ResetAndDestroy();
54 // free the dynamic array used for test steps
55 delete iArrayTestSteps;
61 * Test suite constructor (second phase)
66 EXPORT_C void CTestSuite::ConstructL()
68 // create a new Array to store the test steps in
69 iArrayTestSteps = new(ELeave) CArrayPtrFlat<RTestStep>(1);
72 SetSeverity(ESevrAll);
75 // initialise the derived test suites
81 * Get test suite version.
83 * NOTE : this function is not pure virtual i.e. a test suite
84 * does not have to provide a version string - however this
85 * may change. It is strongly recommended that a test suite DLL
86 * overrides this method.
94 EXPORT_C TPtrC CTestSuite::GetVersion() const
101 * Add a test step into the suite
103 * @param "RTestStep* aTestStep"
104 * The test step to add.
109 EXPORT_C void CTestSuite::AddTestStepL(RTestStep* aTestStep)
111 __ASSERT_ALWAYS(aTestStep, User::Panic(_L("CTestSuite::AddTestStepL"), KErrArgument));
112 // test steps contain a pointer back to the suite which owns them
113 aTestStep->SetSuite(this);
114 // add the step; order is not important, so add it at position 1
115 iArrayTestSteps->AppendL(aTestStep, 1);
121 * Perform a test step.
123 * @param "const TDesC& aStep"
124 * The test step to run.
126 * @param "const TDesC& aConfig"
127 * The configuration file name.
130 * Result of the test.
135 EXPORT_C TVerdict CTestSuite::DoTestStep(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet)
137 // This function traps leaves in the test steps, so should never leave
139 // get the number of tests available in this suite
140 TInt noOfTests = iArrayTestSteps->Count();
142 // search the available test steps for the required one
143 for (TInt i = 0; i < noOfTests; i++)
145 RTestStep* theStep = iArrayTestSteps->At(i);
146 if (theStep->StepName().MatchF(aStep) != KErrNotFound)
149 // found required test so initialise to PASS
150 theStep->SetResult(EPass);
152 // set the param set to use
153 theStep->SetDefaultParamSet(aParamSet);
155 // pass the config file info into the test step
156 theStep->LoadConfig(aConfig);
158 // assume it's going to work
159 TVerdict result = EPass;
162 iStepStatus = EStepStatusStart;
164 // execute pre-preamble (cleanup stack growth)
165 TRAPD(rPreOpen, theStep->PreOpenL());
167 if (rPreOpen != KErrNone)
169 WARN_PRINTF4(_L("Warning: Test step:%S PreOpenL in suite:%S left, error %d"), &aStep, &iSuiteName, rPreOpen);
170 result = EInconclusive;
174 // execute test step preamble (if any) inside a trap
175 TRAPD(rPreAmble, result = theStep->OpenL());
179 WARN_PRINTF3(_L("Warning: Test step:%S preamble in suite:%S failed"), &aStep, &iSuiteName);
180 // here : call to virtual cleanup function in test step, if it exists...
181 theStep->CleanupAfterOpenFail();
182 result = EInconclusive;
184 else if (rPreAmble != KErrNone)
186 WARN_PRINTF4(_L("Warning: Test step:%S preamble in suite:%S left, error %d"), &aStep, &iSuiteName, rPreAmble);
187 // here : call to virtual cleanup function in test step, if it exists...
188 theStep->CleanupAfterOpenFail();
189 result = EInconclusive;
193 // only continue if the preamble passed
198 iStepStatus = EStepStatusPreamble;
200 // now execute test step inside a trap
201 TRAPD(r, result = theStep->DoTestStepL());
205 WARN_PRINTF4(_L("Warning: Test step:%S in suite:%S left, error %d"), &aStep, &iSuiteName, r);
210 iStepStatus = EStepStatusTest;
212 // execute test step postamble
213 // NB - postamble does not leave, but may panic
217 iStepStatus = EStepStatusFinished;
220 // *** TO DO - check if there are problems when the preamble leaves.
221 // In this case the postamble is not called - there may be memory leaks.
222 // (Preambles may allocate memory, call __UHEAP_MARK, etc.)
223 // If so, move Close() to this point, and check again.
225 // clean up Config data object
226 theStep->UnloadConfig();
233 // suite has been searched but test step not found, so error.
234 ERR_PRINTF3(_L("Failed to find test step:%S in suite:%S"), &aStep, &iSuiteName);
236 return ETestSuiteError;
242 * Gets a step's heap and stack size.
244 * @param "const TDesC& aStep"
246 * @param "TInt* aHeapSize"
247 * Returns the step's heap size
248 * @param "TInt* aStackSize"
249 * Returns the step's stack size
254 EXPORT_C void CTestSuite::GetHeapAndStackSize(const TDesC& aStep, TInt* aHeapSize, TInt* aStackSize)
256 //get the number of tests available in this suite
257 TInt noOfTests = iArrayTestSteps->Count();
259 // search the available test steps for the required one
260 for (TInt i = 0; i < noOfTests; i++)
262 RTestStep* theStep = iArrayTestSteps->At(i);
263 if (theStep->StepName().MatchF(aStep) != KErrNotFound)
266 // found required test, so get the stack and heap size
267 *aHeapSize = theStep->HeapSize();
268 *aStackSize = theStep->StackSize();
275 * General logging function for test suites.
277 * @param "TRefByValue<const TDesC16> aFmt"
278 * Printf-style format.
281 * Variable print parameters
286 EXPORT_C void CTestSuite::Log(TRefByValue<const TDesC16> aFmt, ...)
290 VA_START(aList, aFmt);
293 iLogger->Log(aFmt, aList);
300 * General logging function for test suites, with severity.
302 * @param "TInt aSeverity"
303 * Severity level required to log
305 * @param "TRefByValue<const TDesC16> aFmt"
306 * Printf-style format.
309 * Variable print parameters
314 EXPORT_C void CTestSuite::Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...)
317 VA_START(aList, aFmt);
319 if(LogSeverity::IsActive(aSeverity, Severity()))
322 iLogger->Log(aFmt, aList);
330 * Traceable logging function for test suites.
332 * @param "const TText8* aFile"
333 * Source code file name
335 * @param "TInt aLine"
338 * @param "TInt aSeverity"
339 * Severity level required to log
341 * @param "TRefByValue<const TDesC16> aFmt"
342 * Printf-style format.
345 * Variable print parameters
350 EXPORT_C void CTestSuite::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
351 TRefByValue<const TDesC16> aFmt,...)
354 VA_START(aList, aFmt);
356 if(LogSeverity::IsActive(aSeverity, Severity()))
360 iLogger->LogExtra(aFile, aLine, aSeverity, aFmt, aList);
370 * Traceable Boolean condition tester.
372 * @param "TBool aCondition"
373 * Condition to be checked
375 * @param "const TText8* aFile"
376 * Source code file name
378 * @param "TInt aLine"
384 EXPORT_C void CTestSuite::TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine)
391 // convert filename for log
392 TBuf<KMaxLogFilenameLength> fileName;
393 TPtrC8 fileName8(aFile);
394 fileName.Copy(fileName8); // TText8->TBuf16
396 // display a log message
397 ERR_PRINTF3(_L("Test Failed in file:%S line:%d"), &fileName, aLine);
399 // leave with error code
400 User::Leave(KTestErrorCode);
408 * @param "TInt aSeverity"
409 * The required severity
414 EXPORT_C void CTestSuite::SetSeverity(TInt aSeverity)
416 iSeverity = aSeverity;
424 * The current severity
429 EXPORT_C TInt CTestSuite::Severity() const
436 * Set logging system.
438 * @param "CLog *aLogger"
444 EXPORT_C void CTestSuite::SetLogSystem(CLog* aLogger)
451 * Get logging system.
454 * The log the test suite is currently using.
459 EXPORT_C CLog* CTestSuite::LogSystem() const
468 * @param "TTestStepStatus aStatus"
474 EXPORT_C void CTestSuite::SetStepStatus(TTestStepStatus aStatus)
476 iStepStatus = aStatus;
483 * @return "TTestStepStatus"
489 EXPORT_C TTestStepStatus CTestSuite::StepStatus() const