os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitionValidation.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 definition of the validation classes for the CResolver class tests.
    15 // 
    16 //
    17 
    18 #ifndef __RESOLVERTRANSITIONVALIDATION_H__
    19 #define __RESOLVERTRANSITIONVALIDATION_H__
    20 
    21 // ______________________________________________________________________________
    22 //
    23 /**
    24 	@internalComponent
    25  
    26 	Comments : Provide all the CtorUnit Test's specific
    27 	validatation for the state of a transition before and after its execution.
    28 	on the CDefaultResolver test class for a transition.
    29  */
    30 class TDefaultResolver_Ctor_TransitionValidator : public TTransitionValidator
    31 	{
    32 public:
    33 	/**
    34 		@fn				TDefaultResolver_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    35 		Intended Usage	: Default constructor	
    36 		@leave  		KErrNoMemory
    37 		@since			7.0
    38 		@param			aUTContext The context within which this transition is executing
    39 	 */
    40 	inline TDefaultResolver_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    41 
    42 	/**
    43 		@fn				ValidatePreConditions()
    44 		Intended Usage	: Implemented by the developer to check the
    45 						end state of the transition behaviour.
    46 		Error Condition	: Invalid pre-conditions
    47 		@since			7.0
    48 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    49 		@pre 			TDefaultResolver_Ctor_TransitionValidator is fully constructed.
    50 		@post			No change to the iUTContext class.
    51 	*/
    52 	virtual inline TBool ValidatePreConditions();
    53 
    54 	/**
    55 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    56 		Intended Usage	:	Implemented by the developer to check the
    57 						end state of the transition behaviour.
    58 						When overriding, if the transition calls an asynchronous function
    59 						ValidatePostConditions will be called twice. Firstly, after the
    60 						asynchronous function has been called and, secondly, after the 
    61 						asynchronous request has completed. The parameter aAsyncState can
    62 						be used to distinguish between these two cases.
    63 		Error Condition	: Invalid post-conditions.
    64 		@since			7.0
    65 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    66 						EAsyncCompleted if the function has completed.
    67 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    68 		@pre 			TDefaultResolver_Ctor_TransitionValidator is fully constructed.
    69 		@post			No change to the iUTContext class.
    70 	*/
    71 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    72 	};	// TDefaultResolver_Ctor_TransitionValidator
    73 
    74 // ______________________________________________________________________________
    75 //
    76 /**
    77 	@internalComponent
    78 
    79 	Comments : Provide all the DtorUnit Test's specific
    80 	validatation for the state of a transition before and after its execution.
    81 	on the CDefaultResolver test class for a transition.
    82  */
    83 class TDefaultResolver_Dtor_TransitionValidator : public TTransitionValidator
    84 	{
    85 public:
    86 	/**
    87 		@fn				TDefaultResolver_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    88 		Intended Usage	:	
    89 		@leave  		KErrNoMemory
    90 		@since			7.0
    91 		@param			aUTContext The context within which this transition is executing
    92 	 */
    93 	inline TDefaultResolver_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    94 
    95 	/**
    96 		@fn				ValidatePreConditions()
    97 		Intended Usage	: Implemented by the developer to check the
    98 						end state of the transition behaviour.
    99 		Error Condition	: Invalid pre-conditions
   100 		@since			7.0
   101 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   102 		@pre 			TDefaultResolver_Dtor_TransitionValidator is fully constructed.
   103 		@post			No change to the iUTContext class.
   104 	*/
   105 	virtual inline TBool ValidatePreConditions();
   106 
   107 	/**
   108 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   109 		Intended Usage	:	Implemented by the developer to check the
   110 						end state of the transition behaviour.
   111 						When overriding, if the transition calls an asynchronous function
   112 						ValidatePostConditions will be called twice. Firstly, after the
   113 						asynchronous function has been called and, secondly, after the 
   114 						asynchronous request has completed. The parameter aAsyncState can
   115 						be used to distinguish between these two cases.
   116 		Error Condition	: Invalid post-conditions.
   117 		@since			7.0
   118 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   119 						EAsyncCompleted if the function has completed.
   120 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   121 		@pre 			TDefaultResolver_Dtor_TransitionValidator is fully constructed.
   122 		@post			No change to the iUTContext class.
   123 	*/
   124 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   125 	};	// TDefaultResolver_Dtor_TransitionValidator
   126 
   127 // ______________________________________________________________________________
   128 //
   129 /**
   130 	@internalComponent
   131 
   132 	Comments : Provide all the DefaultUnit Test's specific
   133 	validatation for the state of a transition before and after its execution.
   134 	on the CDefaultResolver test class for a transition.
   135  */
   136 class TDefaultResolver_Default_TransitionValidator : public TTransitionValidator
   137 	{
   138 public:
   139 	/**
   140 		@fn				TDefaultResolver_Default_TransitionValidator(CUnitTestContext& aUTContext)
   141 		Intended Usage	:	
   142 		@leave  		KErrNoMemory
   143 		@since			7.0
   144 		@param			aUTContext The context within which this transition is executing
   145 	 */
   146 	inline TDefaultResolver_Default_TransitionValidator(CUnitTestContext& aUTContext);
   147 
   148 	/**
   149 		@fn				ValidatePreConditions()
   150 		Intended Usage	: Implemented by the developer to check the
   151 						end state of the transition behaviour.
   152 		Error Condition	: Invalid pre-conditions
   153 		@since			7.0
   154 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   155 		@pre 			TDefaultResolver_Default_TransitionValidator is fully constructed.
   156 		@post			No change to the iUTContext class.
   157 	*/
   158 	virtual inline TBool ValidatePreConditions();
   159 
   160 	/**
   161 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   162 		Intended Usage	:	Implemented by the developer to check the
   163 						end state of the transition behaviour.
   164 						When overriding, if the transition calls an asynchronous function
   165 						ValidatePostConditions will be called twice. Firstly, after the
   166 						asynchronous function has been called and, secondly, after the 
   167 						asynchronous request has completed. The parameter aAsyncState can
   168 						be used to distinguish between these two cases.
   169 		Error Condition	: Invalid post-conditions.
   170 		@since			7.0
   171 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   172 						EAsyncCompleted if the function has completed.
   173 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   174 		@pre 			TDefaultResolver_Default_TransitionValidator is fully constructed.
   175 		@post			No change to the iUTContext class.
   176 	*/
   177 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   178 	};	// TDefaultResolver_Default_TransitionValidator
   179 
   180 // ______________________________________________________________________________
   181 //
   182 /**
   183 	@internalComponent
   184 
   185 	Comments : Provide all the IdentifyImplementationLUnit Test's specific
   186 	validatation for the state of a transition before and after its execution.
   187 	on the CDefaultResolver test class for a transition.
   188  */
   189 class TDefaultResolver_IdentifyImplementationL_TransitionValidator : public TTransitionValidator
   190 	{
   191 public:
   192 	/**
   193 		@fn				TDefaultResolver_IdentifyImplementationL_TransitionValidator(CUnitTestContext& aUTContext)
   194 		Intended Usage	:	
   195 		@leave  		KErrNoMemory
   196 		@since			7.0
   197 		@param			aUTContext The context within which this transition is executing
   198 	 */
   199 	inline TDefaultResolver_IdentifyImplementationL_TransitionValidator(CUnitTestContext& aUTContext);
   200 
   201 	/**
   202 		@fn				ValidatePreConditions()
   203 		Intended Usage	: Implemented by the developer to check the
   204 						end state of the transition behaviour.
   205 		Error Condition	: Invalid pre-conditions
   206 		@since			7.0
   207 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   208 		@pre 			TDefaultResolver_IdentifyImplementationL_TransitionValidator is fully constructed.
   209 		@post			No change to the iUTContext class.
   210 	*/
   211 	virtual inline TBool ValidatePreConditions();
   212 
   213 	/**
   214 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   215 		Intended Usage	:	Implemented by the developer to check the
   216 						end state of the transition behaviour.
   217 						When overriding, if the transition calls an asynchronous function
   218 						ValidatePostConditions will be called twice. Firstly, after the
   219 						asynchronous function has been called and, secondly, after the 
   220 						asynchronous request has completed. The parameter aAsyncState can
   221 						be used to distinguish between these two cases.
   222 		Error Condition	: Invalid post-conditions.
   223 		@since			7.0
   224 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   225 						EAsyncCompleted if the function has completed.
   226 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   227 		@pre 			TDefaultResolver_IdentifyImplementationL_TransitionValidator is fully constructed.
   228 		@post			No change to the iUTContext class.
   229 	*/
   230 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   231 	};	// TDefaultResolver_IdentifyImplementationL_TransitionValidator
   232 
   233 // ______________________________________________________________________________
   234 //
   235 /**
   236 	@internalComponent
   237 
   238 	Comments : Provide all the MatchUnit Test's specific
   239 	validatation for the state of a transition before and after its execution.
   240 	on the CDefaultResolver test class for a transition.
   241  */
   242 class TDefaultResolver_Match_TransitionValidator : public TTransitionValidator
   243 	{
   244 public:
   245 	/**
   246 		@fn				TDefaultResolver_Match_TransitionValidator(CUnitTestContext& aUTContext)
   247 		Intended Usage	:	
   248 		@leave  		KErrNoMemory
   249 		@since			7.0
   250 		@param			aUTContext The context within which this transition is executing
   251 	 */
   252 	inline TDefaultResolver_Match_TransitionValidator(CUnitTestContext& aUTContext);
   253 
   254 	/**
   255 		@fn				ValidatePreConditions()
   256 		Intended Usage	: Implemented by the developer to check the
   257 						end state of the transition behaviour.
   258 		Error Condition	: Invalid pre-conditions
   259 		@since			7.0
   260 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   261 		@pre 			TDefaultResolver_Match_TransitionValidator is fully constructed.
   262 		@post			No change to the iUTContext class.
   263 	*/
   264 	virtual inline TBool ValidatePreConditions();
   265 
   266 	/**
   267 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   268 		Intended Usage	:	Implemented by the developer to check the
   269 						end state of the transition behaviour.
   270 						When overriding, if the transition calls an asynchronous function
   271 						ValidatePostConditions will be called twice. Firstly, after the
   272 						asynchronous function has been called and, secondly, after the 
   273 						asynchronous request has completed. The parameter aAsyncState can
   274 						be used to distinguish between these two cases.
   275 		Error Condition	: Invalid post-conditions.
   276 		@since			7.0
   277 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   278 						EAsyncCompleted if the function has completed.
   279 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   280 		@pre 			TDefaultResolver_Match_TransitionValidator is fully constructed.
   281 		@post			No change to the iUTContext class.
   282 	*/
   283 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   284 	};	// TDefaultResolver_Match_TransitionValidator
   285 
   286 #include "ResolverTransitionValidation.inl"
   287 
   288 #endif		// __RESOLVERTRANSITIONVALIDATION_H__