sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The definitions of the transition classes upon the CComponentInfo class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __COMPONENTINFOTRANSITIONS_H__
|
sl@0
|
19 |
#define __COMPONENTINFOTRANSITIONS_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "TestUtilities.h"
|
sl@0
|
22 |
#include "StateAccessor.h"
|
sl@0
|
23 |
#include "LeakTestTransition.h"
|
sl@0
|
24 |
#include <ecom/test_bed/datalogger.h>
|
sl@0
|
25 |
#include "ComponentInfo.h"
|
sl@0
|
26 |
#include "ComponentInfoStateAccessor.h"
|
sl@0
|
27 |
#include <ecom/test_bed/unittest.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
// Global function typedef declaration of function provided by a test module of the component
|
sl@0
|
30 |
// under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
|
sl@0
|
31 |
typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
|
sl@0
|
32 |
|
sl@0
|
33 |
#define CTransitionType CLeakTestTransition
|
sl@0
|
34 |
|
sl@0
|
35 |
// ______________________________________________________________________________
|
sl@0
|
36 |
//
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@internalComponent
|
sl@0
|
39 |
|
sl@0
|
40 |
Comments : Provide all the CComponentInfo specific
|
sl@0
|
41 |
parameters and behaviour on the CComponentInfo
|
sl@0
|
42 |
test class for a transition.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
class CComponentInfo_UnitTestContext : public CUnitTestContext
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
@fn CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
49 |
MStateAccessor& aStateAccessor,
|
sl@0
|
50 |
MTransitionObserver& aObserver)
|
sl@0
|
51 |
Intended Usage : Default constructor.
|
sl@0
|
52 |
Error Condition : None.
|
sl@0
|
53 |
@since 7.0
|
sl@0
|
54 |
@param aDataLogger The output logging object.
|
sl@0
|
55 |
@param aObserver The observer of this UnitTest's Transitions.
|
sl@0
|
56 |
@param aStateAccessor WhiteBox state access to the CComponentInfo class under test.
|
sl@0
|
57 |
@pre None.
|
sl@0
|
58 |
@post CComponentInfo_UnitTestContext is fully constructed, and initialised.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
inline CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
61 |
MStateAccessor& aStateAccessor,
|
sl@0
|
62 |
MTransitionObserver& aObserver);
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
@fn ~CComponentInfo_UnitTestContext()
|
sl@0
|
66 |
Intended Usage : Default Destructor
|
sl@0
|
67 |
@since 7.0
|
sl@0
|
68 |
@pre CComponentInfo_UnitTestContext is fully constructed.
|
sl@0
|
69 |
@post CComponentInfo_UnitTestContext is fully destroyed
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
virtual inline ~CComponentInfo_UnitTestContext();
|
sl@0
|
72 |
|
sl@0
|
73 |
/** The instance of the class under test */
|
sl@0
|
74 |
CComponentInfo* iComponentInfo;
|
sl@0
|
75 |
/** The directory entry for a dll */
|
sl@0
|
76 |
ComponentTesterInitialiserLC iEntryFunc;
|
sl@0
|
77 |
/** A TEntry to check that the correct directory for the test component is found */
|
sl@0
|
78 |
ComponentTesterInitialiserLC iEntryFuncPostCheck;
|
sl@0
|
79 |
/** The array of unit tests for the component under test */
|
sl@0
|
80 |
RPointerArray<CUnitTestInfo>* iTestInfoArray;
|
sl@0
|
81 |
/** Used to check that the correct list of unit tests is found for a particular component */
|
sl@0
|
82 |
const RPointerArray<CUnitTestInfo>* iTestInfoArrayPostCheck;
|
sl@0
|
83 |
/** Flag indicating whether we have passed ownership of iEntry & iTestInfoArray
|
sl@0
|
84 |
to the CComponentInfo */
|
sl@0
|
85 |
TBool iOwnParams;
|
sl@0
|
86 |
}; // CComponentInfo_UnitTestContext
|
sl@0
|
87 |
|
sl@0
|
88 |
// ______________________________________________________________________________
|
sl@0
|
89 |
//
|
sl@0
|
90 |
/**
|
sl@0
|
91 |
@internalComponent
|
sl@0
|
92 |
|
sl@0
|
93 |
Comments : Transition test of the CComponentInfo::NewL method.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
class CComponentInfo_NewL_Transition : public CTransitionType
|
sl@0
|
96 |
{
|
sl@0
|
97 |
public:
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
@fn CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
100 |
TTransitionValidator& aValidator)
|
sl@0
|
101 |
Intended Usage : Standard c'tor method.
|
sl@0
|
102 |
Error Condition : None.
|
sl@0
|
103 |
@since 7.0
|
sl@0
|
104 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
105 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
106 |
@pre None.
|
sl@0
|
107 |
@post CComponentInfo_NewL_Transition is fully constructed.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
110 |
TTransitionValidator& aValidator);
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
@fn TransitMethodL()
|
sl@0
|
113 |
Intended Usage : To execute the CComponentInfo::NewL method for the test harness.
|
sl@0
|
114 |
Error Condition : Leaves with an error code.
|
sl@0
|
115 |
@leave KErrNoMemory, (@see CComponentInfo::NewL)
|
sl@0
|
116 |
@since 7.0
|
sl@0
|
117 |
@return None
|
sl@0
|
118 |
@pre CComponentInfo_NewL_Transition is fully constructed.
|
sl@0
|
119 |
@post No change in the CComponentInfo_NewL_Transition apart
|
sl@0
|
120 |
from iComponentInfo, which may have changed state.
|
sl@0
|
121 |
(@see CComponentInfo::NewL post-condition) for iComponentInfo's new state.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
inline void TransitMethodL();
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@fn Context() const
|
sl@0
|
127 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
128 |
Error Condition : None.
|
sl@0
|
129 |
@since 7.0
|
sl@0
|
130 |
@return The unit test context cast to a CComponentInfo_UnitTestContext
|
sl@0
|
131 |
@pre iUTContext is a valid CComponentInfo_UnitTestContext.
|
sl@0
|
132 |
@post No change in the CComponentInfo_NewL_Transition
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
inline CComponentInfo_UnitTestContext& Context() const;
|
sl@0
|
135 |
}; // CComponentInfo_NewL_Transition
|
sl@0
|
136 |
|
sl@0
|
137 |
// ______________________________________________________________________________
|
sl@0
|
138 |
//
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
@internalComponent
|
sl@0
|
141 |
|
sl@0
|
142 |
Comments : Transition test of the CComponentInfo::Dtor method.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
class CComponentInfo_Dtor_Transition : public CTransition
|
sl@0
|
145 |
{
|
sl@0
|
146 |
public:
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
@fn CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
149 |
TTransitionValidator& aValidator)
|
sl@0
|
150 |
Intended Usage : Standard c'tor method.
|
sl@0
|
151 |
Error Condition : None.
|
sl@0
|
152 |
@since 7.0
|
sl@0
|
153 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
154 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
155 |
@pre None.
|
sl@0
|
156 |
@post CComponentInfo_Dtor_Transition is fully constructed.
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
159 |
TTransitionValidator& aValidator);
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
@fn TransitMethodL()
|
sl@0
|
162 |
Intended Usage : To execute the CComponentInfo::Dtor method for the test harness.
|
sl@0
|
163 |
Error Condition : Leaves with an error code.
|
sl@0
|
164 |
@leave KErrNoMemory, (@see CComponentInfo::Dtor)
|
sl@0
|
165 |
@since 7.0
|
sl@0
|
166 |
@return None
|
sl@0
|
167 |
@pre CComponentInfo_Dtor_Transition is fully constructed.
|
sl@0
|
168 |
@post No change in the CComponentInfo_Dtor_Transition apart
|
sl@0
|
169 |
from iComponentInfo, which may have changed state.
|
sl@0
|
170 |
(@see CComponentInfo::Dtor post-condition) for iComponentInfo's new state.
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
inline void TransitMethodL();
|
sl@0
|
173 |
|
sl@0
|
174 |
/**
|
sl@0
|
175 |
@fn Context() const
|
sl@0
|
176 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
177 |
Error Condition : None.
|
sl@0
|
178 |
@since 7.0
|
sl@0
|
179 |
@return The unit test context cast to a CComponentInfo_UnitTestContext
|
sl@0
|
180 |
@pre iUTContext is a valid CComponentInfo_UnitTestContext.
|
sl@0
|
181 |
@post No change in the CComponentInfo_Dtor_Transition
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
inline CComponentInfo_UnitTestContext& Context() const;
|
sl@0
|
184 |
}; // CComponentInfo_Dtor_Transition
|
sl@0
|
185 |
|
sl@0
|
186 |
// ______________________________________________________________________________
|
sl@0
|
187 |
//
|
sl@0
|
188 |
/**
|
sl@0
|
189 |
@internalComponent
|
sl@0
|
190 |
|
sl@0
|
191 |
Comments : Transition test of the CComponentInfo::Entry method.
|
sl@0
|
192 |
*/
|
sl@0
|
193 |
class CComponentInfo_Entry_Transition : public CTransition
|
sl@0
|
194 |
{
|
sl@0
|
195 |
public:
|
sl@0
|
196 |
/**
|
sl@0
|
197 |
@fn CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
198 |
TTransitionValidator& aValidator)
|
sl@0
|
199 |
Intended Usage : Standard c'tor method.
|
sl@0
|
200 |
Error Condition : None.
|
sl@0
|
201 |
@since 7.0
|
sl@0
|
202 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
203 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
204 |
@pre None.
|
sl@0
|
205 |
@post CComponentInfo_Entry_Transition is fully constructed.
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
208 |
TTransitionValidator& aValidator);
|
sl@0
|
209 |
/**
|
sl@0
|
210 |
@fn TransitMethodL()
|
sl@0
|
211 |
Intended Usage : To execute the CComponentInfo::Entry method for the test harness.
|
sl@0
|
212 |
Error Condition : Leaves with an error code.
|
sl@0
|
213 |
@leave KErrNoMemory, (@see CComponentInfo::Entry)
|
sl@0
|
214 |
@since 7.0
|
sl@0
|
215 |
@return None
|
sl@0
|
216 |
@pre CComponentInfo_Entry_Transition is fully constructed.
|
sl@0
|
217 |
@post No change in the CComponentInfo_Entry_Transition apart
|
sl@0
|
218 |
from iComponentInfo, which may have changed state.
|
sl@0
|
219 |
(@see CComponentInfo::Entry post-condition) for iComponentInfo's new state.
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
inline void TransitMethodL();
|
sl@0
|
222 |
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
@fn Context() const
|
sl@0
|
225 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
226 |
Error Condition : None.
|
sl@0
|
227 |
@since 7.0
|
sl@0
|
228 |
@return The unit test context cast to a CComponentInfo_UnitTestContext
|
sl@0
|
229 |
@pre iUTContext is a valid CComponentInfo_UnitTestContext.
|
sl@0
|
230 |
@post No change in the CComponentInfo_Entry_Transition
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
inline CComponentInfo_UnitTestContext& Context() const;
|
sl@0
|
233 |
}; // CComponentInfo_Entry_Transition
|
sl@0
|
234 |
|
sl@0
|
235 |
// ______________________________________________________________________________
|
sl@0
|
236 |
//
|
sl@0
|
237 |
/**
|
sl@0
|
238 |
@internalComponent
|
sl@0
|
239 |
|
sl@0
|
240 |
Comments : Transition test of the CComponentInfo::UnitTestsInfo method.
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
class CComponentInfo_UnitTestsInfo_Transition : public CTransition
|
sl@0
|
243 |
{
|
sl@0
|
244 |
public:
|
sl@0
|
245 |
/**
|
sl@0
|
246 |
@fn CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
247 |
TTransitionValidator& aValidator)
|
sl@0
|
248 |
Intended Usage : Standard c'tor method.
|
sl@0
|
249 |
Error Condition : None.
|
sl@0
|
250 |
@since 7.0
|
sl@0
|
251 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
252 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
253 |
@pre None.
|
sl@0
|
254 |
@post CComponentInfo_UnitTestsInfo_Transition is fully constructed.
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
257 |
TTransitionValidator& aValidator);
|
sl@0
|
258 |
/**
|
sl@0
|
259 |
@fn TransitMethodL()
|
sl@0
|
260 |
Intended Usage : To execute the CComponentInfo::UnitTestsInfo method for the test harness.
|
sl@0
|
261 |
Error Condition : Leaves with an error code.
|
sl@0
|
262 |
@leave KErrNoMemory, (@see CComponentInfo::UnitTestsInfo)
|
sl@0
|
263 |
@since 7.0
|
sl@0
|
264 |
@return None
|
sl@0
|
265 |
@pre CComponentInfo_UnitTestsInfo_Transition is fully constructed.
|
sl@0
|
266 |
@post No change in the CComponentInfo_UnitTestsInfo_Transition apart
|
sl@0
|
267 |
from iComponentInfo, which may have changed state.
|
sl@0
|
268 |
(@see CComponentInfo::UnitTestsInfo post-condition) for iComponentInfo's new state.
|
sl@0
|
269 |
*/
|
sl@0
|
270 |
inline void TransitMethodL();
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
@fn Context() const
|
sl@0
|
274 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
275 |
Error Condition : None.
|
sl@0
|
276 |
@since 7.0
|
sl@0
|
277 |
@return The unit test context cast to a CComponentInfo_UnitTestContext
|
sl@0
|
278 |
@pre iUTContext is a valid CComponentInfo_UnitTestContext.
|
sl@0
|
279 |
@post No change in the CComponentInfo_UnitTestsInfo_Transition
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
inline CComponentInfo_UnitTestContext& Context() const;
|
sl@0
|
282 |
}; // CComponentInfo_UnitTestsInfo_Transition
|
sl@0
|
283 |
|
sl@0
|
284 |
|
sl@0
|
285 |
// Add additional Transition class definitions here...
|
sl@0
|
286 |
|
sl@0
|
287 |
#include "ComponentInfoTransitions.inl"
|
sl@0
|
288 |
|
sl@0
|
289 |
#include "ComponentInfoUnitTestContext.inl"
|
sl@0
|
290 |
|
sl@0
|
291 |
#endif // __COMPONENTINFOTRANSITIONS_H__
|
sl@0
|
292 |
|