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 CComponentTester
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __COMPONENTTESTER_H__
24 #define __COMPONENTTESTER_H__
29 #include <ecom/test_bed/unittestinfo.h>
30 #include <ecom/test_bed/unittest.h>
31 #include <ecom/test_bed/datalogger.h>
32 #include <ecom/test_bed/componenttestobserver.h>
39 Comments : Used by the UI component to pass in a list of the tests which are to run
40 with information about each one.
45 /** The zero-based component Id based on the list passed out from
46 CTestController::FindComponents */
49 /** The zero-based unit test Id within the above component */
52 /** The time at which this unit test should be scheduled to run */
54 TTimeIntervalMicroSeconds32 iRunTime;
55 /** Parameter block which is to be passed to the unit test */
61 // Global function typedef declaration of function provided by a test module of the component
62 // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
63 typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
68 Comments : Abstract class from which developers can derive their own component testing
69 classes. To write a derived class just implement a NewLC() and a ConstructL() from
70 which ComponentTesterConstructL() should be the first thing called.
73 class CComponentTester : public CActive, public MUnitTestObserver
77 @fn ~CComponentTester()
78 Intended Usage : Standardized virtual destruction method
82 IMPORT_C ~CComponentTester();
85 @fn IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests)
86 Intended Usage : Called to perform a full test of the component. Runs the listed
87 tests or all unit tests if aTests == 0
90 @param aTests The list of tests to run, 0 means run all tests
91 @pre This CComponentTester is fully initialized
92 @post All unit tests will be set up to run
95 IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests);
98 @fn IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const
99 Intended Usage : Called to provide a list of the transition sets in this component test.
100 Ownership of the array is passed to the calling object.
103 @return RPointerArray<CUnitTestInfo>* Information on the unit tests contained
104 in this component. Ownership of the array is passed to the calling object.
108 IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const;
111 @fn IMPORT_C void Complete(CUnitTest* aUnitTest)
112 Intended Usage : Used, by the observed unit test, to indicate that the
116 @param aUnitTest The unit test which has completed.
118 @post If this was the last unit test then iObserver is informed that this
119 component is complete.
122 IMPORT_C void Complete(CUnitTest* aUnitTest);
125 @fn IMPORT_C void SetRtest(RTest* aRTest)
126 Intended Usage : Used by Controller or Manager to initialise the iRTest
127 attribute of the component & unit test objects in t
130 @param aRTest Pointer to RTest object
134 IMPORT_C void SetRTest(RTest* aRTest);
138 @fn IMPORT_C CComponentTester(CDataLogger& aDataLogger,
139 MComponentTestObserver& aObserver)
140 Intended Usage : Default Constructor
142 @param aDataLogger Used for file logging capability
143 @param aObserver To inform of completion of all tests
145 IMPORT_C CComponentTester(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
148 @fn IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest)
149 Intended Usage : Used by derived class to add UnitTests to the list
152 @param aUnitTest The UnitTest to be added
154 @post The specified unit test is added to the list of tests to be executed.
157 IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest);
160 @fn IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest)
161 Intended Usage : Used by derived classes to add UnitTests which can only be run when
162 they are supplied with parameters from the UI.
165 @param aUnitTest The unit test to add to the list
167 @post The specified unit test is added to the list of test to be executed and
168 is flagged as requiring parameters
171 IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest);
174 @fn IMPORT_C virtual void ConstructL() = 0
175 Intended Usage : Standard two-phase construction method. To be implemented
179 @pre First phase of construction is complete
180 @post Object is fully constructed
183 IMPORT_C virtual void ConstructL() = 0;
186 @fn IMPORT_C void ComponentTesterConstructL()
187 Intended Usage : Must be called by derived class ConstructL() to perform base class
192 @post Object is fully constructed
195 IMPORT_C void ComponentTesterConstructL();
198 @fn IMPORT_C void RunL()
202 @pre This CComponentTester is fully constructed
203 @post One of the CUnitTest contained in this CComponentTester has been run
206 IMPORT_C void RunL();
209 @fn IMPORT_C void DoCancel()
213 @pre This CComponentTester is fully constructed.
214 @post Any outstanding asynchronous requests are cancelled.
217 IMPORT_C void DoCancel();
220 /** List of all the unit tests which make up this component test*/
222 RPointerArray<CUnitTest>* iUnitTests;
223 /** The test logging mechanism*/
225 CDataLogger& iDataLogger;
226 /** The observer to inform when we have completed the test */
228 MComponentTestObserver& iObserver;
229 /** The index of the unittest which is to be run next */
231 TInt iCurrentUnitTest;
232 /** The list of tests to run, NULL means run all tests. We take ownership of the list but
233 not the items on it.*/
235 RPointerArray<TTestInfo>* iUnitTestsToRun;
236 /** A list of the test which cannot run without a parameter set from the UI */
238 RArray<TInt> iParameterizedTests;
239 /** A placeholder which is only used to ensure correct object cleanup when
240 TransitionSetsL() leaves */
242 mutable RPointerArray<CUnitTestInfo>* iTransitionSets;
243 /** Optional reference to the RTest object used in the EXE test harness code which
244 kicked off this test framework */
247 friend class TComponentTester_StateAccessor;