os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitions.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 CComponentInfo class methods.
18 #ifndef __COMPONENTINFOTRANSITIONS_H__
19 #define __COMPONENTINFOTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <ecom/test_bed/datalogger.h>
25 #include "ComponentInfo.h"
26 #include "ComponentInfoStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 // Global function typedef declaration of function provided by a test module of the component
30 // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
31 typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
33 #define CTransitionType CLeakTestTransition
35 // ______________________________________________________________________________
40 Comments : Provide all the CComponentInfo specific
41 parameters and behaviour on the CComponentInfo
42 test class for a transition.
44 class CComponentInfo_UnitTestContext : public CUnitTestContext
48 @fn CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
49 MStateAccessor& aStateAccessor,
50 MTransitionObserver& aObserver)
51 Intended Usage : Default constructor.
52 Error Condition : None.
54 @param aDataLogger The output logging object.
55 @param aObserver The observer of this UnitTest's Transitions.
56 @param aStateAccessor WhiteBox state access to the CComponentInfo class under test.
58 @post CComponentInfo_UnitTestContext is fully constructed, and initialised.
60 inline CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
61 MStateAccessor& aStateAccessor,
62 MTransitionObserver& aObserver);
65 @fn ~CComponentInfo_UnitTestContext()
66 Intended Usage : Default Destructor
68 @pre CComponentInfo_UnitTestContext is fully constructed.
69 @post CComponentInfo_UnitTestContext is fully destroyed
71 virtual inline ~CComponentInfo_UnitTestContext();
73 /** The instance of the class under test */
74 CComponentInfo* iComponentInfo;
75 /** The directory entry for a dll */
76 ComponentTesterInitialiserLC iEntryFunc;
77 /** A TEntry to check that the correct directory for the test component is found */
78 ComponentTesterInitialiserLC iEntryFuncPostCheck;
79 /** The array of unit tests for the component under test */
80 RPointerArray<CUnitTestInfo>* iTestInfoArray;
81 /** Used to check that the correct list of unit tests is found for a particular component */
82 const RPointerArray<CUnitTestInfo>* iTestInfoArrayPostCheck;
83 /** Flag indicating whether we have passed ownership of iEntry & iTestInfoArray
84 to the CComponentInfo */
86 }; // CComponentInfo_UnitTestContext
88 // ______________________________________________________________________________
93 Comments : Transition test of the CComponentInfo::NewL method.
95 class CComponentInfo_NewL_Transition : public CTransitionType
99 @fn CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
100 TTransitionValidator& aValidator)
101 Intended Usage : Standard c'tor method.
102 Error Condition : None.
104 @param aUTContext The context this transition is operating in.
105 @param aValidator Used for checking the pre & post conditions of the test object.
107 @post CComponentInfo_NewL_Transition is fully constructed.
109 CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
110 TTransitionValidator& aValidator);
113 Intended Usage : To execute the CComponentInfo::NewL method for the test harness.
114 Error Condition : Leaves with an error code.
115 @leave KErrNoMemory, (@see CComponentInfo::NewL)
118 @pre CComponentInfo_NewL_Transition is fully constructed.
119 @post No change in the CComponentInfo_NewL_Transition apart
120 from iComponentInfo, which may have changed state.
121 (@see CComponentInfo::NewL post-condition) for iComponentInfo's new state.
123 inline void TransitMethodL();
127 Intended Usage : To provide access to the unit test context cast to the correct type.
128 Error Condition : None.
130 @return The unit test context cast to a CComponentInfo_UnitTestContext
131 @pre iUTContext is a valid CComponentInfo_UnitTestContext.
132 @post No change in the CComponentInfo_NewL_Transition
134 inline CComponentInfo_UnitTestContext& Context() const;
135 }; // CComponentInfo_NewL_Transition
137 // ______________________________________________________________________________
142 Comments : Transition test of the CComponentInfo::Dtor method.
144 class CComponentInfo_Dtor_Transition : public CTransition
148 @fn CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
149 TTransitionValidator& aValidator)
150 Intended Usage : Standard c'tor method.
151 Error Condition : None.
153 @param aUTContext The context this transition is operating in.
154 @param aValidator Used for checking the pre & post conditions of the test object.
156 @post CComponentInfo_Dtor_Transition is fully constructed.
158 CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
159 TTransitionValidator& aValidator);
162 Intended Usage : To execute the CComponentInfo::Dtor method for the test harness.
163 Error Condition : Leaves with an error code.
164 @leave KErrNoMemory, (@see CComponentInfo::Dtor)
167 @pre CComponentInfo_Dtor_Transition is fully constructed.
168 @post No change in the CComponentInfo_Dtor_Transition apart
169 from iComponentInfo, which may have changed state.
170 (@see CComponentInfo::Dtor post-condition) for iComponentInfo's new state.
172 inline void TransitMethodL();
176 Intended Usage : To provide access to the unit test context cast to the correct type.
177 Error Condition : None.
179 @return The unit test context cast to a CComponentInfo_UnitTestContext
180 @pre iUTContext is a valid CComponentInfo_UnitTestContext.
181 @post No change in the CComponentInfo_Dtor_Transition
183 inline CComponentInfo_UnitTestContext& Context() const;
184 }; // CComponentInfo_Dtor_Transition
186 // ______________________________________________________________________________
191 Comments : Transition test of the CComponentInfo::Entry method.
193 class CComponentInfo_Entry_Transition : public CTransition
197 @fn CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
198 TTransitionValidator& aValidator)
199 Intended Usage : Standard c'tor method.
200 Error Condition : None.
202 @param aUTContext The context this transition is operating in.
203 @param aValidator Used for checking the pre & post conditions of the test object.
205 @post CComponentInfo_Entry_Transition is fully constructed.
207 CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
208 TTransitionValidator& aValidator);
211 Intended Usage : To execute the CComponentInfo::Entry method for the test harness.
212 Error Condition : Leaves with an error code.
213 @leave KErrNoMemory, (@see CComponentInfo::Entry)
216 @pre CComponentInfo_Entry_Transition is fully constructed.
217 @post No change in the CComponentInfo_Entry_Transition apart
218 from iComponentInfo, which may have changed state.
219 (@see CComponentInfo::Entry post-condition) for iComponentInfo's new state.
221 inline void TransitMethodL();
225 Intended Usage : To provide access to the unit test context cast to the correct type.
226 Error Condition : None.
228 @return The unit test context cast to a CComponentInfo_UnitTestContext
229 @pre iUTContext is a valid CComponentInfo_UnitTestContext.
230 @post No change in the CComponentInfo_Entry_Transition
232 inline CComponentInfo_UnitTestContext& Context() const;
233 }; // CComponentInfo_Entry_Transition
235 // ______________________________________________________________________________
240 Comments : Transition test of the CComponentInfo::UnitTestsInfo method.
242 class CComponentInfo_UnitTestsInfo_Transition : public CTransition
246 @fn CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
247 TTransitionValidator& aValidator)
248 Intended Usage : Standard c'tor method.
249 Error Condition : None.
251 @param aUTContext The context this transition is operating in.
252 @param aValidator Used for checking the pre & post conditions of the test object.
254 @post CComponentInfo_UnitTestsInfo_Transition is fully constructed.
256 CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
257 TTransitionValidator& aValidator);
260 Intended Usage : To execute the CComponentInfo::UnitTestsInfo method for the test harness.
261 Error Condition : Leaves with an error code.
262 @leave KErrNoMemory, (@see CComponentInfo::UnitTestsInfo)
265 @pre CComponentInfo_UnitTestsInfo_Transition is fully constructed.
266 @post No change in the CComponentInfo_UnitTestsInfo_Transition apart
267 from iComponentInfo, which may have changed state.
268 (@see CComponentInfo::UnitTestsInfo post-condition) for iComponentInfo's new state.
270 inline void TransitMethodL();
274 Intended Usage : To provide access to the unit test context cast to the correct type.
275 Error Condition : None.
277 @return The unit test context cast to a CComponentInfo_UnitTestContext
278 @pre iUTContext is a valid CComponentInfo_UnitTestContext.
279 @post No change in the CComponentInfo_UnitTestsInfo_Transition
281 inline CComponentInfo_UnitTestContext& Context() const;
282 }; // CComponentInfo_UnitTestsInfo_Transition
285 // Add additional Transition class definitions here...
287 #include "ComponentInfoTransitions.inl"
289 #include "ComponentInfoUnitTestContext.inl"
291 #endif // __COMPONENTINFOTRANSITIONS_H__