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 |
#ifndef __T_TESTRUNNER_H__
|
sl@0
|
20 |
#define __T_TESTRUNNER_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
class Output;
|
sl@0
|
25 |
class CTestAction;
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
* A class that is used to invoke individual tests. This can be derived to
|
sl@0
|
29 |
* implement OOM testing, cancel testing and the like. The default
|
sl@0
|
30 |
* implementation just runs the test.
|
sl@0
|
31 |
*
|
sl@0
|
32 |
* One instance of this class is used to run multiple tests. A CTestHandler
|
sl@0
|
33 |
* owns an instance of this class (or a class derived from it).
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* Note that this class provides a synchronous interface, which is implemented
|
sl@0
|
36 |
* in terms of CTestActions's asynchronous interface.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
class CTestRunner : public CActive
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
IMPORT_C CTestRunner(Output& aOut);
|
sl@0
|
42 |
IMPORT_C virtual ~CTestRunner();
|
sl@0
|
43 |
|
sl@0
|
44 |
// The following methods return the status code from test action, but leave
|
sl@0
|
45 |
// if there is an error in the test handler.
|
sl@0
|
46 |
|
sl@0
|
47 |
IMPORT_C virtual TInt PerformPrerequisiteL(CTestAction* aAction);
|
sl@0
|
48 |
IMPORT_C virtual TInt PerformActionL(CTestAction* aAction);
|
sl@0
|
49 |
IMPORT_C virtual TInt PerformPostrequisiteL(CTestAction* aAction, TInt aInitialStatus);
|
sl@0
|
50 |
|
sl@0
|
51 |
protected:
|
sl@0
|
52 |
/// Typedef for any of CTestAction's async methods
|
sl@0
|
53 |
typedef void (CTestAction::*TTestMethod)(TRequestStatus&);
|
sl@0
|
54 |
|
sl@0
|
55 |
/// Run one of CTestAction's async methods synchronously and return the result
|
sl@0
|
56 |
TInt RunAsyncMethodL(TTestMethod aMethod, CTestAction* aAction, TInt aInitialStatus);
|
sl@0
|
57 |
|
sl@0
|
58 |
/// Run the active scheduler until our request is completed
|
sl@0
|
59 |
void RunSchedulerL();
|
sl@0
|
60 |
|
sl@0
|
61 |
/// Run the active scheduler to process one outstanding request
|
sl@0
|
62 |
/// @return If our request has been completed yet
|
sl@0
|
63 |
TBool StepScheduler();
|
sl@0
|
64 |
|
sl@0
|
65 |
protected:
|
sl@0
|
66 |
Output& iOut;
|
sl@0
|
67 |
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
IMPORT_C virtual TInt RunError(TInt aError);
|
sl@0
|
70 |
IMPORT_C virtual void DoCancel();
|
sl@0
|
71 |
IMPORT_C virtual void RunL();
|
sl@0
|
72 |
|
sl@0
|
73 |
private:
|
sl@0
|
74 |
/// Whether an async method is currently being executed by the active scheduler
|
sl@0
|
75 |
TBool iSchedulerRunning;
|
sl@0
|
76 |
};
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
* Abstract base class for a test runner that implements OOM testing.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
class COOMTestRunnerBase : public CTestRunner
|
sl@0
|
82 |
{
|
sl@0
|
83 |
public:
|
sl@0
|
84 |
IMPORT_C virtual ~COOMTestRunnerBase();
|
sl@0
|
85 |
|
sl@0
|
86 |
protected:
|
sl@0
|
87 |
IMPORT_C COOMTestRunnerBase(Output& aOut);
|
sl@0
|
88 |
|
sl@0
|
89 |
/// Called at the start of the OOM test
|
sl@0
|
90 |
virtual void StartOOMTestL() = 0;
|
sl@0
|
91 |
/// Increment the simulated heap fail point
|
sl@0
|
92 |
virtual void IncHeapFailPoint() = 0;
|
sl@0
|
93 |
/// Reset simulated heap failures
|
sl@0
|
94 |
virtual void ResetHeapFail() = 0;
|
sl@0
|
95 |
/// Get the number of cells currently allocated
|
sl@0
|
96 |
virtual TInt AllocCount() = 0;
|
sl@0
|
97 |
/// Called at the end of the OOM test
|
sl@0
|
98 |
virtual void EndOOMTestL() = 0;
|
sl@0
|
99 |
|
sl@0
|
100 |
private:
|
sl@0
|
101 |
// Override CTestRunner interface
|
sl@0
|
102 |
IMPORT_C virtual TInt PerformActionL(CTestAction* aAction);
|
sl@0
|
103 |
};
|
sl@0
|
104 |
|
sl@0
|
105 |
/**
|
sl@0
|
106 |
* Implementation of an test runner for OOM testing.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
class COOMTestRunner : public COOMTestRunnerBase
|
sl@0
|
109 |
{
|
sl@0
|
110 |
public:
|
sl@0
|
111 |
COOMTestRunner(Output& aOut);
|
sl@0
|
112 |
virtual ~COOMTestRunner();
|
sl@0
|
113 |
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
// Implement interface defined by COOMTestRunnerBase
|
sl@0
|
116 |
virtual void StartOOMTestL();
|
sl@0
|
117 |
virtual void IncHeapFailPoint();
|
sl@0
|
118 |
virtual void ResetHeapFail();
|
sl@0
|
119 |
virtual TInt AllocCount();
|
sl@0
|
120 |
virtual void EndOOMTestL();
|
sl@0
|
121 |
|
sl@0
|
122 |
private:
|
sl@0
|
123 |
TInt iFailPoint;
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
/// A test runner that performs cancellation tests.
|
sl@0
|
127 |
class CCancelTestRunner : public CTestRunner
|
sl@0
|
128 |
{
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
CCancelTestRunner(Output& aOut);
|
sl@0
|
131 |
virtual ~CCancelTestRunner();
|
sl@0
|
132 |
|
sl@0
|
133 |
virtual TInt PerformActionL(CTestAction* aAction);
|
sl@0
|
134 |
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
TInt RunAndCancelPeformActionMethod(CTestAction* aAction, TInt aInitialStatus,
|
sl@0
|
137 |
TInt aCancelStep, TInt& aStep);
|
sl@0
|
138 |
TInt RunAndCancelTestAction(CTestAction* aAction, TInt aCancelStep);
|
sl@0
|
139 |
|
sl@0
|
140 |
private:
|
sl@0
|
141 |
TBool iAbort; ///< Set when we want to abort the test
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
#endif
|