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