os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitions.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitions.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,380 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The CResolver test transition class definitions
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __RESOLVERTRANSITIONS_H__
1.22 +#define __RESOLVERTRANSITIONS_H__
1.23 +
1.24 +#include "LeakTestTransition.h"
1.25 +
1.26 +#include <ecom/ecom.h>
1.27 +#include "RegistryData.h"
1.28 +
1.29 +#define CTransitionType CLeakTestTransition
1.30 +// ______________________________________________________________________________
1.31 +//
1.32 +/**
1.33 + @internalComponent
1.34 + Comments : Provide all the CDefaultResolver specific
1.35 + parameters and behaviour on the CDefaultResolver
1.36 + test class for a transition.
1.37 + */
1.38 +class CDefaultResolver_UnitTestContext : public CUnitTestContext
1.39 + {
1.40 +public:
1.41 + /**
1.42 + @fn CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
1.43 + MStateAccessor& aStateAccessor,
1.44 + MTransitionObserver& aObserver)
1.45 + Intended Usage : Default constructor.
1.46 + Error Condition : None.
1.47 + @since 7.0
1.48 + @param aDataLogger The output logging object.
1.49 + @param aObserver The observer of this UnitTest's Transitions.
1.50 + @param aStateAccessor WhiteBox state access to the CDefaultResolver class under test.
1.51 + @pre None.
1.52 + @post CDefaultResolver_UnitTestContext is fully constructed, and initialised.
1.53 + */
1.54 + inline CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
1.55 + MStateAccessor& aStateAccessor,
1.56 + MTransitionObserver& aObserver);
1.57 +
1.58 + /**
1.59 + @fn ~CDefaultResolver_UnitTestContext()
1.60 + Intended Usage : Default Destructor
1.61 + @since 7.0
1.62 + @pre CDefaultResolver_UnitTestContext is fully constructed.
1.63 + @post CDefaultResolver_UnitTestContext is fully destroyed
1.64 + */
1.65 + virtual inline ~CDefaultResolver_UnitTestContext();
1.66 +
1.67 + /** The instance of the class under test */
1.68 + CDefaultResolver* iDefaultResolver;
1.69 + /** The data store which is used by the resolver */
1.70 + CRegistryData* iRegistry;
1.71 + /** File server handle */
1.72 + RFs iFs;
1.73 + /** ECom example interface Uid */
1.74 + TUid iInterfaceUid;
1.75 + /** The Uid returned by IdentifyImplementationL. Used in post validation. */
1.76 + TUid iResolvedImpUid;
1.77 + /** Additional parameters used for resolving between implementations */
1.78 + TEComResolverParams iAdditionalParameters;
1.79 + /** The implementation data type to find when resolving */
1.80 + HBufC8* iImplementationType;
1.81 + /** The implementation match parameters to use when resolving */
1.82 + HBufC8* iMatchType;
1.83 + /** Indicates whether wildcard matching should be used during resolving */
1.84 + TBool iUseWildcards;
1.85 + /** The return value from Match() */
1.86 + TBool iMatchResult;
1.87 + /** The expected return value from Match(). Used in post validation checking */
1.88 + TBool iExpectedMatchResult;
1.89 + /** An array of potential implementations to resolve between */
1.90 + RImplInfoArray iImplementationData;
1.91 + }; // CDefaultResolver_UnitTestContext
1.92 +
1.93 +// ______________________________________________________________________________
1.94 +//
1.95 +/**
1.96 + @internalComponent
1.97 + Comments : Transition test of the CDefaultResolver::NewL method.
1.98 + */
1.99 +class CDefaultResolver_NewL_Transition : public CTransitionType
1.100 + {
1.101 +public:
1.102 + /**
1.103 + @fn CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
1.104 + TTransitionValidator& aValidator)
1.105 + Intended Usage : Standard c'tor method.
1.106 + Error Condition : None.
1.107 + @since 7.0
1.108 + @param aUTContext The context this transition is operating in.
1.109 + @param aValidator Used for checking the pre & post conditions of the test object.
1.110 + @pre None.
1.111 + @post CDefaultResolver_NewL_Transition is fully constructed.
1.112 + */
1.113 + CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
1.114 + TTransitionValidator& aValidator);
1.115 + /**
1.116 + @fn TransitMethodL()
1.117 + Intended Usage : To execute the CDefaultResolver::NewL method for the test harness.
1.118 + Error Condition : Leaves with an error code.
1.119 + @leave KErrNoMemory, (@see CDefaultResolver::NewL)
1.120 + @since 7.0
1.121 + @return None
1.122 + @pre CDefaultResolver_NewL_Transition is fully constructed.
1.123 + @post No change in the CDefaultResolver_NewL_Transition apart
1.124 + from iDefaultResolver, which may have changed state.
1.125 + (@see CDefaultResolver::NewL post-condition) for iDefaultResolver's new state.
1.126 + */
1.127 + inline void TransitMethodL();
1.128 +
1.129 + /**
1.130 + @fn Context() const
1.131 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.132 + Error Condition : None.
1.133 + @since 7.0
1.134 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.135 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.136 + @post No change in the CDefaultResolver_NewL_Transition
1.137 + */
1.138 + inline CDefaultResolver_UnitTestContext& Context() const;
1.139 + }; // CDefaultResolver_NewL_Transition
1.140 +
1.141 +// ______________________________________________________________________________
1.142 +//
1.143 +/**
1.144 + @internalComponent
1.145 + Comments : Transition test of the CDefaultResolver::Dtor method.
1.146 + */
1.147 +class CDefaultResolver_Dtor_Transition : public CTransition
1.148 + {
1.149 +public:
1.150 + /**
1.151 + @fn CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
1.152 + TTransitionValidator& aValidator)
1.153 + Intended Usage : Standard c'tor method.
1.154 + Error Condition : None.
1.155 + @since 7.0
1.156 + @param aUTContext The context this transition is operating in.
1.157 + @param aValidator Used for checking the pre & post conditions of the test object.
1.158 + @pre None.
1.159 + @post CDefaultResolver_Dtor_Transition is fully constructed.
1.160 + */
1.161 + CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
1.162 + TTransitionValidator& aValidator);
1.163 + /**
1.164 + @fn TransitMethodL()
1.165 + Intended Usage : To execute the CDefaultResolver::Dtor method for the test harness.
1.166 + Error Condition : Leaves with an error code.
1.167 + @leave KErrNoMemory, (@see CDefaultResolver::Dtor)
1.168 + @since 7.0
1.169 + @return None
1.170 + @pre CDefaultResolver_Dtor_Transition is fully constructed.
1.171 + @post No change in the CDefaultResolver_Dtor_Transition apart
1.172 + from iDefaultResolver, which may have changed state.
1.173 + (@see CDefaultResolver::Dtor post-condition) for iDefaultResolver's new state.
1.174 + */
1.175 + inline void TransitMethodL();
1.176 +
1.177 + /**
1.178 + @fn Context() const
1.179 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.180 + Error Condition : None.
1.181 + @since 7.0
1.182 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.183 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.184 + @post No change in the CDefaultResolver_Dtor_Transition
1.185 + */
1.186 + inline CDefaultResolver_UnitTestContext& Context() const;
1.187 + }; // CDefaultResolver_Dtor_Transition
1.188 +
1.189 +// ______________________________________________________________________________
1.190 +//
1.191 +/**
1.192 + @internalComponent
1.193 + Comments : Transition test of the CDefaultResolver::IdentifyImplementationL method.
1.194 + */
1.195 +class CDefaultResolver_IdentifyImplementationL_Transition : public CTransitionType
1.196 + {
1.197 +public:
1.198 + /**
1.199 + @fn CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
1.200 + TTransitionValidator& aValidator)
1.201 + Intended Usage : Standard c'tor method.
1.202 + Error Condition : None.
1.203 + @since 7.0
1.204 + @param aUTContext The context this transition is operating in.
1.205 + @param aValidator Used for checking the pre & post conditions of the test object.
1.206 + @pre None.
1.207 + @post CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
1.208 + */
1.209 + CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
1.210 + TTransitionValidator& aValidator);
1.211 + /**
1.212 + @fn TransitMethodL()
1.213 + Intended Usage : To execute the CDefaultResolver::IdentifyImplementationL method for the test harness.
1.214 + Error Condition : Leaves with an error code.
1.215 + @leave KErrNoMemory, (@see CDefaultResolver::IdentifyImplementationL)
1.216 + @since 7.0
1.217 + @return None
1.218 + @pre CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
1.219 + @post No change in the CDefaultResolver_IdentifyImplementationL_Transition apart
1.220 + from iDefaultResolver, which may have changed state.
1.221 + (@see CDefaultResolver::IdentifyImplementationL post-condition) for iDefaultResolver's new state.
1.222 + */
1.223 + inline void TransitMethodL();
1.224 +
1.225 + /**
1.226 + @fn Context() const
1.227 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.228 + Error Condition : None.
1.229 + @since 7.0
1.230 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.231 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.232 + @post No change in the CDefaultResolver_IdentifyImplementationL_Transition
1.233 + */
1.234 + inline CDefaultResolver_UnitTestContext& Context() const;
1.235 + }; // CDefaultResolver_IdentifyImplementationL_Transition
1.236 +
1.237 +// ______________________________________________________________________________
1.238 +//
1.239 +/**
1.240 + @internalComponent
1.241 + Comments : Transition test of the CDefaultResolver::ListAllL method.
1.242 + */
1.243 +class CDefaultResolver_ListAllL_Transition : public CTransitionType
1.244 + {
1.245 +public:
1.246 + /**
1.247 + @fn CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
1.248 + TTransitionValidator& aValidator)
1.249 + Intended Usage : Standard c'tor method.
1.250 + Error Condition : None.
1.251 + @since 7.0
1.252 + @param aUTContext The context this transition is operating in.
1.253 + @param aValidator Used for checking the pre & post conditions of the test object.
1.254 + @pre None.
1.255 + @post CDefaultResolver_ListAllL_Transition is fully constructed.
1.256 + */
1.257 + CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
1.258 + TTransitionValidator& aValidator);
1.259 + /**
1.260 + @fn TransitMethodL()
1.261 + Intended Usage : To execute the CDefaultResolver::ListAllL method for the test harness.
1.262 + Error Condition : Leaves with an error code.
1.263 + @leave KErrNoMemory, (@see CDefaultResolver::ListAllL)
1.264 + @since 7.0
1.265 + @return None
1.266 + @pre CDefaultResolver_ListAllL_Transition is fully constructed.
1.267 + @post No change in the CDefaultResolver_ListAllL_Transition apart
1.268 + from iDefaultResolver, which may have changed state.
1.269 + (@see CDefaultResolver::ListAllL post-condition) for iDefaultResolver's new state.
1.270 + */
1.271 + inline void TransitMethodL();
1.272 +
1.273 + /**
1.274 + @fn Context() const
1.275 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.276 + Error Condition : None.
1.277 + @since 7.0
1.278 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.279 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.280 + @post No change in the CDefaultResolver_ListAllL_Transition
1.281 + */
1.282 + inline CDefaultResolver_UnitTestContext& Context() const;
1.283 + }; // CDefaultResolver_ListAllL_Transition
1.284 +
1.285 +// ______________________________________________________________________________
1.286 +//
1.287 +/**
1.288 + @internalComponent
1.289 + Comments : Transition test of the CDefaultResolver::Match method.
1.290 + */
1.291 +class CDefaultResolver_Match_Transition : public CTransition
1.292 + {
1.293 +public:
1.294 + /**
1.295 + @fn CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
1.296 + TTransitionValidator& aValidator)
1.297 + Intended Usage : Standard c'tor method.
1.298 + Error Condition : None.
1.299 + @since 7.0
1.300 + @param aUTContext The context this transition is operating in.
1.301 + @param aValidator Used for checking the pre & post conditions of the test object.
1.302 + @pre None.
1.303 + @post CDefaultResolver_Match_Transition is fully constructed.
1.304 + */
1.305 + CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
1.306 + TTransitionValidator& aValidator);
1.307 + /**
1.308 + @fn TransitMethodL()
1.309 + Intended Usage : To execute the CDefaultResolver::Match method for the test harness.
1.310 + Error Condition : Leaves with an error code.
1.311 + @leave KErrNoMemory, (@see CDefaultResolver::Match)
1.312 + @since 7.0
1.313 + @return None
1.314 + @pre CDefaultResolver_Match_Transition is fully constructed.
1.315 + @post No change in the CDefaultResolver_Match_Transition apart
1.316 + from iDefaultResolver, which may have changed state.
1.317 + (@see CDefaultResolver::Match post-condition) for iDefaultResolver's new state.
1.318 + */
1.319 + inline void TransitMethodL();
1.320 +
1.321 + /**
1.322 + @fn Context() const
1.323 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.324 + Error Condition : None.
1.325 + @since 7.0
1.326 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.327 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.328 + @post No change in the CDefaultResolver_Match_Transition
1.329 + */
1.330 + inline CDefaultResolver_UnitTestContext& Context() const;
1.331 + }; // CDefaultResolver_Match_Transition
1.332 +
1.333 +// ______________________________________________________________________________
1.334 +//
1.335 +/**
1.336 + @internalComponent
1.337 + Comments : Transition test of the CDefaultResolver::Resolve method.
1.338 + */
1.339 +class CDefaultResolver_Resolve_Transition : public CTransition
1.340 + {
1.341 +public:
1.342 + /**
1.343 + @fn CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
1.344 + TTransitionValidator& aValidator)
1.345 + Intended Usage : Standard c'tor method.
1.346 + Error Condition : None.
1.347 + @since 7.0
1.348 + @param aUTContext The context this transition is operating in.
1.349 + @param aValidator Used for checking the pre & post conditions of the test object.
1.350 + @pre None.
1.351 + @post CDefaultResolver_Resolve_Transition is fully constructed.
1.352 + */
1.353 + CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
1.354 + TTransitionValidator& aValidator);
1.355 + /**
1.356 + @fn TransitMethodL()
1.357 + Intended Usage : To execute the CDefaultResolver::ResolveL method for the test harness.
1.358 + Error Condition : Leaves with an error code.
1.359 + @leave KErrNoMemory, (@see CDefaultResolver::ResolveL)
1.360 + @since 7.0
1.361 + @return None
1.362 + @pre CDefaultResolver_ResolveL_Transition is fully constructed.
1.363 + @post No change in the CDefaultResolver_ResolveL_Transition apart
1.364 + from iDefaultResolver, which may have changed state.
1.365 + (@see CDefaultResolver::ResolveL post-condition) for iDefaultResolver's new state.
1.366 + */
1.367 + inline void TransitMethodL();
1.368 +
1.369 + /**
1.370 + @fn Context() const
1.371 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.372 + Error Condition : None.
1.373 + @since 7.0
1.374 + @return The unit test context cast to a CDefaultResolver_UnitTestContext
1.375 + @pre iUTContext is a valid CDefaultResolver_UnitTestContext.
1.376 + @post No change in the CDefaultResolver_ResolveL_Transition
1.377 + */
1.378 + inline CDefaultResolver_UnitTestContext& Context() const;
1.379 + }; // CDefaultResolver_ResolveL_Transition
1.380 +
1.381 +#include "ResolverTransitions.inl"
1.382 +
1.383 +#endif // __RESOLVERTRANSITIONS_H__