os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DefaultLogOutputTest/DefaultLogOutputTransitions.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 CDefaultLogOutput class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __DEFAULTLOGOUTPUTTRANSITIONS_H__
sl@0
    19
#define __DEFAULTLOGOUTPUTTRANSITIONS_H__
sl@0
    20
sl@0
    21
#include "TestUtilities.h"
sl@0
    22
#include "StateAccessor.h"
sl@0
    23
#include "LeakTestTransition.h"
sl@0
    24
#include <ecom/test_bed/datalogger.h>
sl@0
    25
#include "DefaultLogOutput.h"
sl@0
    26
#include "DefaultLogOutputStateAccessor.h"
sl@0
    27
#include <ecom/test_bed/unittest.h>
sl@0
    28
sl@0
    29
#define CTransitionType CLeakTestTransition
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	@internalComponent
sl@0
    35
sl@0
    36
	Comments : Provide all the CDefaultLogOutput specific
sl@0
    37
	parameters and behaviour on the CDefaultLogOutput
sl@0
    38
	test class for a transition.
sl@0
    39
 */
sl@0
    40
class CDefaultLogOutput_UnitTestContext : public CUnitTestContext
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	/**
sl@0
    44
		@fn				CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    45
														MStateAccessor& aStateAccessor,
sl@0
    46
														MTransitionObserver& aObserver)
sl@0
    47
		Intended Usage	: Default constructor.
sl@0
    48
		Error Condition	: None. 
sl@0
    49
		@since			7.0
sl@0
    50
		@param			aDataLogger The output logging object.
sl@0
    51
		@param			aObserver The observer of this UnitTest's Transitions.
sl@0
    52
		@param			aStateAccessor WhiteBox state access to the CDefaultLogOutput class under test.
sl@0
    53
		@pre 			None.
sl@0
    54
		@post			CDefaultLogOutput_UnitTestContext is fully constructed, and initialised.
sl@0
    55
	*/
sl@0
    56
	inline CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    57
										MStateAccessor& aStateAccessor,
sl@0
    58
										MTransitionObserver& aObserver);
sl@0
    59
sl@0
    60
	/**
sl@0
    61
		@fn				~CDefaultLogOutput_UnitTestContext()
sl@0
    62
		Intended Usage	: Default Destructor
sl@0
    63
		@since			7.0
sl@0
    64
		@pre 			CDefaultLogOutput_UnitTestContext is fully constructed.
sl@0
    65
		@post			CDefaultLogOutput_UnitTestContext is fully destroyed
sl@0
    66
		*/
sl@0
    67
		virtual inline ~CDefaultLogOutput_UnitTestContext();
sl@0
    68
sl@0
    69
	/** The instance of the class under test */
sl@0
    70
	CDefaultLogOutput* iDefaultLogOutput;
sl@0
    71
	/** The text to output to the test log file */ 
sl@0
    72
	const TDesC* iOutput;
sl@0
    73
	}; // CDefaultLogOutput_UnitTestContext
sl@0
    74
sl@0
    75
// ______________________________________________________________________________
sl@0
    76
//
sl@0
    77
/**
sl@0
    78
	@internalComponent
sl@0
    79
	
sl@0
    80
	Comments : Transition test of the CDefaultLogOutput::NewL method.
sl@0
    81
 */
sl@0
    82
class CDefaultLogOutput_NewL_Transition : public CTransitionType
sl@0
    83
	{
sl@0
    84
public:
sl@0
    85
	/**
sl@0
    86
		@fn				CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    87
																	TTransitionValidator& aValidator)
sl@0
    88
		Intended Usage	: Standard c'tor method.
sl@0
    89
		Error Condition	: None.
sl@0
    90
		@since			7.0
sl@0
    91
		@param			aUTContext The context this transition is operating in.
sl@0
    92
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
    93
		@pre 			None.
sl@0
    94
		@post			CDefaultLogOutput_NewL_Transition is fully constructed.
sl@0
    95
	*/
sl@0
    96
	CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    97
													TTransitionValidator& aValidator);
sl@0
    98
	/**
sl@0
    99
		@fn				TransitMethodL()
sl@0
   100
		Intended Usage	: To execute the CDefaultLogOutput::NewL method for the test harness.
sl@0
   101
		Error Condition	: Leaves with an error code.
sl@0
   102
		@leave  		KErrNoMemory, (@see CDefaultLogOutput::NewL)
sl@0
   103
		@since			7.0
sl@0
   104
		@return			None
sl@0
   105
		@pre 			CDefaultLogOutput_NewL_Transition is fully constructed.
sl@0
   106
		@post			No change in the CDefaultLogOutput_NewL_Transition apart
sl@0
   107
						from iDefaultLogOutput, which may have changed state.
sl@0
   108
						(@see CDefaultLogOutput::NewL post-condition) for iDefaultLogOutput's new state.
sl@0
   109
	*/
sl@0
   110
	inline void TransitMethodL();
sl@0
   111
sl@0
   112
	/**
sl@0
   113
		@fn				Context() const
sl@0
   114
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   115
		Error Condition	: None.
sl@0
   116
		@since			7.0
sl@0
   117
		@return			The unit test context cast to a CDefaultLogOutput_UnitTestContext
sl@0
   118
		@pre 			iUTContext is a valid CDefaultLogOutput_UnitTestContext.
sl@0
   119
		@post			No change in the CDefaultLogOutput_NewL_Transition
sl@0
   120
	*/
sl@0
   121
	inline CDefaultLogOutput_UnitTestContext& Context() const;
sl@0
   122
	};	// CDefaultLogOutput_NewL_Transition
sl@0
   123
sl@0
   124
// ______________________________________________________________________________
sl@0
   125
//
sl@0
   126
/**
sl@0
   127
	@internalComponent
sl@0
   128
	
sl@0
   129
	Comments : Transition test of the CDefaultLogOutput::Dtor method.
sl@0
   130
 */
sl@0
   131
class CDefaultLogOutput_Dtor_Transition : public CTransition
sl@0
   132
	{
sl@0
   133
public:
sl@0
   134
	/**
sl@0
   135
		@fn				CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   136
																	TTransitionValidator& aValidator)
sl@0
   137
		Intended Usage	: Standard c'tor method.
sl@0
   138
		Error Condition	: None.
sl@0
   139
		@since			7.0
sl@0
   140
		@param			aUTContext The context this transition is operating in.
sl@0
   141
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   142
		@pre 			None.
sl@0
   143
		@post			CDefaultLogOutput_Dtor_Transition is fully constructed.
sl@0
   144
	*/
sl@0
   145
	CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   146
													TTransitionValidator& aValidator);
sl@0
   147
	/**
sl@0
   148
		@fn				TransitMethodL()
sl@0
   149
		Intended Usage	: To execute the CDefaultLogOutput::Dtor method for the test harness.
sl@0
   150
		Error Condition	: Leaves with an error code.
sl@0
   151
		@leave  		KErrNoMemory, (@see CDefaultLogOutput::Dtor)
sl@0
   152
		@since			7.0
sl@0
   153
		@return			None
sl@0
   154
		@pre 			CDefaultLogOutput_Dtor_Transition is fully constructed.
sl@0
   155
		@post			No change in the CDefaultLogOutput_Dtor_Transition apart
sl@0
   156
						from iDefaultLogOutput, which may have changed state.
sl@0
   157
						(@see CDefaultLogOutput::Dtor post-condition) for iDefaultLogOutput's new state.
sl@0
   158
	*/
sl@0
   159
	inline void TransitMethodL();
sl@0
   160
sl@0
   161
	/**
sl@0
   162
		@fn				Context() const
sl@0
   163
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   164
		Error Condition	: None.
sl@0
   165
		@since			7.0
sl@0
   166
		@return			The unit test context cast to a CDefaultLogOutput_UnitTestContext
sl@0
   167
		@pre 			iUTContext is a valid CDefaultLogOutput_UnitTestContext.
sl@0
   168
		@post			No change in the CDefaultLogOutput_Dtor_Transition
sl@0
   169
	*/
sl@0
   170
	inline CDefaultLogOutput_UnitTestContext& Context() const;
sl@0
   171
	};	// CDefaultLogOutput_Dtor_Transition
sl@0
   172
sl@0
   173
// ______________________________________________________________________________
sl@0
   174
//
sl@0
   175
/**
sl@0
   176
	@internalComponent
sl@0
   177
	
sl@0
   178
	Comments : Transition test of the CDefaultLogOutput::OpenL method.
sl@0
   179
 */
sl@0
   180
class CDefaultLogOutput_OpenL_Transition : public CTransitionType
sl@0
   181
	{
sl@0
   182
public:
sl@0
   183
	/**
sl@0
   184
		@fn				CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext,
sl@0
   185
																	TTransitionValidator& aValidator)
sl@0
   186
		Intended Usage	: Standard c'tor method.
sl@0
   187
		Error Condition	: None.
sl@0
   188
		@since			7.0
sl@0
   189
		@param			aUTContext The context this transition is operating in.
sl@0
   190
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   191
		@pre 			None.
sl@0
   192
		@post			CDefaultLogOutput_OpenL_Transition is fully constructed.
sl@0
   193
	*/
sl@0
   194
	CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext,
sl@0
   195
													TTransitionValidator& aValidator);
sl@0
   196
	/**
sl@0
   197
		@fn				TransitMethodL()
sl@0
   198
		Intended Usage	: To execute the CDefaultLogOutput::OpenL method for the test harness.
sl@0
   199
		Error Condition	: Leaves with an error code.
sl@0
   200
		@leave  		KErrNoMemory, (@see CDefaultLogOutput::OpenL)
sl@0
   201
		@since			7.0
sl@0
   202
		@return			None
sl@0
   203
		@pre 			CDefaultLogOutput_OpenL_Transition is fully constructed.
sl@0
   204
		@post			No change in the CDefaultLogOutput_OpenL_Transition apart
sl@0
   205
						from iDefaultLogOutput, which may have changed state.
sl@0
   206
						(@see CDefaultLogOutput::OpenL post-condition) for iDefaultLogOutput's new state.
sl@0
   207
	*/
sl@0
   208
	inline void TransitMethodL();
sl@0
   209
sl@0
   210
	/**
sl@0
   211
		@fn				Context() const
sl@0
   212
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   213
		Error Condition	: None.
sl@0
   214
		@since			7.0
sl@0
   215
		@return			The unit test context cast to a CDefaultLogOutput_UnitTestContext
sl@0
   216
		@pre 			iUTContext is a valid CDefaultLogOutput_UnitTestContext.
sl@0
   217
		@post			No change in the CDefaultLogOutput_OpenL_Transition
sl@0
   218
	*/
sl@0
   219
	inline CDefaultLogOutput_UnitTestContext& Context() const;
sl@0
   220
	};	// CDefaultLogOutput_OpenL_Transition
sl@0
   221
sl@0
   222
sl@0
   223
// ______________________________________________________________________________
sl@0
   224
//
sl@0
   225
/**
sl@0
   226
	@internalComponent
sl@0
   227
sl@0
   228
	Comments : Transition test of the CDefaultLogOutput::Close method.
sl@0
   229
 */
sl@0
   230
class CDefaultLogOutput_Close_Transition : public CTransition
sl@0
   231
	{
sl@0
   232
public:
sl@0
   233
	/**
sl@0
   234
		@fn				CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
sl@0
   235
																	TTransitionValidator& aValidator)
sl@0
   236
		Intended Usage	: Standard c'tor method.
sl@0
   237
		Error Condition	: None.
sl@0
   238
		@since			7.0
sl@0
   239
		@param			aUTContext The context this transition is operating in.
sl@0
   240
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   241
		@pre 			None.
sl@0
   242
		@post			CDefaultLogOutput_Close_Transition is fully constructed.
sl@0
   243
	*/
sl@0
   244
	CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
sl@0
   245
													TTransitionValidator& aValidator);
sl@0
   246
	/**
sl@0
   247
		@fn				TransitMethodL()
sl@0
   248
		Intended Usage	: To execute the CDefaultLogOutput::Close method for the test harness.
sl@0
   249
		Error Condition	: Leaves with an error code.
sl@0
   250
		@leave  		KErrNoMemory, (@see CDefaultLogOutput::Close)
sl@0
   251
		@since			7.0
sl@0
   252
		@return			None
sl@0
   253
		@pre 			CDefaultLogOutput_Close_Transition is fully constructed.
sl@0
   254
		@post			No change in the CDefaultLogOutput_Close_Transition apart
sl@0
   255
						from iDefaultLogOutput, which may have changed state.
sl@0
   256
						(@see CDefaultLogOutput::Close post-condition) for iDefaultLogOutput's new state.
sl@0
   257
	*/
sl@0
   258
	inline void TransitMethodL();
sl@0
   259
sl@0
   260
	/**
sl@0
   261
		@fn				Context() const
sl@0
   262
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   263
		Error Condition	: None.
sl@0
   264
		@since			7.0
sl@0
   265
		@return			The unit test context cast to a CDefaultLogOutput_UnitTestContext
sl@0
   266
		@pre 			iUTContext is a valid CDefaultLogOutput_UnitTestContext.
sl@0
   267
		@post			No change in the CDefaultLogOutput_Close_Transition
sl@0
   268
	*/
sl@0
   269
	inline CDefaultLogOutput_UnitTestContext& Context() const;
sl@0
   270
	};	// CDefaultLogOutput_Close_Transition
sl@0
   271
sl@0
   272
// ______________________________________________________________________________
sl@0
   273
//
sl@0
   274
/**
sl@0
   275
	@internalComponent
sl@0
   276
sl@0
   277
	Comments : Transition test of the CDefaultLogOutput::Write method.
sl@0
   278
 */
sl@0
   279
class CDefaultLogOutput_Write_Transition : public CTransition
sl@0
   280
	{
sl@0
   281
public:
sl@0
   282
	/**
sl@0
   283
		@fn				CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
sl@0
   284
																	TTransitionValidator& aValidator)
sl@0
   285
		Intended Usage	: Standard c'tor method.
sl@0
   286
		Error Condition	: None.
sl@0
   287
		@since			7.0
sl@0
   288
		@param			aUTContext The context this transition is operating in.
sl@0
   289
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   290
		@pre 			None.
sl@0
   291
		@post			CDefaultLogOutput_Write_Transition is fully constructed.
sl@0
   292
	*/
sl@0
   293
	CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
sl@0
   294
													TTransitionValidator& aValidator);
sl@0
   295
	/**
sl@0
   296
		@fn				TransitMethodL()
sl@0
   297
		Intended Usage	: To execute the CDefaultLogOutput::Write method for the test harness.
sl@0
   298
		Error Condition	: Leaves with an error code.
sl@0
   299
		@leave  		KErrNoMemory, (@see CDefaultLogOutput::Write)
sl@0
   300
		@since			7.0
sl@0
   301
		@return			None
sl@0
   302
		@pre 			CDefaultLogOutput_Write_Transition is fully constructed.
sl@0
   303
		@post			No change in the CDefaultLogOutput_Write_Transition apart
sl@0
   304
						from iDefaultLogOutput, which may have changed state.
sl@0
   305
						(@see CDefaultLogOutput::Write post-condition) for iDefaultLogOutput's new state.
sl@0
   306
	*/
sl@0
   307
	inline void TransitMethodL();
sl@0
   308
sl@0
   309
	/**
sl@0
   310
		@fn				Context() const
sl@0
   311
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   312
		Error Condition	: None.
sl@0
   313
		@since			7.0
sl@0
   314
		@return			The unit test context cast to a CDefaultLogOutput_UnitTestContext
sl@0
   315
		@pre 			iUTContext is a valid CDefaultLogOutput_UnitTestContext.
sl@0
   316
		@post			No change in the CDefaultLogOutput_Write_Transition
sl@0
   317
	*/
sl@0
   318
	inline CDefaultLogOutput_UnitTestContext& Context() const;
sl@0
   319
	};	// CDefaultLogOutput_Write_Transition
sl@0
   320
sl@0
   321
#include "DefaultLogOutputTransitions.inl"
sl@0
   322
sl@0
   323
#include "DefaultLogOutputUnitTestContext.inl"
sl@0
   324
sl@0
   325
#endif // __DEFAULTLOGOUTPUTTRANSITIONS_H__
sl@0
   326