os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitionValidation.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 definitions of the transition classes upon the CTestManager class methods.
    15 // 
    16 //
    17 
    18 #ifndef __TESTMANAGERTRANSITIONVALIDATION_H__
    19 #define __TESTMANAGERTRANSITIONVALIDATION_H__
    20 
    21 #include "TestManagerTransitions.h"
    22 
    23 // ______________________________________________________________________________
    24 //
    25 /**
    26 	@internalComponent
    27 
    28 	Comments : Provide all the CtorUnit Test's specific
    29 	validatation for the state of a transition before and after its execution.
    30 	on the CTestManager test class for a transition.
    31  */
    32 class TTestManager_Ctor_TransitionValidator : public TTransitionValidator
    33 	{
    34 public:
    35 	/**
    36 		@fn				TTestManager_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    37 		Intended Usage	:	
    38 		@leave  		KErrNoMemory
    39 		@since			6.0
    40 		@param			aUTContext The context within which this transition is executing
    41 	 */
    42 	inline TTestManager_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    43 
    44 	/**
    45 		@fn				ValidatePreConditions()
    46 		Intended Usage	: Implemented by the developer to check the
    47 						end state of the transition behaviour.
    48 		Error Condition	: Invalid pre-conditions
    49 		@since			6.0
    50 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    51 		@pre 			TTestManager_Ctor_TransitionValidator is fully constructed.
    52 		@post			No change to the iUTContext class.
    53 	*/
    54 	virtual inline TBool ValidatePreConditions();
    55 
    56 	/**
    57 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    58 		Intended Usage	:	Implemented by the developer to check the
    59 						end state of the transition behaviour.
    60 						When overriding, if the transition calls an asynchronous function
    61 						ValidatePostConditions will be called twice. Firstly, after the
    62 						asynchronous function has been called and, secondly, after the 
    63 						asynchronous request has completed. The parameter aAsyncState can
    64 						be used to distinguish between these two cases.
    65 		Error Condition	: Invalid post-conditions.
    66 		@since			6.0
    67 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    68 						EAsyncCompleted if the function has completed.
    69 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    70 		@pre 			TTestManager_Ctor_TransitionValidator is fully constructed.
    71 		@post			No change to the iUTContext class.
    72 	*/
    73 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    74 	};	// TTestManager_Ctor_TransitionValidator
    75 
    76 // ______________________________________________________________________________
    77 //
    78 /**
    79 	@internalComponent
    80 
    81 	Comments : Provide all the DtorUnit Test's specific
    82 	validatation for the state of a transition before and after its execution.
    83 	on the CTestManager test class for a transition.
    84  */
    85 class TTestManager_Dtor_TransitionValidator : public TTransitionValidator
    86 	{
    87 public:
    88 	/**
    89 		@fn				TTestManager_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    90 		Intended Usage	:	
    91 		@leave  		KErrNoMemory
    92 		@since			6.0
    93 		@param			aUTContext The context within which this transition is executing
    94 	 */
    95 	inline TTestManager_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    96 
    97 	/**
    98 		@fn				ValidatePreConditions()
    99 		Intended Usage	: Implemented by the developer to check the
   100 						end state of the transition behaviour.
   101 		Error Condition	: Invalid pre-conditions
   102 		@since			6.0
   103 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   104 		@pre 			TTestManager_Dtor_TransitionValidator is fully constructed.
   105 		@post			No change to the iUTContext class.
   106 	*/
   107 	virtual inline TBool ValidatePreConditions();
   108 
   109 	/**
   110 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   111 		Intended Usage	:	Implemented by the developer to check the
   112 						end state of the transition behaviour.
   113 						When overriding, if the transition calls an asynchronous function
   114 						ValidatePostConditions will be called twice. Firstly, after the
   115 						asynchronous function has been called and, secondly, after the 
   116 						asynchronous request has completed. The parameter aAsyncState can
   117 						be used to distinguish between these two cases.
   118 		Error Condition	: Invalid post-conditions.
   119 		@since			6.0
   120 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   121 						EAsyncCompleted if the function has completed.
   122 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   123 		@pre 			TTestManager_Dtor_TransitionValidator is fully constructed.
   124 		@post			No change to the iUTContext class.
   125 	*/
   126 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   127 	};	// TTestManager_Dtor_TransitionValidator
   128 
   129 // ______________________________________________________________________________
   130 //
   131 /**
   132 	@internalComponent
   133 
   134 	Comments : Provide all the RunTestsUnit Test's specific
   135 	validatation for the state of a transition before and after its execution.
   136 	on the CTestManager test class for a transition.
   137  */
   138 class TTestManager_RunTests_TransitionValidator : public TTransitionValidator
   139 	{
   140 public:
   141 	/**
   142 		@fn				TTestManager_RunTests_TransitionValidator(CUnitTestContext& aUTContext)
   143 		Intended Usage	:	
   144 		@leave  		KErrNoMemory
   145 		@since			6.0
   146 		@param			aUTContext The context within which this transition is executing
   147 	 */
   148 	inline TTestManager_RunTests_TransitionValidator(CUnitTestContext& aUTContext);
   149 
   150 	/**
   151 		@fn				ValidatePreConditions()
   152 		Intended Usage	: Implemented by the developer to check the
   153 						end state of the transition behaviour.
   154 		Error Condition	: Invalid pre-conditions
   155 		@since			6.0
   156 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   157 		@pre 			TTestManager_RunTests_TransitionValidator is fully constructed.
   158 		@post			No change to the iUTContext class.
   159 	*/
   160 	virtual inline TBool ValidatePreConditions();
   161 
   162 	/**
   163 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   164 		Intended Usage	:	Implemented by the developer to check the
   165 						end state of the transition behaviour.
   166 						When overriding, if the transition calls an asynchronous function
   167 						ValidatePostConditions will be called twice. Firstly, after the
   168 						asynchronous function has been called and, secondly, after the 
   169 						asynchronous request has completed. The parameter aAsyncState can
   170 						be used to distinguish between these two cases.
   171 		Error Condition	: Invalid post-conditions.
   172 		@since			6.0
   173 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   174 						EAsyncCompleted if the function has completed.
   175 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   176 		@pre 			TTestManager_RunTests_TransitionValidator is fully constructed.
   177 		@post			No change to the iUTContext class.
   178 	*/
   179 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   180 	};	// TTestManager_RunTests_TransitionValidator
   181 
   182 
   183 // ______________________________________________________________________________
   184 //
   185 /**
   186 	@internalComponent
   187 
   188 	Comments : Provide all the TestComponentUnit Test's specific
   189 	validatation for the state of a transition before and after its execution.
   190 	on the CTestManager test class for a transition.
   191  */
   192 class TTestManager_TestComponent_TransitionValidator : public TTransitionValidator
   193 	{
   194 public:
   195 	/**
   196 		@fn				TTestManager_TestComponent_TransitionValidator(CUnitTestContext& aUTContext)
   197 		Intended Usage	:	
   198 		@leave  		KErrNoMemory
   199 		@since			6.0
   200 		@param			aUTContext The context within which this transition is executing
   201 	 */
   202 	inline TTestManager_TestComponent_TransitionValidator(CUnitTestContext& aUTContext);
   203 
   204 	/**
   205 		@fn				ValidatePreConditions()
   206 		Intended Usage	: Implemented by the developer to check the
   207 						end state of the transition behaviour.
   208 		Error Condition	: Invalid pre-conditions
   209 		@since			6.0
   210 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   211 		@pre 			TTestManager_TestComponent_TransitionValidator is fully constructed.
   212 		@post			No change to the iUTContext class.
   213 	*/
   214 	virtual inline TBool ValidatePreConditions();
   215 
   216 	/**
   217 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   218 		Intended Usage	:	Implemented by the developer to check the
   219 						end state of the transition behaviour.
   220 						When overriding, if the transition calls an asynchronous function
   221 						ValidatePostConditions will be called twice. Firstly, after the
   222 						asynchronous function has been called and, secondly, after the 
   223 						asynchronous request has completed. The parameter aAsyncState can
   224 						be used to distinguish between these two cases.
   225 		Error Condition	: Invalid post-conditions.
   226 		@since			6.0
   227 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   228 						EAsyncCompleted if the function has completed.
   229 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   230 		@pre 			TTestManager_TestComponent_TransitionValidator is fully constructed.
   231 		@post			No change to the iUTContext class.
   232 	*/
   233 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   234 	};	// TTestManager_TestComponent_TransitionValidator
   235 
   236 
   237 #include "TestManagerTransitionValidation.inl"
   238 
   239 #endif // __TESTMANAGERTRANSITIONVALIDATION_H__
   240