os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerTransitions.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 definition of the transitions on the CLoadManager classes.
    15 // 
    16 //
    17 
    18 #ifndef __LOADMANAGERTRANSITIONS_H__
    19 #define __LOADMANAGERTRANSITIONS_H__
    20 
    21 #include "StateAccessor.h"
    22 #include "LeakTestTransition.h"
    23 #include <test_bed/datalogger.h>
    24 #include "LoadManager.h"
    25 #include "LoadManagerStateAccessor.h"
    26 #include <unittest.h>
    27 #include "RegistryData.h"
    28 
    29 #define CTransitionType CLeakTestTransition
    30 
    31 // ______________________________________________________________________________
    32 //
    33 /**
    34 	@internalComponent
    35 	Comments : Provide all the CLoadManager specific
    36 	parameters and behaviour on the CLoadManager
    37 	test class for a transition.
    38  */
    39 class CLoadManager_UnitTestContext : public CUnitTestContext
    40 	{
    41 public:
    42 	/**
    43 		@fn				CLoadManager_UnitTestContext(CDataLogger& aDataLogger,
    44 														MStateAccessor& aStateAccessor,
    45 														MTransitionObserver& aObserver)
    46 		Intended Usage	: Default constructor.
    47 		Error Condition	: None. 
    48 		@since			7.0
    49 		@param			aDataLogger The output logging object.
    50 		@param			aObserver The observer of this UnitTest's Transitions.
    51 		@param			aStateAccessor WhiteBox state access to the CLoadManager class under test.
    52 		@pre 			None.
    53 		@post			CLoadManager_UnitTestContext is fully constructed, and initialised.
    54 	*/
    55 	inline CLoadManager_UnitTestContext(CDataLogger& aDataLogger,
    56 										MStateAccessor& aStateAccessor,
    57 										MTransitionObserver& aObserver);
    58 
    59 	/**
    60 		@fn				~CLoadManager_UnitTestContext()
    61 		Intended Usage	: Default Destructor
    62 		@since			7.0
    63 		@pre 			CLoadManager_UnitTestContext is fully constructed.
    64 		@post			CLoadManager_UnitTestContext is fully destroyed
    65 		*/
    66 		virtual inline ~CLoadManager_UnitTestContext();
    67 
    68 	/** The instance of the class under test */
    69 	CLoadManager* iLoadManager;
    70 	/** The registry data for the LoadManager to use */
    71 	CRegistryData* iRegistryData;
    72 	/** UID for instantiation test */
    73 	TUid iUniqueImplementationUid;
    74 	/** The load method pointer */
    75 	TProxyNewLPtr iLoadMethod;
    76 	/** Information on the dll to be loaded */
    77 	TEntry	iDllEntry;
    78 	}; // CLoadManager_UnitTestContext
    79 
    80 // ______________________________________________________________________________
    81 //
    82 /**
    83 	@internalComponent
    84 	Comments : Transition test of the CLoadManager::NewL method.
    85 	Note: This transition cannot be leak tested because it may legitimately leave 
    86  	memory allocated after a leave which appears to be a leak but is in fact a class member.
    87 
    88  */
    89 class CLoadManager_NewL_Transition : public CTransitionType
    90 	{
    91 public:
    92 	/**
    93 		@fn				CLoadManager_NewL_Transition(CUnitTestContext& aUTContext,
    94 																	TTransitionValidator& aValidator)
    95 		Intended Usage	: Standard c'tor method.
    96 		Error Condition	: None.
    97 		@since			7.0
    98 		@param			aUTContext The context this transition is operating in.
    99 		@param			aValidator Used for checking the pre & post conditions of the test object.
   100 		@pre 			None.
   101 		@post			CLoadManager_NewL_Transition is fully constructed.
   102 	*/
   103 	CLoadManager_NewL_Transition(CUnitTestContext& aUTContext,
   104 													TTransitionValidator& aValidator);
   105 	/**
   106 		@fn				TransitMethodL()
   107 		Intended Usage	: To execute the CLoadManager::NewL method for the test harness.
   108 		Error Condition	: Leaves with an error code.
   109 		@leave  		KErrNoMemory, (@see CLoadManager::NewL)
   110 		@since			7.0
   111 		@return			None
   112 		@pre 			CLoadManager_NewL_Transition is fully constructed.
   113 		@post			No change in the CLoadManager_NewL_Transition apart
   114 						from iLoadManager, which may have changed state.
   115 						(@see CLoadManager::NewL post-condition) for iLoadManager's new state.
   116 	*/
   117 	inline void TransitMethodL();
   118 
   119 	/**
   120 		@fn				Context() const
   121 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   122 		Error Condition	: None.
   123 		@since			7.0
   124 		@return			The unit test context cast to a CLoadManager_UnitTestContext
   125 		@pre 			iUTContext is a valid CLoadManager_UnitTestContext.
   126 		@post			No change in the CLoadManager_NewL_Transition
   127 	*/
   128 	inline CLoadManager_UnitTestContext& Context() const;
   129 	};	// CLoadManager_NewL_Transition
   130 
   131 // ______________________________________________________________________________
   132 //
   133 /**
   134 	@internalComponent
   135 	Comments : Transition test of the CLoadManager::Dtor method.
   136  */
   137 class CLoadManager_Dtor_Transition : public CTransition
   138 	{
   139 public:
   140 	/**
   141 		@fn				CLoadManager_Dtor_Transition(CUnitTestContext& aUTContext,
   142 																	TTransitionValidator& aValidator)
   143 		Intended Usage	: Standard c'tor method.
   144 		Error Condition	: None.
   145 		@since			7.0
   146 		@param			aUTContext The context this transition is operating in.
   147 		@param			aValidator Used for checking the pre & post conditions of the test object.
   148 		@pre 			None.
   149 		@post			CLoadManager_Dtor_Transition is fully constructed.
   150 	*/
   151 	CLoadManager_Dtor_Transition(CUnitTestContext& aUTContext,
   152 													TTransitionValidator& aValidator);
   153 	/**
   154 		@fn				TransitMethodL()
   155 		Intended Usage	: To execute the CLoadManager::Dtor method for the test harness.
   156 		Error Condition	: Leaves with an error code.
   157 		@leave  		KErrNoMemory, (@see CLoadManager::Dtor)
   158 		@since			7.0
   159 		@return			None
   160 		@pre 			CLoadManager_Dtor_Transition is fully constructed.
   161 		@post			No change in the CLoadManager_Dtor_Transition apart
   162 						from iLoadManager, which may have changed state.
   163 						(@see CLoadManager::Dtor post-condition) for iLoadManager's new state.
   164 	*/
   165 	inline void TransitMethodL();
   166 
   167 	/**
   168 		@fn				Context() const
   169 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   170 		Error Condition	: None.
   171 		@since			7.0
   172 		@return			The unit test context cast to a CLoadManager_UnitTestContext
   173 		@pre 			iUTContext is a valid CLoadManager_UnitTestContext.
   174 		@post			No change in the CLoadManager_Dtor_Transition
   175 	*/
   176 	inline CLoadManager_UnitTestContext& Context() const;
   177 	};	// CLoadManager_Dtor_Transition
   178 
   179 // ______________________________________________________________________________
   180 //
   181 /**
   182 	@internalComponent
   183 	Comments : Transition test of the CLoadManager::InstantiationMethodL method.
   184  */
   185 class CLoadManager_InstantiationMethodL_Transition : public CTransition
   186 	{
   187 public:
   188 	/**
   189 		@fn				CLoadManager_InstantiationMethodL_Transition(CUnitTestContext& aUTContext,
   190 																	TTransitionValidator& aValidator)
   191 		Intended Usage	: Standard c'tor method.
   192 		Error Condition	: None.
   193 		@since			7.0
   194 		@param			aUTContext The context this transition is operating in.
   195 		@param			aValidator Used for checking the pre & post conditions of the test object.
   196 		@pre 			None.
   197 		@post			CLoadManager_InstantiationMethodL_Transition is fully constructed.
   198 	*/
   199 	CLoadManager_InstantiationMethodL_Transition(CUnitTestContext& aUTContext,
   200 													TTransitionValidator& aValidator);
   201 	/**
   202 		@fn				TransitMethodL()
   203 		Intended Usage	: To execute the CLoadManager::InstantiationMethodL method for the test harness.
   204 		Error Condition	: Leaves with an error code.
   205 		@leave  		KErrNoMemory, (@see CLoadManager::InstantiationMethodL)
   206 		@since			7.0
   207 		@return			None
   208 		@pre 			CLoadManager_InstantiationMethodL_Transition is fully constructed.
   209 		@post			No change in the CLoadManager_InstantiationMethodL_Transition apart
   210 						from iLoadManager, which may have changed state.
   211 						(@see CLoadManager::InstantiationMethodL post-condition) for iLoadManager's new state.
   212 	*/
   213 	inline void TransitMethodL();
   214 
   215 	/**
   216 		@fn				Context() const
   217 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   218 		Error Condition	: None.
   219 		@since			7.0
   220 		@return			The unit test context cast to a CLoadManager_UnitTestContext
   221 		@pre 			iUTContext is a valid CLoadManager_UnitTestContext.
   222 		@post			No change in the CLoadManager_InstantiationMethodL_Transition
   223 	*/
   224 	inline CLoadManager_UnitTestContext& Context() const;
   225 	};	// CLoadManager_InstantiationMethodL_Transition
   226 
   227 // ______________________________________________________________________________
   228 //
   229 /**
   230 	@internalComponent
   231 	Comments : Transition test of the CLoadManager::DestroyedThis method.
   232  */
   233 class CLoadManager_DestroyedThis_Transition : public CTransition
   234 	{
   235 public:
   236 	/**
   237 		@fn				CLoadManager_DestroyedThis_Transition(CUnitTestContext& aUTContext,
   238 																	TTransitionValidator& aValidator)
   239 		Intended Usage	: Standard c'tor method.
   240 		Error Condition	: None.
   241 		@since			7.0
   242 		@param			aUTContext The context this transition is operating in.
   243 		@param			aValidator Used for checking the pre & post conditions of the test object.
   244 		@pre 			None.
   245 		@post			CLoadManager_DestroyedThis_Transition is fully constructed.
   246 	*/
   247 	CLoadManager_DestroyedThis_Transition(CUnitTestContext& aUTContext,
   248 													TTransitionValidator& aValidator);
   249 	/**
   250 		@fn				TransitMethodL()
   251 		Intended Usage	: To execute the CLoadManager::DestroyedThis method for the test harness.
   252 		Error Condition	: Leaves with an error code.
   253 		@leave  		KErrNoMemory, (@see CLoadManager::DestroyedThis)
   254 		@since			7.0
   255 		@return			None
   256 		@pre 			CLoadManager_DestroyedThis_Transition is fully constructed.
   257 		@post			No change in the CLoadManager_DestroyedThis_Transition apart
   258 						from iLoadManager, which may have changed state.
   259 						(@see CLoadManager::DestroyedThis post-condition) for iLoadManager's new state.
   260 	*/
   261 	inline void TransitMethodL();
   262 
   263 	/**
   264 		@fn				Context() const
   265 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   266 		Error Condition	: None.
   267 		@since			7.0
   268 		@return			The unit test context cast to a CLoadManager_UnitTestContext
   269 		@pre 			iUTContext is a valid CLoadManager_UnitTestContext.
   270 		@post			No change in the CLoadManager_DestroyedThis_Transition
   271 	*/
   272 	inline CLoadManager_UnitTestContext& Context() const;
   273 	};	// CLoadManager_DestroyedThis_Transition
   274 
   275 // ______________________________________________________________________________
   276 //
   277 /**
   278 	@internalComponent
   279 	Comments : Special transition which deletes an object and then immediately
   280 	creates a new one to test a condition for defect FOT56ULPM
   281  */
   282 class CLoadManager_DestroyCreate_Transition : public CTransition
   283 	{
   284 public:
   285 	/**
   286 		@fn				CLoadManager_DestroyCreate_Transition(CUnitTestContext& aUTContext,
   287 																	TTransitionValidator& aValidator)
   288 		Intended Usage	: Standard c'tor method.
   289 		Error Condition	: None.
   290 		@since			7.0
   291 		@param			aUTContext The context this transition is operating in.
   292 		@param			aValidator Used for checking the pre & post conditions of the test object.
   293 		@pre 			None.
   294 		@post			CLoadManager_DestroyCreate_Transition is fully constructed.
   295 	*/
   296 	CLoadManager_DestroyCreate_Transition(CUnitTestContext& aUTContext,
   297 													TTransitionValidator& aValidator);
   298 	/**
   299 		@fn				TransitMethodL()
   300 		Intended Usage	: To execute the CLoadManager::DestroyedThis method followed by the
   301 						creation of a new object immediately afterward.
   302 		Error Condition	: Leaves with an error code.
   303 		@leave  		KErrNoMemory, (@see CLoadManager::DestroyedThis)
   304 		@since			7.0
   305 		@return			None
   306 		@pre 			CLoadManager_DestroyCreate_Transition is fully constructed.
   307 		@post			No change in the CLoadManager_DestroyCreate_Transition apart
   308 						from iLoadManager, which may have changed state.
   309 						(@see CLoadManager::DestroyedThis post-condition) for iLoadManager's new state.
   310 	*/
   311 	inline void TransitMethodL();
   312 
   313 	/**
   314 		@fn				Context() const
   315 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   316 		Error Condition	: None.
   317 		@since			7.0
   318 		@return			The unit test context cast to a CLoadManager_UnitTestContext
   319 		@pre 			iUTContext is a valid CLoadManager_UnitTestContext.
   320 		@post			No change in the CLoadManager_DestroyedThis_Transition
   321 	*/
   322 	inline CLoadManager_UnitTestContext& Context() const;
   323 	};	// CLoadManager_DestroyCreate_Transition
   324 
   325 
   326 #include "LoadManagerTransitions.inl"
   327 
   328 #endif // __LOADMANAGERTRANSITIONS_H__