sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This file contains the definition of the class CTestManager
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@test
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __TESTMANAGER_H__
|
sl@0
|
23 |
#define __TESTMANAGER_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
#include <e32test.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <ecom/test_bed/componentinfo.h>
|
sl@0
|
29 |
#include <ecom/test_bed/datalogger.h>
|
sl@0
|
30 |
#include <ecom/test_bed/componenttester.h>
|
sl@0
|
31 |
#include <ecom/test_bed/componenttestobserver.h>
|
sl@0
|
32 |
#include <ecom/test_bed/managerobserver.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
@internalAll
|
sl@0
|
36 |
Comments : Active object which launches all the tests which the TestController has
|
sl@0
|
37 |
discovered. Also, acts as an observer on each CComponentTester waiting for a Complete
|
sl@0
|
38 |
message to indicate the test has finished.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
|
sl@0
|
41 |
NONSHARABLE_CLASS(CTestManager) : public CActive, public MComponentTestObserver
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
@fn static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
46 |
CDataLogger& aDataLogger,
|
sl@0
|
47 |
MManagerObserver& aObserver,
|
sl@0
|
48 |
RTest* aRTest = NULL);
|
sl@0
|
49 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
50 |
CleanupStack
|
sl@0
|
51 |
@since 7.0
|
sl@0
|
52 |
@param aTestList List of tests available to be performed
|
sl@0
|
53 |
@param aDataLogger Provides the file logging functionality
|
sl@0
|
54 |
@param aObserver The object to inform when all the tests are complete
|
sl@0
|
55 |
@param aRTest Optional RTest object to use in check unit test results
|
sl@0
|
56 |
@return CTestManager* A pointer to the newly created class
|
sl@0
|
57 |
@pre None
|
sl@0
|
58 |
@post Nothing is left on the CleanupStack
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
|
sl@0
|
61 |
static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
62 |
CDataLogger& aDataLogger,
|
sl@0
|
63 |
MManagerObserver& aObserver,
|
sl@0
|
64 |
RTest* aRTest = NULL);
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
@fn ~CTestManager()
|
sl@0
|
68 |
Intended Usage : Standard destructor
|
sl@0
|
69 |
@since 7.0
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
|
sl@0
|
72 |
~CTestManager();
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
@fn void RunTests(RPointerArray<TTestInfo>* aTests)
|
sl@0
|
76 |
Intended Usage : Prepare for the test run.
|
sl@0
|
77 |
Error Condition :
|
sl@0
|
78 |
@since 7.0
|
sl@0
|
79 |
@param aTests The list of tests to run, 0 means all tests
|
sl@0
|
80 |
@pre None
|
sl@0
|
81 |
@post This is active and awaiting call to RunL() by the active scheduler
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
|
sl@0
|
84 |
void RunTests(RPointerArray<TTestInfo>* aTests);
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
@fn void Complete(CComponentTester* aTester, TInt aUnitTestId)
|
sl@0
|
88 |
Intended Usage : Callback from the CComponentTester being observed to indicate
|
sl@0
|
89 |
that it has completed a unit test
|
sl@0
|
90 |
@since 7.0
|
sl@0
|
91 |
@param aTester The CComponentTester which is signalling
|
sl@0
|
92 |
@param aUnitTestId The Id of the completed unit test
|
sl@0
|
93 |
@pre The specified unit test has been launched
|
sl@0
|
94 |
@post If all unit tests are complete then the specified CComponentTester has been
|
sl@0
|
95 |
added to the Garbage list ready for deletion at the next opportunity, this will also
|
sl@0
|
96 |
unload the appropriate library. Otherwise launch the next unit test.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
|
sl@0
|
99 |
void Complete(CComponentTester* aTester, TInt aUnitTestId);
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
@fn StartedTests() const
|
sl@0
|
103 |
Intended Usage : Returns a flag indicating whether any tests have been started yet
|
sl@0
|
104 |
@since 7.0
|
sl@0
|
105 |
@return ETrue if any tests have been launched, EFalse otherwise
|
sl@0
|
106 |
@pre This object is fully constructed
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
TBool StartedTests() const;
|
sl@0
|
109 |
|
sl@0
|
110 |
protected:
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
@fn CTestManager(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
113 |
CDataLogger& aDataLogger,
|
sl@0
|
114 |
MManagerObserver& aObserver,
|
sl@0
|
115 |
RTest* aRTest = NULL);
|
sl@0
|
116 |
Intended Usage : Constructor
|
sl@0
|
117 |
@since 7.0
|
sl@0
|
118 |
@param aTestList The list of tests to be launched by this CTestManager
|
sl@0
|
119 |
@param aDataLogger The file logging capability
|
sl@0
|
120 |
@param aObserver The class to inform when all the tests are complete
|
sl@0
|
121 |
@param aRTest Optional RTest object to use in check unit test results
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
|
sl@0
|
124 |
CTestManager(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
125 |
CDataLogger& aDataLogger,
|
sl@0
|
126 |
MManagerObserver& aObserver,
|
sl@0
|
127 |
RTest* aRTest = NULL);
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
@fn void ConstructL()
|
sl@0
|
131 |
Intended Usage : Second phase of safe two-phase construction method
|
sl@0
|
132 |
@since 7.0
|
sl@0
|
133 |
@pre First phase of construction is complete
|
sl@0
|
134 |
@post Object is fully constructed and initialized
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
|
sl@0
|
137 |
void ConstructL();
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
@fn void RunL()
|
sl@0
|
141 |
Intended Usage : Used to launch each test, in turn, and then to stop the active
|
sl@0
|
142 |
scheduler when all tests have completed
|
sl@0
|
143 |
@since 7.0
|
sl@0
|
144 |
@pre None
|
sl@0
|
145 |
@post Initially each run of RunL() will result in a ComponentTester being created and
|
sl@0
|
146 |
launched. Once all the tests have launched RunL() will only be called at completion
|
sl@0
|
147 |
to stop the active scheduler.
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
|
sl@0
|
150 |
void RunL();
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
@fn void DoCancel()
|
sl@0
|
154 |
Intended Usage : Standard Active Object method used to cancel any outstanding requests
|
sl@0
|
155 |
Error Condition :
|
sl@0
|
156 |
@since 7.0
|
sl@0
|
157 |
@pre Object is fully constructed and initialised
|
sl@0
|
158 |
@post Any outstanding requests have been cancelled.
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
|
sl@0
|
161 |
void DoCancel();
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
@fn void TestComponentL(TInt aComponentIndex)
|
sl@0
|
165 |
Intended Usage : Loads the appropriate library and test the specified component
|
sl@0
|
166 |
@since 7.0
|
sl@0
|
167 |
@param aComponentIndex The zero base index of the component to test
|
sl@0
|
168 |
@pre Object is fully constructed and initialised
|
sl@0
|
169 |
@post Specified component test has been activated to run
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
|
sl@0
|
172 |
void TestComponentL(TInt aComponentIndex);
|
sl@0
|
173 |
|
sl@0
|
174 |
/**
|
sl@0
|
175 |
@fn RunError(TInt aErrorCode)
|
sl@0
|
176 |
Intended Usage : Handles the situation where the RunL leaves. RunL will only leave
|
sl@0
|
177 |
through a leave from TestComponentL, this will occur if the test to be run fails to
|
sl@0
|
178 |
construct.
|
sl@0
|
179 |
Error Condition : None
|
sl@0
|
180 |
@since 7.0
|
sl@0
|
181 |
@param aErrorCode The error code which RunL left with.
|
sl@0
|
182 |
@return KErrNone because we handle the error.
|
sl@0
|
183 |
@pre This object is fully constructed and initialized
|
sl@0
|
184 |
@post The test which failed to construct is cleaned up.
|
sl@0
|
185 |
*/
|
sl@0
|
186 |
|
sl@0
|
187 |
TInt RunError(TInt aErrorCode);
|
sl@0
|
188 |
|
sl@0
|
189 |
protected:
|
sl@0
|
190 |
/** The observer to inform when all tests are complete */
|
sl@0
|
191 |
MManagerObserver& iObserver;
|
sl@0
|
192 |
/** List of all the test to be run*/
|
sl@0
|
193 |
|
sl@0
|
194 |
RPointerArray<CComponentInfo>* iTestList;
|
sl@0
|
195 |
/** The index (in iTestList) of the test which is to be loaded next*/
|
sl@0
|
196 |
|
sl@0
|
197 |
TInt iCurrentTestLoad;
|
sl@0
|
198 |
/** The test logging mechanism*/
|
sl@0
|
199 |
|
sl@0
|
200 |
CDataLogger& iDataLogger;
|
sl@0
|
201 |
/** Flag indicating that all tests have completed*/
|
sl@0
|
202 |
|
sl@0
|
203 |
TBool iAmStopping;
|
sl@0
|
204 |
/** List of the tests to be run, NULL means run all tests */
|
sl@0
|
205 |
|
sl@0
|
206 |
RPointerArray<TTestInfo>* iTestsToRun;
|
sl@0
|
207 |
/** The test which is currently being run */
|
sl@0
|
208 |
|
sl@0
|
209 |
CComponentTester* iCurrentTester;
|
sl@0
|
210 |
/** Optional reference to the RTest object used in the EXE test harness code which
|
sl@0
|
211 |
kicked off this test framework */
|
sl@0
|
212 |
RTest* iRTest;
|
sl@0
|
213 |
|
sl@0
|
214 |
friend class TTestManager_StateAccessor;
|
sl@0
|
215 |
};
|
sl@0
|
216 |
|
sl@0
|
217 |
#endif
|