os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitions.h
First public contribution.
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 CResolver test transition class definitions
18 #ifndef __RESOLVERTRANSITIONS_H__
19 #define __RESOLVERTRANSITIONS_H__
21 #include "LeakTestTransition.h"
23 #include <ecom/ecom.h>
24 #include "RegistryData.h"
26 #define CTransitionType CLeakTestTransition
27 // ______________________________________________________________________________
31 Comments : Provide all the CDefaultResolver specific
32 parameters and behaviour on the CDefaultResolver
33 test class for a transition.
35 class CDefaultResolver_UnitTestContext : public CUnitTestContext
39 @fn CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
40 MStateAccessor& aStateAccessor,
41 MTransitionObserver& aObserver)
42 Intended Usage : Default constructor.
43 Error Condition : None.
45 @param aDataLogger The output logging object.
46 @param aObserver The observer of this UnitTest's Transitions.
47 @param aStateAccessor WhiteBox state access to the CDefaultResolver class under test.
49 @post CDefaultResolver_UnitTestContext is fully constructed, and initialised.
51 inline CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
52 MStateAccessor& aStateAccessor,
53 MTransitionObserver& aObserver);
56 @fn ~CDefaultResolver_UnitTestContext()
57 Intended Usage : Default Destructor
59 @pre CDefaultResolver_UnitTestContext is fully constructed.
60 @post CDefaultResolver_UnitTestContext is fully destroyed
62 virtual inline ~CDefaultResolver_UnitTestContext();
64 /** The instance of the class under test */
65 CDefaultResolver* iDefaultResolver;
66 /** The data store which is used by the resolver */
67 CRegistryData* iRegistry;
68 /** File server handle */
70 /** ECom example interface Uid */
72 /** The Uid returned by IdentifyImplementationL. Used in post validation. */
74 /** Additional parameters used for resolving between implementations */
75 TEComResolverParams iAdditionalParameters;
76 /** The implementation data type to find when resolving */
77 HBufC8* iImplementationType;
78 /** The implementation match parameters to use when resolving */
80 /** Indicates whether wildcard matching should be used during resolving */
82 /** The return value from Match() */
84 /** The expected return value from Match(). Used in post validation checking */
85 TBool iExpectedMatchResult;
86 /** An array of potential implementations to resolve between */
87 RImplInfoArray iImplementationData;
88 }; // CDefaultResolver_UnitTestContext
90 // ______________________________________________________________________________
94 Comments : Transition test of the CDefaultResolver::NewL method.
96 class CDefaultResolver_NewL_Transition : public CTransitionType
100 @fn CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
101 TTransitionValidator& aValidator)
102 Intended Usage : Standard c'tor method.
103 Error Condition : None.
105 @param aUTContext The context this transition is operating in.
106 @param aValidator Used for checking the pre & post conditions of the test object.
108 @post CDefaultResolver_NewL_Transition is fully constructed.
110 CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
111 TTransitionValidator& aValidator);
114 Intended Usage : To execute the CDefaultResolver::NewL method for the test harness.
115 Error Condition : Leaves with an error code.
116 @leave KErrNoMemory, (@see CDefaultResolver::NewL)
119 @pre CDefaultResolver_NewL_Transition is fully constructed.
120 @post No change in the CDefaultResolver_NewL_Transition apart
121 from iDefaultResolver, which may have changed state.
122 (@see CDefaultResolver::NewL post-condition) for iDefaultResolver's new state.
124 inline void TransitMethodL();
128 Intended Usage : To provide access to the unit test context cast to the correct type.
129 Error Condition : None.
131 @return The unit test context cast to a CDefaultResolver_UnitTestContext
132 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
133 @post No change in the CDefaultResolver_NewL_Transition
135 inline CDefaultResolver_UnitTestContext& Context() const;
136 }; // CDefaultResolver_NewL_Transition
138 // ______________________________________________________________________________
142 Comments : Transition test of the CDefaultResolver::Dtor method.
144 class CDefaultResolver_Dtor_Transition : public CTransition
148 @fn CDefaultResolver_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 CDefaultResolver_Dtor_Transition is fully constructed.
158 CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
159 TTransitionValidator& aValidator);
162 Intended Usage : To execute the CDefaultResolver::Dtor method for the test harness.
163 Error Condition : Leaves with an error code.
164 @leave KErrNoMemory, (@see CDefaultResolver::Dtor)
167 @pre CDefaultResolver_Dtor_Transition is fully constructed.
168 @post No change in the CDefaultResolver_Dtor_Transition apart
169 from iDefaultResolver, which may have changed state.
170 (@see CDefaultResolver::Dtor post-condition) for iDefaultResolver'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 CDefaultResolver_UnitTestContext
180 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
181 @post No change in the CDefaultResolver_Dtor_Transition
183 inline CDefaultResolver_UnitTestContext& Context() const;
184 }; // CDefaultResolver_Dtor_Transition
186 // ______________________________________________________________________________
190 Comments : Transition test of the CDefaultResolver::IdentifyImplementationL method.
192 class CDefaultResolver_IdentifyImplementationL_Transition : public CTransitionType
196 @fn CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
197 TTransitionValidator& aValidator)
198 Intended Usage : Standard c'tor method.
199 Error Condition : None.
201 @param aUTContext The context this transition is operating in.
202 @param aValidator Used for checking the pre & post conditions of the test object.
204 @post CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
206 CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
207 TTransitionValidator& aValidator);
210 Intended Usage : To execute the CDefaultResolver::IdentifyImplementationL method for the test harness.
211 Error Condition : Leaves with an error code.
212 @leave KErrNoMemory, (@see CDefaultResolver::IdentifyImplementationL)
215 @pre CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
216 @post No change in the CDefaultResolver_IdentifyImplementationL_Transition apart
217 from iDefaultResolver, which may have changed state.
218 (@see CDefaultResolver::IdentifyImplementationL post-condition) for iDefaultResolver's new state.
220 inline void TransitMethodL();
224 Intended Usage : To provide access to the unit test context cast to the correct type.
225 Error Condition : None.
227 @return The unit test context cast to a CDefaultResolver_UnitTestContext
228 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
229 @post No change in the CDefaultResolver_IdentifyImplementationL_Transition
231 inline CDefaultResolver_UnitTestContext& Context() const;
232 }; // CDefaultResolver_IdentifyImplementationL_Transition
234 // ______________________________________________________________________________
238 Comments : Transition test of the CDefaultResolver::ListAllL method.
240 class CDefaultResolver_ListAllL_Transition : public CTransitionType
244 @fn CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
245 TTransitionValidator& aValidator)
246 Intended Usage : Standard c'tor method.
247 Error Condition : None.
249 @param aUTContext The context this transition is operating in.
250 @param aValidator Used for checking the pre & post conditions of the test object.
252 @post CDefaultResolver_ListAllL_Transition is fully constructed.
254 CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
255 TTransitionValidator& aValidator);
258 Intended Usage : To execute the CDefaultResolver::ListAllL method for the test harness.
259 Error Condition : Leaves with an error code.
260 @leave KErrNoMemory, (@see CDefaultResolver::ListAllL)
263 @pre CDefaultResolver_ListAllL_Transition is fully constructed.
264 @post No change in the CDefaultResolver_ListAllL_Transition apart
265 from iDefaultResolver, which may have changed state.
266 (@see CDefaultResolver::ListAllL post-condition) for iDefaultResolver's new state.
268 inline void TransitMethodL();
272 Intended Usage : To provide access to the unit test context cast to the correct type.
273 Error Condition : None.
275 @return The unit test context cast to a CDefaultResolver_UnitTestContext
276 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
277 @post No change in the CDefaultResolver_ListAllL_Transition
279 inline CDefaultResolver_UnitTestContext& Context() const;
280 }; // CDefaultResolver_ListAllL_Transition
282 // ______________________________________________________________________________
286 Comments : Transition test of the CDefaultResolver::Match method.
288 class CDefaultResolver_Match_Transition : public CTransition
292 @fn CDefaultResolver_Match_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 CDefaultResolver_Match_Transition is fully constructed.
302 CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
303 TTransitionValidator& aValidator);
306 Intended Usage : To execute the CDefaultResolver::Match method for the test harness.
307 Error Condition : Leaves with an error code.
308 @leave KErrNoMemory, (@see CDefaultResolver::Match)
311 @pre CDefaultResolver_Match_Transition is fully constructed.
312 @post No change in the CDefaultResolver_Match_Transition apart
313 from iDefaultResolver, which may have changed state.
314 (@see CDefaultResolver::Match post-condition) for iDefaultResolver'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 CDefaultResolver_UnitTestContext
324 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
325 @post No change in the CDefaultResolver_Match_Transition
327 inline CDefaultResolver_UnitTestContext& Context() const;
328 }; // CDefaultResolver_Match_Transition
330 // ______________________________________________________________________________
334 Comments : Transition test of the CDefaultResolver::Resolve method.
336 class CDefaultResolver_Resolve_Transition : public CTransition
340 @fn CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
341 TTransitionValidator& aValidator)
342 Intended Usage : Standard c'tor method.
343 Error Condition : None.
345 @param aUTContext The context this transition is operating in.
346 @param aValidator Used for checking the pre & post conditions of the test object.
348 @post CDefaultResolver_Resolve_Transition is fully constructed.
350 CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
351 TTransitionValidator& aValidator);
354 Intended Usage : To execute the CDefaultResolver::ResolveL method for the test harness.
355 Error Condition : Leaves with an error code.
356 @leave KErrNoMemory, (@see CDefaultResolver::ResolveL)
359 @pre CDefaultResolver_ResolveL_Transition is fully constructed.
360 @post No change in the CDefaultResolver_ResolveL_Transition apart
361 from iDefaultResolver, which may have changed state.
362 (@see CDefaultResolver::ResolveL post-condition) for iDefaultResolver's new state.
364 inline void TransitMethodL();
368 Intended Usage : To provide access to the unit test context cast to the correct type.
369 Error Condition : None.
371 @return The unit test context cast to a CDefaultResolver_UnitTestContext
372 @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
373 @post No change in the CDefaultResolver_ResolveL_Transition
375 inline CDefaultResolver_UnitTestContext& Context() const;
376 }; // CDefaultResolver_ResolveL_Transition
378 #include "ResolverTransitions.inl"
380 #endif // __RESOLVERTRANSITIONS_H__