os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/Transition.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the class CTransition
    15 // This file comment is for DOxygen only and is ignored by EDoc.
    16 // 
    17 //
    18 
    19 /**
    20  @test
    21 */
    22 
    23 #if defined (_MSC_VER) && (_MSC_VER >= 1000)
    24 #pragma once
    25 #endif
    26 #ifndef _INC_TRANSITION_3A23BFC30021_INCLUDED
    27 #define _INC_TRANSITION_3A23BFC30021_INCLUDED
    28 
    29 #include <e32base.h>
    30 
    31 #include <ecom/test_bed/testutilities.h>
    32 #include <ecom/test_bed/stateaccessor.h>
    33 #include <ecom/test_bed/transitionobserver.h>
    34 
    35 class CDataLogger;
    36 
    37 /**
    38 	@internalAll
    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 
    41 	data if they wish.
    42  */
    43 
    44 class CUnitTestContext : public CBase
    45 	{
    46 public:
    47 /**
    48 	@fn				CUnitTestContext(CDataLogger& aDataLogger, 
    49 										MStateAccessor& aAccessor,
    50 										MTransitionObserver& aObserver)
    51 	Intended Usage	: Default constructor.
    52 	@since			7.0
    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.
    56 	@pre 			None.
    57 	@post			CUnitTestContext is fully constructed, and initialized.
    58 */
    59 	
    60 	CUnitTestContext(CDataLogger&			aDataLogger, 
    61 					MStateAccessor&			aAccessor,
    62 					MTransitionObserver&	aObserver);
    63 
    64 /**
    65 	@fn				CDataLogger& DataLogger() const
    66 	Intended Usage	:	Provides access to the CDataLogger
    67 	@since			7.0
    68 	@return			A reference to a CDataLogger
    69 	@pre 			Object is fully constructed
    70  */
    71 	
    72 	CDataLogger& DataLogger() const;
    73 
    74 /**
    75 	@fn				MTransitionObserver& TransitionObserver() const
    76 	Intended Usage	:	Provides access to the MTransitionObserver
    77 	@since			7.0
    78 	@return			A reference to an MTransitionObserver
    79 	@pre 			Object is fully constructed
    80  */
    81 	
    82 	MTransitionObserver& TransitionObserver() const;
    83 
    84 /**
    85 	@fn				MStateAccessor& StateAccessor() const
    86 	Intended Usage	:	Provides access to the MStateAccessor
    87 	@since			7.0
    88 	@return			A reference to an MStateAccessor
    89 	@pre 			Object is fully constructed
    90  */
    91 	
    92 	MStateAccessor& StateAccessor() const;
    93 
    94 protected:
    95 	/** The output logging object. */
    96 	
    97 	CDataLogger&			iDataLogger;
    98 	/** The observer of this UnitTest's Transitions. */
    99 	
   100 	MTransitionObserver&	iObserver;
   101 	/** WhiteBox state access to the class under test. */
   102 	
   103 	MStateAccessor&			iStateAccessor;
   104 	};
   105 
   106 /**
   107 	@internalAll
   108 	@enum TTestBedAsyncState
   109 	Dependencies : None
   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.
   113  */
   114 enum TTestBedAsyncState {EAsyncCalled, EAsyncCompleted};
   115 
   116 /**
   117 	@internalAll
   118 	Comments : Placeholder for the functions which validate the state of a transition
   119 	before and after its execution.
   120  */
   121 
   122 class TTransitionValidator
   123 	{
   124 public:
   125 /**
   126 	@fn				TTransitionValidator(CUnitTestContext& aUTContext)
   127 	Intended Usage	:	Standard constructor
   128 	@since			7.0
   129 	@param			aUTContext The context within which this transition is executing
   130  */
   131 	
   132 	TTransitionValidator(CUnitTestContext& aUTContext);
   133 
   134 /**
   135 	@fn				~TTransitionValidator()
   136 	Intended Usage	: Standard Destructor.
   137 	Error Condition	: None.	
   138 	@since			7.0
   139 */
   140 	
   141 	virtual ~TTransitionValidator();
   142 
   143 /**
   144 	@fn				virtual TBool ValidatePreConditions()
   145 	Intended Usage	:	Overridden in the derived transition to check the transition pre
   146 	conditions.
   147 	@since			7.0
   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
   151  */
   152 	
   153 	virtual TBool ValidatePreConditions();
   154 
   155 /**
   156 	@fn				virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState)
   157 	Intended Usage	:	Overridden in the derived transition to check the transition post
   158 	conditions.
   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.
   163 	@since			7.0
   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
   168 	@post			Unspecified
   169  */
   170 	
   171 	virtual TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   172 
   173 protected:
   174 /** The context that this transition will be executing in */
   175 	
   176 	CUnitTestContext& iUTContext;
   177 	};
   178 
   179 /**
   180 	@internalAll
   181 	@struct TTransitionInfo
   182 	Dependencies : None
   183 	Comments : Structure for storing the current transition id and iteration number
   184  */
   185 
   186 struct TTransitionInfo
   187 	{
   188 	
   189 	TTransitionInfo(const TDesC& aTransitionId, 
   190 					CDataLogger& aDataLogger);
   191 /** Descriptor containing the transition identifier */
   192 	
   193 	const TDesC&		iTransitionId;
   194 /** The iteration that this transition is currently on */
   195 	
   196 	TInt				iIteration;
   197 /** The Data Logger that this transition is currently using */
   198 	
   199 	const CDataLogger&	iDataLogger;
   200 	};
   201 
   202 const TInt KFirstTransitionIteration = 1;
   203 
   204 /**
   205 	@internalAll
   206 	Comments : Base class from which test developers 
   207 				can derive their own transitions for both
   208 				synchronous and asynchronous methods on
   209 				the test class.
   210 				
   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
   215 				override:
   216 				
   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).
   220 
   221 				2. SetStartStateL() to set the test class state,
   222 				Using the TStateAccessor provided in the c'tor.
   223 
   224 				3. ValidatePreConditions() to test the test class state 
   225 				is valid.
   226 
   227 				4. TransitMethodL() to define the transition behaviour,
   228 				calling the method to test with the appropriate parameters.
   229 
   230 				5. ValidatePostConditions(), to check the end state is valid.
   231 				
   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.)
   236  */
   237 
   238 class CTransition : public CActive
   239 	{
   240 public:
   241 /**
   242 	@fn				 IMPORT_C ~CTransition()
   243 	Intended Usage	: Standardized virtual destruction method
   244 	@since			7.0
   245 	@pre 			The CTransition exists
   246 	@post			The object has been destroyed
   247  */
   248 	
   249 	IMPORT_C ~CTransition();
   250 
   251 /**
   252 	@fn				virtual void SetStartStateL()
   253 	Intended Usage	:	Sets the state of the test object to that specified
   254 	Error Condition	:	
   255 	@since			7.0
   256 	@pre 			The CTransition is instantiated
   257 	@post			The CTransition is in the state specified
   258  */
   259 	
   260 	IMPORT_C virtual void SetStartStateL();
   261 
   262 /**
   263 	@fn				IMPORT_C const TDesC& TransitionId() const
   264 	Intended Usage	:	Returns the transition identifier
   265 	Error Condition	:	
   266 	@since			7.0
   267 	@return			const TDesC& The identifier of this transition
   268 	@pre 			The CTransition has been instantiated
   269  */
   270 	
   271 	IMPORT_C const TDesC& TransitionId() const;
   272 
   273 /**
   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
   277 	Error Condition	:	
   278 	@since			7.0
   279 	@return			const TTransitionInfo Information on the current transition
   280 	@pre 			This CTransition is initialized
   281  */
   282 	
   283 	IMPORT_C const TTransitionInfo& TransitionInfo() const;
   284 
   285 /**
   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.
   290 	Error Condition	:	
   291 	@since			7.0
   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
   295  */
   296 	
   297 	IMPORT_C virtual void RunTransition(TRequestStatus* aUnitTestStatus);
   298 
   299 /**
   300 	@fn				IMPORT_C void RepeatOnce()
   301 	Intended Usage	:	Flag this transition to be repeated
   302 	@since			7.0
   303 	@pre 			None
   304 	@post			The iRepeatThis flag is set to true.
   305  */
   306 	
   307 	IMPORT_C void RepeatOnce();
   308 
   309 /**
   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().
   317 	@since			7.0
   318 	@return			TBool Flag indicating whether this is a blocking transition or not.
   319 	@pre 			None
   320  */
   321 	
   322 	IMPORT_C TBool IsBlockingTransition() const;
   323 
   324 /**
   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().
   331 	@since			7.0
   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
   335  */
   336 	
   337 	IMPORT_C void SetBlockingTransition(TBool aBlocking);
   338 
   339 /**
   340 	@fn				GetErrorCode() const
   341 	Intended Usage	:	Returns the error code last recorded by the transition.
   342 	@since			7.0
   343 	@return			The error code that was last recorded during the transition execution.
   344 	@pre 			This object is fully constructed.
   345  */
   346 	
   347 	IMPORT_C TInt GetErrorCode() const;
   348 
   349 protected:
   350 /**
   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
   358 	@since			7.0
   359 	@pre 			None
   360 	@post			First phase of two phase construction is complete
   361  */
   362 	IMPORT_C CTransition(const TDesC&					aTransitionId, 
   363 							   CUnitTestContext&		aUTContext,
   364 							   TTransitionValidator&	aValidator);
   365 
   366 /**
   367 	@fn				virtual void DoCancel()
   368 	Intended Usage	:	Standard Active Object method for cancelling the current request
   369 	Error Condition	:	
   370 	@since			7.0
   371 	@pre 			None
   372 	@post			Any outstanding requests are cancelled
   373  */
   374 	
   375 	IMPORT_C virtual void DoCancel();
   376 
   377 /**
   378 	@fn				RunL()
   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.
   389 	Error Condition	:	
   390 	@since			7.0
   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.
   394  */
   395 	
   396 	IMPORT_C virtual void RunL();
   397 	
   398 /**
   399 	@fn				TransitMethodL()
   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
   402 	Error Condition	:	
   403 	@since			7.0
   404 	@pre 			Preconditions for this transition have been validated
   405 	@post			The test method has been executed
   406  */
   407 	
   408 	IMPORT_C virtual void TransitMethodL() = 0;
   409 	
   410 /**
   411 	@fn				RunError(TInt anErrorCode)
   412 	Intended Usage	:	Called by the active scheduler if RunL leaves
   413 	@since			7.0
   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
   419  */
   420 	
   421 	IMPORT_C virtual TInt RunError(TInt aErrorCode);
   422 
   423 /**
   424 	@fn				PostTransitionCleanup()
   425 	Intended Usage	:	Called from the RunL immediately after TransitMethodL() executes
   426 	@since			7.0
   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.
   430  */
   431 	
   432 	IMPORT_C virtual void PostTransitionCleanup();
   433 
   434 protected:
   435 /** The transition identifier*/
   436 	
   437 	const TDesC&		iTransitionId;
   438 /** The context in which this transition is running (logging, state accessor & observer) */
   439 	
   440 	CUnitTestContext&	iUTContext;
   441 /** Used for checking the state of the test object - provides pre and post condition 
   442 	validation functions */
   443 	
   444 	TTransitionValidator& iValidator;
   445 /** Indicates that this transition should be re-run after the current run */
   446 	
   447 	TBool					iRepeatThis;
   448 /** The iStatus of the UnitTest which owns me so that I can complete it */
   449 	
   450 	TRequestStatus*			iUnitTestStatus;
   451 /** Indicates that the transition has executed and can be completed */
   452 	
   453 	TBool					iTransitionFinished;
   454 /** indicates the code that the RunL left with when completing with a KErrTestBedLeft */
   455 	
   456 	TInt iLeaveError;
   457 /** Indicates that this transition should not execute until all previous async transitions
   458 	have finished */
   459 	
   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 */
   465 	
   466 	TTransitionInfo			iTransitionInfo;
   467 
   468 /** A friend for self-test operation */
   469 	friend class TTransition_StateAccessor;
   470 	};
   471 
   472 #include <ecom/test_bed/transition.inl>
   473 
   474 #endif