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 CComponentTester
|
sl@0
|
15 |
// This file comment is for DOxygen only and is ignored by EDoc.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@test
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __COMPONENTTESTER_H__
|
sl@0
|
24 |
#define __COMPONENTTESTER_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#include <e32test.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <ecom/test_bed/unittestinfo.h>
|
sl@0
|
30 |
#include <ecom/test_bed/unittest.h>
|
sl@0
|
31 |
#include <ecom/test_bed/datalogger.h>
|
sl@0
|
32 |
#include <ecom/test_bed/componenttestobserver.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
class CDataLogger;
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@internalAll
|
sl@0
|
38 |
@struct TTestInfo
|
sl@0
|
39 |
Comments : Used by the UI component to pass in a list of the tests which are to run
|
sl@0
|
40 |
with information about each one.
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
|
sl@0
|
43 |
struct TTestInfo
|
sl@0
|
44 |
{
|
sl@0
|
45 |
/** The zero-based component Id based on the list passed out from
|
sl@0
|
46 |
CTestController::FindComponents */
|
sl@0
|
47 |
|
sl@0
|
48 |
TInt iComponentId;
|
sl@0
|
49 |
/** The zero-based unit test Id within the above component */
|
sl@0
|
50 |
|
sl@0
|
51 |
TInt iUnitTestId;
|
sl@0
|
52 |
/** The time at which this unit test should be scheduled to run */
|
sl@0
|
53 |
|
sl@0
|
54 |
TTimeIntervalMicroSeconds32 iRunTime;
|
sl@0
|
55 |
/** Parameter block which is to be passed to the unit test */
|
sl@0
|
56 |
|
sl@0
|
57 |
TAny* iParameters;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
// Global function typedef declaration of function provided by a test module of the component
|
sl@0
|
62 |
// under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
|
sl@0
|
63 |
typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
@internalAll
|
sl@0
|
68 |
Comments : Abstract class from which developers can derive their own component testing
|
sl@0
|
69 |
classes. To write a derived class just implement a NewLC() and a ConstructL() from
|
sl@0
|
70 |
which ComponentTesterConstructL() should be the first thing called.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
|
sl@0
|
73 |
class CComponentTester : public CActive, public MUnitTestObserver
|
sl@0
|
74 |
{
|
sl@0
|
75 |
public:
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
@fn ~CComponentTester()
|
sl@0
|
78 |
Intended Usage : Standardized virtual destruction method
|
sl@0
|
79 |
@since 7.0
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
|
sl@0
|
82 |
IMPORT_C ~CComponentTester();
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
@fn IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests)
|
sl@0
|
86 |
Intended Usage : Called to perform a full test of the component. Runs the listed
|
sl@0
|
87 |
tests or all unit tests if aTests == 0
|
sl@0
|
88 |
Error Condition :
|
sl@0
|
89 |
@since 7.0
|
sl@0
|
90 |
@param aTests The list of tests to run, 0 means run all tests
|
sl@0
|
91 |
@pre This CComponentTester is fully initialized
|
sl@0
|
92 |
@post All unit tests will be set up to run
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
|
sl@0
|
95 |
IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests);
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
@fn IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const
|
sl@0
|
99 |
Intended Usage : Called to provide a list of the transition sets in this component test.
|
sl@0
|
100 |
Ownership of the array is passed to the calling object.
|
sl@0
|
101 |
Error Condition :
|
sl@0
|
102 |
@since 7.0
|
sl@0
|
103 |
@return RPointerArray<CUnitTestInfo>* Information on the unit tests contained
|
sl@0
|
104 |
in this component. Ownership of the array is passed to the calling object.
|
sl@0
|
105 |
@pre None
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
|
sl@0
|
108 |
IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const;
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
@fn IMPORT_C void Complete(CUnitTest* aUnitTest)
|
sl@0
|
112 |
Intended Usage : Used, by the observed unit test, to indicate that the
|
sl@0
|
113 |
test has completed
|
sl@0
|
114 |
Error Condition :
|
sl@0
|
115 |
@since 7.0
|
sl@0
|
116 |
@param aUnitTest The unit test which has completed.
|
sl@0
|
117 |
@pre None
|
sl@0
|
118 |
@post If this was the last unit test then iObserver is informed that this
|
sl@0
|
119 |
component is complete.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
|
sl@0
|
122 |
IMPORT_C void Complete(CUnitTest* aUnitTest);
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
@fn IMPORT_C void SetRtest(RTest* aRTest)
|
sl@0
|
126 |
Intended Usage : Used by Controller or Manager to initialise the iRTest
|
sl@0
|
127 |
attribute of the component & unit test objects in t
|
sl@0
|
128 |
Error Condition :
|
sl@0
|
129 |
@since 7.0s
|
sl@0
|
130 |
@param aRTest Pointer to RTest object
|
sl@0
|
131 |
@pre None
|
sl@0
|
132 |
@post None
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
IMPORT_C void SetRTest(RTest* aRTest);
|
sl@0
|
135 |
|
sl@0
|
136 |
protected:
|
sl@0
|
137 |
/**
|
sl@0
|
138 |
@fn IMPORT_C CComponentTester(CDataLogger& aDataLogger,
|
sl@0
|
139 |
MComponentTestObserver& aObserver)
|
sl@0
|
140 |
Intended Usage : Default Constructor
|
sl@0
|
141 |
@since 7.0
|
sl@0
|
142 |
@param aDataLogger Used for file logging capability
|
sl@0
|
143 |
@param aObserver To inform of completion of all tests
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
IMPORT_C CComponentTester(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
|
sl@0
|
146 |
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
@fn IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest)
|
sl@0
|
149 |
Intended Usage : Used by derived class to add UnitTests to the list
|
sl@0
|
150 |
Error Condition :
|
sl@0
|
151 |
@since 7.0
|
sl@0
|
152 |
@param aUnitTest The UnitTest to be added
|
sl@0
|
153 |
@pre None
|
sl@0
|
154 |
@post The specified unit test is added to the list of tests to be executed.
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
|
sl@0
|
157 |
IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest);
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
@fn IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest)
|
sl@0
|
161 |
Intended Usage : Used by derived classes to add UnitTests which can only be run when
|
sl@0
|
162 |
they are supplied with parameters from the UI.
|
sl@0
|
163 |
Error Condition :
|
sl@0
|
164 |
@since 7.0
|
sl@0
|
165 |
@param aUnitTest The unit test to add to the list
|
sl@0
|
166 |
@pre None
|
sl@0
|
167 |
@post The specified unit test is added to the list of test to be executed and
|
sl@0
|
168 |
is flagged as requiring parameters
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
|
sl@0
|
171 |
IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest);
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
@fn IMPORT_C virtual void ConstructL() = 0
|
sl@0
|
175 |
Intended Usage : Standard two-phase construction method. To be implemented
|
sl@0
|
176 |
in derived class
|
sl@0
|
177 |
Error Condition :
|
sl@0
|
178 |
@since 7.0
|
sl@0
|
179 |
@pre First phase of construction is complete
|
sl@0
|
180 |
@post Object is fully constructed
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
|
sl@0
|
183 |
IMPORT_C virtual void ConstructL() = 0;
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
@fn IMPORT_C void ComponentTesterConstructL()
|
sl@0
|
187 |
Intended Usage : Must be called by derived class ConstructL() to perform base class
|
sl@0
|
188 |
initialisation.
|
sl@0
|
189 |
Error Condition :
|
sl@0
|
190 |
@since 7.0
|
sl@0
|
191 |
@pre None
|
sl@0
|
192 |
@post Object is fully constructed
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
|
sl@0
|
195 |
IMPORT_C void ComponentTesterConstructL();
|
sl@0
|
196 |
|
sl@0
|
197 |
/**
|
sl@0
|
198 |
@fn IMPORT_C void RunL()
|
sl@0
|
199 |
Intended Usage :
|
sl@0
|
200 |
Error Condition :
|
sl@0
|
201 |
@since 7.0
|
sl@0
|
202 |
@pre This CComponentTester is fully constructed
|
sl@0
|
203 |
@post One of the CUnitTest contained in this CComponentTester has been run
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
|
sl@0
|
206 |
IMPORT_C void RunL();
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
@fn IMPORT_C void DoCancel()
|
sl@0
|
210 |
Intended Usage :
|
sl@0
|
211 |
Error Condition :
|
sl@0
|
212 |
@since 7.0
|
sl@0
|
213 |
@pre This CComponentTester is fully constructed.
|
sl@0
|
214 |
@post Any outstanding asynchronous requests are cancelled.
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
|
sl@0
|
217 |
IMPORT_C void DoCancel();
|
sl@0
|
218 |
|
sl@0
|
219 |
protected:
|
sl@0
|
220 |
/** List of all the unit tests which make up this component test*/
|
sl@0
|
221 |
|
sl@0
|
222 |
RPointerArray<CUnitTest>* iUnitTests;
|
sl@0
|
223 |
/** The test logging mechanism*/
|
sl@0
|
224 |
|
sl@0
|
225 |
CDataLogger& iDataLogger;
|
sl@0
|
226 |
/** The observer to inform when we have completed the test */
|
sl@0
|
227 |
|
sl@0
|
228 |
MComponentTestObserver& iObserver;
|
sl@0
|
229 |
/** The index of the unittest which is to be run next */
|
sl@0
|
230 |
|
sl@0
|
231 |
TInt iCurrentUnitTest;
|
sl@0
|
232 |
/** The list of tests to run, NULL means run all tests. We take ownership of the list but
|
sl@0
|
233 |
not the items on it.*/
|
sl@0
|
234 |
|
sl@0
|
235 |
RPointerArray<TTestInfo>* iUnitTestsToRun;
|
sl@0
|
236 |
/** A list of the test which cannot run without a parameter set from the UI */
|
sl@0
|
237 |
|
sl@0
|
238 |
RArray<TInt> iParameterizedTests;
|
sl@0
|
239 |
/** A placeholder which is only used to ensure correct object cleanup when
|
sl@0
|
240 |
TransitionSetsL() leaves */
|
sl@0
|
241 |
|
sl@0
|
242 |
mutable RPointerArray<CUnitTestInfo>* iTransitionSets;
|
sl@0
|
243 |
/** Optional reference to the RTest object used in the EXE test harness code which
|
sl@0
|
244 |
kicked off this test framework */
|
sl@0
|
245 |
RTest* iRTest;
|
sl@0
|
246 |
|
sl@0
|
247 |
friend class TComponentTester_StateAccessor;
|
sl@0
|
248 |
};
|
sl@0
|
249 |
|
sl@0
|
250 |
#endif
|