os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.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 definitions of the transition classes upon the CTestController class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __TESTCONTROLLERTRANSITIONS_H__
sl@0
    19
#define __TESTCONTROLLERTRANSITIONS_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 "TestController.h"
sl@0
    26
#include "TestControllerStateAccessor.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 CTestController specific
sl@0
    37
	parameters and behaviour on the CTestController
sl@0
    38
	test class for a transition.
sl@0
    39
 */
sl@0
    40
class CTestController_UnitTestContext : public CUnitTestContext
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	/**
sl@0
    44
		@fn				CTestController_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    45
														MStateAccessor& aStateAccessor,
sl@0
    46
														MTransitionObserver& aObserver,
sl@0
    47
														RFs& aFs)
sl@0
    48
		Intended Usage	: Default constructor.
sl@0
    49
		Error Condition	: None. 
sl@0
    50
		@since			7.0
sl@0
    51
		@param			aDataLogger The output logging object.
sl@0
    52
		@param			aObserver The observer of this UnitTest's Transitions.
sl@0
    53
		@param			aStateAccessor WhiteBox state access to the CTestController class under test.
sl@0
    54
		@param			aFs A handle to the file server
sl@0
    55
		@pre 			None.
sl@0
    56
		@post			CTestController_UnitTestContext is fully constructed, and initialised.
sl@0
    57
	*/
sl@0
    58
	inline CTestController_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    59
										MStateAccessor& aStateAccessor,
sl@0
    60
										MTransitionObserver& aObserver,
sl@0
    61
										RFs& aFs);
sl@0
    62
sl@0
    63
	/**
sl@0
    64
		@fn				~CTestController_UnitTestContext()
sl@0
    65
		Intended Usage	: Default Destructor
sl@0
    66
		@since			7.0
sl@0
    67
		@pre 			CTestController_UnitTestContext is fully constructed.
sl@0
    68
		@post			CTestController_UnitTestContext is fully destroyed
sl@0
    69
		*/
sl@0
    70
		virtual inline ~CTestController_UnitTestContext();
sl@0
    71
sl@0
    72
	/** The instance of the class under test */
sl@0
    73
	CTestController* iTestController;
sl@0
    74
	/** The active scheduler for the TestController to use */
sl@0
    75
	CActiveScheduler* iScheduler;
sl@0
    76
	/** An array of tests to be run */
sl@0
    77
	RPointerArray<TTestInfo> iTests;
sl@0
    78
	/** The logging info for the TestController to use */
sl@0
    79
	TLoggingInfo* iLogInfo;
sl@0
    80
	/** File server handle */
sl@0
    81
	RFs iFs;
sl@0
    82
sl@0
    83
	}; // CTestController_UnitTestContext
sl@0
    84
sl@0
    85
// ______________________________________________________________________________
sl@0
    86
//
sl@0
    87
/**
sl@0
    88
	@internalComponent
sl@0
    89
sl@0
    90
	Comments : Transition test of the CTestController::NewL method.
sl@0
    91
 */
sl@0
    92
class CTestController_NewL_Transition : public CTransitionType
sl@0
    93
	{
sl@0
    94
public:
sl@0
    95
	/**
sl@0
    96
		@fn				CTestController_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    97
																	TTransitionValidator& aValidator)
sl@0
    98
		Intended Usage	: Standard c'tor method.
sl@0
    99
		Error Condition	: None.
sl@0
   100
		@since			7.0
sl@0
   101
		@param			aUTContext The context this transition is operating in.
sl@0
   102
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   103
		@pre 			None.
sl@0
   104
		@post			CTestController_NewL_Transition is fully constructed.
sl@0
   105
	*/
sl@0
   106
	CTestController_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   107
													TTransitionValidator& aValidator);
sl@0
   108
	/**
sl@0
   109
		@fn				TransitMethodL()
sl@0
   110
		Intended Usage	: To execute the CTestController::NewL method for the test harness.
sl@0
   111
		Error Condition	: Leaves with an error code.
sl@0
   112
		@leave  		KErrNoMemory, (@see CTestController::NewL)
sl@0
   113
		@since			7.0
sl@0
   114
		@return			None
sl@0
   115
		@pre 			CTestController_NewL_Transition is fully constructed.
sl@0
   116
		@post			No change in the CTestController_NewL_Transition apart
sl@0
   117
						from iTestController, which may have changed state.
sl@0
   118
						(@see CTestController::NewL post-condition) for iTestController's new state.
sl@0
   119
	*/
sl@0
   120
	inline void TransitMethodL();
sl@0
   121
sl@0
   122
	/**
sl@0
   123
		@fn				Context() const
sl@0
   124
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   125
		Error Condition	: None.
sl@0
   126
		@since			7.0
sl@0
   127
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   128
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   129
		@post			No change in the CTestController_NewL_Transition
sl@0
   130
	*/
sl@0
   131
	inline CTestController_UnitTestContext& Context() const;
sl@0
   132
	};	// CTestController_NewL_Transition
sl@0
   133
sl@0
   134
// ______________________________________________________________________________
sl@0
   135
//
sl@0
   136
/**
sl@0
   137
	@internalComponent
sl@0
   138
 
sl@0
   139
	Comments : Transition test of the CTestController::Dtor method.
sl@0
   140
 */
sl@0
   141
class CTestController_Dtor_Transition : public CTransition
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	/**
sl@0
   145
		@fn				CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   146
																	TTransitionValidator& aValidator)
sl@0
   147
		Intended Usage	: Standard c'tor method.
sl@0
   148
		Error Condition	: None.
sl@0
   149
		@since			7.0
sl@0
   150
		@param			aUTContext The context this transition is operating in.
sl@0
   151
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   152
		@pre 			None.
sl@0
   153
		@post			CTestController_Dtor_Transition is fully constructed.
sl@0
   154
	*/
sl@0
   155
	CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   156
													TTransitionValidator& aValidator);
sl@0
   157
	/**
sl@0
   158
		@fn				TransitMethodL()
sl@0
   159
		Intended Usage	: To execute the CTestController::Dtor method for the test harness.
sl@0
   160
		Error Condition	: Leaves with an error code.
sl@0
   161
		@leave  		KErrNoMemory, (@see CTestController::Dtor)
sl@0
   162
		@since			7.0
sl@0
   163
		@return			None
sl@0
   164
		@pre 			CTestController_Dtor_Transition is fully constructed.
sl@0
   165
		@post			No change in the CTestController_Dtor_Transition apart
sl@0
   166
						from iTestController, which may have changed state.
sl@0
   167
						(@see CTestController::Dtor post-condition) for iTestController's new state.
sl@0
   168
	*/
sl@0
   169
	inline void TransitMethodL();
sl@0
   170
sl@0
   171
	/**
sl@0
   172
		@fn				Context() const
sl@0
   173
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   174
		Error Condition	: None.
sl@0
   175
		@since			7.0
sl@0
   176
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   177
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   178
		@post			No change in the CTestController_Dtor_Transition
sl@0
   179
	*/
sl@0
   180
	inline CTestController_UnitTestContext& Context() const;
sl@0
   181
	};	// CTestController_Dtor_Transition
sl@0
   182
sl@0
   183
// ______________________________________________________________________________
sl@0
   184
//
sl@0
   185
/**
sl@0
   186
	@internalComponent
sl@0
   187
sl@0
   188
	Comments : Transition test of the CTestController::ScanDriveL method.
sl@0
   189
 */
sl@0
   190
class CTestController_ScanDriveL_Transition : public CTransitionType
sl@0
   191
	{
sl@0
   192
public:
sl@0
   193
	/**
sl@0
   194
		@fn				CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
sl@0
   195
																	TTransitionValidator& aValidator)
sl@0
   196
		Intended Usage	: Standard c'tor method.
sl@0
   197
		Error Condition	: None.
sl@0
   198
		@since			7.0
sl@0
   199
		@param			aUTContext The context this transition is operating in.
sl@0
   200
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   201
		@pre 			None.
sl@0
   202
		@post			CTestController_ScanDriveL_Transition is fully constructed.
sl@0
   203
	*/
sl@0
   204
	CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
sl@0
   205
													TTransitionValidator& aValidator);
sl@0
   206
	/**
sl@0
   207
		@fn				TransitMethodL()
sl@0
   208
		Intended Usage	: To execute the CTestController::ScanDriveL method for the test harness.
sl@0
   209
		Error Condition	: Leaves with an error code.
sl@0
   210
		@leave  		KErrNoMemory, (@see CTestController::ScanDriveL)
sl@0
   211
		@since			7.0
sl@0
   212
		@return			None
sl@0
   213
		@pre 			CTestController_ScanDriveL_Transition is fully constructed.
sl@0
   214
		@post			No change in the CTestController_ScanDriveL_Transition apart
sl@0
   215
						from iTestController, which may have changed state.
sl@0
   216
						(@see CTestController::ScanDriveL post-condition) for iTestController's new state.
sl@0
   217
	*/
sl@0
   218
	inline void TransitMethodL();
sl@0
   219
sl@0
   220
	/**
sl@0
   221
		@fn				Context() const
sl@0
   222
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   223
		Error Condition	: None.
sl@0
   224
		@since			7.0
sl@0
   225
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   226
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   227
		@post			No change in the CTestController_ScanDriveL_Transition
sl@0
   228
	*/
sl@0
   229
	inline CTestController_UnitTestContext& Context() const;
sl@0
   230
	};	// CTestController_ScanDriveL_Transition
sl@0
   231
sl@0
   232
// ______________________________________________________________________________
sl@0
   233
//
sl@0
   234
/**
sl@0
   235
	@internalComponent
sl@0
   236
sl@0
   237
	Comments : Transition test of the CTestController::DiscoverTestsL method.
sl@0
   238
 */
sl@0
   239
class CTestController_DiscoverTestsL_Transition : public CTransitionType
sl@0
   240
	{
sl@0
   241
public:
sl@0
   242
	/**
sl@0
   243
		@fn				CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
sl@0
   244
																	TTransitionValidator& aValidator)
sl@0
   245
		Intended Usage	: Standard c'tor method.
sl@0
   246
		Error Condition	: None.
sl@0
   247
		@since			7.0
sl@0
   248
		@param			aUTContext The context this transition is operating in.
sl@0
   249
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   250
		@pre 			None.
sl@0
   251
		@post			CTestController_DiscoverTestsL_Transition is fully constructed.
sl@0
   252
	*/
sl@0
   253
	CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
sl@0
   254
													TTransitionValidator& aValidator);
sl@0
   255
	/**
sl@0
   256
		@fn				TransitMethodL()
sl@0
   257
		Intended Usage	: To execute the CTestController::DiscoverTestsL method for the test harness.
sl@0
   258
		Error Condition	: Leaves with an error code.
sl@0
   259
		@leave  		KErrNoMemory, (@see CTestController::DiscoverTestsL)
sl@0
   260
		@since			7.0
sl@0
   261
		@return			None
sl@0
   262
		@pre 			CTestController_DiscoverTestsL_Transition is fully constructed.
sl@0
   263
		@post			No change in the CTestController_DiscoverTestsL_Transition apart
sl@0
   264
						from iTestController, which may have changed state.
sl@0
   265
						(@see CTestController::DiscoverTestsL post-condition) for iTestController's new state.
sl@0
   266
	*/
sl@0
   267
	inline void TransitMethodL();
sl@0
   268
sl@0
   269
	/**
sl@0
   270
		@fn				Context() const
sl@0
   271
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   272
		Error Condition	: None.
sl@0
   273
		@since			7.0
sl@0
   274
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   275
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   276
		@post			No change in the CTestController_DiscoverTestsL_Transition
sl@0
   277
	*/
sl@0
   278
	inline CTestController_UnitTestContext& Context() const;
sl@0
   279
	};	// CTestController_DiscoverTestsL_Transition
sl@0
   280
sl@0
   281
// ______________________________________________________________________________
sl@0
   282
//
sl@0
   283
/**
sl@0
   284
	@internalComponent
sl@0
   285
sl@0
   286
	Comments : Transition test of the CTestController::FindComponents method.
sl@0
   287
 */
sl@0
   288
class CTestController_FindComponents_Transition : public CTransition
sl@0
   289
	{
sl@0
   290
public:
sl@0
   291
	/**
sl@0
   292
		@fn				CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
sl@0
   293
																	TTransitionValidator& aValidator)
sl@0
   294
		Intended Usage	: Standard c'tor method.
sl@0
   295
		Error Condition	: None.
sl@0
   296
		@since			7.0
sl@0
   297
		@param			aUTContext The context this transition is operating in.
sl@0
   298
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   299
		@pre 			None.
sl@0
   300
		@post			CTestController_FindComponents_Transition is fully constructed.
sl@0
   301
	*/
sl@0
   302
	CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
sl@0
   303
													TTransitionValidator& aValidator);
sl@0
   304
	/**
sl@0
   305
		@fn				TransitMethodL()
sl@0
   306
		Intended Usage	: To execute the CTestController::FindComponents method for the test harness.
sl@0
   307
		Error Condition	: Leaves with an error code.
sl@0
   308
		@leave  		KErrNoMemory, (@see CTestController::FindComponents)
sl@0
   309
		@since			7.0
sl@0
   310
		@return			None
sl@0
   311
		@pre 			CTestController_FindComponents_Transition is fully constructed.
sl@0
   312
		@post			No change in the CTestController_FindComponents_Transition apart
sl@0
   313
						from iTestController, which may have changed state.
sl@0
   314
						(@see CTestController::FindComponents post-condition) for iTestController's new state.
sl@0
   315
	*/
sl@0
   316
	inline void TransitMethodL();
sl@0
   317
sl@0
   318
	/**
sl@0
   319
		@fn				Context() const
sl@0
   320
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   321
		Error Condition	: None.
sl@0
   322
		@since			7.0
sl@0
   323
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   324
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   325
		@post			No change in the CTestController_FindComponents_Transition
sl@0
   326
	*/
sl@0
   327
	inline CTestController_UnitTestContext& Context() const;
sl@0
   328
	};	// CTestController_FindComponents_Transition
sl@0
   329
sl@0
   330
// ______________________________________________________________________________
sl@0
   331
//
sl@0
   332
/**
sl@0
   333
	@internalComponent
sl@0
   334
sl@0
   335
	Comments : Transition test of the CTestController::Start method.
sl@0
   336
 */
sl@0
   337
class CTestController_Start_Transition : public CTransition
sl@0
   338
	{
sl@0
   339
public:
sl@0
   340
	/**
sl@0
   341
		@fn				CTestController_Start_Transition(CUnitTestContext& aUTContext,
sl@0
   342
																	TTransitionValidator& aValidator)
sl@0
   343
		Intended Usage	: Standard c'tor method.
sl@0
   344
		Error Condition	: None.
sl@0
   345
		@since			7.0
sl@0
   346
		@param			aUTContext The context this transition is operating in.
sl@0
   347
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   348
		@pre 			None.
sl@0
   349
		@post			CTestController_Start_Transition is fully constructed.
sl@0
   350
	*/
sl@0
   351
	CTestController_Start_Transition(CUnitTestContext& aUTContext,
sl@0
   352
													TTransitionValidator& aValidator);
sl@0
   353
	/**
sl@0
   354
		@fn				TransitMethodL()
sl@0
   355
		Intended Usage	: To execute the CTestController::Start method for the test harness.
sl@0
   356
		Error Condition	: Leaves with an error code.
sl@0
   357
		@leave  		KErrNoMemory, (@see CTestController::StartL)
sl@0
   358
		@since			7.0
sl@0
   359
		@return			None
sl@0
   360
		@pre 			CTestController_Start_Transition is fully constructed.
sl@0
   361
		@post			No change in the CTestController_Start_Transition apart
sl@0
   362
						from iTestController, which may have changed state.
sl@0
   363
						(@see CTestController::Start post-condition) for iTestController's new state.
sl@0
   364
	*/
sl@0
   365
	inline void TransitMethodL();
sl@0
   366
sl@0
   367
	/**
sl@0
   368
		@fn				Context() const
sl@0
   369
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   370
		Error Condition	: None.
sl@0
   371
		@since			7.0
sl@0
   372
		@return			The unit test context cast to a CTestController_UnitTestContext
sl@0
   373
		@pre 			iUTContext is a valid CTestController_UnitTestContext.
sl@0
   374
		@post			No change in the CTestController_Start_Transition
sl@0
   375
	*/
sl@0
   376
	inline CTestController_UnitTestContext& Context() const;
sl@0
   377
	};	// CTestController_Start_Transition
sl@0
   378
sl@0
   379
sl@0
   380
// Add additional Transition class definitions here...
sl@0
   381
sl@0
   382
#include "TestControllerTransitions.inl"
sl@0
   383
sl@0
   384
#include "TestControllerUnitTestContext.inl"
sl@0
   385
sl@0
   386
#endif // __TESTCONTROLLERTRANSITIONS_H__
sl@0
   387