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 CTransition
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #if defined (_MSC_VER) && (_MSC_VER >= 1000)
26 #ifndef _INC_TRANSITION_3A23BFC30021_INCLUDED
27 #define _INC_TRANSITION_3A23BFC30021_INCLUDED
31 #include <ecom/test_bed/testutilities.h>
32 #include <ecom/test_bed/stateaccessor.h>
33 #include <ecom/test_bed/transitionobserver.h>
39 Comments : Provide the base class definition for a Unit Test's specific data. This class
40 is CBase derived so that test developers can derive from this class and add owned member
44 class CUnitTestContext : public CBase
48 @fn CUnitTestContext(CDataLogger& aDataLogger,
49 MStateAccessor& aAccessor,
50 MTransitionObserver& aObserver)
51 Intended Usage : Default constructor.
53 @param aDataLogger The output logging object.
54 @param aObserver The observer of this UnitTest's Transitions.
55 @param aAccessor WhiteBox state access to the class under test.
57 @post CUnitTestContext is fully constructed, and initialized.
60 CUnitTestContext(CDataLogger& aDataLogger,
61 MStateAccessor& aAccessor,
62 MTransitionObserver& aObserver);
65 @fn CDataLogger& DataLogger() const
66 Intended Usage : Provides access to the CDataLogger
68 @return A reference to a CDataLogger
69 @pre Object is fully constructed
72 CDataLogger& DataLogger() const;
75 @fn MTransitionObserver& TransitionObserver() const
76 Intended Usage : Provides access to the MTransitionObserver
78 @return A reference to an MTransitionObserver
79 @pre Object is fully constructed
82 MTransitionObserver& TransitionObserver() const;
85 @fn MStateAccessor& StateAccessor() const
86 Intended Usage : Provides access to the MStateAccessor
88 @return A reference to an MStateAccessor
89 @pre Object is fully constructed
92 MStateAccessor& StateAccessor() const;
95 /** The output logging object. */
97 CDataLogger& iDataLogger;
98 /** The observer of this UnitTest's Transitions. */
100 MTransitionObserver& iObserver;
101 /** WhiteBox state access to the class under test. */
103 MStateAccessor& iStateAccessor;
108 @enum TTestBedAsyncState
110 Comments : Represents the possible states of an asynchronous transition when
111 ValidatePostConditions is called. EAsyncCalled means the async request has been made but
112 not satisfied, EAsyncCompleted is when the request has been satisfied.
114 enum TTestBedAsyncState {EAsyncCalled, EAsyncCompleted};
118 Comments : Placeholder for the functions which validate the state of a transition
119 before and after its execution.
122 class TTransitionValidator
126 @fn TTransitionValidator(CUnitTestContext& aUTContext)
127 Intended Usage : Standard constructor
129 @param aUTContext The context within which this transition is executing
132 TTransitionValidator(CUnitTestContext& aUTContext);
135 @fn ~TTransitionValidator()
136 Intended Usage : Standard Destructor.
137 Error Condition : None.
141 virtual ~TTransitionValidator();
144 @fn virtual TBool ValidatePreConditions()
145 Intended Usage : Overridden in the derived transition to check the transition pre
148 @return TBool ETrue if the Preconditions were valid, EFalse if not.
149 @pre This CTransition is fully constructed
150 @post Returns the validity of the preconditions
153 virtual TBool ValidatePreConditions();
156 @fn virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState)
157 Intended Usage : Overridden in the derived transition to check the transition post
159 When overriding, if the transition calls an asynchronous function ValidatePostConditions
160 will be called twice. Firstly, after the asynchronous function has been called and,
161 secondly, after the asynchronous request has completed. The parameter aAsyncState can
162 be used to distinguish between these two cases.
164 @param aAsyncState EAsyncCalled if the async function has been just been called,
165 EAsyncCompleted if the function has completed.
166 @return TBool ETrue if the Postconditions were valid, EFalse if not.
167 @pre This CTransition is fully constructed
171 virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
174 /** The context that this transition will be executing in */
176 CUnitTestContext& iUTContext;
181 @struct TTransitionInfo
183 Comments : Structure for storing the current transition id and iteration number
186 struct TTransitionInfo
189 TTransitionInfo(const TDesC& aTransitionId,
190 CDataLogger& aDataLogger);
191 /** Descriptor containing the transition identifier */
193 const TDesC& iTransitionId;
194 /** The iteration that this transition is currently on */
197 /** The Data Logger that this transition is currently using */
199 const CDataLogger& iDataLogger;
202 const TInt KFirstTransitionIteration = 1;
206 Comments : Base class from which test developers
207 can derive their own transitions for both
208 synchronous and asynchronous methods on
211 The default behaviour is to log its activity,
212 and claim that the pre and post conditions are true.
213 The TransitMethodL implementation does nothing.
214 To write a complete test class method transition
217 1. The c'tor, (To obtain the test class reference,
218 (or pointer reference for a NewL transit),
219 and any parameters for the TransitMethodL).
221 2. SetStartStateL() to set the test class state,
222 Using the TStateAccessor provided in the c'tor.
224 3. ValidatePreConditions() to test the test class state
227 4. TransitMethodL() to define the transition behaviour,
228 calling the method to test with the appropriate parameters.
230 5. ValidatePostConditions(), to check the end state is valid.
232 The simplest case of implementation is to derive an empty
233 class, that relies entirely upon the default behaviour,
234 and implement the remaining methods as appropriate.
235 (See the the EXAMPLE implementation.)
238 class CTransition : public CActive
242 @fn IMPORT_C ~CTransition()
243 Intended Usage : Standardized virtual destruction method
245 @pre The CTransition exists
246 @post The object has been destroyed
249 IMPORT_C ~CTransition();
252 @fn virtual void SetStartStateL()
253 Intended Usage : Sets the state of the test object to that specified
256 @pre The CTransition is instantiated
257 @post The CTransition is in the state specified
260 IMPORT_C virtual void SetStartStateL();
263 @fn IMPORT_C const TDesC& TransitionId() const
264 Intended Usage : Returns the transition identifier
267 @return const TDesC& The identifier of this transition
268 @pre The CTransition has been instantiated
271 IMPORT_C const TDesC& TransitionId() const;
274 @fn IMPORT_C const TTransitionInfo& TransitionInfo() const
275 Intended Usage : Get information on this transition. Return struct contains the
276 transition ID, the current iteration and the logging mechanism used by this transition
279 @return const TTransitionInfo Information on the current transition
280 @pre This CTransition is initialized
283 IMPORT_C const TTransitionInfo& TransitionInfo() const;
286 @fn virtual void RunTransition(TRequestStatus* aUnitTestStatus)
287 Intended Usage : Indicates that this transition should be run as soon as possible.
288 This function calls ValidatePreConditions to ensure the object is in the appropriate start state
289 and then sets the transition active causing its RunL function to be called.
292 @param aUnitTestStatus Status word of the calling CUnitTest
293 @pre The test object is in an appropriate state for this transition
294 @post The test object is in the end state of this transition
297 IMPORT_C virtual void RunTransition(TRequestStatus* aUnitTestStatus);
300 @fn IMPORT_C void RepeatOnce()
301 Intended Usage : Flag this transition to be repeated
304 @post The iRepeatThis flag is set to true.
307 IMPORT_C void RepeatOnce();
310 @fn IMPORT_C TBool IsBlockingTransition() const
311 Intended Usage : A blocking transition is one which does not run until all
312 outstanding asynchronous transitions have completed. This function returns
313 whether this is a blocking transition.
314 This function does not need to be used by test developers as it is taken
315 care of in the transition and unittest base classes. Blocking transitions
316 can be added using AddBlockingTransitionL() in CUnitTest::ConstructL().
318 @return TBool Flag indicating whether this is a blocking transition or not.
322 IMPORT_C TBool IsBlockingTransition() const;
325 @fn IMPORT_C void SetBlockingTransition(TBool aBlocking)
326 Intended Usage : A blocking transition is one which does not run until all
327 outstanding asynchronous transitions have completed.
328 This function does not need to be used by test developers as it is taken
329 care of in the transition and unittest base classes. Blocking transitions
330 can be added using AddBlockingTransitionL() in CUnitTest::ConstructL().
332 @param aBlocking Pass ETrue to set this as a blocking transition
333 @pre This object is fully constructed
334 @post The blocking status of this CTransition is set
337 IMPORT_C void SetBlockingTransition(TBool aBlocking);
340 @fn GetErrorCode() const
341 Intended Usage : Returns the error code last recorded by the transition.
343 @return The error code that was last recorded during the transition execution.
344 @pre This object is fully constructed.
347 IMPORT_C TInt GetErrorCode() const;
351 @fn CTransition(const TDesC& aTransactionId,
352 CUnitTestContext& aUTContext,
353 TTransitionValidator& aValidator)
354 Intended Usage : Default Constructor
355 @param aTransitionId The identifier of this transition
356 @param aUTContext The context within which this transition should run
357 @param aValidator Provides Pre & Post condition validation
360 @post First phase of two phase construction is complete
362 IMPORT_C CTransition(const TDesC& aTransitionId,
363 CUnitTestContext& aUTContext,
364 TTransitionValidator& aValidator);
367 @fn virtual void DoCancel()
368 Intended Usage : Standard Active Object method for cancelling the current request
372 @post Any outstanding requests are cancelled
375 IMPORT_C virtual void DoCancel();
379 Intended Usage : Implementation of CActive pure virtual method. For each transition execution
380 RunL is performed twice.
381 The first time it calls TransitMethodL() which is the developer defined function which executes the
382 test method. It then immediately sets itself active and attempts to complete. If TransitMethodL()
383 called a synchronous function then iStatus will not be KRequestPending and the RunL will be called as
384 soon as it is scheduled. If TransitMethodL() calls an asyncronous function then it will pass iStatus to the function and RunL
385 will be called when the asynchronous function completes.
386 Whichever method is used the second call of RunL() will complete the request of the CUnitTest which
387 called this transition by setting its status word. If it has been requested that this transition is
388 repeated then the status word will be set to KTestBedRepeatTest.
391 @pre RunTransition() ensures the preconditions for this function
392 @post After 1st run - test method has been called
393 After 2nd run - Unittest has been completed.
396 IMPORT_C virtual void RunL();
400 Intended Usage : Calls the method on the class being tested. If the call is to
401 an asynchronous service provider you must set iStatus to KRequestPending as usual
404 @pre Preconditions for this transition have been validated
405 @post The test method has been executed
408 IMPORT_C virtual void TransitMethodL() = 0;
411 @fn RunError(TInt anErrorCode)
412 Intended Usage : Called by the active scheduler if RunL leaves
414 @param anErrorCode The error code which RunL left with
415 @return KErrNone because if a CTransition::RunL leaves then we simply log
416 the event and inform the CUnitTest.
417 @pre This function is only called by the active scheduler if RunL leaves.
418 @post The owning CUnitTest has been informed that this CTransition left
421 IMPORT_C virtual TInt RunError(TInt aErrorCode);
424 @fn PostTransitionCleanup()
425 Intended Usage : Called from the RunL immediately after TransitMethodL() executes
427 @pre Must be called from RunL only after TransitMethodL() has completed.
428 @post Default behaviour is to do nothing.
429 See the derived classes for additional functionality.
432 IMPORT_C virtual void PostTransitionCleanup();
435 /** The transition identifier*/
437 const TDesC& iTransitionId;
438 /** The context in which this transition is running (logging, state accessor & observer) */
440 CUnitTestContext& iUTContext;
441 /** Used for checking the state of the test object - provides pre and post condition
442 validation functions */
444 TTransitionValidator& iValidator;
445 /** Indicates that this transition should be re-run after the current run */
448 /** The iStatus of the UnitTest which owns me so that I can complete it */
450 TRequestStatus* iUnitTestStatus;
451 /** Indicates that the transition has executed and can be completed */
453 TBool iTransitionFinished;
454 /** indicates the code that the RunL left with when completing with a KErrTestBedLeft */
457 /** Indicates that this transition should not execute until all previous async transitions
460 TBool iBlockingTransition;
461 /** Indicates that this transition is an asynchronous transition*/
462 TBool iAsyncTransition;
463 /** Information on this transition including its ID, its iteration number and the data logger
464 it is currently using */
466 TTransitionInfo iTransitionInfo;
468 /** A friend for self-test operation */
469 friend class TTransition_StateAccessor;
472 #include <ecom/test_bed/transition.inl>