os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitions.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The CResolver test transition class definitions
    15 // 
    16 //
    17 
    18 #ifndef __RESOLVERTRANSITIONS_H__
    19 #define __RESOLVERTRANSITIONS_H__
    20 
    21 #include "LeakTestTransition.h"
    22 
    23 #include <ecom/ecom.h>
    24 #include "RegistryData.h"
    25 
    26 #define CTransitionType CLeakTestTransition
    27 // ______________________________________________________________________________
    28 //
    29 /**
    30 	@internalComponent
    31 	Comments : Provide all the CDefaultResolver specific
    32 	parameters and behaviour on the CDefaultResolver
    33 	test class for a transition.
    34  */
    35 class CDefaultResolver_UnitTestContext : public CUnitTestContext
    36 	{
    37 public:
    38 	/**
    39 		@fn				CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
    40 														MStateAccessor& aStateAccessor,
    41 														MTransitionObserver& aObserver)
    42 		Intended Usage	: Default constructor.
    43 		Error Condition	: None. 
    44 		@since			7.0
    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.
    48 		@pre 			None.
    49 		@post			CDefaultResolver_UnitTestContext is fully constructed, and initialised.
    50 	*/
    51 	inline CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
    52 										MStateAccessor& aStateAccessor,
    53 										MTransitionObserver& aObserver);
    54 
    55 	/**
    56 		@fn				~CDefaultResolver_UnitTestContext()
    57 		Intended Usage	: Default Destructor
    58 		@since			7.0
    59 		@pre 			CDefaultResolver_UnitTestContext is fully constructed.
    60 		@post			CDefaultResolver_UnitTestContext is fully destroyed
    61 		*/
    62 		virtual inline ~CDefaultResolver_UnitTestContext();
    63 
    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 */
    69 	RFs		iFs;
    70 	/** ECom example interface Uid */
    71 	TUid	iInterfaceUid;
    72 	/** The Uid returned by IdentifyImplementationL.  Used in post validation. */
    73 	TUid	iResolvedImpUid;
    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 */
    79 	HBufC8*			iMatchType;
    80 	/** Indicates whether wildcard matching should be used during resolving */
    81 	TBool			iUseWildcards;
    82 	/** The return value from Match() */
    83 	TBool			iMatchResult;
    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
    89 
    90 // ______________________________________________________________________________
    91 //
    92 /**
    93 	@internalComponent
    94 	Comments : Transition test of the CDefaultResolver::NewL method.
    95  */
    96 class CDefaultResolver_NewL_Transition : public CTransitionType
    97 	{
    98 public:
    99 	/**
   100 		@fn				CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
   101 																	TTransitionValidator& aValidator)
   102 		Intended Usage	: Standard c'tor method.
   103 		Error Condition	: None.
   104 		@since			7.0
   105 		@param			aUTContext The context this transition is operating in.
   106 		@param			aValidator Used for checking the pre & post conditions of the test object.
   107 		@pre 			None.
   108 		@post			CDefaultResolver_NewL_Transition is fully constructed.
   109 	*/
   110 	CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
   111 													TTransitionValidator& aValidator);
   112 	/**
   113 		@fn				TransitMethodL()
   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)
   117 		@since			7.0
   118 		@return			None
   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.
   123 	*/
   124 	inline void TransitMethodL();
   125 
   126 	/**
   127 		@fn				Context() const
   128 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   129 		Error Condition	: None.
   130 		@since			7.0
   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
   134 	*/
   135 	inline CDefaultResolver_UnitTestContext& Context() const;
   136 	};	// CDefaultResolver_NewL_Transition
   137 
   138 // ______________________________________________________________________________
   139 //
   140 /**
   141 	@internalComponent 
   142 	Comments : Transition test of the CDefaultResolver::Dtor method.
   143  */
   144 class CDefaultResolver_Dtor_Transition : public CTransition
   145 	{
   146 public:
   147 	/**
   148 		@fn				CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
   149 																	TTransitionValidator& aValidator)
   150 		Intended Usage	: Standard c'tor method.
   151 		Error Condition	: None.
   152 		@since			7.0
   153 		@param			aUTContext The context this transition is operating in.
   154 		@param			aValidator Used for checking the pre & post conditions of the test object.
   155 		@pre 			None.
   156 		@post			CDefaultResolver_Dtor_Transition is fully constructed.
   157 	*/
   158 	CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
   159 													TTransitionValidator& aValidator);
   160 	/**
   161 		@fn				TransitMethodL()
   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)
   165 		@since			7.0
   166 		@return			None
   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.
   171 	*/
   172 	inline void TransitMethodL();
   173 
   174 	/**
   175 		@fn				Context() const
   176 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   177 		Error Condition	: None.
   178 		@since			7.0
   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
   182 	*/
   183 	inline CDefaultResolver_UnitTestContext& Context() const;
   184 	};	// CDefaultResolver_Dtor_Transition
   185 
   186 // ______________________________________________________________________________
   187 //
   188 /**
   189 	@internalComponent
   190 	Comments : Transition test of the CDefaultResolver::IdentifyImplementationL method.
   191  */
   192 class CDefaultResolver_IdentifyImplementationL_Transition : public CTransitionType
   193 	{
   194 public:
   195 	/**
   196 		@fn				CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
   197 																	TTransitionValidator& aValidator)
   198 		Intended Usage	: Standard c'tor method.
   199 		Error Condition	: None.
   200 		@since			7.0
   201 		@param			aUTContext The context this transition is operating in.
   202 		@param			aValidator Used for checking the pre & post conditions of the test object.
   203 		@pre 			None.
   204 		@post			CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
   205 	*/
   206 	CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
   207 													TTransitionValidator& aValidator);
   208 	/**
   209 		@fn				TransitMethodL()
   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)
   213 		@since			7.0
   214 		@return			None
   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.
   219 	*/
   220 	inline void TransitMethodL();
   221 
   222 	/**
   223 		@fn				Context() const
   224 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   225 		Error Condition	: None.
   226 		@since			7.0
   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
   230 	*/
   231 	inline CDefaultResolver_UnitTestContext& Context() const;
   232 	};	// CDefaultResolver_IdentifyImplementationL_Transition
   233 
   234 // ______________________________________________________________________________
   235 //
   236 /**
   237 	@internalComponent
   238 	Comments : Transition test of the CDefaultResolver::ListAllL method.
   239  */
   240 class CDefaultResolver_ListAllL_Transition : public CTransitionType
   241 	{
   242 public:
   243 	/**
   244 		@fn				CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
   245 																	TTransitionValidator& aValidator)
   246 		Intended Usage	: Standard c'tor method.
   247 		Error Condition	: None.
   248 		@since			7.0
   249 		@param			aUTContext The context this transition is operating in.
   250 		@param			aValidator Used for checking the pre & post conditions of the test object.
   251 		@pre 			None.
   252 		@post			CDefaultResolver_ListAllL_Transition is fully constructed.
   253 	*/
   254 	CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
   255 													TTransitionValidator& aValidator);
   256 	/**
   257 		@fn				TransitMethodL()
   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)
   261 		@since			7.0
   262 		@return			None
   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.
   267 	*/
   268 	inline void TransitMethodL();
   269 
   270 	/**
   271 		@fn				Context() const
   272 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   273 		Error Condition	: None.
   274 		@since			7.0
   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
   278 	*/
   279 	inline CDefaultResolver_UnitTestContext& Context() const;
   280 	};	// CDefaultResolver_ListAllL_Transition
   281 
   282 // ______________________________________________________________________________
   283 //
   284 /**
   285 	@internalComponent
   286 	Comments : Transition test of the CDefaultResolver::Match method.
   287  */
   288 class CDefaultResolver_Match_Transition : public CTransition
   289 	{
   290 public:
   291 	/**
   292 		@fn				CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
   293 																	TTransitionValidator& aValidator)
   294 		Intended Usage	: Standard c'tor method.
   295 		Error Condition	: None.
   296 		@since			7.0
   297 		@param			aUTContext The context this transition is operating in.
   298 		@param			aValidator Used for checking the pre & post conditions of the test object.
   299 		@pre 			None.
   300 		@post			CDefaultResolver_Match_Transition is fully constructed.
   301 	*/
   302 	CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
   303 													TTransitionValidator& aValidator);
   304 	/**
   305 		@fn				TransitMethodL()
   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)
   309 		@since			7.0
   310 		@return			None
   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.
   315 	*/
   316 	inline void TransitMethodL();
   317 
   318 	/**
   319 		@fn				Context() const
   320 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   321 		Error Condition	: None.
   322 		@since			7.0
   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
   326 	*/
   327 	inline CDefaultResolver_UnitTestContext& Context() const;
   328 	};	// CDefaultResolver_Match_Transition
   329 
   330 // ______________________________________________________________________________
   331 //
   332 /**
   333 	@internalComponent
   334 	Comments : Transition test of the CDefaultResolver::Resolve method.
   335  */
   336 class CDefaultResolver_Resolve_Transition : public CTransition
   337 	{
   338 public:
   339 	/**
   340 		@fn				CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
   341 															TTransitionValidator& aValidator)
   342 		Intended Usage	: Standard c'tor method.
   343 		Error Condition	: None.
   344 		@since			7.0
   345 		@param			aUTContext The context this transition is operating in.
   346 		@param			aValidator Used for checking the pre & post conditions of the test object.
   347 		@pre 			None.
   348 		@post			CDefaultResolver_Resolve_Transition is fully constructed.
   349 	*/
   350 	CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
   351 										TTransitionValidator& aValidator);
   352 	/**
   353 		@fn				TransitMethodL()
   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)
   357 		@since			7.0
   358 		@return			None
   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.
   363 	*/
   364 	inline void TransitMethodL();
   365 
   366 	/**
   367 		@fn				Context() const
   368 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   369 		Error Condition	: None.
   370 		@since			7.0
   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
   374 	*/
   375 	inline CDefaultResolver_UnitTestContext& Context() const;
   376 	};	// CDefaultResolver_ResolveL_Transition
   377 
   378 #include "ResolverTransitions.inl"
   379 
   380 #endif		// __RESOLVERTRANSITIONS_H__