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 CTestManager class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __TESTMANAGERTRANSITIONS_H__
|
sl@0
|
19 |
#define __TESTMANAGERTRANSITIONS_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 "TestManager.h"
|
sl@0
|
26 |
#include "TestManagerStateAccessor.h"
|
sl@0
|
27 |
#include <ecom/test_bed/unittest.h>
|
sl@0
|
28 |
#include "TestController.h"
|
sl@0
|
29 |
#include "TestManagerObserverStub.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
#define CTransitionType CLeakTestTransition
|
sl@0
|
32 |
|
sl@0
|
33 |
// ______________________________________________________________________________
|
sl@0
|
34 |
//
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@internalComponent
|
sl@0
|
37 |
|
sl@0
|
38 |
Comments : Provide all the CTestManager specific
|
sl@0
|
39 |
parameters and behaviour on the CTestManager
|
sl@0
|
40 |
test class for a transition.
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
class CTestManager_UnitTestContext : public CUnitTestContext
|
sl@0
|
43 |
{
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
@fn CTestManager_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
47 |
MStateAccessor& aStateAccessor,
|
sl@0
|
48 |
MTransitionObserver& aObserver)
|
sl@0
|
49 |
Intended Usage : Default constructor.
|
sl@0
|
50 |
Error Condition : None.
|
sl@0
|
51 |
@since 6.0
|
sl@0
|
52 |
@param aDataLogger The output logging object.
|
sl@0
|
53 |
@param aObserver The observer of this UnitTest's Transitions.
|
sl@0
|
54 |
@param aStateAccessor WhiteBox state access to the CTestManager class under test.
|
sl@0
|
55 |
@pre None.
|
sl@0
|
56 |
@post CTestManager_UnitTestContext is fully constructed, and initialised.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
inline CTestManager_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
59 |
MStateAccessor& aStateAccessor,
|
sl@0
|
60 |
MTransitionObserver& aObserver);
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
@fn ~CTestManager_UnitTestContext()
|
sl@0
|
64 |
Intended Usage : Default Destructor
|
sl@0
|
65 |
@since 6.0
|
sl@0
|
66 |
@pre CTestManager_UnitTestContext is fully constructed.
|
sl@0
|
67 |
@post CTestManager_UnitTestContext is fully destroyed
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
virtual inline ~CTestManager_UnitTestContext();
|
sl@0
|
70 |
|
sl@0
|
71 |
inline MManagerObserver& ManagerObserver();
|
sl@0
|
72 |
|
sl@0
|
73 |
/** The instance of the class under test */
|
sl@0
|
74 |
CTestManager* iTestManager;
|
sl@0
|
75 |
/** A component info to be used by the TestManager */
|
sl@0
|
76 |
CComponentInfo* iComponentInfo;
|
sl@0
|
77 |
/** A reference to the observer stub of the CTestManager */
|
sl@0
|
78 |
CTestManagerObserverStub* iTestManagerObserverStub;
|
sl@0
|
79 |
/** A test controller to be used by the TestManager */
|
sl@0
|
80 |
CTestController* iTestController;
|
sl@0
|
81 |
/** A component tester to be used by the TestManager */
|
sl@0
|
82 |
CComponentTester* iTester;
|
sl@0
|
83 |
/** An array of all the tests avaialble to be run */
|
sl@0
|
84 |
RPointerArray<CComponentInfo>* iTestListArray;
|
sl@0
|
85 |
/** An array of all the available components */
|
sl@0
|
86 |
const RPointerArray<CComponentInfo>* iComponents;
|
sl@0
|
87 |
/** An array of all the tests that are to be run */
|
sl@0
|
88 |
RPointerArray<TTestInfo> iTests;
|
sl@0
|
89 |
/** The index of the component to test */
|
sl@0
|
90 |
TInt iComponentIndex;
|
sl@0
|
91 |
|
sl@0
|
92 |
}; // CTestManager_UnitTestContext
|
sl@0
|
93 |
|
sl@0
|
94 |
// ______________________________________________________________________________
|
sl@0
|
95 |
//
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
@internalComponent
|
sl@0
|
98 |
|
sl@0
|
99 |
Comments : Transition test of the CTestManager::NewL method.
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
class CTestManager_NewL_Transition : public CTransitionType
|
sl@0
|
102 |
{
|
sl@0
|
103 |
public:
|
sl@0
|
104 |
/**
|
sl@0
|
105 |
@fn CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
106 |
TTransitionValidator& aValidator)
|
sl@0
|
107 |
Intended Usage : Standard c'tor method.
|
sl@0
|
108 |
Error Condition : None.
|
sl@0
|
109 |
@since 6.0
|
sl@0
|
110 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
111 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
112 |
@pre None.
|
sl@0
|
113 |
@post CTestManager_NewL_Transition is fully constructed.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
116 |
TTransitionValidator& aValidator);
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
@fn TransitMethodL()
|
sl@0
|
119 |
Intended Usage : To execute the CTestManager::NewL method for the test harness.
|
sl@0
|
120 |
Error Condition : Leaves with an error code.
|
sl@0
|
121 |
@leave KErrNoMemory, (@see CTestManager::NewL)
|
sl@0
|
122 |
@since 6.0
|
sl@0
|
123 |
@return None
|
sl@0
|
124 |
@pre CTestManager_NewL_Transition is fully constructed.
|
sl@0
|
125 |
@post No change in the CTestManager_NewL_Transition apart
|
sl@0
|
126 |
from iTestManager, which may have changed state.
|
sl@0
|
127 |
(@see CTestManager::NewL post-condition) for iTestManager's new state.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
inline void TransitMethodL();
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
@fn Context() const
|
sl@0
|
133 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
134 |
Error Condition : None.
|
sl@0
|
135 |
@since 6.0
|
sl@0
|
136 |
@return The unit test context cast to a CTestManager_UnitTestContext
|
sl@0
|
137 |
@pre iUTContext is a valid CTestManager_UnitTestContext.
|
sl@0
|
138 |
@post No change in the CTestManager_NewL_Transition
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
inline CTestManager_UnitTestContext& Context() const;
|
sl@0
|
141 |
}; // CTestManager_NewL_Transition
|
sl@0
|
142 |
|
sl@0
|
143 |
// ______________________________________________________________________________
|
sl@0
|
144 |
//
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@internalComponent
|
sl@0
|
147 |
|
sl@0
|
148 |
Comments : Transition test of the CTestManager::Dtor method.
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
class CTestManager_Dtor_Transition : public CTransition
|
sl@0
|
151 |
{
|
sl@0
|
152 |
public:
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
@fn CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
155 |
TTransitionValidator& aValidator)
|
sl@0
|
156 |
Intended Usage : Standard c'tor method.
|
sl@0
|
157 |
Error Condition : None.
|
sl@0
|
158 |
@since 6.0
|
sl@0
|
159 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
160 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
161 |
@pre None.
|
sl@0
|
162 |
@post CTestManager_Dtor_Transition is fully constructed.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
165 |
TTransitionValidator& aValidator);
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
@fn TransitMethodL()
|
sl@0
|
168 |
Intended Usage : To execute the CTestManager::Dtor method for the test harness.
|
sl@0
|
169 |
Error Condition : Leaves with an error code.
|
sl@0
|
170 |
@leave KErrNoMemory, (@see CTestManager::Dtor)
|
sl@0
|
171 |
@since 6.0
|
sl@0
|
172 |
@return None
|
sl@0
|
173 |
@pre CTestManager_Dtor_Transition is fully constructed.
|
sl@0
|
174 |
@post No change in the CTestManager_Dtor_Transition apart
|
sl@0
|
175 |
from iTestManager, which may have changed state.
|
sl@0
|
176 |
(@see CTestManager::Dtor post-condition) for iTestManager's new state.
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
inline void TransitMethodL();
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
@fn Context() const
|
sl@0
|
182 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
183 |
Error Condition : None.
|
sl@0
|
184 |
@since 6.0
|
sl@0
|
185 |
@return The unit test context cast to a CTestManager_UnitTestContext
|
sl@0
|
186 |
@pre iUTContext is a valid CTestManager_UnitTestContext.
|
sl@0
|
187 |
@post No change in the CTestManager_Dtor_Transition
|
sl@0
|
188 |
*/
|
sl@0
|
189 |
inline CTestManager_UnitTestContext& Context() const;
|
sl@0
|
190 |
}; // CTestManager_Dtor_Transition
|
sl@0
|
191 |
|
sl@0
|
192 |
// ______________________________________________________________________________
|
sl@0
|
193 |
//
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
@internalComponent
|
sl@0
|
196 |
|
sl@0
|
197 |
Comments : Transition test of the CTestManager::RunTests method.
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
class CTestManager_RunTests_Transition : public CTransition
|
sl@0
|
200 |
{
|
sl@0
|
201 |
public:
|
sl@0
|
202 |
/**
|
sl@0
|
203 |
@fn CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
204 |
TTransitionValidator& aValidator)
|
sl@0
|
205 |
Intended Usage : Standard c'tor method.
|
sl@0
|
206 |
Error Condition : None.
|
sl@0
|
207 |
@since 6.0
|
sl@0
|
208 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
209 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
210 |
@pre None.
|
sl@0
|
211 |
@post CTestManager_RunTests_Transition is fully constructed.
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
214 |
TTransitionValidator& aValidator);
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
@fn TransitMethodL()
|
sl@0
|
217 |
Intended Usage : To execute the CTestManager::RunTests method for the test harness.
|
sl@0
|
218 |
Error Condition : Leaves with an error code.
|
sl@0
|
219 |
@leave KErrNoMemory, (@see CTestManager::RunTests)
|
sl@0
|
220 |
@since 6.0
|
sl@0
|
221 |
@return None
|
sl@0
|
222 |
@pre CTestManager_RunTests_Transition is fully constructed.
|
sl@0
|
223 |
@post No change in the CTestManager_RunTests_Transition apart
|
sl@0
|
224 |
from iTestManager, which may have changed state.
|
sl@0
|
225 |
(@see CTestManager::RunTests post-condition) for iTestManager's new state.
|
sl@0
|
226 |
*/
|
sl@0
|
227 |
inline void TransitMethodL();
|
sl@0
|
228 |
|
sl@0
|
229 |
/**
|
sl@0
|
230 |
@fn Context() const
|
sl@0
|
231 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
232 |
Error Condition : None.
|
sl@0
|
233 |
@since 6.0
|
sl@0
|
234 |
@return The unit test context cast to a CTestManager_UnitTestContext
|
sl@0
|
235 |
@pre iUTContext is a valid CTestManager_UnitTestContext.
|
sl@0
|
236 |
@post No change in the CTestManager_RunTests_Transition
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
inline CTestManager_UnitTestContext& Context() const;
|
sl@0
|
239 |
}; // CTestManager_RunTests_Transition
|
sl@0
|
240 |
|
sl@0
|
241 |
|
sl@0
|
242 |
// ______________________________________________________________________________
|
sl@0
|
243 |
//
|
sl@0
|
244 |
/**
|
sl@0
|
245 |
@internalComponent
|
sl@0
|
246 |
|
sl@0
|
247 |
Comments : Transition test of the CTestManager::TestComponentL method.
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
class CTestManager_TestComponentL_Transition : public CTransitionType
|
sl@0
|
250 |
{
|
sl@0
|
251 |
public:
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
@fn CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
254 |
TTransitionValidator& aValidator)
|
sl@0
|
255 |
Intended Usage : Standard c'tor method.
|
sl@0
|
256 |
Error Condition : None.
|
sl@0
|
257 |
@since 6.0
|
sl@0
|
258 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
259 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
260 |
@pre None.
|
sl@0
|
261 |
@post CTestManager_TestComponentL_Transition is fully constructed.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
264 |
TTransitionValidator& aValidator);
|
sl@0
|
265 |
/**
|
sl@0
|
266 |
@fn TransitMethodL()
|
sl@0
|
267 |
Intended Usage : To execute the CTestManager::TestComponentL method for the test harness.
|
sl@0
|
268 |
Error Condition : Leaves with an error code.
|
sl@0
|
269 |
@leave KErrNoMemory, (@see CTestManager::TestComponentL)
|
sl@0
|
270 |
@since 6.0
|
sl@0
|
271 |
@return None
|
sl@0
|
272 |
@pre CTestManager_TestComponentL_Transition is fully constructed.
|
sl@0
|
273 |
@post No change in the CTestManager_TestComponentL_Transition apart
|
sl@0
|
274 |
from iTestManager, which may have changed state.
|
sl@0
|
275 |
(@see CTestManager::TestComponentL post-condition) for iTestManager's new state.
|
sl@0
|
276 |
*/
|
sl@0
|
277 |
inline void TransitMethodL();
|
sl@0
|
278 |
|
sl@0
|
279 |
/**
|
sl@0
|
280 |
@fn Context() const
|
sl@0
|
281 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
282 |
Error Condition : None.
|
sl@0
|
283 |
@since 6.0
|
sl@0
|
284 |
@return The unit test context cast to a CTestManager_UnitTestContext
|
sl@0
|
285 |
@pre iUTContext is a valid CTestManager_UnitTestContext.
|
sl@0
|
286 |
@post No change in the CTestManager_TestComponentL_Transition
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
inline CTestManager_UnitTestContext& Context() const;
|
sl@0
|
289 |
}; // CTestManager_TestComponentL_Transition
|
sl@0
|
290 |
|
sl@0
|
291 |
|
sl@0
|
292 |
// Add additional Transition class definitions here...
|
sl@0
|
293 |
|
sl@0
|
294 |
#include "TestManagerTransitions.inl"
|
sl@0
|
295 |
|
sl@0
|
296 |
#include "TestManagerUnitTestContext.inl"
|
sl@0
|
297 |
|
sl@0
|
298 |
#endif // __TESTMANAGERTRANSITIONS_H__
|
sl@0
|
299 |
|