os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitions.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 definitions of the transition classes upon the CTestManager class methods.
    15 // 
    16 //
    17 
    18 #ifndef __TESTMANAGERTRANSITIONS_H__
    19 #define __TESTMANAGERTRANSITIONS_H__
    20 
    21 #include "TestUtilities.h"
    22 #include "StateAccessor.h"
    23 #include "LeakTestTransition.h"
    24 #include <ecom/test_bed/datalogger.h>
    25 #include "TestManager.h"
    26 #include "TestManagerStateAccessor.h"
    27 #include <ecom/test_bed/unittest.h>
    28 #include "TestController.h"
    29 #include "TestManagerObserverStub.h"
    30 
    31 #define CTransitionType CLeakTestTransition
    32 
    33 // ______________________________________________________________________________
    34 //
    35 /**
    36 	@internalComponent
    37 
    38 	Comments : Provide all the CTestManager specific
    39 	parameters and behaviour on the CTestManager
    40 	test class for a transition.
    41  */
    42 class CTestManager_UnitTestContext : public CUnitTestContext
    43 	{
    44 public:
    45 	/**
    46 		@fn				CTestManager_UnitTestContext(CDataLogger& aDataLogger,
    47 														MStateAccessor& aStateAccessor,
    48 														MTransitionObserver& aObserver)
    49 		Intended Usage	: Default constructor.
    50 		Error Condition	: None. 
    51 		@since			6.0
    52 		@param			aDataLogger The output logging object.
    53 		@param			aObserver The observer of this UnitTest's Transitions.
    54 		@param			aStateAccessor WhiteBox state access to the CTestManager class under test.
    55 		@pre 			None.
    56 		@post			CTestManager_UnitTestContext is fully constructed, and initialised.
    57 	*/
    58 	inline CTestManager_UnitTestContext(CDataLogger& aDataLogger,
    59 										MStateAccessor& aStateAccessor,
    60 										MTransitionObserver& aObserver);
    61 
    62 	/**
    63 		@fn				~CTestManager_UnitTestContext()
    64 		Intended Usage	: Default Destructor
    65 		@since			6.0
    66 		@pre 			CTestManager_UnitTestContext is fully constructed.
    67 		@post			CTestManager_UnitTestContext is fully destroyed
    68 		*/
    69 	virtual inline ~CTestManager_UnitTestContext();
    70 
    71 	inline MManagerObserver& ManagerObserver();
    72 
    73 	/** The instance of the class under test */
    74 	CTestManager* iTestManager;
    75 	/** A component info to be used by the TestManager */
    76 	CComponentInfo* iComponentInfo;
    77 	/** A reference to the observer stub of the CTestManager */
    78 	CTestManagerObserverStub* iTestManagerObserverStub;
    79 	/** A test controller to be used by the TestManager */
    80 	CTestController* iTestController;
    81 	/** A component tester to be used by the TestManager */
    82 	CComponentTester* iTester;
    83 	/** An array of all the tests avaialble to be run */
    84 	RPointerArray<CComponentInfo>* iTestListArray;
    85 	/** An array of all the available components */
    86 	const RPointerArray<CComponentInfo>* iComponents;
    87 	/** An array of all the tests that are to be run */
    88 	RPointerArray<TTestInfo> iTests;
    89 	/** The index of the component to test */
    90 	TInt iComponentIndex;
    91 
    92 	}; // CTestManager_UnitTestContext
    93 
    94 // ______________________________________________________________________________
    95 //
    96 /**
    97 	@internalComponent
    98 
    99 	Comments : Transition test of the CTestManager::NewL method.
   100  */
   101 class CTestManager_NewL_Transition : public CTransitionType
   102 	{
   103 public:
   104 	/**
   105 		@fn				CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
   106 																	TTransitionValidator& aValidator)
   107 		Intended Usage	: Standard c'tor method.
   108 		Error Condition	: None.
   109 		@since			6.0
   110 		@param			aUTContext The context this transition is operating in.
   111 		@param			aValidator Used for checking the pre & post conditions of the test object.
   112 		@pre 			None.
   113 		@post			CTestManager_NewL_Transition is fully constructed.
   114 	*/
   115 	CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
   116 													TTransitionValidator& aValidator);
   117 	/**
   118 		@fn				TransitMethodL()
   119 		Intended Usage	: To execute the CTestManager::NewL method for the test harness.
   120 		Error Condition	: Leaves with an error code.
   121 		@leave  		KErrNoMemory, (@see CTestManager::NewL)
   122 		@since			6.0
   123 		@return			None
   124 		@pre 			CTestManager_NewL_Transition is fully constructed.
   125 		@post			No change in the CTestManager_NewL_Transition apart
   126 						from iTestManager, which may have changed state.
   127 						(@see CTestManager::NewL post-condition) for iTestManager's new state.
   128 	*/
   129 	inline void TransitMethodL();
   130 
   131 	/**
   132 		@fn				Context() const
   133 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   134 		Error Condition	: None.
   135 		@since			6.0
   136 		@return			The unit test context cast to a CTestManager_UnitTestContext
   137 		@pre 			iUTContext is a valid CTestManager_UnitTestContext.
   138 		@post			No change in the CTestManager_NewL_Transition
   139 	*/
   140 	inline CTestManager_UnitTestContext& Context() const;
   141 	};	// CTestManager_NewL_Transition
   142 
   143 // ______________________________________________________________________________
   144 //
   145 /**
   146 	@internalComponent
   147 
   148 	Comments : Transition test of the CTestManager::Dtor method.
   149  */
   150 class CTestManager_Dtor_Transition : public CTransition
   151 	{
   152 public:
   153 	/**
   154 		@fn				CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
   155 																	TTransitionValidator& aValidator)
   156 		Intended Usage	: Standard c'tor method.
   157 		Error Condition	: None.
   158 		@since			6.0
   159 		@param			aUTContext The context this transition is operating in.
   160 		@param			aValidator Used for checking the pre & post conditions of the test object.
   161 		@pre 			None.
   162 		@post			CTestManager_Dtor_Transition is fully constructed.
   163 	*/
   164 	CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
   165 													TTransitionValidator& aValidator);
   166 	/**
   167 		@fn				TransitMethodL()
   168 		Intended Usage	: To execute the CTestManager::Dtor method for the test harness.
   169 		Error Condition	: Leaves with an error code.
   170 		@leave  		KErrNoMemory, (@see CTestManager::Dtor)
   171 		@since			6.0
   172 		@return			None
   173 		@pre 			CTestManager_Dtor_Transition is fully constructed.
   174 		@post			No change in the CTestManager_Dtor_Transition apart
   175 						from iTestManager, which may have changed state.
   176 						(@see CTestManager::Dtor post-condition) for iTestManager's new state.
   177 	*/
   178 	inline void TransitMethodL();
   179 
   180 	/**
   181 		@fn				Context() const
   182 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   183 		Error Condition	: None.
   184 		@since			6.0
   185 		@return			The unit test context cast to a CTestManager_UnitTestContext
   186 		@pre 			iUTContext is a valid CTestManager_UnitTestContext.
   187 		@post			No change in the CTestManager_Dtor_Transition
   188 	*/
   189 	inline CTestManager_UnitTestContext& Context() const;
   190 	};	// CTestManager_Dtor_Transition
   191 
   192 // ______________________________________________________________________________
   193 //
   194 /**
   195 	@internalComponent
   196 
   197 	Comments : Transition test of the CTestManager::RunTests method.
   198  */
   199 class CTestManager_RunTests_Transition : public CTransition
   200 	{
   201 public:
   202 	/**
   203 		@fn				CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
   204 																	TTransitionValidator& aValidator)
   205 		Intended Usage	: Standard c'tor method.
   206 		Error Condition	: None.
   207 		@since			6.0
   208 		@param			aUTContext The context this transition is operating in.
   209 		@param			aValidator Used for checking the pre & post conditions of the test object.
   210 		@pre 			None.
   211 		@post			CTestManager_RunTests_Transition is fully constructed.
   212 	*/
   213 	CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
   214 													TTransitionValidator& aValidator);
   215 	/**
   216 		@fn				TransitMethodL()
   217 		Intended Usage	: To execute the CTestManager::RunTests method for the test harness.
   218 		Error Condition	: Leaves with an error code.
   219 		@leave  		KErrNoMemory, (@see CTestManager::RunTests)
   220 		@since			6.0
   221 		@return			None
   222 		@pre 			CTestManager_RunTests_Transition is fully constructed.
   223 		@post			No change in the CTestManager_RunTests_Transition apart
   224 						from iTestManager, which may have changed state.
   225 						(@see CTestManager::RunTests post-condition) for iTestManager's new state.
   226 	*/
   227 	inline void TransitMethodL();
   228 
   229 	/**
   230 		@fn				Context() const
   231 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   232 		Error Condition	: None.
   233 		@since			6.0
   234 		@return			The unit test context cast to a CTestManager_UnitTestContext
   235 		@pre 			iUTContext is a valid CTestManager_UnitTestContext.
   236 		@post			No change in the CTestManager_RunTests_Transition
   237 	*/
   238 	inline CTestManager_UnitTestContext& Context() const;
   239 	};	// CTestManager_RunTests_Transition
   240 
   241 
   242 // ______________________________________________________________________________
   243 //
   244 /**
   245 	@internalComponent
   246 
   247 	Comments : Transition test of the CTestManager::TestComponentL method.
   248  */
   249 class CTestManager_TestComponentL_Transition : public CTransitionType
   250 	{
   251 public:
   252 	/**
   253 		@fn				CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
   254 																	TTransitionValidator& aValidator)
   255 		Intended Usage	: Standard c'tor method.
   256 		Error Condition	: None.
   257 		@since			6.0
   258 		@param			aUTContext The context this transition is operating in.
   259 		@param			aValidator Used for checking the pre & post conditions of the test object.
   260 		@pre 			None.
   261 		@post			CTestManager_TestComponentL_Transition is fully constructed.
   262 	*/
   263 	CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
   264 													TTransitionValidator& aValidator);
   265 	/**
   266 		@fn				TransitMethodL()
   267 		Intended Usage	: To execute the CTestManager::TestComponentL method for the test harness.
   268 		Error Condition	: Leaves with an error code.
   269 		@leave  		KErrNoMemory, (@see CTestManager::TestComponentL)
   270 		@since			6.0
   271 		@return			None
   272 		@pre 			CTestManager_TestComponentL_Transition is fully constructed.
   273 		@post			No change in the CTestManager_TestComponentL_Transition apart
   274 						from iTestManager, which may have changed state.
   275 						(@see CTestManager::TestComponentL post-condition) for iTestManager's new state.
   276 	*/
   277 	inline void TransitMethodL();
   278 
   279 	/**
   280 		@fn				Context() const
   281 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   282 		Error Condition	: None.
   283 		@since			6.0
   284 		@return			The unit test context cast to a CTestManager_UnitTestContext
   285 		@pre 			iUTContext is a valid CTestManager_UnitTestContext.
   286 		@post			No change in the CTestManager_TestComponentL_Transition
   287 	*/
   288 	inline CTestManager_UnitTestContext& Context() const;
   289 	};	// CTestManager_TestComponentL_Transition
   290 
   291 
   292 // Add additional Transition class definitions here...
   293 
   294 #include "TestManagerTransitions.inl"
   295 
   296 #include "TestManagerUnitTestContext.inl"
   297 
   298 #endif // __TESTMANAGERTRANSITIONS_H__
   299