os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitionValidation.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 definitions of the transition classes upon the CComponentInfo class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __COMPONENTINFOTRANSITIONVALIDATION_H__
sl@0
    19
#define __COMPONENTINFOTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "ComponentInfoTransitions.h"
sl@0
    22
sl@0
    23
// ______________________________________________________________________________
sl@0
    24
//
sl@0
    25
/**
sl@0
    26
	@internalComponent
sl@0
    27
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 CComponentInfo test class for a transition.
sl@0
    31
 */
sl@0
    32
class TComponentInfo_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	/**
sl@0
    36
		@fn				TComponentInfo_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 TComponentInfo_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    43
sl@0
    44
	/**
sl@0
    45
		@fn				ValidatePreConditions()
sl@0
    46
		Intended Usage	: Checks the start state of the ComponentInfo transition behaviour.
sl@0
    47
		Error Condition	: Invalid pre-conditions
sl@0
    48
		@since			7.0
sl@0
    49
		@return			ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
    50
		@pre 			TComponentInfo_Ctor_TransitionValidator is fully constructed.
sl@0
    51
		@post			No change to the iUTContext class.
sl@0
    52
	*/
sl@0
    53
	virtual inline TBool ValidatePreConditions();
sl@0
    54
sl@0
    55
	/**
sl@0
    56
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
    57
		Intended Usage	:	Implemented by the developer to check the
sl@0
    58
						end state of the transition behaviour.
sl@0
    59
						When overriding, if the transition calls an asynchronous function
sl@0
    60
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
    61
						asynchronous function has been called and, secondly, after the 
sl@0
    62
						asynchronous request has completed. The parameter aAsyncState can
sl@0
    63
						be used to distinguish between these two cases.
sl@0
    64
		Error Condition	: Invalid post-conditions.
sl@0
    65
		@since			7.0
sl@0
    66
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
    67
						EAsyncCompleted if the function has completed.
sl@0
    68
		@return			ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
    69
		@pre 			TComponentInfo_Ctor_TransitionValidator is fully constructed.
sl@0
    70
		@post			No change to the iUTContext class.
sl@0
    71
	*/
sl@0
    72
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
    73
	};	// TComponentInfo_Ctor_TransitionValidator
sl@0
    74
sl@0
    75
// ______________________________________________________________________________
sl@0
    76
//
sl@0
    77
/**
sl@0
    78
	@internalComponent
sl@0
    79
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 CComponentInfo test class for a transition.
sl@0
    83
 */
sl@0
    84
class TComponentInfo_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    85
	{
sl@0
    86
public:
sl@0
    87
	/**
sl@0
    88
		@fn				TComponentInfo_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    89
		Intended Usage	:	
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 TComponentInfo_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 			TComponentInfo_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 			TComponentInfo_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
	};	// TComponentInfo_Dtor_TransitionValidator
sl@0
   127
sl@0
   128
// ______________________________________________________________________________
sl@0
   129
//
sl@0
   130
/**
sl@0
   131
	@internalComponent
sl@0
   132
sl@0
   133
	Comments : Provide all the EntryUnit Test's specific
sl@0
   134
	validatation for the state of a transition before and after its execution.
sl@0
   135
	on the CComponentInfo test class for a transition.
sl@0
   136
 */
sl@0
   137
class TComponentInfo_Entry_TransitionValidator : public TTransitionValidator
sl@0
   138
	{
sl@0
   139
public:
sl@0
   140
	/**
sl@0
   141
		@fn				TComponentInfo_Entry_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   142
		Intended Usage	:	
sl@0
   143
		@leave			KErrNoMemory
sl@0
   144
		@since			7.0
sl@0
   145
		@param			aUTContext The context within which this transition is executing
sl@0
   146
	 */
sl@0
   147
	inline TComponentInfo_Entry_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   148
sl@0
   149
	/**
sl@0
   150
		@fn				ValidatePreConditions()
sl@0
   151
		Intended Usage	: Implemented by the developer to check the
sl@0
   152
						end state of the transition behaviour.
sl@0
   153
		Error Condition	: Invalid pre-conditions
sl@0
   154
		@since			7.0
sl@0
   155
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   156
		@pre 			TComponentInfo_Entry_TransitionValidator is fully constructed.
sl@0
   157
		@post			No change to the iUTContext class.
sl@0
   158
	*/
sl@0
   159
	virtual inline TBool ValidatePreConditions();
sl@0
   160
sl@0
   161
	/**
sl@0
   162
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   163
		Intended Usage	:	Implemented by the developer to check the
sl@0
   164
						end state of the transition behaviour.
sl@0
   165
						When overriding, if the transition calls an asynchronous function
sl@0
   166
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   167
						asynchronous function has been called and, secondly, after the 
sl@0
   168
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   169
						be used to distinguish between these two cases.
sl@0
   170
		Error Condition	: Invalid post-conditions.
sl@0
   171
		@since			7.0
sl@0
   172
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   173
						EAsyncCompleted if the function has completed.
sl@0
   174
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   175
		@pre 			TComponentInfo_Entry_TransitionValidator is fully constructed.
sl@0
   176
		@post			No change to the iUTContext class.
sl@0
   177
	*/
sl@0
   178
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   179
	};	// TComponentInfo_Entry_TransitionValidator
sl@0
   180
sl@0
   181
// ______________________________________________________________________________
sl@0
   182
//
sl@0
   183
/**
sl@0
   184
	@internalComponent
sl@0
   185
sl@0
   186
	Comments : Provide all the UnitTestsInfoUnit Test's specific
sl@0
   187
	validatation for the state of a transition before and after its execution.
sl@0
   188
	on the CComponentInfo test class for a transition.
sl@0
   189
 */
sl@0
   190
class TComponentInfo_UnitTestsInfo_TransitionValidator : public TTransitionValidator
sl@0
   191
	{
sl@0
   192
public:
sl@0
   193
	/**
sl@0
   194
		@fn				TComponentInfo_UnitTestsInfo_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   195
		Intended Usage	:	
sl@0
   196
		@leave  		KErrNoMemory
sl@0
   197
		@since			7.0
sl@0
   198
		@param			aUTContext The context within which this transition is executing
sl@0
   199
	 */
sl@0
   200
	inline TComponentInfo_UnitTestsInfo_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   201
sl@0
   202
	/**
sl@0
   203
		@fn				ValidatePreConditions()
sl@0
   204
		Intended Usage	: Implemented by the developer to check the
sl@0
   205
						end state of the transition behaviour.
sl@0
   206
		Error Condition	: Invalid pre-conditions
sl@0
   207
		@since			7.0
sl@0
   208
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   209
		@pre 			TComponentInfo_UnitTestsInfo_TransitionValidator is fully constructed.
sl@0
   210
		@post			No change to the iUTContext class.
sl@0
   211
	*/
sl@0
   212
	virtual inline TBool ValidatePreConditions();
sl@0
   213
sl@0
   214
	/**
sl@0
   215
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   216
		Intended Usage	:	Implemented by the developer to check the
sl@0
   217
						end state of the transition behaviour.
sl@0
   218
						When overriding, if the transition calls an asynchronous function
sl@0
   219
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   220
						asynchronous function has been called and, secondly, after the 
sl@0
   221
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   222
						be used to distinguish between these two cases.
sl@0
   223
		Error Condition	: Invalid post-conditions.
sl@0
   224
		@since			7.0
sl@0
   225
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   226
						EAsyncCompleted if the function has completed.
sl@0
   227
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   228
		@pre 			TComponentInfo_UnitTestsInfo_TransitionValidator is fully constructed.
sl@0
   229
		@post			No change to the iUTContext class.
sl@0
   230
	*/
sl@0
   231
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   232
	};	// TComponentInfo_UnitTestsInfo_TransitionValidator
sl@0
   233
sl@0
   234
sl@0
   235
sl@0
   236
#include "ComponentInfoTransitionValidation.inl"
sl@0
   237
sl@0
   238
#endif // __COMPONENTINFOTRANSITIONVALIDATION_H__
sl@0
   239