sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2004-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_testrunner.h"
|
sl@0
|
20 |
#include "t_testaction.h"
|
sl@0
|
21 |
#include "t_output.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
// CTestRunner /////////////////////////////////////////////////////////////////
|
sl@0
|
24 |
|
sl@0
|
25 |
EXPORT_C CTestRunner::CTestRunner(Output& aOut) :
|
sl@0
|
26 |
CActive(EPriorityNormal),
|
sl@0
|
27 |
iOut(aOut)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
CActiveScheduler::Add(this);
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C CTestRunner::~CTestRunner()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
Cancel();
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C TInt CTestRunner::PerformPrerequisiteL(CTestAction* aAction)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
TInt err = KErrNone;
|
sl@0
|
40 |
while (!aAction->Finished() && aAction->iActionState == CTestAction::EPrerequisite)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
err = RunAsyncMethodL(&CTestAction::PerformPrerequisite, aAction, err);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
return err;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C TInt CTestRunner::PerformActionL(CTestAction* aAction)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
TInt err = KErrNone;
|
sl@0
|
50 |
while (!aAction->Finished() && aAction->iActionState == CTestAction::EAction)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
err = RunAsyncMethodL(&CTestAction::PerformAction, aAction, err);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
return err;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
EXPORT_C TInt CTestRunner::PerformPostrequisiteL(CTestAction* aAction, TInt aInitialStatus)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TInt err = aInitialStatus;
|
sl@0
|
60 |
while (!aAction->Finished() && aAction->iActionState == CTestAction::EPostrequisite)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
err = RunAsyncMethodL(&CTestAction::PerformPostrequisite, aAction, err);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
return err;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
TInt CTestRunner::RunAsyncMethodL(TTestMethod aMethod, CTestAction* aAction, TInt aInitialStatus)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
iStatus = aInitialStatus;
|
sl@0
|
70 |
TRAPD(err, (aAction->*aMethod)(iStatus));
|
sl@0
|
71 |
if (err != KErrNone)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
iStatus = err;
|
sl@0
|
74 |
if (err != KErrNoMemory)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
aAction->iActionState = CTestAction::EPostrequisite;
|
sl@0
|
77 |
}
|
sl@0
|
78 |
}
|
sl@0
|
79 |
else
|
sl@0
|
80 |
{
|
sl@0
|
81 |
SetActive();
|
sl@0
|
82 |
RunSchedulerL();
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
return iStatus.Int();
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void CTestRunner::RunSchedulerL()
|
sl@0
|
89 |
{
|
sl@0
|
90 |
iSchedulerRunning = ETrue;
|
sl@0
|
91 |
CActiveScheduler::Start();
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
TBool CTestRunner::StepScheduler()
|
sl@0
|
95 |
{
|
sl@0
|
96 |
User::WaitForAnyRequest();
|
sl@0
|
97 |
TInt err;
|
sl@0
|
98 |
if (!CActiveScheduler::Current()->RunIfReady(err, EPriorityNull))
|
sl@0
|
99 |
{
|
sl@0
|
100 |
User::Invariant();
|
sl@0
|
101 |
}
|
sl@0
|
102 |
return !IsActive();
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
EXPORT_C void CTestRunner::RunL()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
if (iSchedulerRunning)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
iSchedulerRunning = EFalse;
|
sl@0
|
110 |
CActiveScheduler::Stop();
|
sl@0
|
111 |
}
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
EXPORT_C TInt CTestRunner::RunError(TInt /*aError*/)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
return KErrGeneral; // RunL() can never leave
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
EXPORT_C void CTestRunner::DoCancel()
|
sl@0
|
120 |
{
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
// COOMTestRunnerBase ////////////////////////////////////////////////////////////////////
|
sl@0
|
124 |
|
sl@0
|
125 |
/// Max OOM fail count, to prevent runaway tests
|
sl@0
|
126 |
const TInt KOOMFailLimit = 10000;
|
sl@0
|
127 |
|
sl@0
|
128 |
EXPORT_C COOMTestRunnerBase::COOMTestRunnerBase(Output& aOut) :
|
sl@0
|
129 |
CTestRunner(aOut)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
EXPORT_C COOMTestRunnerBase::~COOMTestRunnerBase()
|
sl@0
|
134 |
{
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
EXPORT_C TInt COOMTestRunnerBase::PerformActionL(CTestAction* aAction)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
iOut.writeString(_L("Running OOM test..."));
|
sl@0
|
140 |
iOut.writeNewLine();
|
sl@0
|
141 |
iOut.writeString(_L("Fail point: Heap used: Action state: Status:"));
|
sl@0
|
142 |
iOut.writeNewLine();
|
sl@0
|
143 |
|
sl@0
|
144 |
StartOOMTestL();
|
sl@0
|
145 |
|
sl@0
|
146 |
TInt allocStart = AllocCount();
|
sl@0
|
147 |
|
sl@0
|
148 |
TInt failCount;
|
sl@0
|
149 |
TInt err = KErrNone;
|
sl@0
|
150 |
for (failCount = 1 ; failCount < KOOMFailLimit ; ++failCount)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
IncHeapFailPoint();
|
sl@0
|
153 |
|
sl@0
|
154 |
err = KErrNone;
|
sl@0
|
155 |
TInt actionState = 0;
|
sl@0
|
156 |
while (!aAction->Finished() && aAction->iActionState == CTestAction::EAction && err != KErrNoMemory)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
++actionState;
|
sl@0
|
159 |
err = RunAsyncMethodL(&CTestAction::PerformAction, aAction, err);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
TInt allocEnd = AllocCount();
|
sl@0
|
163 |
ResetHeapFail();
|
sl@0
|
164 |
|
sl@0
|
165 |
TBuf<128> buffer;
|
sl@0
|
166 |
buffer.Format(_L(" %8d %8d %8d %8d"), failCount, allocEnd - allocStart, actionState, err);
|
sl@0
|
167 |
iOut.writeString(buffer);
|
sl@0
|
168 |
iOut.writeNewLine();
|
sl@0
|
169 |
|
sl@0
|
170 |
if (err != KErrNoMemory || aAction->Finished() || aAction->iActionState != CTestAction::EAction)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
// Test finished
|
sl@0
|
173 |
break;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
aAction->AfterOOMFailure();
|
sl@0
|
177 |
aAction->Reset();
|
sl@0
|
178 |
aAction->ResetState();
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
EndOOMTestL();
|
sl@0
|
182 |
|
sl@0
|
183 |
if (failCount == KOOMFailLimit)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
// Runaway OOM test
|
sl@0
|
186 |
iOut.writeString(_L("OOM test failed to terminate"));
|
sl@0
|
187 |
iOut.writeNewLine();
|
sl@0
|
188 |
return KErrGeneral;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
return err;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
// COOMTestRunner ////////////////////////////////////////////////////////////////////////
|
sl@0
|
195 |
|
sl@0
|
196 |
COOMTestRunner::COOMTestRunner(Output& aOut) :
|
sl@0
|
197 |
COOMTestRunnerBase(aOut)
|
sl@0
|
198 |
{
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
COOMTestRunner::~COOMTestRunner()
|
sl@0
|
202 |
{
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
void COOMTestRunner::StartOOMTestL()
|
sl@0
|
206 |
{
|
sl@0
|
207 |
iFailPoint = 0;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
void COOMTestRunner::IncHeapFailPoint()
|
sl@0
|
211 |
{
|
sl@0
|
212 |
++iFailPoint;
|
sl@0
|
213 |
__UHEAP_SETFAIL(RHeap::EDeterministic, iFailPoint);
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
void COOMTestRunner::ResetHeapFail()
|
sl@0
|
217 |
{
|
sl@0
|
218 |
__UHEAP_RESET;
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
TInt COOMTestRunner::AllocCount()
|
sl@0
|
222 |
{
|
sl@0
|
223 |
return User::CountAllocCells();
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
void COOMTestRunner::EndOOMTestL()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
// CCancelTestRunner /////////////////////////////////////////////////////////////////////
|
sl@0
|
231 |
|
sl@0
|
232 |
/// Max cancel step, to prevent runaway tests
|
sl@0
|
233 |
const TInt KCancelStepLimit = 200;
|
sl@0
|
234 |
|
sl@0
|
235 |
CCancelTestRunner::CCancelTestRunner(Output& aOut) :
|
sl@0
|
236 |
CTestRunner(aOut)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
CCancelTestRunner::~CCancelTestRunner()
|
sl@0
|
241 |
{
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
/**
|
sl@0
|
245 |
* Run the async PerformAction method for a specified number of steps and then
|
sl@0
|
246 |
* cancel it. This does the equivalent of RunAsyncMethod, but calling
|
sl@0
|
247 |
* PerformAction and cancelling it.
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
TInt CCancelTestRunner::RunAndCancelPeformActionMethod(CTestAction* aAction, TInt aInitialStatus,
|
sl@0
|
250 |
TInt aCancelStep, TInt& aStep)
|
sl@0
|
251 |
{
|
sl@0
|
252 |
iStatus = aInitialStatus;
|
sl@0
|
253 |
TRAPD(err, aAction->PerformAction(iStatus));
|
sl@0
|
254 |
if (err != KErrNone)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
return err;
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
SetActive();
|
sl@0
|
260 |
|
sl@0
|
261 |
// This is our equivalent of an active scheduler loop
|
sl@0
|
262 |
while (IsActive())
|
sl@0
|
263 |
{
|
sl@0
|
264 |
StepScheduler();
|
sl@0
|
265 |
|
sl@0
|
266 |
// Check if we can cancel this step
|
sl@0
|
267 |
if (iStatus.Int() == KRequestPending)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
++aStep;
|
sl@0
|
270 |
// Check if this is the step we want to cancel
|
sl@0
|
271 |
if (aStep == aCancelStep)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
// Cancel request
|
sl@0
|
274 |
aAction->PerformCancel();
|
sl@0
|
275 |
|
sl@0
|
276 |
// Check request completed immediately
|
sl@0
|
277 |
if (iStatus.Int() == KRequestPending)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
iOut.writeString(_L("Cancelled request not completed immediately!"));
|
sl@0
|
280 |
iOut.writeNewLine();
|
sl@0
|
281 |
iAbort = ETrue;
|
sl@0
|
282 |
}
|
sl@0
|
283 |
}
|
sl@0
|
284 |
}
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
return iAbort ? KErrGeneral : iStatus.Int();
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
* Run the test action for a specified number of steps and then cancel it.
|
sl@0
|
292 |
*/
|
sl@0
|
293 |
TInt CCancelTestRunner::RunAndCancelTestAction(CTestAction* aAction, TInt aCancelStep)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
TInt err = KErrNone;
|
sl@0
|
296 |
TInt step = 0;
|
sl@0
|
297 |
TInt actionState = 0;
|
sl@0
|
298 |
while (!iAbort && !aAction->Finished() && aAction->iActionState == CTestAction::EAction && err != KErrCancel)
|
sl@0
|
299 |
{
|
sl@0
|
300 |
++actionState;
|
sl@0
|
301 |
err = RunAndCancelPeformActionMethod(aAction, err, aCancelStep, step);
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
TBuf<128> buffer;
|
sl@0
|
305 |
buffer.Format(_L(" %8d %8d %8d %8d"), aCancelStep, step, actionState, err);
|
sl@0
|
306 |
iOut.writeString(buffer);
|
sl@0
|
307 |
iOut.writeNewLine();
|
sl@0
|
308 |
|
sl@0
|
309 |
return err;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
TInt CCancelTestRunner::PerformActionL(CTestAction* aAction)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
iOut.writeString(_L("Running cancellation test..."));
|
sl@0
|
315 |
iOut.writeNewLine();
|
sl@0
|
316 |
iOut.writeString(_L("Fail step: Total steps: Action state: Status:"));
|
sl@0
|
317 |
iOut.writeNewLine();
|
sl@0
|
318 |
|
sl@0
|
319 |
iAbort = EFalse;
|
sl@0
|
320 |
for (TInt step = 1 ; step <= KCancelStepLimit ; ++step)
|
sl@0
|
321 |
{
|
sl@0
|
322 |
TInt err = RunAndCancelTestAction(aAction, step);
|
sl@0
|
323 |
|
sl@0
|
324 |
if (iAbort || aAction->Finished() || aAction->iActionState != CTestAction::EAction)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
return err;
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
aAction->Reset();
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
// Runaway cancel test
|
sl@0
|
333 |
iOut.writeString(_L("Cancel test failed to terminate"));
|
sl@0
|
334 |
iOut.writeNewLine();
|
sl@0
|
335 |
return KErrGeneral;
|
sl@0
|
336 |
}
|