sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "t_testhandler.h"
|
sl@0
|
20 |
#include "ttesthandlersettings.h"
|
sl@0
|
21 |
#include "t_output.h"
|
sl@0
|
22 |
#include "t_testaction.h"
|
sl@0
|
23 |
#include "t_testsetup.h"
|
sl@0
|
24 |
#include "tTestSpec.h"
|
sl@0
|
25 |
#include "t_testrunner.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
TTestSummary::TTestSummary() :
|
sl@0
|
29 |
iTestsRun(0), iTestsFailed(0)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
void TTestSummary::PrintL(Output& aOut)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
aOut.write(_L("%d tests failed out of %d\n"), iTestsFailed, iTestsRun);
|
sl@0
|
36 |
aOut.write(_L("\r\n</pre></body></html>\r\n"));
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
TBool TTestSummary::AllTestsPassed()
|
sl@0
|
40 |
{
|
sl@0
|
41 |
return iTestsRun > 0 && iTestsFailed == 0;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
EXPORT_C CTestHandler* CTestHandler::NewLC(RFs& aFs,
|
sl@0
|
45 |
MTestSpec& aTestSpec,
|
sl@0
|
46 |
CTestHandlerSettings& aSettings,
|
sl@0
|
47 |
CConsoleBase* aConsole,
|
sl@0
|
48 |
Output* aOut)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
CTestHandler* self = new(ELeave) CTestHandler(aFs, aTestSpec, aConsole, aOut);
|
sl@0
|
51 |
CleanupStack::PushL(self);
|
sl@0
|
52 |
self->ConstructL(aSettings);
|
sl@0
|
53 |
return self;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
CTestHandler::~CTestHandler()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
delete iSettings;
|
sl@0
|
59 |
delete iScheduler;
|
sl@0
|
60 |
delete iSharedData;
|
sl@0
|
61 |
delete iTestRunner;
|
sl@0
|
62 |
delete iNextTestRunner;
|
sl@0
|
63 |
|
sl@0
|
64 |
iFailedTests.Reset();
|
sl@0
|
65 |
iFailedTestNames.ResetAndDestroy();
|
sl@0
|
66 |
iKnownDefects.ResetAndDestroy();
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
CTestHandler::CTestHandler(RFs& aFs,
|
sl@0
|
70 |
MTestSpec& aTestSpec,
|
sl@0
|
71 |
CConsoleBase* aConsole,
|
sl@0
|
72 |
Output* aOut) :
|
sl@0
|
73 |
iFs(aFs), iConsole(aConsole), iOut(aOut), iTestSpec(aTestSpec)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
void CTestHandler::ConstructL(CTestHandlerSettings& aSettings)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
iSettings = CTestHandlerSettings::NewL(aSettings);
|
sl@0
|
80 |
iScheduler = new(ELeave) CActiveScheduler;
|
sl@0
|
81 |
CActiveScheduler::Install(iScheduler);
|
sl@0
|
82 |
|
sl@0
|
83 |
// Set up test handler based on command line argument
|
sl@0
|
84 |
if (aSettings.iOOM)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
SetTestRunnerL(new (ELeave) COOMTestRunner(*iOut));
|
sl@0
|
87 |
}
|
sl@0
|
88 |
else if (aSettings.iCancel)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
SetTestRunnerL(new (ELeave) CCancelTestRunner(*iOut));
|
sl@0
|
91 |
}
|
sl@0
|
92 |
else
|
sl@0
|
93 |
{
|
sl@0
|
94 |
SetTestRunnerL(NULL);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
TTestSummary CTestHandler::Summary()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
TTestSummary result;
|
sl@0
|
101 |
result.iTestsRun = iActionCount;
|
sl@0
|
102 |
result.iTestsFailed = iFailedTests.Count();
|
sl@0
|
103 |
return result;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
EXPORT_C void CTestHandler::RunTestsL()
|
sl@0
|
107 |
{
|
sl@0
|
108 |
|
sl@0
|
109 |
TBuf8<32>timeBuf;
|
sl@0
|
110 |
TTime time;
|
sl@0
|
111 |
time.UniversalTime();
|
sl@0
|
112 |
TDateTime dateTime = time.DateTime();
|
sl@0
|
113 |
_LIT8(KDateFormat,"%02d:%02d:%02d:%03d ");
|
sl@0
|
114 |
timeBuf.AppendFormat(KDateFormat,dateTime.Hour(),dateTime.Minute(),dateTime.Second(),(dateTime.MicroSecond()/1000));
|
sl@0
|
115 |
|
sl@0
|
116 |
iActionNumber = 0;
|
sl@0
|
117 |
CTestAction* action;
|
sl@0
|
118 |
HBufC8* currentID=NULL;
|
sl@0
|
119 |
HBufC8* previousID=NULL;
|
sl@0
|
120 |
TBool testCaseResult=ETrue;
|
sl@0
|
121 |
TBool isTefScript = EFalse;
|
sl@0
|
122 |
while(iTestSpec.GetNextTest(action))
|
sl@0
|
123 |
{
|
sl@0
|
124 |
iActionCount++;
|
sl@0
|
125 |
iActionNumber++;
|
sl@0
|
126 |
isTefScript = action->iTefScript;
|
sl@0
|
127 |
// action->iTefScript = EFalse;
|
sl@0
|
128 |
delete previousID;
|
sl@0
|
129 |
previousID = currentID;
|
sl@0
|
130 |
currentID = action->iNameInfo->AllocLC();
|
sl@0
|
131 |
|
sl@0
|
132 |
if ( (previousID == NULL) || (*currentID != *previousID) )
|
sl@0
|
133 |
{
|
sl@0
|
134 |
if (previousID != NULL)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
|
sl@0
|
137 |
|
sl@0
|
138 |
if(action->iTefScript)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
iOut->writeString(timeBuf);
|
sl@0
|
141 |
iOut->writeString(_L("Command = END_TESTCASE "));
|
sl@0
|
142 |
}
|
sl@0
|
143 |
iOut->writeString(*previousID);
|
sl@0
|
144 |
if(action->iTefScript)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
iOut->writeString(_L(" ***TestCaseResult = "));
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
if (testCaseResult)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
iOut->writeString(_L("PASS"));
|
sl@0
|
152 |
}
|
sl@0
|
153 |
else
|
sl@0
|
154 |
{
|
sl@0
|
155 |
iOut->writeString(_L("FAIL"));
|
sl@0
|
156 |
}
|
sl@0
|
157 |
iOut->writeString(_L("\r\n"));
|
sl@0
|
158 |
iOut->writeString(_L("\r\n"));
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
|
sl@0
|
162 |
if(action->iTefScript)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
iOut->writeString(timeBuf);
|
sl@0
|
165 |
iOut->writeString(_L("Command = START_TESTCASE "));
|
sl@0
|
166 |
}
|
sl@0
|
167 |
iOut->writeString(*(currentID));
|
sl@0
|
168 |
iOut->writeString(_L("\r\n"));
|
sl@0
|
169 |
testCaseResult = ETrue;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
TRAPD(err, RunTestL(action));
|
sl@0
|
173 |
if (!action->iResult)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
testCaseResult = EFalse;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
if (err != KErrNone)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
FailTestL(action, EFailInTestHandler, err);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
CleanupStack::Pop(currentID);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
if (currentID != NULL)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
|
sl@0
|
187 |
|
sl@0
|
188 |
if(isTefScript)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
iOut->writeString(timeBuf);
|
sl@0
|
191 |
iOut->writeString(_L("Command = END_TESTCASE "));
|
sl@0
|
192 |
}
|
sl@0
|
193 |
iOut->writeString(*currentID);
|
sl@0
|
194 |
if(isTefScript)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
iOut->writeString(_L(" ***TestCaseResult = "));
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
if (testCaseResult)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
iOut->writeString(_L("PASS"));
|
sl@0
|
202 |
}
|
sl@0
|
203 |
else
|
sl@0
|
204 |
{
|
sl@0
|
205 |
iOut->writeString(_L("FAIL"));
|
sl@0
|
206 |
}
|
sl@0
|
207 |
iOut->writeString(_L("\r\n"));
|
sl@0
|
208 |
iOut->writeString(_L("\r\n"));
|
sl@0
|
209 |
}
|
sl@0
|
210 |
delete previousID;
|
sl@0
|
211 |
delete currentID;
|
sl@0
|
212 |
|
sl@0
|
213 |
DisplaySummary();
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
|
sl@0
|
217 |
|
sl@0
|
218 |
void CTestHandler::RunTestL(CTestAction* aAction)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
// If the last test set a new test runner, install it here
|
sl@0
|
221 |
if (iNextTestRunner)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
delete iTestRunner;
|
sl@0
|
224 |
iTestRunner = iNextTestRunner;
|
sl@0
|
225 |
iNextTestRunner = NULL;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
iOut->writeString(_L("Test "));
|
sl@0
|
229 |
iOut->writeNum(iActionNumber);
|
sl@0
|
230 |
iOut->writeNewLine();
|
sl@0
|
231 |
|
sl@0
|
232 |
if (iActionNumber > 1)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
iConsole->Printf(_L(", "));
|
sl@0
|
235 |
}
|
sl@0
|
236 |
iConsole->Printf(_L("%d: "), iActionNumber);
|
sl@0
|
237 |
|
sl@0
|
238 |
aAction->ReportAction();
|
sl@0
|
239 |
aAction->SetTestHandler(*this);
|
sl@0
|
240 |
|
sl@0
|
241 |
TInt preErr = iTestRunner->PerformPrerequisiteL(aAction);
|
sl@0
|
242 |
if ((preErr != KErrNone) && !aAction->iResult)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
FailTestL(aAction, EFailInPrerequisite, preErr);
|
sl@0
|
245 |
return;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
TInt actionErr = 0;
|
sl@0
|
248 |
if (preErr == KErrNone)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
actionErr = iTestRunner->PerformActionL(aAction);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
TInt postErr = iTestRunner->PerformPostrequisiteL(aAction, actionErr);
|
sl@0
|
253 |
// investiage if passing actionErr would make more sense here
|
sl@0
|
254 |
aAction->CheckResult(postErr);
|
sl@0
|
255 |
if (!aAction->iResult)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
FailTestL(aAction, EFailInAction, actionErr);
|
sl@0
|
258 |
return;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
iConsole->Printf(_L("passed"));
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
const TDesC& CTestHandler::GetFailLocationName(TTestFailLocation aLoc)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
_LIT(KTestHandler, "test handler");
|
sl@0
|
267 |
_LIT(KPrerequisite, "prerequisite");
|
sl@0
|
268 |
_LIT(KTestAction, "test action");
|
sl@0
|
269 |
|
sl@0
|
270 |
const TDesC* result = NULL;
|
sl@0
|
271 |
|
sl@0
|
272 |
switch (aLoc)
|
sl@0
|
273 |
{
|
sl@0
|
274 |
case EFailInTestHandler:
|
sl@0
|
275 |
result = &KTestHandler;
|
sl@0
|
276 |
break;
|
sl@0
|
277 |
case EFailInPrerequisite:
|
sl@0
|
278 |
result = &KPrerequisite;
|
sl@0
|
279 |
break;
|
sl@0
|
280 |
case EFailInAction:
|
sl@0
|
281 |
result = &KTestAction;
|
sl@0
|
282 |
break;
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
ASSERT(result);
|
sl@0
|
286 |
return *result;
|
sl@0
|
287 |
}
|
sl@0
|
288 |
|
sl@0
|
289 |
void CTestHandler::FailTestL(CTestAction* aAction, TTestFailLocation aLoc, TInt aErr)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
iOut->writeString(_L("Test failed in "));
|
sl@0
|
292 |
iOut->writeString(GetFailLocationName(aLoc));
|
sl@0
|
293 |
iOut->writeString(_L(": "));
|
sl@0
|
294 |
iOut->writeNum(aErr);
|
sl@0
|
295 |
iOut->writeNewLine();
|
sl@0
|
296 |
|
sl@0
|
297 |
iConsole->Printf(_L("failed"));
|
sl@0
|
298 |
|
sl@0
|
299 |
AppendFailedTestL(iActionNumber, *aAction->iNameInfo);
|
sl@0
|
300 |
if(aAction->ScriptError() == CTestAction::EFileNotFound)
|
sl@0
|
301 |
{
|
sl@0
|
302 |
TBuf<KMaxErrorSize> scriptError;
|
sl@0
|
303 |
aAction->ScriptError(scriptError);
|
sl@0
|
304 |
iOut->writeString(_L("File Not Found \""));
|
sl@0
|
305 |
iOut->writeString(scriptError);
|
sl@0
|
306 |
iOut->writeString(_L("\" in test "));
|
sl@0
|
307 |
iOut->writeNum(iActionNumber);
|
sl@0
|
308 |
iOut->writeNewLine();
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
if (aAction->iKnownFailure)
|
sl@0
|
312 |
{// Expecting a failure because of known defect - record details
|
sl@0
|
313 |
HBufC* name=HBufC::NewLC(aAction->iNameInfo->Length());
|
sl@0
|
314 |
name->Des().Copy(*(aAction->iNameInfo));
|
sl@0
|
315 |
User::LeaveIfError(iKnownDefects.Append(name));
|
sl@0
|
316 |
CleanupStack::Pop(name);
|
sl@0
|
317 |
}
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
void CTestHandler::AppendFailedTestL(TInt aIndex, const TDesC8& aName)
|
sl@0
|
321 |
{
|
sl@0
|
322 |
iFailedTests.Append(aIndex);
|
sl@0
|
323 |
HBufC* name=HBufC::NewLC(aName.Length());
|
sl@0
|
324 |
name->Des().Copy(aName);
|
sl@0
|
325 |
User::LeaveIfError(iFailedTestNames.Append(name));
|
sl@0
|
326 |
CleanupStack::Pop(name);
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
void CTestHandler::DisplaySummary()
|
sl@0
|
330 |
{
|
sl@0
|
331 |
//Display the RTest information
|
sl@0
|
332 |
iConsole->Printf(_L("\n"));
|
sl@0
|
333 |
|
sl@0
|
334 |
// Log the details of tests that failed because of known (deferred) defects
|
sl@0
|
335 |
TInt theFailCount = iKnownDefects.Count();
|
sl@0
|
336 |
if (theFailCount > 0)
|
sl@0
|
337 |
{
|
sl@0
|
338 |
iOut->writeNewLine();
|
sl@0
|
339 |
iOut->writeString(_L("----------------------------------------------------------------------------------"));
|
sl@0
|
340 |
iOut->writeNewLine();
|
sl@0
|
341 |
iOut->writeString(_L("These tests may not pass because of known defects details of which are given below:"));
|
sl@0
|
342 |
iOut->writeNewLine();
|
sl@0
|
343 |
iOut->writeNewLine();
|
sl@0
|
344 |
|
sl@0
|
345 |
TInt index = 0;
|
sl@0
|
346 |
for (; index<theFailCount; index++)
|
sl@0
|
347 |
{
|
sl@0
|
348 |
iOut->writeString(*iKnownDefects[index]);
|
sl@0
|
349 |
iOut->writeNewLine();
|
sl@0
|
350 |
}
|
sl@0
|
351 |
iOut->writeString(_L("----------------------------------------------------------------------------------"));
|
sl@0
|
352 |
iOut->writeNewLine();
|
sl@0
|
353 |
iOut->writeNewLine();
|
sl@0
|
354 |
}
|
sl@0
|
355 |
|
sl@0
|
356 |
// Display the failed tests
|
sl@0
|
357 |
TInt iEnd = iFailedTests.Count();
|
sl@0
|
358 |
if (iEnd!=0)
|
sl@0
|
359 |
{
|
sl@0
|
360 |
iOut->writeString(_L(" Failed tests:-"));
|
sl@0
|
361 |
iOut->writeNewLine();
|
sl@0
|
362 |
for (TInt i = 0; i < iEnd; i++)
|
sl@0
|
363 |
{
|
sl@0
|
364 |
iOut->writeNum(iFailedTests[i]);
|
sl@0
|
365 |
iOut->writeSpaces(2);
|
sl@0
|
366 |
iOut->writeString(*iFailedTestNames[i]);
|
sl@0
|
367 |
iOut->writeNewLine();
|
sl@0
|
368 |
}
|
sl@0
|
369 |
iOut->writeNewLine();
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
// Summary line is now printed in CTestSetup
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
CBase* CTestHandler::SharedData() const
|
sl@0
|
376 |
{
|
sl@0
|
377 |
return iSharedData;
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
void CTestHandler::SetSharedData(CBase* aData)
|
sl@0
|
381 |
{
|
sl@0
|
382 |
iSharedData = aData;
|
sl@0
|
383 |
}
|
sl@0
|
384 |
|
sl@0
|
385 |
EXPORT_C void CTestHandler::SetTestRunnerL(CTestRunner *aTestRunner)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
/* We can't set iTestRunner directly, as we may be called while we're inside
|
sl@0
|
388 |
* one of its methods. */
|
sl@0
|
389 |
|
sl@0
|
390 |
// This method can be called twice in a row, eg if the -o option is used
|
sl@0
|
391 |
if (iNextTestRunner)
|
sl@0
|
392 |
{
|
sl@0
|
393 |
delete iNextTestRunner;
|
sl@0
|
394 |
iNextTestRunner = NULL;
|
sl@0
|
395 |
}
|
sl@0
|
396 |
|
sl@0
|
397 |
iNextTestRunner = aTestRunner ? aTestRunner : new (ELeave) CTestRunner(*iOut);
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
void CTestHandler::SetHeapMark(TInt aAllocCount)
|
sl@0
|
401 |
{
|
sl@0
|
402 |
iHeapMark = aAllocCount;
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
TInt CTestHandler::HeapMark()
|
sl@0
|
406 |
{
|
sl@0
|
407 |
return iHeapMark;
|
sl@0
|
408 |
}
|