sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The CResolver test transition class definitions sl@0: // sl@0: // sl@0: sl@0: #ifndef __RESOLVERTRANSITIONS_H__ sl@0: #define __RESOLVERTRANSITIONS_H__ sl@0: sl@0: #include "LeakTestTransition.h" sl@0: sl@0: #include sl@0: #include "RegistryData.h" sl@0: sl@0: #define CTransitionType CLeakTestTransition sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Provide all the CDefaultResolver specific sl@0: parameters and behaviour on the CDefaultResolver sl@0: test class for a transition. sl@0: */ sl@0: class CDefaultResolver_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest's Transitions. sl@0: @param aStateAccessor WhiteBox state access to the CDefaultResolver class under test. sl@0: @pre None. sl@0: @post CDefaultResolver_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver); sl@0: sl@0: /** sl@0: @fn ~CDefaultResolver_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CDefaultResolver_UnitTestContext is fully constructed. sl@0: @post CDefaultResolver_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CDefaultResolver_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: CDefaultResolver* iDefaultResolver; sl@0: /** The data store which is used by the resolver */ sl@0: CRegistryData* iRegistry; sl@0: /** File server handle */ sl@0: RFs iFs; sl@0: /** ECom example interface Uid */ sl@0: TUid iInterfaceUid; sl@0: /** The Uid returned by IdentifyImplementationL. Used in post validation. */ sl@0: TUid iResolvedImpUid; sl@0: /** Additional parameters used for resolving between implementations */ sl@0: TEComResolverParams iAdditionalParameters; sl@0: /** The implementation data type to find when resolving */ sl@0: HBufC8* iImplementationType; sl@0: /** The implementation match parameters to use when resolving */ sl@0: HBufC8* iMatchType; sl@0: /** Indicates whether wildcard matching should be used during resolving */ sl@0: TBool iUseWildcards; sl@0: /** The return value from Match() */ sl@0: TBool iMatchResult; sl@0: /** The expected return value from Match(). Used in post validation checking */ sl@0: TBool iExpectedMatchResult; sl@0: /** An array of potential implementations to resolve between */ sl@0: RImplInfoArray iImplementationData; sl@0: }; // CDefaultResolver_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::NewL method. sl@0: */ sl@0: class CDefaultResolver_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_NewL_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_NewL_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_NewL_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::NewL post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_NewL_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::Dtor method. sl@0: */ sl@0: class CDefaultResolver_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_Dtor_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_Dtor_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_Dtor_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::Dtor post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_Dtor_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::IdentifyImplementationL method. sl@0: */ sl@0: class CDefaultResolver_IdentifyImplementationL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_IdentifyImplementationL_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::IdentifyImplementationL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::IdentifyImplementationL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_IdentifyImplementationL_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_IdentifyImplementationL_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::IdentifyImplementationL post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_IdentifyImplementationL_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_IdentifyImplementationL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::ListAllL method. sl@0: */ sl@0: class CDefaultResolver_ListAllL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_ListAllL_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::ListAllL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::ListAllL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_ListAllL_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_ListAllL_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::ListAllL post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_ListAllL_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_ListAllL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::Match method. sl@0: */ sl@0: class CDefaultResolver_Match_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_Match_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::Match method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::Match) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_Match_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_Match_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::Match post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_Match_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_Match_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CDefaultResolver::Resolve method. sl@0: */ sl@0: class CDefaultResolver_Resolve_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CDefaultResolver_Resolve_Transition is fully constructed. sl@0: */ sl@0: CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultResolver::ResolveL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultResolver::ResolveL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultResolver_ResolveL_Transition is fully constructed. sl@0: @post No change in the CDefaultResolver_ResolveL_Transition apart sl@0: from iDefaultResolver, which may have changed state. sl@0: (@see CDefaultResolver::ResolveL post-condition) for iDefaultResolver's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CDefaultResolver_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultResolver_UnitTestContext. sl@0: @post No change in the CDefaultResolver_ResolveL_Transition sl@0: */ sl@0: inline CDefaultResolver_UnitTestContext& Context() const; sl@0: }; // CDefaultResolver_ResolveL_Transition sl@0: sl@0: #include "ResolverTransitions.inl" sl@0: sl@0: #endif // __RESOLVERTRANSITIONS_H__