First public contribution.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __T_TESTRUNNER_H__
20 #define __T_TESTRUNNER_H__
28 * A class that is used to invoke individual tests. This can be derived to
29 * implement OOM testing, cancel testing and the like. The default
30 * implementation just runs the test.
32 * One instance of this class is used to run multiple tests. A CTestHandler
33 * owns an instance of this class (or a class derived from it).
35 * Note that this class provides a synchronous interface, which is implemented
36 * in terms of CTestActions's asynchronous interface.
38 class CTestRunner : public CActive
41 IMPORT_C CTestRunner(Output& aOut);
42 IMPORT_C virtual ~CTestRunner();
44 // The following methods return the status code from test action, but leave
45 // if there is an error in the test handler.
47 IMPORT_C virtual TInt PerformPrerequisiteL(CTestAction* aAction);
48 IMPORT_C virtual TInt PerformActionL(CTestAction* aAction);
49 IMPORT_C virtual TInt PerformPostrequisiteL(CTestAction* aAction, TInt aInitialStatus);
52 /// Typedef for any of CTestAction's async methods
53 typedef void (CTestAction::*TTestMethod)(TRequestStatus&);
55 /// Run one of CTestAction's async methods synchronously and return the result
56 TInt RunAsyncMethodL(TTestMethod aMethod, CTestAction* aAction, TInt aInitialStatus);
58 /// Run the active scheduler until our request is completed
61 /// Run the active scheduler to process one outstanding request
62 /// @return If our request has been completed yet
63 TBool StepScheduler();
69 IMPORT_C virtual TInt RunError(TInt aError);
70 IMPORT_C virtual void DoCancel();
71 IMPORT_C virtual void RunL();
74 /// Whether an async method is currently being executed by the active scheduler
75 TBool iSchedulerRunning;
79 * Abstract base class for a test runner that implements OOM testing.
81 class COOMTestRunnerBase : public CTestRunner
84 IMPORT_C virtual ~COOMTestRunnerBase();
87 IMPORT_C COOMTestRunnerBase(Output& aOut);
89 /// Called at the start of the OOM test
90 virtual void StartOOMTestL() = 0;
91 /// Increment the simulated heap fail point
92 virtual void IncHeapFailPoint() = 0;
93 /// Reset simulated heap failures
94 virtual void ResetHeapFail() = 0;
95 /// Get the number of cells currently allocated
96 virtual TInt AllocCount() = 0;
97 /// Called at the end of the OOM test
98 virtual void EndOOMTestL() = 0;
101 // Override CTestRunner interface
102 IMPORT_C virtual TInt PerformActionL(CTestAction* aAction);
106 * Implementation of an test runner for OOM testing.
108 class COOMTestRunner : public COOMTestRunnerBase
111 COOMTestRunner(Output& aOut);
112 virtual ~COOMTestRunner();
115 // Implement interface defined by COOMTestRunnerBase
116 virtual void StartOOMTestL();
117 virtual void IncHeapFailPoint();
118 virtual void ResetHeapFail();
119 virtual TInt AllocCount();
120 virtual void EndOOMTestL();
126 /// A test runner that performs cancellation tests.
127 class CCancelTestRunner : public CTestRunner
130 CCancelTestRunner(Output& aOut);
131 virtual ~CCancelTestRunner();
133 virtual TInt PerformActionL(CTestAction* aAction);
136 TInt RunAndCancelPeformActionMethod(CTestAction* aAction, TInt aInitialStatus,
137 TInt aCancelStep, TInt& aStep);
138 TInt RunAndCancelTestAction(CTestAction* aAction, TInt aCancelStep);
141 TBool iAbort; ///< Set when we want to abort the test