First public contribution.
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 CTestController
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __TESTCONTROLLER_H__
24 #define __TESTCONTROLLER_H__
29 #include <ecom/test_bed/componentinfo.h>
30 #include <ecom/test_bed/testmanager.h>
31 #include <ecom/test_bed/transitionobserver.h>
32 #include <ecom/test_bed/transition.h>
33 #include <ecom/test_bed/managerobserver.h>
35 class CComponentTester;
38 // Global function typedef declaration of function provided by a test module of the component
39 // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
40 typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
44 Comments : Manages the whole test procedure.
47 class CTestController : public CBase, private MManagerObserver
51 @fn static IMPORT_C CTestController* NewL(CActiveScheduler* aScheduler,
52 ComponentTesterInitialiserLC aEntryPoint,
54 TLoggingInfo* aLogInfo = NULL)
55 Intended Usage : Standardized safe construction which leaves nothing on the cleanup stack.
58 @param aScheduler The active scheduler to use, pass NULL if no scheduler exists
59 @param aEntryPoint The global function used to create the derived CComponentTester object.
60 @param aRTest Optional RTest object to use in check unit test results
61 @param aLogInfo The logging info to use, defaults to NULL
62 @return CTestController* A pointer to the newly created class.
64 @post Nothing is on the CleanupStack
67 static IMPORT_C CTestController* NewL(CActiveScheduler* aScheduler,
68 ComponentTesterInitialiserLC aEntryPoint,
70 TLoggingInfo* aLogInfo = NULL);
73 @fn static IMPORT_C CTestController* NewLC(CActiveScheduler* aScheduler,
74 ComponentTesterInitialiserLC aEntryPoint,
76 TLoggingInfo* aLogInfo = NULL)
77 Intended Usage : Standardized safe construction which leaves CTestController* on the cleanup stack.
80 @param aScheduler The active scheduler, if one exists, otherwise NULL
81 @param aEntryPoint The global function used to create the derived CComponentTester object.
82 @param aRTest Optional RTest object to use in check unit test results
83 @param aLogInfo The logging configuration information
84 @return CTestController* A pointer to the newly created class.
86 @post CTestController is on the CleanupStack
89 static IMPORT_C CTestController* NewLC(CActiveScheduler* aScheduler,
90 ComponentTesterInitialiserLC aEntryPoint,
92 TLoggingInfo* aLogInfo = NULL);
95 @fn ~CTestController()
96 Intended Usage : Standardized virtual destruction method
100 virtual IMPORT_C ~CTestController();
104 Intended Usage : Starts the testbed and runs all tests on all components. This
105 function runs synchronously and does not return until all tests
108 @pre This object is constructed
109 @post Starts the active scheduler and therefore doesn't complete until the
110 active scheduler is stopped.
112 IMPORT_C void Start();
115 @fn Start(RPointerArray<TTestInfo>* aTests)
116 Intended Usage : Starts the specified tests.This function runs
117 synchronously and does not return until all tests are complete.
119 @param aTests The list of tests to be run.
120 @pre This object is constructed
121 @post Starts the active scheduler and therefore doesn't complete until the
122 active scheduler is stopped.
125 IMPORT_C void Start(RPointerArray<TTestInfo>* aTests);
128 @fn Start(TRequestStatus* aStatus)
129 Intended Usage : Starts the testbed and runs all tests on all components. This
130 function runs asynchronously and completes aStatus when all tests
133 @param aStatus Status word for the calling function. Is completed when all
135 @pre This object is constructed
136 @post An asynchronous request is issued to run all tests.
138 IMPORT_C void Start(TRequestStatus* aStatus);
141 @fn Start(TRequestStatus* aStatus, RPointerArray<TTestInfo>* aTests)
142 Intended Usage : Starts the specified tests. If the default for aTest is used
143 then all tests are run on all components. This function runs
144 asynchronously and completes aStatus when all tests are complete.
146 @param aStatus Status word for the calling function. Is completed when all
148 @param aTests The list of tests to be run.
149 @pre This object is constructed.
150 @post An asynchronous request is issued to run the specified tests.
152 IMPORT_C void Start(TRequestStatus* aStatus, RPointerArray<TTestInfo>* aTests);
155 @fn RPointerArray<CComponentInfo>& FindComponents() const
156 Intended Usage : Returns an array of the components available for testing
159 @return RPointerArray<CComponentInfo>& Information on the components which
160 are available for testing.
161 @pre The object is fully constructed
162 @post Returns an array of the available components which can be used to select
166 IMPORT_C const RPointerArray<CComponentInfo>& FindComponents() const;
169 @fn IMPORT_C CDataLogger& DataLogger()
170 Intended Usage : Returns a reference to the file logging functionality for use
171 by the user interface component.
173 @return CDataLogger& The current data logger to allow external logging
174 @pre The CTestController has been created so that the data logger exists
178 static IMPORT_C CDataLogger& DataLogger();
182 Intended Usage : Cancels any outstanding tests.
184 @pre This object has been created and the asynchronous version of
185 Start has been called.
186 @post Any outstanding tests have been cancelled.
188 IMPORT_C void Cancel();
190 friend class TTestController_StateAccessor;
194 @fn CTestController(CActiveScheduler* aScheduler)
195 Intended Usage : Constructor
197 @param aScheduler The existing active scheduler or NULL
198 @param aRTest Optional RTest object to use in check unit test results
201 CTestController(CActiveScheduler* aScheduler, RTest* aRTest = NULL);
204 @fn void ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint)
205 Intended Usage : Completes the safe construction of the CTestController object
208 @param aLogInfo The logging configuration information
209 @param aEntryPoint The global function used to create the derived CComponentTester object.
210 @pre First phase of construction is complete
211 @post Object is fully constructed
214 void ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint);
217 @fn void InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC)
219 Intended Usage : Called during construction to find all test modules
222 @param aEntryPointLC The global function used to create the derived CComponentTester object.
224 @post A list of all tests is available
226 void InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC);
230 Intended Usage : Called by the CTestManager to indicate that all tests
231 are complete. Either stops the active scheduler if in
232 synchronous mode or completes the client if in async mode.
234 @pre This object is constructed
235 @post Appropriate action is taken to complete the tests.
237 void TestsComplete();
240 /** Starts the tests and stops the active scheduler when finished*/
242 CTestManager* iTestManager;
243 /** A list of the available tests*/
245 RPointerArray<CComponentInfo> iTestList;
246 /** Placeholder for an active scheduler if one is passed in on creation */
248 CActiveScheduler* iScheduler;
249 /** Flag indicating if we own the active scheduler in iScheduler */
252 /** Provides the file logging capability */
254 CDataLogger* iDataLogger;
255 /** The status word of the client (if tests were run asynchronously). Will be completed
256 when all tests have finished running. */
257 TRequestStatus* iClientStatus;
258 /** Optional reference to the RTest object used in the EXE test harness code which
259 kicked off this test framework */
261 }; // End of CTestController definition
264 #endif // _INC_TESTCONTROLLER_3A34E468034A_INCLUDED