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 CUnitTest
|
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 __UNITTEST_H__
|
sl@0
|
24 |
#define __UNITTEST_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#include <f32file.h>
|
sl@0
|
28 |
#include <e32test.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <ecom/test_bed/testutilities.h>
|
sl@0
|
31 |
#include <ecom/test_bed/transition.h>
|
sl@0
|
32 |
#include <ecom/test_bed/unittestinfo.h>
|
sl@0
|
33 |
#include <ecom/test_bed/unittestobserver.h>
|
sl@0
|
34 |
|
sl@0
|
35 |
class CTransition;
|
sl@0
|
36 |
class CDataLogger;
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
@internalAll
|
sl@0
|
40 |
Comments : Abstract base class upon which a test developer can base his unit test class.
|
sl@0
|
41 |
Most functionality is implemented in this base class, to write a derived class just implement
|
sl@0
|
42 |
a NewL() and a ConstructL() on the new object. ConstructL() should first call
|
sl@0
|
43 |
UnitTestConstructL() and then create the transitions which make up this unit test.
|
sl@0
|
44 |
Eg.
|
sl@0
|
45 |
|
sl@0
|
46 |
@code
|
sl@0
|
47 |
_LIT(KExampleUnitTest,"CExampleUnitTest");
|
sl@0
|
48 |
|
sl@0
|
49 |
CExampleUnitTest* CExampleUnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
50 |
MUnitTestObserver& aObserver)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
CExampleUnitTest* self = new(ELeave) CExampleUnitTest(aDataLogger,
|
sl@0
|
53 |
aObserver);
|
sl@0
|
54 |
self->ConstructL();
|
sl@0
|
55 |
return self;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
TInt CExampleUnitTest::RunError(TInt aError)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
61 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
62 |
delete iTestClass;
|
sl@0
|
63 |
iTestClass = NULL;
|
sl@0
|
64 |
return error;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
CExampleUnitTest::~CExampleUnitTest()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// delete the test context information
|
sl@0
|
70 |
delete iStateAccessor;
|
sl@0
|
71 |
delete iUTContext;
|
sl@0
|
72 |
delete iValidator;
|
sl@0
|
73 |
|
sl@0
|
74 |
// Simply delete our test class instance
|
sl@0
|
75 |
delete iTestClass;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
CExampleUnitTest::CExampleUnitTest(CDataLogger& aDataLogger,
|
sl@0
|
79 |
MUnitTestObserver& aObserver,
|
sl@0
|
80 |
MStateAccessor& aStateAccessor)
|
sl@0
|
81 |
: CUnitTest(KExampleUnitTest, aDataLogger, aObserver, aStateAccessor)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
//Do nothing
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
// Now the Individual transitions need to be added.
|
sl@0
|
87 |
void CExampleUnitTest::ConstructL()
|
sl@0
|
88 |
{
|
sl@0
|
89 |
// Perform base class initialization
|
sl@0
|
90 |
UnitTestConstructL();
|
sl@0
|
91 |
|
sl@0
|
92 |
// Create the input variables to the transition creation
|
sl@0
|
93 |
iStateAccessor = new(ELeave) TExampleStateAccessor();
|
sl@0
|
94 |
iUTContext = new(ELeave) CUnitTestContext(iDataLogger, *iStateAccessor, *this);
|
sl@0
|
95 |
iValidator = new(ELeave) TTransitionValidator(*iUTContext);
|
sl@0
|
96 |
|
sl@0
|
97 |
// Add the Transitions in the order they are to run
|
sl@0
|
98 |
// C'tor first, D'tor last...
|
sl@0
|
99 |
AddTransitionL(new(ELeave)CExampleNewLTransition(*iUTContext, *iValidator, iTestClass));
|
sl@0
|
100 |
AddTransitionL(new(ELeave)CExampleDtorTransition(*iUTContext, *iValidator, iTestClass));
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
@endcode
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
|
sl@0
|
106 |
class CUnitTest : public CTimer, public MTransitionObserver
|
sl@0
|
107 |
{
|
sl@0
|
108 |
public:
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
@fn ~CUnitTest()
|
sl@0
|
111 |
Intended Usage : Standard Destructor
|
sl@0
|
112 |
@since 7.0
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
|
sl@0
|
115 |
IMPORT_C ~CUnitTest();
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
@fn void RunTest(TTimeIntervalMicroSeconds32 aTimeAfter = 0)
|
sl@0
|
119 |
Intended Usage : Sets up the Timer Object request to cause the test to run.
|
sl@0
|
120 |
Error Condition :
|
sl@0
|
121 |
@since 7.0
|
sl@0
|
122 |
@param aTimeAfter The time after which the unit test should be run
|
sl@0
|
123 |
@pre None
|
sl@0
|
124 |
@post RunL() will be set up to run after the specified time.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
|
sl@0
|
127 |
IMPORT_C void RunTest(TTimeIntervalMicroSeconds32 aTimeAfter = 0);
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
@fn inline const TDesC& UnitTestName() const
|
sl@0
|
131 |
Intended Usage : Return the name identifier of this Unit Test
|
sl@0
|
132 |
Error Condition :
|
sl@0
|
133 |
@since 7.0
|
sl@0
|
134 |
@return TDesC& The identifier of this unit test
|
sl@0
|
135 |
@pre None
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
|
sl@0
|
138 |
inline const TDesC& UnitTestName() const;
|
sl@0
|
139 |
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
@fn TransitionSetL() const
|
sl@0
|
142 |
Intended Usage : Creates and returns a CUnitTestInfo containing information on this
|
sl@0
|
143 |
UnitTest. Passes ownership of the CUnitTestInfo to the calling object.
|
sl@0
|
144 |
Error Condition :
|
sl@0
|
145 |
@since 7.0
|
sl@0
|
146 |
@return CUnitTestInfo* Information on this unit test
|
sl@0
|
147 |
@pre None
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
|
sl@0
|
150 |
CUnitTestInfo* TransitionSetL() const;
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
@fn GetCurrentTransition() const
|
sl@0
|
154 |
Intended Usage : Retrieve a reference to the transition whose RunL() method
|
sl@0
|
155 |
is currently executing.
|
sl@0
|
156 |
This allows transition information can be retrieved and
|
sl@0
|
157 |
RepeatOnce() can be called on the transition.
|
sl@0
|
158 |
@since 7.0
|
sl@0
|
159 |
@return CTransition& a reference to the currently executing transition.
|
sl@0
|
160 |
@pre None
|
sl@0
|
161 |
@post No change.
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
|
sl@0
|
164 |
IMPORT_C CTransition& GetCurrentTransition() const;
|
sl@0
|
165 |
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
@fn SetCurrentTransition(CTransition& aTransition)
|
sl@0
|
168 |
Intended Usage : MTransitionObserver override that recieves a reference to
|
sl@0
|
169 |
the transition whose RnunL() method is executing.
|
sl@0
|
170 |
This allows transition information can be retrieved and
|
sl@0
|
171 |
RepeatOnce() can be called on the transition.
|
sl@0
|
172 |
@since 7.0
|
sl@0
|
173 |
@param aTransition A reference to the transition to set as current
|
sl@0
|
174 |
@return void
|
sl@0
|
175 |
@pre None
|
sl@0
|
176 |
@post aTransition will be recorded as the currently
|
sl@0
|
177 |
executing transition.
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
|
sl@0
|
180 |
IMPORT_C void SetCurrentTransition(CTransition& aTransition);
|
sl@0
|
181 |
|
sl@0
|
182 |
/**
|
sl@0
|
183 |
@fn Complete(CTransition& aTransition, TInt aAsyncPostCheckError)
|
sl@0
|
184 |
Intended Usage : MTransitionObserver override that is called to indicate
|
sl@0
|
185 |
that an asynchronous function on the specified
|
sl@0
|
186 |
transition has completed.
|
sl@0
|
187 |
@since 7.0
|
sl@0
|
188 |
@param aTransition The transition which has completed an async function.
|
sl@0
|
189 |
@param aAsyncPostCheckError An error code from the second phase of post-condition
|
sl@0
|
190 |
validation done after the transition's asynchronous request had completed.
|
sl@0
|
191 |
Used for asynchronous transitions only - for synchronous transitions, 2-phase
|
sl@0
|
192 |
post-condition checking does not apply, and a value of KErrNone is supplied.
|
sl@0
|
193 |
@pre The specified transition has launched an asynchronous function
|
sl@0
|
194 |
@post The transition has fully completed, if all transitions are complete
|
sl@0
|
195 |
then the unittest is complete.
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
|
sl@0
|
198 |
IMPORT_C void Complete(CTransition& aTransition, TInt aAsyncPostCheckError);
|
sl@0
|
199 |
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
@fn SetParametersL(TAny* aParams)
|
sl@0
|
202 |
Intended Usage : Should be overridden in the derived unit test to accept parameters
|
sl@0
|
203 |
to be used in the unit test. The default implementation is to do nothing.
|
sl@0
|
204 |
Error Condition :
|
sl@0
|
205 |
@since 7.0
|
sl@0
|
206 |
@param aParams The parameter block which the unit test will use
|
sl@0
|
207 |
@pre This CUnitTest is constructed
|
sl@0
|
208 |
@post The parameters are stored and ready for use in the test
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
|
sl@0
|
211 |
IMPORT_C virtual void SetParametersL(TAny* aParams);
|
sl@0
|
212 |
|
sl@0
|
213 |
/**
|
sl@0
|
214 |
@fn inline void SetRtest(RTest* aRTest)
|
sl@0
|
215 |
Intended Usage : Used by Component Tester to initialise the iRTest
|
sl@0
|
216 |
attribute so it coul dbe used in assessing unit test results.
|
sl@0
|
217 |
Error Condition :
|
sl@0
|
218 |
@since 7.0s
|
sl@0
|
219 |
@param aRTest Pointer to RTest object
|
sl@0
|
220 |
@pre None
|
sl@0
|
221 |
@post None
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
inline void SetRTest(RTest* aRTest);
|
sl@0
|
224 |
|
sl@0
|
225 |
/**
|
sl@0
|
226 |
@fn PrepareUnitTestL()
|
sl@0
|
227 |
Intended Usage : May be overidden in the derived unit test to perform any unit test
|
sl@0
|
228 |
specific environment setup (eg copying data files into place). The
|
sl@0
|
229 |
default implementation is to do nothing.
|
sl@0
|
230 |
Error Condition : Depends on implementation.
|
sl@0
|
231 |
@since 7.0
|
sl@0
|
232 |
@pre This CUnitTest is constructed
|
sl@0
|
233 |
@post Depends on implementation
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
|
sl@0
|
236 |
virtual void PrepareUnitTestL();
|
sl@0
|
237 |
|
sl@0
|
238 |
protected:
|
sl@0
|
239 |
/**
|
sl@0
|
240 |
@fn inline CUnitTest(const TDesC& aName,
|
sl@0
|
241 |
CDataLogger& aDataLogger,
|
sl@0
|
242 |
MUnitTestObserver& aUnitTestObserver)
|
sl@0
|
243 |
Intended Usage : Standard Constructor
|
sl@0
|
244 |
Error Condition :
|
sl@0
|
245 |
@param aName The identifier of this unit test
|
sl@0
|
246 |
@param aDataLogger Provides the logging capability
|
sl@0
|
247 |
@param aUnitTestObserver Is informed when this unit test completes
|
sl@0
|
248 |
@since 7.0
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
|
sl@0
|
251 |
inline CUnitTest(const TDesC& aName,
|
sl@0
|
252 |
CDataLogger& aDataLogger,
|
sl@0
|
253 |
MUnitTestObserver& aUnitTestObserver);
|
sl@0
|
254 |
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
@fn virtual void RunL()
|
sl@0
|
257 |
Intended Usage : Implementation of CActive method. Each iteration of RunL() causes one transition
|
sl@0
|
258 |
to be run.
|
sl@0
|
259 |
Error Condition :
|
sl@0
|
260 |
@since 7.0
|
sl@0
|
261 |
@pre Preconditions are ensured by RunTest()
|
sl@0
|
262 |
@post Transition has been activated
|
sl@0
|
263 |
*/
|
sl@0
|
264 |
|
sl@0
|
265 |
IMPORT_C virtual void RunL();
|
sl@0
|
266 |
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
@fn IMPORT_C virtual void ConstructL() = 0
|
sl@0
|
269 |
Intended Usage : Must be overridden in derived class to complete construction
|
sl@0
|
270 |
Error Condition :
|
sl@0
|
271 |
@since 7.0
|
sl@0
|
272 |
*/
|
sl@0
|
273 |
|
sl@0
|
274 |
IMPORT_C virtual void ConstructL() = 0;
|
sl@0
|
275 |
|
sl@0
|
276 |
/**
|
sl@0
|
277 |
@fn IMPORT_C void UnitTestConstructL()
|
sl@0
|
278 |
Intended Usage : Called from derived class construction to perform all base
|
sl@0
|
279 |
class initialisation.
|
sl@0
|
280 |
Error Condition :
|
sl@0
|
281 |
@since 7.0
|
sl@0
|
282 |
@pre Should be called during construction of the derived class to perform base class
|
sl@0
|
283 |
initialisation.
|
sl@0
|
284 |
@post Unspecified
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
|
sl@0
|
287 |
IMPORT_C void UnitTestConstructL();
|
sl@0
|
288 |
|
sl@0
|
289 |
/**
|
sl@0
|
290 |
@fn IMPORT_C void AddTransitionL(CTransition* aTransition)
|
sl@0
|
291 |
Intended Usage : Adds the transition to the list to be run during this unit test
|
sl@0
|
292 |
@leave KErrNoMemory
|
sl@0
|
293 |
@since 7.0
|
sl@0
|
294 |
@param aTransition The transition to be added to the list
|
sl@0
|
295 |
@pre Should be used in developer implemented ConstructL() to add transitions to the
|
sl@0
|
296 |
Unit Test
|
sl@0
|
297 |
@post The specified transition is added to the list to be run for this unit test
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
|
sl@0
|
300 |
IMPORT_C void AddTransitionL(CTransition* aTransition);
|
sl@0
|
301 |
|
sl@0
|
302 |
/**
|
sl@0
|
303 |
@fn IMPORT_C void AddBlockingTransitionL(CTransition* aTransition)
|
sl@0
|
304 |
Intended Usage : Adds a transition to the unit test which will block until all
|
sl@0
|
305 |
previous asynchronous transitions have completed before running.
|
sl@0
|
306 |
@leave KErrNoMemory
|
sl@0
|
307 |
@since 7.0
|
sl@0
|
308 |
@param aTransition The transition to be added to the list
|
sl@0
|
309 |
@pre Should be used in developer implemented ConstructL() to add transitions to the
|
sl@0
|
310 |
Unit Test
|
sl@0
|
311 |
@post The specified transition is added to the list to be run for this unit test
|
sl@0
|
312 |
*/
|
sl@0
|
313 |
|
sl@0
|
314 |
IMPORT_C void AddBlockingTransitionL(CTransition* aTransition);
|
sl@0
|
315 |
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
@fn virtual void DoCancel()
|
sl@0
|
318 |
Intended Usage : Standard Active Object method for cancelling the current request
|
sl@0
|
319 |
@since 7.0
|
sl@0
|
320 |
@pre None
|
sl@0
|
321 |
@post Any outstanding requests are cancelled
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
IMPORT_C virtual void DoCancel();
|
sl@0
|
324 |
|
sl@0
|
325 |
|
sl@0
|
326 |
IMPORT_C void AddLeaveErrorCodeL(TInt aLeaveErrorCode);
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
protected:
|
sl@0
|
330 |
/** The identifier of this Unit Test*/
|
sl@0
|
331 |
|
sl@0
|
332 |
const TDesC& iUnitTestName;
|
sl@0
|
333 |
/** List of the transitions which make up this Unit Test*/
|
sl@0
|
334 |
|
sl@0
|
335 |
RPointerArray<CTransition>* iTransitions;
|
sl@0
|
336 |
/** The test logging mechanism*/
|
sl@0
|
337 |
|
sl@0
|
338 |
CDataLogger& iDataLogger;
|
sl@0
|
339 |
/** Used to call back to the test controller that the test has finished*/
|
sl@0
|
340 |
|
sl@0
|
341 |
MUnitTestObserver& iUnitTestObserver;
|
sl@0
|
342 |
/** The index in iTransitions of the next transition to be run */
|
sl@0
|
343 |
|
sl@0
|
344 |
TInt iNextTransitionIndex;
|
sl@0
|
345 |
/** List of the asyncronous transitions which have requests outstanding */
|
sl@0
|
346 |
|
sl@0
|
347 |
RPointerArray<CTransition>* iOutstandingTransitions;
|
sl@0
|
348 |
/** Indicates that the next transition is waiting for the completion of async requests
|
sl@0
|
349 |
before it will be run*/
|
sl@0
|
350 |
|
sl@0
|
351 |
TBool iWaitingForCompletion;
|
sl@0
|
352 |
/** The currently executing transition : NOT OWNED */
|
sl@0
|
353 |
|
sl@0
|
354 |
CTransition* iCurrentlyExecutingTransition;
|
sl@0
|
355 |
/** List of all the acceptable error codes */
|
sl@0
|
356 |
|
sl@0
|
357 |
RArray<TInt> iLeaveErrorArray;
|
sl@0
|
358 |
/** Connection to the file server - required by iFileMan */
|
sl@0
|
359 |
|
sl@0
|
360 |
RFs iFs;
|
sl@0
|
361 |
/** File manager - useful in PrepareUnitTestL if copying files is required */
|
sl@0
|
362 |
|
sl@0
|
363 |
CFileMan* iFileMan;
|
sl@0
|
364 |
/** Optional reference to the RTest object used in the EXE test harness code which
|
sl@0
|
365 |
kicked off this test framework */
|
sl@0
|
366 |
RTest* iRTest;
|
sl@0
|
367 |
|
sl@0
|
368 |
friend class TUnitTest_StateAccessor;
|
sl@0
|
369 |
};
|
sl@0
|
370 |
|
sl@0
|
371 |
#include <ecom/test_bed/unittest.inl>
|
sl@0
|
372 |
|
sl@0
|
373 |
#endif
|