Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the definition of the class CTestManager
22 #ifndef __TESTMANAGER_H__
23 #define __TESTMANAGER_H__
28 #include <ecom/test_bed/componentinfo.h>
29 #include <ecom/test_bed/datalogger.h>
30 #include <ecom/test_bed/componenttester.h>
31 #include <ecom/test_bed/componenttestobserver.h>
32 #include <ecom/test_bed/managerobserver.h>
36 Comments : Active object which launches all the tests which the TestController has
37 discovered. Also, acts as an observer on each CComponentTester waiting for a Complete
38 message to indicate the test has finished.
41 NONSHARABLE_CLASS(CTestManager) : public CActive, public MComponentTestObserver
45 @fn static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
46 CDataLogger& aDataLogger,
47 MManagerObserver& aObserver,
48 RTest* aRTest = NULL);
49 Intended Usage : Standard two-phase construction which leaves nothing on the
52 @param aTestList List of tests available to be performed
53 @param aDataLogger Provides the file logging functionality
54 @param aObserver The object to inform when all the tests are complete
55 @param aRTest Optional RTest object to use in check unit test results
56 @return CTestManager* A pointer to the newly created class
58 @post Nothing is left on the CleanupStack
61 static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
62 CDataLogger& aDataLogger,
63 MManagerObserver& aObserver,
64 RTest* aRTest = NULL);
68 Intended Usage : Standard destructor
75 @fn void RunTests(RPointerArray<TTestInfo>* aTests)
76 Intended Usage : Prepare for the test run.
79 @param aTests The list of tests to run, 0 means all tests
81 @post This is active and awaiting call to RunL() by the active scheduler
84 void RunTests(RPointerArray<TTestInfo>* aTests);
87 @fn void Complete(CComponentTester* aTester, TInt aUnitTestId)
88 Intended Usage : Callback from the CComponentTester being observed to indicate
89 that it has completed a unit test
91 @param aTester The CComponentTester which is signalling
92 @param aUnitTestId The Id of the completed unit test
93 @pre The specified unit test has been launched
94 @post If all unit tests are complete then the specified CComponentTester has been
95 added to the Garbage list ready for deletion at the next opportunity, this will also
96 unload the appropriate library. Otherwise launch the next unit test.
99 void Complete(CComponentTester* aTester, TInt aUnitTestId);
102 @fn StartedTests() const
103 Intended Usage : Returns a flag indicating whether any tests have been started yet
105 @return ETrue if any tests have been launched, EFalse otherwise
106 @pre This object is fully constructed
108 TBool StartedTests() const;
112 @fn CTestManager(RPointerArray<CComponentInfo>* aTestList,
113 CDataLogger& aDataLogger,
114 MManagerObserver& aObserver,
115 RTest* aRTest = NULL);
116 Intended Usage : Constructor
118 @param aTestList The list of tests to be launched by this CTestManager
119 @param aDataLogger The file logging capability
120 @param aObserver The class to inform when all the tests are complete
121 @param aRTest Optional RTest object to use in check unit test results
124 CTestManager(RPointerArray<CComponentInfo>* aTestList,
125 CDataLogger& aDataLogger,
126 MManagerObserver& aObserver,
127 RTest* aRTest = NULL);
130 @fn void ConstructL()
131 Intended Usage : Second phase of safe two-phase construction method
133 @pre First phase of construction is complete
134 @post Object is fully constructed and initialized
141 Intended Usage : Used to launch each test, in turn, and then to stop the active
142 scheduler when all tests have completed
145 @post Initially each run of RunL() will result in a ComponentTester being created and
146 launched. Once all the tests have launched RunL() will only be called at completion
147 to stop the active scheduler.
154 Intended Usage : Standard Active Object method used to cancel any outstanding requests
157 @pre Object is fully constructed and initialised
158 @post Any outstanding requests have been cancelled.
164 @fn void TestComponentL(TInt aComponentIndex)
165 Intended Usage : Loads the appropriate library and test the specified component
167 @param aComponentIndex The zero base index of the component to test
168 @pre Object is fully constructed and initialised
169 @post Specified component test has been activated to run
172 void TestComponentL(TInt aComponentIndex);
175 @fn RunError(TInt aErrorCode)
176 Intended Usage : Handles the situation where the RunL leaves. RunL will only leave
177 through a leave from TestComponentL, this will occur if the test to be run fails to
179 Error Condition : None
181 @param aErrorCode The error code which RunL left with.
182 @return KErrNone because we handle the error.
183 @pre This object is fully constructed and initialized
184 @post The test which failed to construct is cleaned up.
187 TInt RunError(TInt aErrorCode);
190 /** The observer to inform when all tests are complete */
191 MManagerObserver& iObserver;
192 /** List of all the test to be run*/
194 RPointerArray<CComponentInfo>* iTestList;
195 /** The index (in iTestList) of the test which is to be loaded next*/
197 TInt iCurrentTestLoad;
198 /** The test logging mechanism*/
200 CDataLogger& iDataLogger;
201 /** Flag indicating that all tests have completed*/
204 /** List of the tests to be run, NULL means run all tests */
206 RPointerArray<TTestInfo>* iTestsToRun;
207 /** The test which is currently being run */
209 CComponentTester* iCurrentTester;
210 /** Optional reference to the RTest object used in the EXE test harness code which
211 kicked off this test framework */
214 friend class TTestManager_StateAccessor;