os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitions.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 definitions of the transition classes upon the CTestManager class methods.
18 #ifndef __TESTMANAGERTRANSITIONS_H__
19 #define __TESTMANAGERTRANSITIONS_H__
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"
31 #define CTransitionType CLeakTestTransition
33 // ______________________________________________________________________________
38 Comments : Provide all the CTestManager specific
39 parameters and behaviour on the CTestManager
40 test class for a transition.
42 class CTestManager_UnitTestContext : public CUnitTestContext
46 @fn CTestManager_UnitTestContext(CDataLogger& aDataLogger,
47 MStateAccessor& aStateAccessor,
48 MTransitionObserver& aObserver)
49 Intended Usage : Default constructor.
50 Error Condition : None.
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.
56 @post CTestManager_UnitTestContext is fully constructed, and initialised.
58 inline CTestManager_UnitTestContext(CDataLogger& aDataLogger,
59 MStateAccessor& aStateAccessor,
60 MTransitionObserver& aObserver);
63 @fn ~CTestManager_UnitTestContext()
64 Intended Usage : Default Destructor
66 @pre CTestManager_UnitTestContext is fully constructed.
67 @post CTestManager_UnitTestContext is fully destroyed
69 virtual inline ~CTestManager_UnitTestContext();
71 inline MManagerObserver& ManagerObserver();
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 */
92 }; // CTestManager_UnitTestContext
94 // ______________________________________________________________________________
99 Comments : Transition test of the CTestManager::NewL method.
101 class CTestManager_NewL_Transition : public CTransitionType
105 @fn CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
106 TTransitionValidator& aValidator)
107 Intended Usage : Standard c'tor method.
108 Error Condition : None.
110 @param aUTContext The context this transition is operating in.
111 @param aValidator Used for checking the pre & post conditions of the test object.
113 @post CTestManager_NewL_Transition is fully constructed.
115 CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
116 TTransitionValidator& aValidator);
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)
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.
129 inline void TransitMethodL();
133 Intended Usage : To provide access to the unit test context cast to the correct type.
134 Error Condition : None.
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
140 inline CTestManager_UnitTestContext& Context() const;
141 }; // CTestManager_NewL_Transition
143 // ______________________________________________________________________________
148 Comments : Transition test of the CTestManager::Dtor method.
150 class CTestManager_Dtor_Transition : public CTransition
154 @fn CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
155 TTransitionValidator& aValidator)
156 Intended Usage : Standard c'tor method.
157 Error Condition : None.
159 @param aUTContext The context this transition is operating in.
160 @param aValidator Used for checking the pre & post conditions of the test object.
162 @post CTestManager_Dtor_Transition is fully constructed.
164 CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
165 TTransitionValidator& aValidator);
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)
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.
178 inline void TransitMethodL();
182 Intended Usage : To provide access to the unit test context cast to the correct type.
183 Error Condition : None.
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
189 inline CTestManager_UnitTestContext& Context() const;
190 }; // CTestManager_Dtor_Transition
192 // ______________________________________________________________________________
197 Comments : Transition test of the CTestManager::RunTests method.
199 class CTestManager_RunTests_Transition : public CTransition
203 @fn CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
204 TTransitionValidator& aValidator)
205 Intended Usage : Standard c'tor method.
206 Error Condition : None.
208 @param aUTContext The context this transition is operating in.
209 @param aValidator Used for checking the pre & post conditions of the test object.
211 @post CTestManager_RunTests_Transition is fully constructed.
213 CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
214 TTransitionValidator& aValidator);
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)
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.
227 inline void TransitMethodL();
231 Intended Usage : To provide access to the unit test context cast to the correct type.
232 Error Condition : None.
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
238 inline CTestManager_UnitTestContext& Context() const;
239 }; // CTestManager_RunTests_Transition
242 // ______________________________________________________________________________
247 Comments : Transition test of the CTestManager::TestComponentL method.
249 class CTestManager_TestComponentL_Transition : public CTransitionType
253 @fn CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
254 TTransitionValidator& aValidator)
255 Intended Usage : Standard c'tor method.
256 Error Condition : None.
258 @param aUTContext The context this transition is operating in.
259 @param aValidator Used for checking the pre & post conditions of the test object.
261 @post CTestManager_TestComponentL_Transition is fully constructed.
263 CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
264 TTransitionValidator& aValidator);
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)
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.
277 inline void TransitMethodL();
281 Intended Usage : To provide access to the unit test context cast to the correct type.
282 Error Condition : None.
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
288 inline CTestManager_UnitTestContext& Context() const;
289 }; // CTestManager_TestComponentL_Transition
292 // Add additional Transition class definitions here...
294 #include "TestManagerTransitions.inl"
296 #include "TestManagerUnitTestContext.inl"
298 #endif // __TESTMANAGERTRANSITIONS_H__