os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideTransitionValidation.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 // Definitions for the transition validation classes for ECom
    15 // 
    16 //
    17 
    18 #ifndef __SUICIDEINTERFACETRANSITIONVALIDATION_H__
    19 #define __SUICIDEINTERFACETRANSITIONVALIDATION_H__
    20 
    21 #include "SuicideTransitions.h"
    22 
    23 
    24 // ______________________________________________________________________________
    25 //
    26 /**
    27 	@internalComponent
    28 
    29 	Comments : Provide all the CtorUnit Test's specific
    30 	validatation for the state of a transition before and after its execution.
    31 	on the sucicidal CExampleInterface test class for a transition.
    32  */
    33 class TSuicideInterface_Ctor_TransitionValidator : public TTransitionValidator
    34 	{
    35 public:
    36 	/**
    37 		@fn				TSuicideInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    38 		Intended Usage	: Default constructor
    39 		@leave  		KErrNoMemory
    40 		@since			7.0
    41 		@param			aUTContext The context within which this transition is executing
    42 	 */
    43 	inline TSuicideInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    44 
    45 	/**
    46 		@fn				ValidatePreConditions()
    47 		Intended Usage	: Implemented by the developer to check the
    48 						end state of the transition behaviour.
    49 		Error Condition	: Invalid pre-conditions
    50 		@since			7.0
    51 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    52 		@pre 			TSuicideInterface_Ctor_TransitionValidator is fully constructed.
    53 		@post			No change to the iUTContext class.
    54 	*/
    55 	virtual inline TBool ValidatePreConditions();
    56 
    57 	/**
    58 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    59 		Intended Usage	:	Implemented by the developer to check the
    60 						end state of the transition behaviour.
    61 						When overriding, if the transition calls an asynchronous function
    62 						ValidatePostConditions will be called twice. Firstly, after the
    63 						asynchronous function has been called and, secondly, after the 
    64 						asynchronous request has completed. The parameter aAsyncState can
    65 						be used to distinguish between these two cases.
    66 		Error Condition	: Invalid post-conditions.
    67 		@since			7.0
    68 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    69 						EAsyncCompleted if the function has completed.
    70 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    71 		@pre 			TSuicideInterface_Ctor_TransitionValidator is fully constructed.
    72 		@post			No change to the iUTContext class.
    73 	*/
    74 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    75 	};	// TSuicideInterface_Ctor_TransitionValidator
    76 
    77 // ______________________________________________________________________________
    78 //
    79 /**
    80 	@internalComponent
    81 
    82 	Comments : Provide all the DtorUnit Test's specific
    83 	validatation for the state of a transition before and after its execution.
    84 	on the suicidal CExampleInterface test class for a transition.
    85  */
    86 class TSuicideInterface_Dtor_TransitionValidator : public TTransitionValidator
    87 	{
    88 public:
    89 	/**
    90 		@fn				TSuicideInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    91 		Intended Usage	: Default constructor
    92 		@leave  		KErrNoMemory
    93 		@since			7.0
    94 		@param			aUTContext The context within which this transition is executing
    95 	 */
    96 	inline TSuicideInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    97 
    98 	/**
    99 		@fn				ValidatePreConditions()
   100 		Intended Usage	: Implemented by the developer to check the
   101 						end state of the transition behaviour.
   102 		Error Condition	: Invalid pre-conditions
   103 		@since			7.0
   104 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   105 		@pre 			TSuicideInterface_Dtor_TransitionValidator is fully constructed.
   106 		@post			No change to the iUTContext class.
   107 	*/
   108 	virtual inline TBool ValidatePreConditions();
   109 
   110 	/**
   111 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   112 		Intended Usage	:	Implemented by the developer to check the
   113 						end state of the transition behaviour.
   114 						When overriding, if the transition calls an asynchronous function
   115 						ValidatePostConditions will be called twice. Firstly, after the
   116 						asynchronous function has been called and, secondly, after the 
   117 						asynchronous request has completed. The parameter aAsyncState can
   118 						be used to distinguish between these two cases.
   119 		Error Condition	: Invalid post-conditions.
   120 		@since			7.0
   121 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   122 						EAsyncCompleted if the function has completed.
   123 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   124 		@pre 			TSuicideInterface_Dtor_TransitionValidator is fully constructed.
   125 		@post			No change to the iUTContext class.
   126 	*/
   127 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   128 	};	// TSuicideInterface_Dtor_TransitionValidator
   129 
   130 // ______________________________________________________________________________
   131 //
   132 /**
   133 	@internalComponent
   134 
   135 	Comments : Provide all the FireAndForgetUnit Test's specific
   136 	validatation for the state of a transition before and after its execution.
   137 	on the suicidal CExampleInterface test class for a transition.
   138  */
   139 class TSuicideInterface_FireAndForget_TransitionValidator : public TTransitionValidator
   140 	{
   141 public:
   142 	/**
   143 		@fn				TSuicideInterface_FireAndForget_TransitionValidator(CUnitTestContext& aUTContext)
   144 		Intended Usage	:	
   145 		@leave			KErrNoMemory
   146 		@since			7.0
   147 		@param			aUTContext The context within which this transition is executing
   148 	 */
   149 	inline TSuicideInterface_FireAndForget_TransitionValidator(CUnitTestContext& aUTContext);
   150 
   151 	/**
   152 		@fn				ValidatePreConditions()
   153 		Intended Usage	: Implemented by the developer to check the
   154 						end state of the transition behaviour.
   155 		Error Condition	: Invalid pre-conditions
   156 		@since			7.0
   157 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   158 		@pre 			TSuicideInterface_FireAndForget_TransitionValidator is fully constructed.
   159 		@post			No change to the iUTContext class.
   160 	*/
   161 	virtual inline TBool ValidatePreConditions();
   162 
   163 	/**
   164 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   165 		Intended Usage	:	Implemented by the developer to check the
   166 						end state of the transition behaviour.
   167 						When overriding, if the transition calls an asynchronous function
   168 						ValidatePostConditions will be called twice. Firstly, after the
   169 						asynchronous function has been called and, secondly, after the 
   170 						asynchronous request has completed. The parameter aAsyncState can
   171 						be used to distinguish between these two cases.
   172 		Error Condition	: Invalid post-conditions.
   173 		@since			7.0
   174 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   175 						EAsyncCompleted if the function has completed.
   176 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   177 		@pre 			TSuicideInterface_FireAndForget_TransitionValidator is fully constructed.
   178 		@post			No change to the iUTContext class.
   179 	*/
   180 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   181 	};	// TSuicideInterface_FireAndForget_TransitionValidator
   182 
   183 #include "SuicideTransitionValidation.inl"
   184 
   185 #endif // __SUICIDEINTERFACETRANSITIONVALIDATION_H__