os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerTransitions.h
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definition of the transitions on the CLoadManager classes.
18 #ifndef __LOADMANAGERTRANSITIONS_H__
19 #define __LOADMANAGERTRANSITIONS_H__
21 #include "StateAccessor.h"
22 #include "LeakTestTransition.h"
23 #include <test_bed/datalogger.h>
24 #include "LoadManager.h"
25 #include "LoadManagerStateAccessor.h"
27 #include "RegistryData.h"
29 #define CTransitionType CLeakTestTransition
31 // ______________________________________________________________________________
35 Comments : Provide all the CLoadManager specific
36 parameters and behaviour on the CLoadManager
37 test class for a transition.
39 class CLoadManager_UnitTestContext : public CUnitTestContext
43 @fn CLoadManager_UnitTestContext(CDataLogger& aDataLogger,
44 MStateAccessor& aStateAccessor,
45 MTransitionObserver& aObserver)
46 Intended Usage : Default constructor.
47 Error Condition : None.
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.
53 @post CLoadManager_UnitTestContext is fully constructed, and initialised.
55 inline CLoadManager_UnitTestContext(CDataLogger& aDataLogger,
56 MStateAccessor& aStateAccessor,
57 MTransitionObserver& aObserver);
60 @fn ~CLoadManager_UnitTestContext()
61 Intended Usage : Default Destructor
63 @pre CLoadManager_UnitTestContext is fully constructed.
64 @post CLoadManager_UnitTestContext is fully destroyed
66 virtual inline ~CLoadManager_UnitTestContext();
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 */
78 }; // CLoadManager_UnitTestContext
80 // ______________________________________________________________________________
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.
89 class CLoadManager_NewL_Transition : public CTransitionType
93 @fn CLoadManager_NewL_Transition(CUnitTestContext& aUTContext,
94 TTransitionValidator& aValidator)
95 Intended Usage : Standard c'tor method.
96 Error Condition : None.
98 @param aUTContext The context this transition is operating in.
99 @param aValidator Used for checking the pre & post conditions of the test object.
101 @post CLoadManager_NewL_Transition is fully constructed.
103 CLoadManager_NewL_Transition(CUnitTestContext& aUTContext,
104 TTransitionValidator& aValidator);
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)
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.
117 inline void TransitMethodL();
121 Intended Usage : To provide access to the unit test context cast to the correct type.
122 Error Condition : None.
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
128 inline CLoadManager_UnitTestContext& Context() const;
129 }; // CLoadManager_NewL_Transition
131 // ______________________________________________________________________________
135 Comments : Transition test of the CLoadManager::Dtor method.
137 class CLoadManager_Dtor_Transition : public CTransition
141 @fn CLoadManager_Dtor_Transition(CUnitTestContext& aUTContext,
142 TTransitionValidator& aValidator)
143 Intended Usage : Standard c'tor method.
144 Error Condition : None.
146 @param aUTContext The context this transition is operating in.
147 @param aValidator Used for checking the pre & post conditions of the test object.
149 @post CLoadManager_Dtor_Transition is fully constructed.
151 CLoadManager_Dtor_Transition(CUnitTestContext& aUTContext,
152 TTransitionValidator& aValidator);
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)
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.
165 inline void TransitMethodL();
169 Intended Usage : To provide access to the unit test context cast to the correct type.
170 Error Condition : None.
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
176 inline CLoadManager_UnitTestContext& Context() const;
177 }; // CLoadManager_Dtor_Transition
179 // ______________________________________________________________________________
183 Comments : Transition test of the CLoadManager::InstantiationMethodL method.
185 class CLoadManager_InstantiationMethodL_Transition : public CTransition
189 @fn CLoadManager_InstantiationMethodL_Transition(CUnitTestContext& aUTContext,
190 TTransitionValidator& aValidator)
191 Intended Usage : Standard c'tor method.
192 Error Condition : None.
194 @param aUTContext The context this transition is operating in.
195 @param aValidator Used for checking the pre & post conditions of the test object.
197 @post CLoadManager_InstantiationMethodL_Transition is fully constructed.
199 CLoadManager_InstantiationMethodL_Transition(CUnitTestContext& aUTContext,
200 TTransitionValidator& aValidator);
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)
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.
213 inline void TransitMethodL();
217 Intended Usage : To provide access to the unit test context cast to the correct type.
218 Error Condition : None.
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
224 inline CLoadManager_UnitTestContext& Context() const;
225 }; // CLoadManager_InstantiationMethodL_Transition
227 // ______________________________________________________________________________
231 Comments : Transition test of the CLoadManager::DestroyedThis method.
233 class CLoadManager_DestroyedThis_Transition : public CTransition
237 @fn CLoadManager_DestroyedThis_Transition(CUnitTestContext& aUTContext,
238 TTransitionValidator& aValidator)
239 Intended Usage : Standard c'tor method.
240 Error Condition : None.
242 @param aUTContext The context this transition is operating in.
243 @param aValidator Used for checking the pre & post conditions of the test object.
245 @post CLoadManager_DestroyedThis_Transition is fully constructed.
247 CLoadManager_DestroyedThis_Transition(CUnitTestContext& aUTContext,
248 TTransitionValidator& aValidator);
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)
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.
261 inline void TransitMethodL();
265 Intended Usage : To provide access to the unit test context cast to the correct type.
266 Error Condition : None.
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
272 inline CLoadManager_UnitTestContext& Context() const;
273 }; // CLoadManager_DestroyedThis_Transition
275 // ______________________________________________________________________________
279 Comments : Special transition which deletes an object and then immediately
280 creates a new one to test a condition for defect FOT56ULPM
282 class CLoadManager_DestroyCreate_Transition : public CTransition
286 @fn CLoadManager_DestroyCreate_Transition(CUnitTestContext& aUTContext,
287 TTransitionValidator& aValidator)
288 Intended Usage : Standard c'tor method.
289 Error Condition : None.
291 @param aUTContext The context this transition is operating in.
292 @param aValidator Used for checking the pre & post conditions of the test object.
294 @post CLoadManager_DestroyCreate_Transition is fully constructed.
296 CLoadManager_DestroyCreate_Transition(CUnitTestContext& aUTContext,
297 TTransitionValidator& aValidator);
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)
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.
311 inline void TransitMethodL();
315 Intended Usage : To provide access to the unit test context cast to the correct type.
316 Error Condition : None.
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
322 inline CLoadManager_UnitTestContext& Context() const;
323 }; // CLoadManager_DestroyCreate_Transition
326 #include "LoadManagerTransitions.inl"
328 #endif // __LOADMANAGERTRANSITIONS_H__