os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitions.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 CComponentTester class methods.
18 #ifndef __COMPONENTTESTERTRANSITIONS_H__
19 #define __COMPONENTTESTERTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <ecom/test_bed/datalogger.h>
25 #include "ComponentTester.h"
26 #include "ComponentTesterStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 #define CTransitionType CLeakTestTransition
31 // ______________________________________________________________________________
36 Comments : Provide all the CComponentTester specific
37 parameters and behaviour on the CComponentTester
38 test class for a transition.
40 class CComponentTester_UnitTestContext : public CUnitTestContext
44 @fn CComponentTester_UnitTestContext(CDataLogger& aDataLogger,
45 MStateAccessor& aStateAccessor,
46 MTransitionObserver& aObserver)
47 Intended Usage : Default constructor.
48 Error Condition : None.
50 @param aDataLogger The output logging object.
51 @param aObserver The observer of this UnitTest's Transitions.
52 @param aStateAccessor WhiteBox state access to the CComponentTester class under test.
54 @post CComponentTester_UnitTestContext is fully constructed, and initialised.
56 inline CComponentTester_UnitTestContext(CDataLogger& aDataLogger,
57 MStateAccessor& aStateAccessor,
58 MTransitionObserver& aObserver);
61 @fn ~CComponentTester_UnitTestContext()
62 Intended Usage : Default Destructor
64 @pre CComponentTester_UnitTestContext is fully constructed.
65 @post CComponentTester_UnitTestContext is fully destroyed
67 virtual inline ~CComponentTester_UnitTestContext();
69 /** The instance of the class under test */
70 CComponentTester* iComponentTester;
71 /** The data logger for the ComponentTester to use */
72 CDataLogger* iDataLogger;
73 /** An observer to inform when the test has been completed */
74 MComponentTestObserver* iObserver;
75 /** The unit test for the ComponentTester to use */
77 /** An array of the tests to be run by ComponentTester */
78 RPointerArray<TTestInfo> iTests;
79 /** A class derived from the class under test */
80 CComponentTesterTestDerivation* iComponentUnderTest;
81 }; // CComponentTester_UnitTestContext
83 // ______________________________________________________________________________
88 Comments : Transition test of the CComponentTester::NewL method.
90 class CComponentTester_NewL_Transition : public CTransitionType
94 @fn CComponentTester_NewL_Transition(CUnitTestContext& aUTContext,
95 TTransitionValidator& aValidator)
96 Intended Usage : Standard c'tor method.
97 Error Condition : None.
99 @param aUTContext The context this transition is operating in.
100 @param aValidator Used for checking the pre & post conditions of the test object.
102 @post CComponentTester_NewL_Transition is fully constructed.
104 CComponentTester_NewL_Transition(CUnitTestContext& aUTContext,
105 TTransitionValidator& aValidator);
108 Intended Usage : To execute the CComponentTester::NewL method for the test harness.
109 Error Condition : Leaves with an error code.
110 @leave KErrNoMemory, (@see CComponentTester::NewL)
113 @pre CComponentTester_NewL_Transition is fully constructed.
114 @post No change in the CComponentTester_NewL_Transition apart
115 from iComponentTester, which may have changed state.
116 (@see CComponentTester::NewL post-condition) for iComponentTester's new state.
118 inline void TransitMethodL();
122 Intended Usage : To provide access to the unit test context cast to the correct type.
123 Error Condition : None.
125 @return The unit test context cast to a CComponentTester_UnitTestContext
126 @pre iUTContext is a valid CComponentTester_UnitTestContext.
127 @post No change in the CComponentTester_NewL_Transition
129 inline CComponentTester_UnitTestContext& Context() const;
130 }; // CComponentTester_NewL_Transition
132 // ______________________________________________________________________________
137 Comments : Transition test of the CComponentTester::Dtor method.
139 class CComponentTester_Dtor_Transition : public CTransition
143 @fn CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext,
144 TTransitionValidator& aValidator)
145 Intended Usage : Standard c'tor method.
146 Error Condition : None.
148 @param aUTContext The context this transition is operating in.
149 @param aValidator Used for checking the pre & post conditions of the test object.
151 @post CComponentTester_Dtor_Transition is fully constructed.
153 CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext,
154 TTransitionValidator& aValidator);
157 Intended Usage : To execute the CComponentTester::Dtor method for the test harness.
158 Error Condition : Leaves with an error code.
159 @leave KErrNoMemory, (@see CComponentTester::Dtor)
162 @pre CComponentTester_Dtor_Transition is fully constructed.
163 @post No change in the CComponentTester_Dtor_Transition apart
164 from iComponentTester, which may have changed state.
165 (@see CComponentTester::Dtor post-condition) for iComponentTester's new state.
167 inline void TransitMethodL();
171 Intended Usage : To provide access to the unit test context cast to the correct type.
172 Error Condition : None.
174 @return The unit test context cast to a CComponentTester_UnitTestContext
175 @pre iUTContext is a valid CComponentTester_UnitTestContext.
176 @post No change in the CComponentTester_Dtor_Transition
178 inline CComponentTester_UnitTestContext& Context() const;
179 }; // CComponentTester_Dtor_Transition
181 // ______________________________________________________________________________
186 Comments : Transition test of the CComponentTester::TransitionSetsL method.
188 class CComponentTester_TransitionSetsL_Transition : public CTransitionType
192 @fn CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext,
193 TTransitionValidator& aValidator)
194 Intended Usage : Standard c'tor method.
195 Error Condition : None.
197 @param aUTContext The context this transition is operating in.
198 @param aValidator Used for checking the pre & post conditions of the test object.
200 @post CComponentTester_TransitionSetsL_Transition is fully constructed.
202 CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext,
203 TTransitionValidator& aValidator);
206 Intended Usage : To execute the CComponentTester::TransitionSetsL method for the test harness.
207 Error Condition : Leaves with an error code.
208 @leave KErrNoMemory, (@see CComponentTester::TransitionSetsL)
211 @pre CComponentTester_TransitionSetsL_Transition is fully constructed.
212 @post No change in the CComponentTester_TransitionSetsL_Transition apart
213 from iComponentTester, which may have changed state.
214 (@see CComponentTester::TransitionSetsL post-condition) for iComponentTester's new state.
216 inline void TransitMethodL();
220 Intended Usage : To provide access to the unit test context cast to the correct type.
221 Error Condition : None.
223 @return The unit test context cast to a CComponentTester_UnitTestContext
224 @pre iUTContext is a valid CComponentTester_UnitTestContext.
225 @post No change in the CComponentTester_TransitionSetsL_Transition
227 inline CComponentTester_UnitTestContext& Context() const;
228 }; // CComponentTester_TransitionSetsL_Transition
230 // ______________________________________________________________________________
235 Comments : Transition test of the CComponentTester::AddUnitTestL method.
237 class CComponentTester_AddUnitTestL_Transition : public CTransitionType
241 @fn CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext,
242 TTransitionValidator& aValidator)
243 Intended Usage : Standard c'tor method.
244 Error Condition : None.
246 @param aUTContext The context this transition is operating in.
247 @param aValidator Used for checking the pre & post conditions of the test object.
249 @post CComponentTester_AddUnitTestL_Transition is fully constructed.
251 CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext,
252 TTransitionValidator& aValidator);
255 Intended Usage : To execute the CComponentTester::AddUnitTestL method for the test harness.
256 Error Condition : Leaves with an error code.
257 @leave KErrNoMemory, (@see CComponentTester::AddUnitTestL)
260 @pre CComponentTester_AddUnitTestL_Transition is fully constructed.
261 @post No change in the CComponentTester_AddUnitTestL_Transition apart
262 from iComponentTester, which may have changed state.
263 (@see CComponentTester::AddUnitTestL post-condition) for iComponentTester's new state.
265 inline void TransitMethodL();
269 Intended Usage : To provide access to the unit test context cast to the correct type.
270 Error Condition : None.
272 @return The unit test context cast to a CComponentTester_UnitTestContext
273 @pre iUTContext is a valid CComponentTester_UnitTestContext.
274 @post No change in the CComponentTester_AddUnitTestL_Transition
276 inline CComponentTester_UnitTestContext& Context() const;
277 }; // CComponentTester_AddUnitTestL_Transition
279 // ______________________________________________________________________________
284 Comments : Transition test of the CComponentTester::AddParamUnitTestL method.
286 class CComponentTester_AddParamUnitTestL_Transition : public CTransitionType
290 @fn CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext,
291 TTransitionValidator& aValidator)
292 Intended Usage : Standard c'tor method.
293 Error Condition : None.
295 @param aUTContext The context this transition is operating in.
296 @param aValidator Used for checking the pre & post conditions of the test object.
298 @post CComponentTester_AddParamUnitTestL_Transition is fully constructed.
300 CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext,
301 TTransitionValidator& aValidator);
304 Intended Usage : To execute the CComponentTester::AddParamUnitTestL method for the test harness.
305 Error Condition : Leaves with an error code.
306 @leave KErrNoMemory, (@see CComponentTester::AddParamUnitTestL)
309 @pre CComponentTester_AddParamUnitTestL_Transition is fully constructed.
310 @post No change in the CComponentTester_AddParamUnitTestL_Transition apart
311 from iComponentTester, which may have changed state.
312 (@see CComponentTester::AddParamUnitTestL post-condition) for iComponentTester's new state.
314 inline void TransitMethodL();
318 Intended Usage : To provide access to the unit test context cast to the correct type.
319 Error Condition : None.
321 @return The unit test context cast to a CComponentTester_UnitTestContext
322 @pre iUTContext is a valid CComponentTester_UnitTestContext.
323 @post No change in the CComponentTester_AddParamUnitTestL_Transition
325 inline CComponentTester_UnitTestContext& Context() const;
326 }; // CComponentTester_AddParamUnitTestL_Transition
328 // ______________________________________________________________________________
333 Comments : Transition test of the CComponentTester::TestComponent method.
335 class CComponentTester_TestComponent_Transition : public CTransition
339 @fn CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext,
340 TTransitionValidator& aValidator)
341 Intended Usage : Standard c'tor method.
342 Error Condition : None.
344 @param aUTContext The context this transition is operating in.
345 @param aValidator Used for checking the pre & post conditions of the test object.
347 @post CComponentTester_TestComponent_Transition is fully constructed.
349 CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext,
350 TTransitionValidator& aValidator);
353 Intended Usage : To execute the CComponentTester::TestComponent method for the test harness.
354 Error Condition : Leaves with an error code.
355 @leave KErrNoMemory, (@see CComponentTester::TestComponent)
358 @pre CComponentTester_TestComponent_Transition is fully constructed.
359 @post No change in the CComponentTester_TestComponent_Transition apart
360 from iComponentTester, which may have changed state.
361 (@see CComponentTester::TestComponent post-condition) for iComponentTester's new state.
363 inline void TransitMethodL();
367 Intended Usage : To provide access to the unit test context cast to the correct type.
368 Error Condition : None.
370 @return The unit test context cast to a CComponentTester_UnitTestContext
371 @pre iUTContext is a valid CComponentTester_UnitTestContext.
372 @post No change in the CComponentTester_TestComponent_Transition
374 inline CComponentTester_UnitTestContext& Context() const;
375 }; // CComponentTester_TestComponent_Transition
377 // ______________________________________________________________________________
382 Comments : Transition test of the CComponentTester::RunL method.
384 class CComponentTester_RunL_Transition : public CTransitionType
388 @fn CComponentTester_RunL_Transition(CUnitTestContext& aUTContext,
389 TTransitionValidator& aValidator)
390 Intended Usage : Standard c'tor method.
391 Error Condition : None.
393 @param aUTContext The context this transition is operating in.
394 @param aValidator Used for checking the pre & post conditions of the test object.
396 @post CComponentTester_RunL_Transition is fully constructed.
398 CComponentTester_RunL_Transition(CUnitTestContext& aUTContext,
399 TTransitionValidator& aValidator);
402 Intended Usage : To execute the CComponentTester::RunL method for the test harness.
403 Error Condition : Leaves with an error code.
404 @leave KErrNoMemory, (@see CComponentTester::RunL)
407 @pre CComponentTester_RunL_Transition is fully constructed.
408 @post No change in the CComponentTester_RunL_Transition apart
409 from iComponentTester, which may have changed state.
410 (@see CComponentTester::RunL post-condition) for iComponentTester's new state.
412 inline void TransitMethodL();
416 Intended Usage : To provide access to the unit test context cast to the correct type.
417 Error Condition : None.
419 @return The unit test context cast to a CComponentTester_UnitTestContext
420 @pre iUTContext is a valid CComponentTester_UnitTestContext.
421 @post No change in the CComponentTester_RunL_Transition
423 inline CComponentTester_UnitTestContext& Context() const;
424 }; // CComponentTester_RunL_Transition
426 // ______________________________________________________________________________
431 Comments : Transition test of the CComponentTester::Complete method.
433 class CComponentTester_Complete_Transition : public CTransition
437 @fn CComponentTester_Complete_Transition(CUnitTestContext& aUTContext,
438 TTransitionValidator& aValidator)
439 Intended Usage : Standard c'tor method.
440 Error Condition : None.
442 @param aUTContext The context this transition is operating in.
443 @param aValidator Used for checking the pre & post conditions of the test object.
445 @post CComponentTester_Complete_Transition is fully constructed.
447 CComponentTester_Complete_Transition(CUnitTestContext& aUTContext,
448 TTransitionValidator& aValidator);
451 Intended Usage : To execute the CComponentTester::Complete method for the test harness.
452 Error Condition : Leaves with an error code.
453 @leave KErrNoMemory, (@see CComponentTester::Complete)
456 @pre CComponentTester_Complete_Transition is fully constructed.
457 @post No change in the CComponentTester_Complete_Transition apart
458 from iComponentTester, which may have changed state.
459 (@see CComponentTester::Complete post-condition) for iComponentTester's new state.
461 inline void TransitMethodL();
465 Intended Usage : To provide access to the unit test context cast to the correct type.
466 Error Condition : None.
468 @return The unit test context cast to a CComponentTester_UnitTestContext
469 @pre iUTContext is a valid CComponentTester_UnitTestContext.
470 @post No change in the CComponentTester_Complete_Transition
472 inline CComponentTester_UnitTestContext& Context() const;
473 }; // CComponentTester_Complete_Transition
476 // Add additional Transition class definitions here...
478 #include "ComponentTesterTransitions.inl"
480 #include "ComponentTesterUnitTestContext.inl"
482 #endif // __COMPONENTTESTERTRANSITIONS_H__