os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestUnitTest.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 // The unit test class definitions for the CUnitTest class.
    15 // 
    16 //
    17 
    18 #ifndef __UNITTESTUNITTEST_H__
    19 #define __UNITTESTUNITTEST_H__
    20 
    21 #include <ecom/test_bed/testbeddefinitions.h>
    22 #include "UnitTestStateAccessor.h"
    23 #include "UnitTestTransitionValidation.h"
    24 #include "UnitTestTransitions.h"
    25 
    26 // ______________________________________________________________________________
    27 //
    28 /**
    29 	@internalComponent
    30 
    31 	Comments : Unit Test for CreateAndDestroy on CUnitTest, the class under test.
    32  */
    33 class CUnitTest_CreateAndDestroy_UnitTest : public CUnitTest
    34 	{
    35 public:
    36 	/**
    37 		@fn				NewL(CDataLogger& aDataLogger,
    38 							MUnitTestObserver& aObserver)
    39 		Intended Usage	: Standard two-phase construction which leaves nothing on the
    40 						cleanup stack.
    41 		Error Condition	: Leaves with the error code.
    42 		@leave  		KErrNoMemory
    43 		@since			7.0
    44 		@param			aDataLogger The output logging object.
    45 		@param			aObserver The observer of this UnitTest.
    46 		@return			CUnitTest_CreateAndDestroy_UnitTest* The constructed object.
    47 		@pre 			None.
    48 		@post			CUnitTest_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    49 	 */
    50 	static CUnitTest_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
    51 											MUnitTestObserver& aObserver);
    52 
    53 	/**
    54 		@fn				RunError(TInt aError)
    55 		Intended Usage	: Intercept the panic caused by a RunL leave,
    56 						to restore the CUnitTest_CreateAndDestroy_UnitTest
    57 						object to a sensible state.
    58 						(called by the Active Scheduler immediately before the Panic).
    59 		Error Condition	: @see CUnitTest::RunError().
    60 		@since			7.0
    61 		@return			TInt KErrNone if cleanup successful, otherwise
    62 						@see CUnitTest::RunError()
    63 		@pre 			CUnitTest_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    64 		@post			The object has been restored to a sensible state.
    65 	 */
    66 	inline TInt RunError(TInt aError);
    67 
    68 	/**
    69 		@fn				~CUnitTest_CreateAndDestroy_UnitTest()
    70 		Intended Usage	: Standard Destructor.
    71 		Error Condition	: None.	
    72 		@since			7.0
    73 		@pre 			CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
    74 		@post			CUnitTest_CreateAndDestroy_UnitTest is fully destroyed.
    75 	*/
    76 	~CUnitTest_CreateAndDestroy_UnitTest();
    77 
    78 private:
    79 	/**
    80 		@fn				CUnitTest_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    81 														MUnitTestObserver& aObserver)
    82 		Intended Usage	: Default constructor.
    83 		Error Condition	: None. 
    84 		@since			7.0
    85 		@param			aDataLogger The output logging object.
    86 		@param			aObserver The observer of this UnitTest.
    87 		@param			aStateAccessor WhiteBox state access to the CUnitTest class.
    88 		@pre 			None.
    89 		@post			CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
    90 	*/
    91 	inline CUnitTest_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    92 											MUnitTestObserver& aObserver);
    93 
    94 	/**
    95 		@fn				void ConstructL()
    96 		Intended Usage	: Second phase of safe two phase construction, 
    97 		to complete the object initialisation.
    98 		Error Condition	: Leaves with an error code.
    99 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   100 		@since			7.0
   101 		@return			None 
   102 		@pre 			CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
   103 		@post			CUnitTest_CreateAndDestroy_UnitTest is fully initialised.
   104 	*/
   105 	void ConstructL();
   106 
   107 	/**
   108 	The context of the Unit Test.
   109 	i.e The CUnitTest class tested by this UnitTest's transitions.
   110 	 */
   111 	CUnitTest_UnitTestContext* iUTContext;
   112 	TUnitTest_StateAccessor*	iStateAccessor;
   113 	// C'tor, d'tor, and method transition validators
   114 	TUnitTest_Ctor_TransitionValidator*	iCtorValidator;
   115 	TUnitTest_Dtor_TransitionValidator*	iDtorValidator;
   116 	};	// CUnitTest_CreateAndDestroy_UnitTest
   117 
   118 // ______________________________________________________________________________
   119 //
   120 /**
   121 	@internalComponent
   122 
   123 	Comments : Unit Test for ManageTransitions on CUnitTest, the class under test.
   124  */
   125 class CUnitTest_ManageTransitions_UnitTest : public CUnitTest
   126 	{
   127 public:
   128 	/**
   129 		@fn				NewL(CDataLogger& aDataLogger,
   130 							MUnitTestObserver& aObserver)
   131 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   132 						cleanup stack.
   133 		Error Condition	: Leaves with the error code.
   134 		@leave  		KErrNoMemory
   135 		@since			7.0
   136 		@param			aDataLogger The output logging object.
   137 		@param			aObserver The observer of this UnitTest.
   138 		@return			CUnitTest_ManageTransitions_UnitTest* The constructed object.
   139 		@pre 			None.
   140 		@post			CUnitTest_ManageTransitions_UnitTest is fully constructed, and initialised.
   141 	 */
   142 	static CUnitTest_ManageTransitions_UnitTest* NewL(CDataLogger& aDataLogger,
   143 											MUnitTestObserver& aObserver);
   144 
   145 	/**
   146 		@fn				RunError(TInt aError)
   147 		Intended Usage	: Intercept the panic caused by a RunL leave,
   148 						to restore the CUnitTest_ManageTransitions_UnitTest
   149 						object to a sensible state.
   150 						(called by the Active Scheduler immediately before the Panic).
   151 		Error Condition	: @see CUnitTest::RunError().
   152 		@since			7.0
   153 		@return			TInt KErrNone if cleanup successful, otherwise
   154 						@see CUnitTest::RunError()
   155 		@pre 			CUnitTest_ManageTransitions_UnitTest is fully constructed, and initialised.
   156 		@post			The object has been restored to a sensible state.
   157 	 */
   158 	inline TInt RunError(TInt aError);
   159 
   160 	/**
   161 		@fn				~CUnitTest_ManageTransitions_UnitTest()
   162 		Intended Usage	: Standard Destructor.
   163 		Error Condition	: None.	
   164 		@since			7.0
   165 		@pre 			CUnitTest_ManageTransitions_UnitTest is fully constructed.
   166 		@post			CUnitTest_ManageTransitions_UnitTest is fully destroyed.
   167 	*/
   168 	~CUnitTest_ManageTransitions_UnitTest();
   169 
   170 private:
   171 	/**
   172 		@fn				CUnitTest_ManageTransitions_UnitTest(CDataLogger& aDataLogger,
   173 														MUnitTestObserver& aObserver)
   174 		Intended Usage	: Default constructor.
   175 		Error Condition	: None. 
   176 		@since			7.0
   177 		@param			aDataLogger The output logging object.
   178 		@param			aObserver The observer of this UnitTest.
   179 		@param			aStateAccessor WhiteBox state access to the CUnitTest class.
   180 		@pre 			None.
   181 		@post			CUnitTest_ManageTransitions_UnitTest is fully constructed.
   182 	*/
   183 	inline CUnitTest_ManageTransitions_UnitTest(CDataLogger& aDataLogger,
   184 											MUnitTestObserver& aObserver);
   185 
   186 	/**
   187 		@fn				void ConstructL()
   188 		Intended Usage	: Second phase of safe two phase construction, 
   189 		to complete the object initialisation.
   190 		Error Condition	: Leaves with an error code.
   191 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   192 		@since			7.0
   193 		@return			None 
   194 		@pre 			CUnitTest_ManageTransitions_UnitTest is fully constructed.
   195 		@post			CUnitTest_ManageTransitions_UnitTest is fully initialised.
   196 	*/
   197 	void ConstructL();
   198 
   199 	/**
   200 	The context of the Unit Test.
   201 	i.e The CUnitTest class tested by this UnitTest's transitions.
   202 	 */
   203 	CUnitTest_UnitTestContext* iUTContext;
   204 	TUnitTest_StateAccessor*	iStateAccessor;
   205 	// C'tor, d'tor, and method transition validators
   206 	TUnitTest_Ctor_TransitionValidator*	iCtorValidator;
   207 	TUnitTest_TransitionSet_TransitionValidator* iTransitionSetValidator;
   208 	TUnitTest_SetCurrentTransition_TransitionValidator* iSetCurrentTransitionValidator;
   209 	TUnitTest_GetCurrentTransition_TransitionValidator* iGetCurrentTransitionValidator;
   210 	TUnitTest_Dtor_TransitionValidator*	iDtorValidator;
   211 	};	// CUnitTest_ManageTransitions_UnitTest
   212 
   213 // ______________________________________________________________________________
   214 //
   215 /**
   216 	@internalComponent
   217 
   218 	Comments : Unit Test for RunTests on CUnitTest, the class under test.
   219  */
   220 class CUnitTest_RunTests_UnitTest : public CUnitTest
   221 	{
   222 public:
   223 	/**
   224 		@fn				NewL(CDataLogger& aDataLogger,
   225 							MUnitTestObserver& aObserver)
   226 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   227 						cleanup stack.
   228 		Error Condition	: Leaves with the error code.
   229 		@leave  		KErrNoMemory
   230 		@since			7.0
   231 		@param			aDataLogger The output logging object.
   232 		@param			aObserver The observer of this UnitTest.
   233 		@return			CUnitTest_RunTests_UnitTest* The constructed object.
   234 		@pre 			None.
   235 		@post			CUnitTest_RunTests_UnitTest is fully constructed, and initialised.
   236 	 */
   237 	static CUnitTest_RunTests_UnitTest* NewL(CDataLogger& aDataLogger,
   238 											MUnitTestObserver& aObserver);
   239 
   240 	/**
   241 		@fn				RunError(TInt aError)
   242 		Intended Usage	: Intercept the panic caused by a RunL leave,
   243 						to restore the CUnitTest_RunTests_UnitTest
   244 						object to a sensible state.
   245 						(called by the Active Scheduler immediately before the Panic).
   246 		Error Condition	: @see CUnitTest::RunError().
   247 		@since			7.0
   248 		@return			TInt KErrNone if cleanup successful, otherwise
   249 						@see CUnitTest::RunError()
   250 		@pre 			CUnitTest_RunTests_UnitTest is fully constructed, and initialised.
   251 		@post			The object has been restored to a sensible state.
   252 	 */
   253 	inline TInt RunError(TInt aError);
   254 
   255 	/**
   256 		@fn				~CUnitTest_RunTests_UnitTest()
   257 		Intended Usage	: Standard Destructor.
   258 		Error Condition	: None.	
   259 		@since			7.0
   260 		@pre 			CUnitTest_RunTests_UnitTest is fully constructed.
   261 		@post			CUnitTest_RunTests_UnitTest is fully destroyed.
   262 	*/
   263 	~CUnitTest_RunTests_UnitTest();
   264 
   265 private:
   266 	/**
   267 		@fn				CUnitTest_RunTests_UnitTest(CDataLogger& aDataLogger,
   268 														MUnitTestObserver& aObserver)
   269 		Intended Usage	: Default constructor.
   270 		Error Condition	: None. 
   271 		@since			7.0
   272 		@param			aDataLogger The output logging object.
   273 		@param			aObserver The observer of this UnitTest.
   274 		@param			aStateAccessor WhiteBox state access to the CUnitTest class.
   275 		@pre 			None.
   276 		@post			CUnitTest_RunTests_UnitTest is fully constructed.
   277 	*/
   278 	inline CUnitTest_RunTests_UnitTest(CDataLogger& aDataLogger,
   279 											MUnitTestObserver& aObserver);
   280 
   281 	/**
   282 		@fn				void ConstructL()
   283 		Intended Usage	: Second phase of safe two phase construction, 
   284 		to complete the object initialisation.
   285 		Error Condition	: Leaves with an error code.
   286 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   287 		@since			7.0
   288 		@return			None 
   289 		@pre 			CUnitTest_RunTests_UnitTest is fully constructed.
   290 		@post			CUnitTest_RunTests_UnitTest is fully initialised.
   291 	*/
   292 	void ConstructL();
   293 
   294 	/**
   295 	The context of the Unit Test.
   296 	i.e The CUnitTest class tested by this UnitTest's transitions.
   297 	 */
   298 	CUnitTest_UnitTestContext* iUTContext;
   299 	TUnitTest_StateAccessor*	iStateAccessor;
   300 	// C'tor, d'tor, and method transition validators
   301 	TUnitTest_Ctor_TransitionValidator*	iCtorValidator;
   302 	TUnitTest_SetParameters_TransitionValidator* iSetParametersValidator;
   303 	TUnitTest_PrepareUnitTest_TransitionValidator* iPrepareUnitTestValidator;
   304 	TUnitTest_RunTest_TransitionValidator* iRunTestValidator;
   305 	TUnitTest_Dtor_TransitionValidator*	iDtorValidator;
   306 	};	// CUnitTest_RunTests_UnitTest
   307 
   308 // ______________________________________________________________________________
   309 //
   310 /**
   311 	@internalComponent
   312 
   313 	Comments : Unit Test for AllOther on CUnitTest, the class under test.
   314  */
   315 class CUnitTest_AllOther_UnitTest : public CUnitTest
   316 	{
   317 public:
   318 	/**
   319 		@fn				NewL(CDataLogger& aDataLogger,
   320 							MUnitTestObserver& aObserver)
   321 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   322 						cleanup stack.
   323 		Error Condition	: Leaves with the error code.
   324 		@leave  		KErrNoMemory
   325 		@since			7.0
   326 		@param			aDataLogger The output logging object.
   327 		@param			aObserver The observer of this UnitTest.
   328 		@return			CUnitTest_AllOther_UnitTest* The constructed object.
   329 		@pre 			None.
   330 		@post			CUnitTest_AllOther_UnitTest is fully constructed, and initialised.
   331 	 */
   332 	static CUnitTest_AllOther_UnitTest* NewL(CDataLogger& aDataLogger,
   333 											MUnitTestObserver& aObserver);
   334 
   335 	/**
   336 		@fn				RunError(TInt aError)
   337 		Intended Usage	: Intercept the panic caused by a RunL leave,
   338 						to restore the CUnitTest_AllOther_UnitTest
   339 						object to a sensible state.
   340 						(called by the Active Scheduler immediately before the Panic).
   341 		Error Condition	: @see CUnitTest::RunError().
   342 		@since			7.0
   343 		@return			TInt KErrNone if cleanup successful, otherwise
   344 						@see CUnitTest::RunError()
   345 		@pre 			CUnitTest_AllOther_UnitTest is fully constructed, and initialised.
   346 		@post			The object has been restored to a sensible state.
   347 	 */
   348 	inline TInt RunError(TInt aError);
   349 
   350 	/**
   351 		@fn				~CUnitTest_AllOther_UnitTest()
   352 		Intended Usage	: Standard Destructor.
   353 		Error Condition	: None.	
   354 		@since			7.0
   355 		@pre 			CUnitTest_AllOther_UnitTest is fully constructed.
   356 		@post			CUnitTest_AllOther_UnitTest is fully destroyed.
   357 	*/
   358 	~CUnitTest_AllOther_UnitTest();
   359 
   360 private:
   361 	/**
   362 		@fn				CUnitTest_AllOther_UnitTest(CDataLogger& aDataLogger,
   363 														MUnitTestObserver& aObserver)
   364 		Intended Usage	: Default constructor.
   365 		Error Condition	: None. 
   366 		@since			7.0
   367 		@param			aDataLogger The output logging object.
   368 		@param			aObserver The observer of this UnitTest.
   369 		@param			aStateAccessor WhiteBox state access to the CUnitTest class.
   370 		@pre 			None.
   371 		@post			CUnitTest_AllOther_UnitTest is fully constructed.
   372 	*/
   373 	inline CUnitTest_AllOther_UnitTest(CDataLogger& aDataLogger,
   374 											MUnitTestObserver& aObserver);
   375 
   376 	/**
   377 		@fn				void ConstructL()
   378 		Intended Usage	: Second phase of safe two phase construction, 
   379 		to complete the object initialisation.
   380 		Error Condition	: Leaves with an error code.
   381 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   382 		@since			7.0
   383 		@return			None 
   384 		@pre 			CUnitTest_AllOther_UnitTest is fully constructed.
   385 		@post			CUnitTest_AllOther_UnitTest is fully initialised.
   386 	*/
   387 	void ConstructL();
   388 
   389 	/**
   390 	The context of the Unit Test.
   391 	i.e The CUnitTest class tested by this UnitTest's transitions.
   392 	 */
   393 	CUnitTest_UnitTestContext* iUTContext;
   394 	TUnitTest_StateAccessor*	iStateAccessor;
   395 	// C'tor, d'tor, and method transition validators
   396 	TUnitTest_Ctor_TransitionValidator*	iCtorValidator;
   397 	TUnitTest_AddTransition_TransitionValidator* iAddTransitionValidator;
   398 	TUnitTest_AddBlockingTransition_TransitionValidator* iAddBlockingTransitionValidator;
   399 	TUnitTest_AddLeaveErrorCode_TransitionValidator* iAddLeaveErrorCodeValidator;
   400 	TUnitTest_UnitTestName_TransitionValidator* iUnitTestNameValidator;
   401 	TUnitTest_Dtor_TransitionValidator*	iDtorValidator;
   402 	};	// CUnitTest_AllOther_UnitTest
   403 
   404 
   405 #endif	// __UNITTESTUNITTEST_H__