os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.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 CTestController class methods.
18 #ifndef __TESTCONTROLLERTRANSITIONS_H__
19 #define __TESTCONTROLLERTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <ecom/test_bed/datalogger.h>
25 #include "TestController.h"
26 #include "TestControllerStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 #define CTransitionType CLeakTestTransition
31 // ______________________________________________________________________________
36 Comments : Provide all the CTestController specific
37 parameters and behaviour on the CTestController
38 test class for a transition.
40 class CTestController_UnitTestContext : public CUnitTestContext
44 @fn CTestController_UnitTestContext(CDataLogger& aDataLogger,
45 MStateAccessor& aStateAccessor,
46 MTransitionObserver& aObserver,
48 Intended Usage : Default constructor.
49 Error Condition : None.
51 @param aDataLogger The output logging object.
52 @param aObserver The observer of this UnitTest's Transitions.
53 @param aStateAccessor WhiteBox state access to the CTestController class under test.
54 @param aFs A handle to the file server
56 @post CTestController_UnitTestContext is fully constructed, and initialised.
58 inline CTestController_UnitTestContext(CDataLogger& aDataLogger,
59 MStateAccessor& aStateAccessor,
60 MTransitionObserver& aObserver,
64 @fn ~CTestController_UnitTestContext()
65 Intended Usage : Default Destructor
67 @pre CTestController_UnitTestContext is fully constructed.
68 @post CTestController_UnitTestContext is fully destroyed
70 virtual inline ~CTestController_UnitTestContext();
72 /** The instance of the class under test */
73 CTestController* iTestController;
74 /** The active scheduler for the TestController to use */
75 CActiveScheduler* iScheduler;
76 /** An array of tests to be run */
77 RPointerArray<TTestInfo> iTests;
78 /** The logging info for the TestController to use */
79 TLoggingInfo* iLogInfo;
80 /** File server handle */
83 }; // CTestController_UnitTestContext
85 // ______________________________________________________________________________
90 Comments : Transition test of the CTestController::NewL method.
92 class CTestController_NewL_Transition : public CTransitionType
96 @fn CTestController_NewL_Transition(CUnitTestContext& aUTContext,
97 TTransitionValidator& aValidator)
98 Intended Usage : Standard c'tor method.
99 Error Condition : None.
101 @param aUTContext The context this transition is operating in.
102 @param aValidator Used for checking the pre & post conditions of the test object.
104 @post CTestController_NewL_Transition is fully constructed.
106 CTestController_NewL_Transition(CUnitTestContext& aUTContext,
107 TTransitionValidator& aValidator);
110 Intended Usage : To execute the CTestController::NewL method for the test harness.
111 Error Condition : Leaves with an error code.
112 @leave KErrNoMemory, (@see CTestController::NewL)
115 @pre CTestController_NewL_Transition is fully constructed.
116 @post No change in the CTestController_NewL_Transition apart
117 from iTestController, which may have changed state.
118 (@see CTestController::NewL post-condition) for iTestController's new state.
120 inline void TransitMethodL();
124 Intended Usage : To provide access to the unit test context cast to the correct type.
125 Error Condition : None.
127 @return The unit test context cast to a CTestController_UnitTestContext
128 @pre iUTContext is a valid CTestController_UnitTestContext.
129 @post No change in the CTestController_NewL_Transition
131 inline CTestController_UnitTestContext& Context() const;
132 }; // CTestController_NewL_Transition
134 // ______________________________________________________________________________
139 Comments : Transition test of the CTestController::Dtor method.
141 class CTestController_Dtor_Transition : public CTransition
145 @fn CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
146 TTransitionValidator& aValidator)
147 Intended Usage : Standard c'tor method.
148 Error Condition : None.
150 @param aUTContext The context this transition is operating in.
151 @param aValidator Used for checking the pre & post conditions of the test object.
153 @post CTestController_Dtor_Transition is fully constructed.
155 CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
156 TTransitionValidator& aValidator);
159 Intended Usage : To execute the CTestController::Dtor method for the test harness.
160 Error Condition : Leaves with an error code.
161 @leave KErrNoMemory, (@see CTestController::Dtor)
164 @pre CTestController_Dtor_Transition is fully constructed.
165 @post No change in the CTestController_Dtor_Transition apart
166 from iTestController, which may have changed state.
167 (@see CTestController::Dtor post-condition) for iTestController's new state.
169 inline void TransitMethodL();
173 Intended Usage : To provide access to the unit test context cast to the correct type.
174 Error Condition : None.
176 @return The unit test context cast to a CTestController_UnitTestContext
177 @pre iUTContext is a valid CTestController_UnitTestContext.
178 @post No change in the CTestController_Dtor_Transition
180 inline CTestController_UnitTestContext& Context() const;
181 }; // CTestController_Dtor_Transition
183 // ______________________________________________________________________________
188 Comments : Transition test of the CTestController::ScanDriveL method.
190 class CTestController_ScanDriveL_Transition : public CTransitionType
194 @fn CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
195 TTransitionValidator& aValidator)
196 Intended Usage : Standard c'tor method.
197 Error Condition : None.
199 @param aUTContext The context this transition is operating in.
200 @param aValidator Used for checking the pre & post conditions of the test object.
202 @post CTestController_ScanDriveL_Transition is fully constructed.
204 CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
205 TTransitionValidator& aValidator);
208 Intended Usage : To execute the CTestController::ScanDriveL method for the test harness.
209 Error Condition : Leaves with an error code.
210 @leave KErrNoMemory, (@see CTestController::ScanDriveL)
213 @pre CTestController_ScanDriveL_Transition is fully constructed.
214 @post No change in the CTestController_ScanDriveL_Transition apart
215 from iTestController, which may have changed state.
216 (@see CTestController::ScanDriveL post-condition) for iTestController's new state.
218 inline void TransitMethodL();
222 Intended Usage : To provide access to the unit test context cast to the correct type.
223 Error Condition : None.
225 @return The unit test context cast to a CTestController_UnitTestContext
226 @pre iUTContext is a valid CTestController_UnitTestContext.
227 @post No change in the CTestController_ScanDriveL_Transition
229 inline CTestController_UnitTestContext& Context() const;
230 }; // CTestController_ScanDriveL_Transition
232 // ______________________________________________________________________________
237 Comments : Transition test of the CTestController::DiscoverTestsL method.
239 class CTestController_DiscoverTestsL_Transition : public CTransitionType
243 @fn CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
244 TTransitionValidator& aValidator)
245 Intended Usage : Standard c'tor method.
246 Error Condition : None.
248 @param aUTContext The context this transition is operating in.
249 @param aValidator Used for checking the pre & post conditions of the test object.
251 @post CTestController_DiscoverTestsL_Transition is fully constructed.
253 CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
254 TTransitionValidator& aValidator);
257 Intended Usage : To execute the CTestController::DiscoverTestsL method for the test harness.
258 Error Condition : Leaves with an error code.
259 @leave KErrNoMemory, (@see CTestController::DiscoverTestsL)
262 @pre CTestController_DiscoverTestsL_Transition is fully constructed.
263 @post No change in the CTestController_DiscoverTestsL_Transition apart
264 from iTestController, which may have changed state.
265 (@see CTestController::DiscoverTestsL post-condition) for iTestController's new state.
267 inline void TransitMethodL();
271 Intended Usage : To provide access to the unit test context cast to the correct type.
272 Error Condition : None.
274 @return The unit test context cast to a CTestController_UnitTestContext
275 @pre iUTContext is a valid CTestController_UnitTestContext.
276 @post No change in the CTestController_DiscoverTestsL_Transition
278 inline CTestController_UnitTestContext& Context() const;
279 }; // CTestController_DiscoverTestsL_Transition
281 // ______________________________________________________________________________
286 Comments : Transition test of the CTestController::FindComponents method.
288 class CTestController_FindComponents_Transition : public CTransition
292 @fn CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
293 TTransitionValidator& aValidator)
294 Intended Usage : Standard c'tor method.
295 Error Condition : None.
297 @param aUTContext The context this transition is operating in.
298 @param aValidator Used for checking the pre & post conditions of the test object.
300 @post CTestController_FindComponents_Transition is fully constructed.
302 CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
303 TTransitionValidator& aValidator);
306 Intended Usage : To execute the CTestController::FindComponents method for the test harness.
307 Error Condition : Leaves with an error code.
308 @leave KErrNoMemory, (@see CTestController::FindComponents)
311 @pre CTestController_FindComponents_Transition is fully constructed.
312 @post No change in the CTestController_FindComponents_Transition apart
313 from iTestController, which may have changed state.
314 (@see CTestController::FindComponents post-condition) for iTestController's new state.
316 inline void TransitMethodL();
320 Intended Usage : To provide access to the unit test context cast to the correct type.
321 Error Condition : None.
323 @return The unit test context cast to a CTestController_UnitTestContext
324 @pre iUTContext is a valid CTestController_UnitTestContext.
325 @post No change in the CTestController_FindComponents_Transition
327 inline CTestController_UnitTestContext& Context() const;
328 }; // CTestController_FindComponents_Transition
330 // ______________________________________________________________________________
335 Comments : Transition test of the CTestController::Start method.
337 class CTestController_Start_Transition : public CTransition
341 @fn CTestController_Start_Transition(CUnitTestContext& aUTContext,
342 TTransitionValidator& aValidator)
343 Intended Usage : Standard c'tor method.
344 Error Condition : None.
346 @param aUTContext The context this transition is operating in.
347 @param aValidator Used for checking the pre & post conditions of the test object.
349 @post CTestController_Start_Transition is fully constructed.
351 CTestController_Start_Transition(CUnitTestContext& aUTContext,
352 TTransitionValidator& aValidator);
355 Intended Usage : To execute the CTestController::Start method for the test harness.
356 Error Condition : Leaves with an error code.
357 @leave KErrNoMemory, (@see CTestController::StartL)
360 @pre CTestController_Start_Transition is fully constructed.
361 @post No change in the CTestController_Start_Transition apart
362 from iTestController, which may have changed state.
363 (@see CTestController::Start post-condition) for iTestController's new state.
365 inline void TransitMethodL();
369 Intended Usage : To provide access to the unit test context cast to the correct type.
370 Error Condition : None.
372 @return The unit test context cast to a CTestController_UnitTestContext
373 @pre iUTContext is a valid CTestController_UnitTestContext.
374 @post No change in the CTestController_Start_Transition
376 inline CTestController_UnitTestContext& Context() const;
377 }; // CTestController_Start_Transition
380 // Add additional Transition class definitions here...
382 #include "TestControllerTransitions.inl"
384 #include "TestControllerUnitTestContext.inl"
386 #endif // __TESTCONTROLLERTRANSITIONS_H__