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