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