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