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 CTransition
|
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 |
#if defined (_MSC_VER) && (_MSC_VER >= 1000)
|
sl@0
|
24 |
#pragma once
|
sl@0
|
25 |
#endif
|
sl@0
|
26 |
#ifndef _INC_TRANSITION_3A23BFC30021_INCLUDED
|
sl@0
|
27 |
#define _INC_TRANSITION_3A23BFC30021_INCLUDED
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <e32base.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
#include <ecom/test_bed/testutilities.h>
|
sl@0
|
32 |
#include <ecom/test_bed/stateaccessor.h>
|
sl@0
|
33 |
#include <ecom/test_bed/transitionobserver.h>
|
sl@0
|
34 |
|
sl@0
|
35 |
class CDataLogger;
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@internalAll
|
sl@0
|
39 |
Comments : Provide the base class definition for a Unit Test's specific data. This class
|
sl@0
|
40 |
is CBase derived so that test developers can derive from this class and add owned member
|
sl@0
|
41 |
data if they wish.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
|
sl@0
|
44 |
class CUnitTestContext : public CBase
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
@fn CUnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
49 |
MStateAccessor& aAccessor,
|
sl@0
|
50 |
MTransitionObserver& aObserver)
|
sl@0
|
51 |
Intended Usage : Default constructor.
|
sl@0
|
52 |
@since 7.0
|
sl@0
|
53 |
@param aDataLogger The output logging object.
|
sl@0
|
54 |
@param aObserver The observer of this UnitTest's Transitions.
|
sl@0
|
55 |
@param aAccessor WhiteBox state access to the class under test.
|
sl@0
|
56 |
@pre None.
|
sl@0
|
57 |
@post CUnitTestContext is fully constructed, and initialized.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
|
sl@0
|
60 |
CUnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
61 |
MStateAccessor& aAccessor,
|
sl@0
|
62 |
MTransitionObserver& aObserver);
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
@fn CDataLogger& DataLogger() const
|
sl@0
|
66 |
Intended Usage : Provides access to the CDataLogger
|
sl@0
|
67 |
@since 7.0
|
sl@0
|
68 |
@return A reference to a CDataLogger
|
sl@0
|
69 |
@pre Object is fully constructed
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
|
sl@0
|
72 |
CDataLogger& DataLogger() const;
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
@fn MTransitionObserver& TransitionObserver() const
|
sl@0
|
76 |
Intended Usage : Provides access to the MTransitionObserver
|
sl@0
|
77 |
@since 7.0
|
sl@0
|
78 |
@return A reference to an MTransitionObserver
|
sl@0
|
79 |
@pre Object is fully constructed
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
|
sl@0
|
82 |
MTransitionObserver& TransitionObserver() const;
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
@fn MStateAccessor& StateAccessor() const
|
sl@0
|
86 |
Intended Usage : Provides access to the MStateAccessor
|
sl@0
|
87 |
@since 7.0
|
sl@0
|
88 |
@return A reference to an MStateAccessor
|
sl@0
|
89 |
@pre Object is fully constructed
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
|
sl@0
|
92 |
MStateAccessor& StateAccessor() const;
|
sl@0
|
93 |
|
sl@0
|
94 |
protected:
|
sl@0
|
95 |
/** The output logging object. */
|
sl@0
|
96 |
|
sl@0
|
97 |
CDataLogger& iDataLogger;
|
sl@0
|
98 |
/** The observer of this UnitTest's Transitions. */
|
sl@0
|
99 |
|
sl@0
|
100 |
MTransitionObserver& iObserver;
|
sl@0
|
101 |
/** WhiteBox state access to the class under test. */
|
sl@0
|
102 |
|
sl@0
|
103 |
MStateAccessor& iStateAccessor;
|
sl@0
|
104 |
};
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
@internalAll
|
sl@0
|
108 |
@enum TTestBedAsyncState
|
sl@0
|
109 |
Dependencies : None
|
sl@0
|
110 |
Comments : Represents the possible states of an asynchronous transition when
|
sl@0
|
111 |
ValidatePostConditions is called. EAsyncCalled means the async request has been made but
|
sl@0
|
112 |
not satisfied, EAsyncCompleted is when the request has been satisfied.
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
enum TTestBedAsyncState {EAsyncCalled, EAsyncCompleted};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
@internalAll
|
sl@0
|
118 |
Comments : Placeholder for the functions which validate the state of a transition
|
sl@0
|
119 |
before and after its execution.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
|
sl@0
|
122 |
class TTransitionValidator
|
sl@0
|
123 |
{
|
sl@0
|
124 |
public:
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@fn TTransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
127 |
Intended Usage : Standard constructor
|
sl@0
|
128 |
@since 7.0
|
sl@0
|
129 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
|
sl@0
|
132 |
TTransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
@fn ~TTransitionValidator()
|
sl@0
|
136 |
Intended Usage : Standard Destructor.
|
sl@0
|
137 |
Error Condition : None.
|
sl@0
|
138 |
@since 7.0
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
|
sl@0
|
141 |
virtual ~TTransitionValidator();
|
sl@0
|
142 |
|
sl@0
|
143 |
/**
|
sl@0
|
144 |
@fn virtual TBool ValidatePreConditions()
|
sl@0
|
145 |
Intended Usage : Overridden in the derived transition to check the transition pre
|
sl@0
|
146 |
conditions.
|
sl@0
|
147 |
@since 7.0
|
sl@0
|
148 |
@return TBool ETrue if the Preconditions were valid, EFalse if not.
|
sl@0
|
149 |
@pre This CTransition is fully constructed
|
sl@0
|
150 |
@post Returns the validity of the preconditions
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
|
sl@0
|
153 |
virtual TBool ValidatePreConditions();
|
sl@0
|
154 |
|
sl@0
|
155 |
/**
|
sl@0
|
156 |
@fn virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
157 |
Intended Usage : Overridden in the derived transition to check the transition post
|
sl@0
|
158 |
conditions.
|
sl@0
|
159 |
When overriding, if the transition calls an asynchronous function ValidatePostConditions
|
sl@0
|
160 |
will be called twice. Firstly, after the asynchronous function has been called and,
|
sl@0
|
161 |
secondly, after the asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
162 |
be used to distinguish between these two cases.
|
sl@0
|
163 |
@since 7.0
|
sl@0
|
164 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
165 |
EAsyncCompleted if the function has completed.
|
sl@0
|
166 |
@return TBool ETrue if the Postconditions were valid, EFalse if not.
|
sl@0
|
167 |
@pre This CTransition is fully constructed
|
sl@0
|
168 |
@post Unspecified
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
|
sl@0
|
171 |
virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
172 |
|
sl@0
|
173 |
protected:
|
sl@0
|
174 |
/** The context that this transition will be executing in */
|
sl@0
|
175 |
|
sl@0
|
176 |
CUnitTestContext& iUTContext;
|
sl@0
|
177 |
};
|
sl@0
|
178 |
|
sl@0
|
179 |
/**
|
sl@0
|
180 |
@internalAll
|
sl@0
|
181 |
@struct TTransitionInfo
|
sl@0
|
182 |
Dependencies : None
|
sl@0
|
183 |
Comments : Structure for storing the current transition id and iteration number
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
|
sl@0
|
186 |
struct TTransitionInfo
|
sl@0
|
187 |
{
|
sl@0
|
188 |
|
sl@0
|
189 |
TTransitionInfo(const TDesC& aTransitionId,
|
sl@0
|
190 |
CDataLogger& aDataLogger);
|
sl@0
|
191 |
/** Descriptor containing the transition identifier */
|
sl@0
|
192 |
|
sl@0
|
193 |
const TDesC& iTransitionId;
|
sl@0
|
194 |
/** The iteration that this transition is currently on */
|
sl@0
|
195 |
|
sl@0
|
196 |
TInt iIteration;
|
sl@0
|
197 |
/** The Data Logger that this transition is currently using */
|
sl@0
|
198 |
|
sl@0
|
199 |
const CDataLogger& iDataLogger;
|
sl@0
|
200 |
};
|
sl@0
|
201 |
|
sl@0
|
202 |
const TInt KFirstTransitionIteration = 1;
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
@internalAll
|
sl@0
|
206 |
Comments : Base class from which test developers
|
sl@0
|
207 |
can derive their own transitions for both
|
sl@0
|
208 |
synchronous and asynchronous methods on
|
sl@0
|
209 |
the test class.
|
sl@0
|
210 |
|
sl@0
|
211 |
The default behaviour is to log its activity,
|
sl@0
|
212 |
and claim that the pre and post conditions are true.
|
sl@0
|
213 |
The TransitMethodL implementation does nothing.
|
sl@0
|
214 |
To write a complete test class method transition
|
sl@0
|
215 |
override:
|
sl@0
|
216 |
|
sl@0
|
217 |
1. The c'tor, (To obtain the test class reference,
|
sl@0
|
218 |
(or pointer reference for a NewL transit),
|
sl@0
|
219 |
and any parameters for the TransitMethodL).
|
sl@0
|
220 |
|
sl@0
|
221 |
2. SetStartStateL() to set the test class state,
|
sl@0
|
222 |
Using the TStateAccessor provided in the c'tor.
|
sl@0
|
223 |
|
sl@0
|
224 |
3. ValidatePreConditions() to test the test class state
|
sl@0
|
225 |
is valid.
|
sl@0
|
226 |
|
sl@0
|
227 |
4. TransitMethodL() to define the transition behaviour,
|
sl@0
|
228 |
calling the method to test with the appropriate parameters.
|
sl@0
|
229 |
|
sl@0
|
230 |
5. ValidatePostConditions(), to check the end state is valid.
|
sl@0
|
231 |
|
sl@0
|
232 |
The simplest case of implementation is to derive an empty
|
sl@0
|
233 |
class, that relies entirely upon the default behaviour,
|
sl@0
|
234 |
and implement the remaining methods as appropriate.
|
sl@0
|
235 |
(See the the EXAMPLE implementation.)
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
|
sl@0
|
238 |
class CTransition : public CActive
|
sl@0
|
239 |
{
|
sl@0
|
240 |
public:
|
sl@0
|
241 |
/**
|
sl@0
|
242 |
@fn IMPORT_C ~CTransition()
|
sl@0
|
243 |
Intended Usage : Standardized virtual destruction method
|
sl@0
|
244 |
@since 7.0
|
sl@0
|
245 |
@pre The CTransition exists
|
sl@0
|
246 |
@post The object has been destroyed
|
sl@0
|
247 |
*/
|
sl@0
|
248 |
|
sl@0
|
249 |
IMPORT_C ~CTransition();
|
sl@0
|
250 |
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
@fn virtual void SetStartStateL()
|
sl@0
|
253 |
Intended Usage : Sets the state of the test object to that specified
|
sl@0
|
254 |
Error Condition :
|
sl@0
|
255 |
@since 7.0
|
sl@0
|
256 |
@pre The CTransition is instantiated
|
sl@0
|
257 |
@post The CTransition is in the state specified
|
sl@0
|
258 |
*/
|
sl@0
|
259 |
|
sl@0
|
260 |
IMPORT_C virtual void SetStartStateL();
|
sl@0
|
261 |
|
sl@0
|
262 |
/**
|
sl@0
|
263 |
@fn IMPORT_C const TDesC& TransitionId() const
|
sl@0
|
264 |
Intended Usage : Returns the transition identifier
|
sl@0
|
265 |
Error Condition :
|
sl@0
|
266 |
@since 7.0
|
sl@0
|
267 |
@return const TDesC& The identifier of this transition
|
sl@0
|
268 |
@pre The CTransition has been instantiated
|
sl@0
|
269 |
*/
|
sl@0
|
270 |
|
sl@0
|
271 |
IMPORT_C const TDesC& TransitionId() const;
|
sl@0
|
272 |
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
@fn IMPORT_C const TTransitionInfo& TransitionInfo() const
|
sl@0
|
275 |
Intended Usage : Get information on this transition. Return struct contains the
|
sl@0
|
276 |
transition ID, the current iteration and the logging mechanism used by this transition
|
sl@0
|
277 |
Error Condition :
|
sl@0
|
278 |
@since 7.0
|
sl@0
|
279 |
@return const TTransitionInfo Information on the current transition
|
sl@0
|
280 |
@pre This CTransition is initialized
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
|
sl@0
|
283 |
IMPORT_C const TTransitionInfo& TransitionInfo() const;
|
sl@0
|
284 |
|
sl@0
|
285 |
/**
|
sl@0
|
286 |
@fn virtual void RunTransition(TRequestStatus* aUnitTestStatus)
|
sl@0
|
287 |
Intended Usage : Indicates that this transition should be run as soon as possible.
|
sl@0
|
288 |
This function calls ValidatePreConditions to ensure the object is in the appropriate start state
|
sl@0
|
289 |
and then sets the transition active causing its RunL function to be called.
|
sl@0
|
290 |
Error Condition :
|
sl@0
|
291 |
@since 7.0
|
sl@0
|
292 |
@param aUnitTestStatus Status word of the calling CUnitTest
|
sl@0
|
293 |
@pre The test object is in an appropriate state for this transition
|
sl@0
|
294 |
@post The test object is in the end state of this transition
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
|
sl@0
|
297 |
IMPORT_C virtual void RunTransition(TRequestStatus* aUnitTestStatus);
|
sl@0
|
298 |
|
sl@0
|
299 |
/**
|
sl@0
|
300 |
@fn IMPORT_C void RepeatOnce()
|
sl@0
|
301 |
Intended Usage : Flag this transition to be repeated
|
sl@0
|
302 |
@since 7.0
|
sl@0
|
303 |
@pre None
|
sl@0
|
304 |
@post The iRepeatThis flag is set to true.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
|
sl@0
|
307 |
IMPORT_C void RepeatOnce();
|
sl@0
|
308 |
|
sl@0
|
309 |
/**
|
sl@0
|
310 |
@fn IMPORT_C TBool IsBlockingTransition() const
|
sl@0
|
311 |
Intended Usage : A blocking transition is one which does not run until all
|
sl@0
|
312 |
outstanding asynchronous transitions have completed. This function returns
|
sl@0
|
313 |
whether this is a blocking transition.
|
sl@0
|
314 |
This function does not need to be used by test developers as it is taken
|
sl@0
|
315 |
care of in the transition and unittest base classes. Blocking transitions
|
sl@0
|
316 |
can be added using AddBlockingTransitionL() in CUnitTest::ConstructL().
|
sl@0
|
317 |
@since 7.0
|
sl@0
|
318 |
@return TBool Flag indicating whether this is a blocking transition or not.
|
sl@0
|
319 |
@pre None
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
|
sl@0
|
322 |
IMPORT_C TBool IsBlockingTransition() const;
|
sl@0
|
323 |
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
@fn IMPORT_C void SetBlockingTransition(TBool aBlocking)
|
sl@0
|
326 |
Intended Usage : A blocking transition is one which does not run until all
|
sl@0
|
327 |
outstanding asynchronous transitions have completed.
|
sl@0
|
328 |
This function does not need to be used by test developers as it is taken
|
sl@0
|
329 |
care of in the transition and unittest base classes. Blocking transitions
|
sl@0
|
330 |
can be added using AddBlockingTransitionL() in CUnitTest::ConstructL().
|
sl@0
|
331 |
@since 7.0
|
sl@0
|
332 |
@param aBlocking Pass ETrue to set this as a blocking transition
|
sl@0
|
333 |
@pre This object is fully constructed
|
sl@0
|
334 |
@post The blocking status of this CTransition is set
|
sl@0
|
335 |
*/
|
sl@0
|
336 |
|
sl@0
|
337 |
IMPORT_C void SetBlockingTransition(TBool aBlocking);
|
sl@0
|
338 |
|
sl@0
|
339 |
/**
|
sl@0
|
340 |
@fn GetErrorCode() const
|
sl@0
|
341 |
Intended Usage : Returns the error code last recorded by the transition.
|
sl@0
|
342 |
@since 7.0
|
sl@0
|
343 |
@return The error code that was last recorded during the transition execution.
|
sl@0
|
344 |
@pre This object is fully constructed.
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
|
sl@0
|
347 |
IMPORT_C TInt GetErrorCode() const;
|
sl@0
|
348 |
|
sl@0
|
349 |
protected:
|
sl@0
|
350 |
/**
|
sl@0
|
351 |
@fn CTransition(const TDesC& aTransactionId,
|
sl@0
|
352 |
CUnitTestContext& aUTContext,
|
sl@0
|
353 |
TTransitionValidator& aValidator)
|
sl@0
|
354 |
Intended Usage : Default Constructor
|
sl@0
|
355 |
@param aTransitionId The identifier of this transition
|
sl@0
|
356 |
@param aUTContext The context within which this transition should run
|
sl@0
|
357 |
@param aValidator Provides Pre & Post condition validation
|
sl@0
|
358 |
@since 7.0
|
sl@0
|
359 |
@pre None
|
sl@0
|
360 |
@post First phase of two phase construction is complete
|
sl@0
|
361 |
*/
|
sl@0
|
362 |
IMPORT_C CTransition(const TDesC& aTransitionId,
|
sl@0
|
363 |
CUnitTestContext& aUTContext,
|
sl@0
|
364 |
TTransitionValidator& aValidator);
|
sl@0
|
365 |
|
sl@0
|
366 |
/**
|
sl@0
|
367 |
@fn virtual void DoCancel()
|
sl@0
|
368 |
Intended Usage : Standard Active Object method for cancelling the current request
|
sl@0
|
369 |
Error Condition :
|
sl@0
|
370 |
@since 7.0
|
sl@0
|
371 |
@pre None
|
sl@0
|
372 |
@post Any outstanding requests are cancelled
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
|
sl@0
|
375 |
IMPORT_C virtual void DoCancel();
|
sl@0
|
376 |
|
sl@0
|
377 |
/**
|
sl@0
|
378 |
@fn RunL()
|
sl@0
|
379 |
Intended Usage : Implementation of CActive pure virtual method. For each transition execution
|
sl@0
|
380 |
RunL is performed twice.
|
sl@0
|
381 |
The first time it calls TransitMethodL() which is the developer defined function which executes the
|
sl@0
|
382 |
test method. It then immediately sets itself active and attempts to complete. If TransitMethodL()
|
sl@0
|
383 |
called a synchronous function then iStatus will not be KRequestPending and the RunL will be called as
|
sl@0
|
384 |
soon as it is scheduled. If TransitMethodL() calls an asyncronous function then it will pass iStatus to the function and RunL
|
sl@0
|
385 |
will be called when the asynchronous function completes.
|
sl@0
|
386 |
Whichever method is used the second call of RunL() will complete the request of the CUnitTest which
|
sl@0
|
387 |
called this transition by setting its status word. If it has been requested that this transition is
|
sl@0
|
388 |
repeated then the status word will be set to KTestBedRepeatTest.
|
sl@0
|
389 |
Error Condition :
|
sl@0
|
390 |
@since 7.0
|
sl@0
|
391 |
@pre RunTransition() ensures the preconditions for this function
|
sl@0
|
392 |
@post After 1st run - test method has been called
|
sl@0
|
393 |
After 2nd run - Unittest has been completed.
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
|
sl@0
|
396 |
IMPORT_C virtual void RunL();
|
sl@0
|
397 |
|
sl@0
|
398 |
/**
|
sl@0
|
399 |
@fn TransitMethodL()
|
sl@0
|
400 |
Intended Usage : Calls the method on the class being tested. If the call is to
|
sl@0
|
401 |
an asynchronous service provider you must set iStatus to KRequestPending as usual
|
sl@0
|
402 |
Error Condition :
|
sl@0
|
403 |
@since 7.0
|
sl@0
|
404 |
@pre Preconditions for this transition have been validated
|
sl@0
|
405 |
@post The test method has been executed
|
sl@0
|
406 |
*/
|
sl@0
|
407 |
|
sl@0
|
408 |
IMPORT_C virtual void TransitMethodL() = 0;
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
@fn RunError(TInt anErrorCode)
|
sl@0
|
412 |
Intended Usage : Called by the active scheduler if RunL leaves
|
sl@0
|
413 |
@since 7.0
|
sl@0
|
414 |
@param anErrorCode The error code which RunL left with
|
sl@0
|
415 |
@return KErrNone because if a CTransition::RunL leaves then we simply log
|
sl@0
|
416 |
the event and inform the CUnitTest.
|
sl@0
|
417 |
@pre This function is only called by the active scheduler if RunL leaves.
|
sl@0
|
418 |
@post The owning CUnitTest has been informed that this CTransition left
|
sl@0
|
419 |
*/
|
sl@0
|
420 |
|
sl@0
|
421 |
IMPORT_C virtual TInt RunError(TInt aErrorCode);
|
sl@0
|
422 |
|
sl@0
|
423 |
/**
|
sl@0
|
424 |
@fn PostTransitionCleanup()
|
sl@0
|
425 |
Intended Usage : Called from the RunL immediately after TransitMethodL() executes
|
sl@0
|
426 |
@since 7.0
|
sl@0
|
427 |
@pre Must be called from RunL only after TransitMethodL() has completed.
|
sl@0
|
428 |
@post Default behaviour is to do nothing.
|
sl@0
|
429 |
See the derived classes for additional functionality.
|
sl@0
|
430 |
*/
|
sl@0
|
431 |
|
sl@0
|
432 |
IMPORT_C virtual void PostTransitionCleanup();
|
sl@0
|
433 |
|
sl@0
|
434 |
protected:
|
sl@0
|
435 |
/** The transition identifier*/
|
sl@0
|
436 |
|
sl@0
|
437 |
const TDesC& iTransitionId;
|
sl@0
|
438 |
/** The context in which this transition is running (logging, state accessor & observer) */
|
sl@0
|
439 |
|
sl@0
|
440 |
CUnitTestContext& iUTContext;
|
sl@0
|
441 |
/** Used for checking the state of the test object - provides pre and post condition
|
sl@0
|
442 |
validation functions */
|
sl@0
|
443 |
|
sl@0
|
444 |
TTransitionValidator& iValidator;
|
sl@0
|
445 |
/** Indicates that this transition should be re-run after the current run */
|
sl@0
|
446 |
|
sl@0
|
447 |
TBool iRepeatThis;
|
sl@0
|
448 |
/** The iStatus of the UnitTest which owns me so that I can complete it */
|
sl@0
|
449 |
|
sl@0
|
450 |
TRequestStatus* iUnitTestStatus;
|
sl@0
|
451 |
/** Indicates that the transition has executed and can be completed */
|
sl@0
|
452 |
|
sl@0
|
453 |
TBool iTransitionFinished;
|
sl@0
|
454 |
/** indicates the code that the RunL left with when completing with a KErrTestBedLeft */
|
sl@0
|
455 |
|
sl@0
|
456 |
TInt iLeaveError;
|
sl@0
|
457 |
/** Indicates that this transition should not execute until all previous async transitions
|
sl@0
|
458 |
have finished */
|
sl@0
|
459 |
|
sl@0
|
460 |
TBool iBlockingTransition;
|
sl@0
|
461 |
/** Indicates that this transition is an asynchronous transition*/
|
sl@0
|
462 |
TBool iAsyncTransition;
|
sl@0
|
463 |
/** Information on this transition including its ID, its iteration number and the data logger
|
sl@0
|
464 |
it is currently using */
|
sl@0
|
465 |
|
sl@0
|
466 |
TTransitionInfo iTransitionInfo;
|
sl@0
|
467 |
|
sl@0
|
468 |
/** A friend for self-test operation */
|
sl@0
|
469 |
friend class TTransition_StateAccessor;
|
sl@0
|
470 |
};
|
sl@0
|
471 |
|
sl@0
|
472 |
#include <ecom/test_bed/transition.inl>
|
sl@0
|
473 |
|
sl@0
|
474 |
#endif
|