os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitions.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 transitions over the methods in the CDiscoverer class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __DISCOVERERTRANSITIONS_H__
sl@0
    19
#define __DISCOVERERTRANSITIONS_H__
sl@0
    20
sl@0
    21
#include "StateAccessor.h"
sl@0
    22
#include "LeakTestTransition.h"
sl@0
    23
#include <test_bed/datalogger.h>
sl@0
    24
#include "Discoverer.h"
sl@0
    25
#include "DiscovererStateAccessor.h"
sl@0
    26
#include <test_bed/unittest.h>
sl@0
    27
sl@0
    28
class CObserverStub;
sl@0
    29
sl@0
    30
#define CTransitionType CLeakTestTransition
sl@0
    31
sl@0
    32
// ______________________________________________________________________________
sl@0
    33
//
sl@0
    34
/**
sl@0
    35
	@internalComponent
sl@0
    36
	Comments : Provide all the CreateAndDestroyUnit Test's specific
sl@0
    37
	parameters and behaviour on the CDiscoverer
sl@0
    38
	test class for a transition.
sl@0
    39
 */
sl@0
    40
class CDiscoverer_UnitTestContext : public CUnitTestContext
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	/**
sl@0
    44
		@fn				CDiscoverer_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 CDiscoverer class under test.
sl@0
    54
		@param			aFs A reference to an connected file server instance.
sl@0
    55
		@pre 			None.
sl@0
    56
		@post			CDiscoverer_UnitTestContext is fully constructed, and initialised.
sl@0
    57
	*/
sl@0
    58
	CDiscoverer_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				CDiscoverer_UnitTestContext::~CDiscoverer_UnitTestContext()
sl@0
    65
		Intended Usage	: Default Destructor	
sl@0
    66
		@since			7.0
sl@0
    67
		@pre 			CDiscoverer_UnitTestContext is fully constructed
sl@0
    68
		@post			CDiscoverer_UnitTestContext is fully destroyed
sl@0
    69
	 */
sl@0
    70
	virtual ~CDiscoverer_UnitTestContext();
sl@0
    71
sl@0
    72
	/**
sl@0
    73
		@fn				DiscovererObserver()
sl@0
    74
		Intended Usage	: Discoverer Observer acessor	
sl@0
    75
		@since			7.0
sl@0
    76
		@return			MDiscovererObserver& A reference to the observer interface 
sl@0
    77
						to be used for this unit test
sl@0
    78
		@pre 			CDiscoverer_UnitTestContext is fully constructed
sl@0
    79
		@post			CDiscoverer_UnitTestContext is fully destroyed
sl@0
    80
	 */
sl@0
    81
	MDiscovererObserver& DiscovererObserver();
sl@0
    82
sl@0
    83
	/** The instance of the class under test */
sl@0
    84
	CDiscoverer* iDiscoverer;
sl@0
    85
	/** A reference to the observer stub of the CDiscoverer */
sl@0
    86
	CObserverStub* iDiscovererObserver;
sl@0
    87
	/** A reference to an connected file server instance. */
sl@0
    88
	RFs& iFs;
sl@0
    89
	/** A Dir object referring to the discovery directory file list */
sl@0
    90
	CDir* iDir;
sl@0
    91
	/** A parse referring to a DLL's file path */
sl@0
    92
	TParse iPath;
sl@0
    93
	/** A modified TEntry referring to a DLL */
sl@0
    94
	TEntry* iReturnedFileEntry;
sl@0
    95
	/** A drive letter referring to the mounted / unmounted drive */
sl@0
    96
	TDriveUnit iDriveUnit;
sl@0
    97
	/** A status pointer for signalling async completion from the stub routines */
sl@0
    98
	TRequestStatus* iNotificationStatus;
sl@0
    99
	}; // CDiscoverer_UnitTestContext
sl@0
   100
sl@0
   101
// ______________________________________________________________________________
sl@0
   102
//
sl@0
   103
/**
sl@0
   104
	@internalComponent
sl@0
   105
	Comments : Transition test of the CDiscoverer::NewL method.
sl@0
   106
 */
sl@0
   107
class CDiscoverer_NewL_Transition : public CTransitionType
sl@0
   108
	{
sl@0
   109
public:
sl@0
   110
	/**
sl@0
   111
		@fn				CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   112
													TTransitionValidator& aValidator)
sl@0
   113
		Intended Usage	: Standard c'tor method.
sl@0
   114
		Error Condition	: None.
sl@0
   115
		@since			7.0
sl@0
   116
		@param			Discoverer_CreateAndDestroy_UnitTestContext 
sl@0
   117
						The parameters to use for test purposes. 
sl@0
   118
		@pre 			None.
sl@0
   119
		@post			CDiscoverer_NewL_Transition is fully constructed.
sl@0
   120
	*/
sl@0
   121
	inline CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   122
								TTransitionValidator& aValidator);
sl@0
   123
	/**
sl@0
   124
		@fn				TransitMethodL()
sl@0
   125
		Intended Usage	: To execute the CDiscoverer::NewL method for the test harness.
sl@0
   126
		Error Condition	: Leaves with an error code.
sl@0
   127
		@leave			KErrNoMemory, (@see CDiscoverer::NewL)
sl@0
   128
		@since			7.0
sl@0
   129
		@return			None
sl@0
   130
		@pre 			CDiscoverer_NewL_Transition is fully constructed.
sl@0
   131
		@post			No change in the CDiscoverer_NewL_Transition apart
sl@0
   132
						from iDiscoverer, which may have changed state.
sl@0
   133
						(@see CDiscoverer::NewL post-condition) for iDiscoverer's new state.
sl@0
   134
	*/
sl@0
   135
	inline void TransitMethodL();
sl@0
   136
sl@0
   137
	/**
sl@0
   138
		@fn				inline CDiscoverer_UnitTestContext& Context() const
sl@0
   139
		Intended Usage	: Obtain the context for this unit test
sl@0
   140
		@since			7.0
sl@0
   141
		@return			CDiscoverer_UnitTestContext& The unit test context object.
sl@0
   142
		@pre 			CDiscoverer_NewL_Transition is fully constructed.
sl@0
   143
	 */
sl@0
   144
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   145
	};	// CDiscoverer_NewL_Transition
sl@0
   146
sl@0
   147
// ______________________________________________________________________________
sl@0
   148
//
sl@0
   149
/**
sl@0
   150
	@internalComponent
sl@0
   151
	Comments : Transition test of the CDiscoverer::Dtor method.
sl@0
   152
sl@0
   153
 */
sl@0
   154
class CDiscoverer_Dtor_Transition : public CTransition
sl@0
   155
	{
sl@0
   156
public:
sl@0
   157
	/**
sl@0
   158
		@fn				CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   159
																	TTransitionValidator& aValidator)
sl@0
   160
		Intended Usage	: Standard c'tor method.
sl@0
   161
		Error Condition	: None.
sl@0
   162
		@since			7.0
sl@0
   163
		@param			Discoverer_CreateAndDestroy_UnitTestContext 
sl@0
   164
						The parameters to use for test purposes. 
sl@0
   165
		@pre 			None.
sl@0
   166
		@post			CDiscoverer_Dtor_Transition is fully constructed.
sl@0
   167
	*/
sl@0
   168
	inline CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   169
																	TTransitionValidator& aValidator);
sl@0
   170
	/**
sl@0
   171
		@fn				TransitMethodL()
sl@0
   172
		Intended Usage	: To execute the CDiscoverer::Dtor method for the test harness.
sl@0
   173
		Error Condition	: Leaves with an error code.
sl@0
   174
		@leave			KErrNoMemory, (@see CDiscoverer::Dtor)
sl@0
   175
		@since			7.0
sl@0
   176
		@return			None
sl@0
   177
		@pre 			CDiscoverer_Dtor_Transition is fully constructed.
sl@0
   178
		@post			No change in the CDiscoverer_Dtor_Transition apart
sl@0
   179
						from iDiscoverer, which may have changed state.
sl@0
   180
						(@see CDiscoverer::Dtor post-condition) for iDiscoverer's new state.
sl@0
   181
	*/
sl@0
   182
	inline void TransitMethodL();
sl@0
   183
sl@0
   184
	/**
sl@0
   185
		@fn				inline CDiscoverer_UnitTestContext& Context() const
sl@0
   186
		Intended Usage	: Obtain the context for this unit test
sl@0
   187
		@since			7.0
sl@0
   188
		@return			CDiscoverer_UnitTestContext& The unit test context object.
sl@0
   189
		@pre 			CDiscoverer_Dtor_Transition is fully constructed.
sl@0
   190
	 */
sl@0
   191
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   192
	};	// CDiscoverer_Dtor_Transition
sl@0
   193
sl@0
   194
// ______________________________________________________________________________
sl@0
   195
//
sl@0
   196
/**
sl@0
   197
	@internalComponent
sl@0
   198
	Comments : Transition test of the CDiscoverer::Resume method.
sl@0
   199
 */
sl@0
   200
class CDiscoverer_Resume_Transition : public CTransition
sl@0
   201
	{
sl@0
   202
public:
sl@0
   203
	/**
sl@0
   204
		@fn				CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
sl@0
   205
																	TTransitionValidator& aValidator)
sl@0
   206
		Intended Usage	: Standard c'tor method.
sl@0
   207
		Error Condition	: None.
sl@0
   208
		@since			7.0
sl@0
   209
		@param			aUTContext The context this transition is operating in.
sl@0
   210
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   211
		@pre 			None.
sl@0
   212
		@post			CDiscoverer_Resume_Transition is fully constructed.
sl@0
   213
	*/
sl@0
   214
	inline CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
sl@0
   215
													TTransitionValidator& aValidator);
sl@0
   216
	/**
sl@0
   217
		@fn				TransitMethodL()
sl@0
   218
		Intended Usage	: To execute the CDiscoverer::Resume method for the test harness.
sl@0
   219
		Error Condition	: Leaves with an error code.
sl@0
   220
		@leave			KErrNoMemory, (@see CDiscoverer::Resume)
sl@0
   221
		@since			7.0
sl@0
   222
		@return			None
sl@0
   223
		@pre 			CDiscoverer_Resume_Transition is fully constructed.
sl@0
   224
		@post			No change in the CDiscoverer_Resume_Transition apart
sl@0
   225
						from iDiscoverer, which may have changed state.
sl@0
   226
						(@see CDiscoverer::Resume post-condition) for iDiscoverer's new state.
sl@0
   227
	*/
sl@0
   228
	inline void TransitMethodL();
sl@0
   229
sl@0
   230
	/**
sl@0
   231
		@fn				Context() const
sl@0
   232
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   233
		Error Condition	: None.
sl@0
   234
		@since			7.0
sl@0
   235
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   236
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   237
		@post			No change in the CDiscoverer_Resume_Transition
sl@0
   238
	*/
sl@0
   239
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   240
	};	// CDiscoverer_Resume_Transition
sl@0
   241
sl@0
   242
// ______________________________________________________________________________
sl@0
   243
//
sl@0
   244
/**
sl@0
   245
	@internalComponent
sl@0
   246
	Comments : Transition test of the CDiscoverer::Suspend method.
sl@0
   247
 */
sl@0
   248
class CDiscoverer_Suspend_Transition : public CTransition
sl@0
   249
	{
sl@0
   250
public:
sl@0
   251
	/**
sl@0
   252
		@fn				CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
sl@0
   253
																	TTransitionValidator& aValidator)
sl@0
   254
		Intended Usage	: Standard c'tor method.
sl@0
   255
		Error Condition	: None.
sl@0
   256
		@since			7.0
sl@0
   257
		@param			aUTContext The context this transition is operating in.
sl@0
   258
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   259
		@pre 			None.
sl@0
   260
		@post			CDiscoverer_Suspend_Transition is fully constructed.
sl@0
   261
	*/
sl@0
   262
	inline CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
sl@0
   263
													TTransitionValidator& aValidator);
sl@0
   264
	/**
sl@0
   265
		@fn				TransitMethodL()
sl@0
   266
		Intended Usage	: To execute the CDiscoverer::Suspend method for the test harness.
sl@0
   267
		Error Condition	: Leaves with an error code.
sl@0
   268
		@leave			KErrNoMemory, (@see CDiscoverer::Suspend)
sl@0
   269
		@since			7.0
sl@0
   270
		@return			None
sl@0
   271
		@pre 			CDiscoverer_Suspend_Transition is fully constructed.
sl@0
   272
		@post			No change in the CDiscoverer_Suspend_Transition apart
sl@0
   273
						from iDiscoverer, which may have changed state.
sl@0
   274
						(@see CDiscoverer::Suspend post-condition) for iDiscoverer's new state.
sl@0
   275
	*/
sl@0
   276
	inline void TransitMethodL();
sl@0
   277
sl@0
   278
	/**
sl@0
   279
		@fn				Context() const
sl@0
   280
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   281
		Error Condition	: None.
sl@0
   282
		@since			7.0
sl@0
   283
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   284
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   285
		@post			No change in the CDiscoverer_Suspend_Transition
sl@0
   286
	*/
sl@0
   287
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   288
	};	// CDiscoverer_Suspend_Transition
sl@0
   289
sl@0
   290
// CDiscoverer internal transitions
sl@0
   291
sl@0
   292
// ______________________________________________________________________________
sl@0
   293
//
sl@0
   294
/**
sl@0
   295
	@internalComponent
sl@0
   296
	Comments : Transition test of the CDiscoverer::Notification method.
sl@0
   297
sl@0
   298
 */
sl@0
   299
class CDiscoverer_Notification_Transition : public CTransition
sl@0
   300
	{
sl@0
   301
public:
sl@0
   302
	/**
sl@0
   303
		@fn				CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
sl@0
   304
																	TTransitionValidator& aValidator)
sl@0
   305
		Intended Usage	: Standard c'tor method.
sl@0
   306
		Error Condition	: None.
sl@0
   307
		@since			7.0
sl@0
   308
		@param			aUTContext The context this transition is operating in.
sl@0
   309
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   310
		@pre 			None.
sl@0
   311
		@post			CDiscoverer_Notification_Transition is fully constructed.
sl@0
   312
	*/
sl@0
   313
	inline CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
sl@0
   314
													TTransitionValidator& aValidator);
sl@0
   315
	/**
sl@0
   316
		@fn				TransitMethodL()
sl@0
   317
		Intended Usage	: To execute the CDiscoverer::Notification method for the test harness.
sl@0
   318
		Error Condition	: Leaves with an error code.
sl@0
   319
		@leave			KErrNoMemory, (@see CDiscoverer::Notification)
sl@0
   320
		@since			7.0
sl@0
   321
		@return			None
sl@0
   322
		@pre 			CDiscoverer_Notification_Transition is fully constructed.
sl@0
   323
		@post			No change in the CDiscoverer_Notification_Transition apart
sl@0
   324
						from iDiscoverer, which may have changed state.
sl@0
   325
						(@see CDiscoverer::Notification post-condition) for iDiscoverer's new state.
sl@0
   326
	*/
sl@0
   327
	inline void TransitMethodL();
sl@0
   328
sl@0
   329
	/**
sl@0
   330
		@fn				Context() const
sl@0
   331
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   332
		Error Condition	: None.
sl@0
   333
		@since			7.0
sl@0
   334
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   335
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   336
		@post			No change in the CDiscoverer_Notification_Transition
sl@0
   337
	*/
sl@0
   338
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   339
	};	// CDiscoverer_Notification_Transition
sl@0
   340
sl@0
   341
// ______________________________________________________________________________
sl@0
   342
//
sl@0
   343
/**
sl@0
   344
	@internalComponent
sl@0
   345
	Comments : Transition test of the CDiscoverer::ScanDirectoryL method.
sl@0
   346
sl@0
   347
 */
sl@0
   348
class CDiscoverer_ScanDirectoryL_Transition : public CTransitionType
sl@0
   349
	{
sl@0
   350
public:
sl@0
   351
	/**
sl@0
   352
		@fn				CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
sl@0
   353
																	TTransitionValidator& aValidator)
sl@0
   354
		Intended Usage	: Standard c'tor method.
sl@0
   355
		Error Condition	: None.
sl@0
   356
		@since			7.0
sl@0
   357
		@param			aUTContext The context this transition is operating in.
sl@0
   358
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   359
		@pre 			None.
sl@0
   360
		@post			CDiscoverer_ScanDirectoryL_Transition is fully constructed.
sl@0
   361
	*/
sl@0
   362
	CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
sl@0
   363
													TTransitionValidator& aValidator);
sl@0
   364
	/**
sl@0
   365
		@fn				TransitMethodL()
sl@0
   366
		Intended Usage	: To execute the CDiscoverer::ScanDirectoryL method for the test harness.
sl@0
   367
		Error Condition	: Leaves with an error code.
sl@0
   368
		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryL)
sl@0
   369
		@since			7.0
sl@0
   370
		@return			None
sl@0
   371
		@pre 			CDiscoverer_ScanDirectoryL_Transition is fully constructed.
sl@0
   372
		@post			No change in the CDiscoverer_ScanDirectoryL_Transition apart
sl@0
   373
						from iDiscoverer, which may have changed state.
sl@0
   374
						(@see CDiscoverer::ScanDirectoryL post-condition) for iDiscoverer's new state.
sl@0
   375
	*/
sl@0
   376
	inline void TransitMethodL();
sl@0
   377
sl@0
   378
	/**
sl@0
   379
		@fn				Context() const
sl@0
   380
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   381
		Error Condition	: None.
sl@0
   382
		@since			7.0
sl@0
   383
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   384
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   385
		@post			No change in the CDiscoverer_ScanDirectoryL_Transition
sl@0
   386
	*/
sl@0
   387
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   388
	};	// CDiscoverer_ScanDirectoryL_Transition
sl@0
   389
sl@0
   390
// ______________________________________________________________________________
sl@0
   391
//
sl@0
   392
/**
sl@0
   393
	@internalComponent
sl@0
   394
	Comments : Transition test of the CDiscoverer::ScanDirectoryIncrementL method.
sl@0
   395
sl@0
   396
 */
sl@0
   397
class CDiscoverer_ScanDirectoryIncrementL_Transition : public CTransitionType
sl@0
   398
	{
sl@0
   399
public:
sl@0
   400
	/**
sl@0
   401
		@fn				CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
sl@0
   402
																	TTransitionValidator& aValidator)
sl@0
   403
		Intended Usage	: Standard c'tor method.
sl@0
   404
		Error Condition	: None.
sl@0
   405
		@since			7.0
sl@0
   406
		@param			aUTContext The context this transition is operating in.
sl@0
   407
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   408
		@pre 			None.
sl@0
   409
		@post			CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
sl@0
   410
	*/
sl@0
   411
	CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
sl@0
   412
													TTransitionValidator& aValidator);
sl@0
   413
	/**
sl@0
   414
		@fn				TransitMethodL()
sl@0
   415
		Intended Usage	: To execute the CDiscoverer::ScanDirectoryIncrementL method for the test harness.
sl@0
   416
		Error Condition	: Leaves with an error code.
sl@0
   417
		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryIncrementL)
sl@0
   418
		@since			7.0
sl@0
   419
		@return			None
sl@0
   420
		@pre 			CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
sl@0
   421
		@post			No change in the CDiscoverer_ScanDirectoryIncrementL_Transition apart
sl@0
   422
						from iDiscoverer, which may have changed state.
sl@0
   423
						(@see CDiscoverer::ScanDirectoryIncrementL post-condition) for iDiscoverer's new state.
sl@0
   424
	*/
sl@0
   425
	inline void TransitMethodL();
sl@0
   426
sl@0
   427
	/**
sl@0
   428
		@fn				Context() const
sl@0
   429
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   430
		Error Condition	: None.
sl@0
   431
		@since			7.0
sl@0
   432
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   433
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   434
		@post			No change in the CDiscoverer_ScanDirectoryIncrementL_Transition
sl@0
   435
	*/
sl@0
   436
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   437
	};	// CDiscoverer_ScanDirectoryIncrementL_Transition
sl@0
   438
sl@0
   439
// ______________________________________________________________________________
sl@0
   440
//
sl@0
   441
/**
sl@0
   442
	@internalComponent
sl@0
   443
	Comments : Transition test of the CDiscoverer::ScanDirectoryCancel method.
sl@0
   444
sl@0
   445
 */
sl@0
   446
class CDiscoverer_ScanDirectoryCancel_Transition : public CTransition
sl@0
   447
	{
sl@0
   448
public:
sl@0
   449
	/**
sl@0
   450
		@fn				CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
sl@0
   451
																	TTransitionValidator& aValidator)
sl@0
   452
		Intended Usage	: Standard c'tor method.
sl@0
   453
		Error Condition	: None.
sl@0
   454
		@since			7.0
sl@0
   455
		@param			aUTContext The context this transition is operating in.
sl@0
   456
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   457
		@pre 			None.
sl@0
   458
		@post			CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
sl@0
   459
	*/
sl@0
   460
	CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
sl@0
   461
													TTransitionValidator& aValidator);
sl@0
   462
	/**
sl@0
   463
		@fn				TransitMethodL()
sl@0
   464
		Intended Usage	: To execute the CDiscoverer::ScanDirectoryCancel method for the test harness.
sl@0
   465
		Error Condition	: Leaves with an error code.
sl@0
   466
		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryCancel)
sl@0
   467
		@since			7.0
sl@0
   468
		@return			None
sl@0
   469
		@pre 			CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
sl@0
   470
		@post			No change in the CDiscoverer_ScanDirectoryCancel_Transition apart
sl@0
   471
						from iDiscoverer, which may have changed state.
sl@0
   472
						(@see CDiscoverer::ScanDirectoryCancel post-condition) for iDiscoverer's new state.
sl@0
   473
	*/
sl@0
   474
	inline void TransitMethodL();
sl@0
   475
sl@0
   476
	/**
sl@0
   477
		@fn				Context() const
sl@0
   478
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   479
		Error Condition	: None.
sl@0
   480
		@since			7.0
sl@0
   481
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   482
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   483
		@post			No change in the CDiscoverer_ScanDirectoryCancel_Transition
sl@0
   484
	*/
sl@0
   485
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   486
	};	// CDiscoverer_ScanDirectoryCancel_Transition
sl@0
   487
sl@0
   488
// ______________________________________________________________________________
sl@0
   489
//
sl@0
   490
/**
sl@0
   491
	@internalComponent
sl@0
   492
	Comments : Transition test of the CDiscoverer::CompleteNotificationProcessing method.
sl@0
   493
sl@0
   494
 */
sl@0
   495
class CDiscoverer_CompleteNotificationProcessing_Transition : public CTransition
sl@0
   496
	{
sl@0
   497
public:
sl@0
   498
	/**
sl@0
   499
		@fn				CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
sl@0
   500
																	TTransitionValidator& aValidator)
sl@0
   501
		Intended Usage	: Standard c'tor method.
sl@0
   502
		Error Condition	: None.
sl@0
   503
		@since			7.0
sl@0
   504
		@param			aUTContext The context this transition is operating in.
sl@0
   505
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   506
		@pre 			None.
sl@0
   507
		@post			CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
sl@0
   508
	*/
sl@0
   509
	CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
sl@0
   510
													TTransitionValidator& aValidator);
sl@0
   511
	/**
sl@0
   512
		@fn				TransitMethodL()
sl@0
   513
		Intended Usage	: To execute the CDiscoverer::CompleteNotificationProcessing method for the test harness.
sl@0
   514
		Error Condition	: Leaves with an error code.
sl@0
   515
		@leave			KErrNoMemory, (@see CDiscoverer::CompleteNotificationProcessing)
sl@0
   516
		@since			7.0
sl@0
   517
		@return			None
sl@0
   518
		@pre 			CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
sl@0
   519
		@post			No change in the CDiscoverer_CompleteNotificationProcessing_Transition apart
sl@0
   520
						from iDiscoverer, which may have changed state.
sl@0
   521
						(@see CDiscoverer::CompleteNotificationProcessing post-condition) for iDiscoverer's new state.
sl@0
   522
	*/
sl@0
   523
	inline void TransitMethodL();
sl@0
   524
sl@0
   525
	/**
sl@0
   526
		@fn				Context() const
sl@0
   527
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   528
		Error Condition	: None.
sl@0
   529
		@since			7.0
sl@0
   530
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   531
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   532
		@post			No change in the CDiscoverer_CompleteNotificationProcessing_Transition
sl@0
   533
	*/
sl@0
   534
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   535
	};	// CDiscoverer_CompleteNotificationProcessing_Transition
sl@0
   536
sl@0
   537
// ______________________________________________________________________________
sl@0
   538
//
sl@0
   539
/**
sl@0
   540
	@internalComponent
sl@0
   541
	Comments : Transition test of the CDiscoverer::IsValidEntryL method.
sl@0
   542
 */
sl@0
   543
class CDiscoverer_IsValidEntryL_Transition : public CTransitionType
sl@0
   544
	{
sl@0
   545
public:
sl@0
   546
	/**
sl@0
   547
		@fn				CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
sl@0
   548
																	TTransitionValidator& aValidator)
sl@0
   549
		Intended Usage	: Standard c'tor method.
sl@0
   550
		Error Condition	: None.
sl@0
   551
		@since			7.0
sl@0
   552
		@param			aUTContext The context this transition is operating in.
sl@0
   553
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   554
		@pre 			None.
sl@0
   555
		@post			CDiscoverer_IsValidEntryL_Transition is fully constructed.
sl@0
   556
	*/
sl@0
   557
	CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
sl@0
   558
													TTransitionValidator& aValidator);
sl@0
   559
	/**
sl@0
   560
		@fn				TransitMethodL()
sl@0
   561
		Intended Usage	: To execute the CDiscoverer::IsValidEntryL method for the test harness.
sl@0
   562
		Error Condition	: Leaves with an error code.
sl@0
   563
		@leave			KErrNoMemory, (@see CDiscoverer::IsValidEntryL)
sl@0
   564
		@since			7.0
sl@0
   565
		@return			None
sl@0
   566
		@pre 			CDiscoverer_IsValidEntryL_Transition is fully constructed.
sl@0
   567
		@post			No change in the CDiscoverer_IsValidEntryL_Transition apart
sl@0
   568
						from iDiscoverer, which may have changed state.
sl@0
   569
						(@see CDiscoverer::IsValidEntryL post-condition) for iDiscoverer's new state.
sl@0
   570
	*/
sl@0
   571
	inline void TransitMethodL();
sl@0
   572
sl@0
   573
	/**
sl@0
   574
		@fn				Context() const
sl@0
   575
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   576
		Error Condition	: None.
sl@0
   577
		@since			7.0
sl@0
   578
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   579
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   580
		@post			No change in the CDiscoverer_IsValidEntryL_Transition
sl@0
   581
	*/
sl@0
   582
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   583
	};	// CDiscoverer_IsValidEntryL_Transition
sl@0
   584
sl@0
   585
// ______________________________________________________________________________
sl@0
   586
//
sl@0
   587
/**
sl@0
   588
	@internalComponent
sl@0
   589
	Comments : Transition test of the CDiscoverer::ProcessEntryL method.
sl@0
   590
 */
sl@0
   591
class CDiscoverer_ProcessEntryL_Transition : public CTransitionType
sl@0
   592
	{
sl@0
   593
public:
sl@0
   594
	/**
sl@0
   595
		@fn				CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
sl@0
   596
																	TTransitionValidator& aValidator)
sl@0
   597
		Intended Usage	: Standard c'tor method.
sl@0
   598
		Error Condition	: None.
sl@0
   599
		@since			7.0
sl@0
   600
		@param			aUTContext The context this transition is operating in.
sl@0
   601
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   602
		@pre 			None.
sl@0
   603
		@post			CDiscoverer_ProcessEntryL_Transition is fully constructed.
sl@0
   604
	*/
sl@0
   605
	CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
sl@0
   606
													TTransitionValidator& aValidator);
sl@0
   607
	/**
sl@0
   608
		@fn				TransitMethodL()
sl@0
   609
		Intended Usage	: To execute the CDiscoverer::ProcessEntryL method for the test harness.
sl@0
   610
		Error Condition	: Leaves with an error code.
sl@0
   611
		@leave			KErrNoMemory, (@see CDiscoverer::ProcessEntryL)
sl@0
   612
		@since			7.0
sl@0
   613
		@return			None
sl@0
   614
		@pre 			CDiscoverer_ProcessEntryL_Transition is fully constructed.
sl@0
   615
		@post			No change in the CDiscoverer_ProcessEntryL_Transition apart
sl@0
   616
						from iDiscoverer, which may have changed state.
sl@0
   617
						(@see CDiscoverer::ProcessEntryL post-condition) for iDiscoverer's new state.
sl@0
   618
	*/
sl@0
   619
	inline void TransitMethodL();
sl@0
   620
sl@0
   621
	/**
sl@0
   622
		@fn				Context() const
sl@0
   623
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   624
		Error Condition	: None.
sl@0
   625
		@since			7.0
sl@0
   626
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   627
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   628
		@post			No change in the CDiscoverer_ProcessEntryL_Transition
sl@0
   629
	*/
sl@0
   630
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   631
	};	// CDiscoverer_ProcessEntryL_Transition
sl@0
   632
sl@0
   633
// ______________________________________________________________________________
sl@0
   634
//
sl@0
   635
/**
sl@0
   636
	@internalComponent
sl@0
   637
	Comments : Transition test of the CDiscoverer::MountDriveL method.
sl@0
   638
 */
sl@0
   639
class CDiscoverer_MountDriveL_Transition : public CTransitionType
sl@0
   640
	{
sl@0
   641
public:
sl@0
   642
	/**
sl@0
   643
		@fn				CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
sl@0
   644
																	TTransitionValidator& aValidator)
sl@0
   645
		Intended Usage	: Standard c'tor method.
sl@0
   646
		Error Condition	: None.
sl@0
   647
		@since			7.0
sl@0
   648
		@param			aUTContext The context this transition is operating in.
sl@0
   649
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   650
		@pre 			None.
sl@0
   651
		@post			CDiscoverer_MountDriveL_Transition is fully constructed.
sl@0
   652
	*/
sl@0
   653
	CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
sl@0
   654
													TTransitionValidator& aValidator);
sl@0
   655
	/**
sl@0
   656
		@fn				TransitMethodL()
sl@0
   657
		Intended Usage	: To execute the CDiscoverer::MountDriveL method for the test harness.
sl@0
   658
		Error Condition	: Leaves with an error code.
sl@0
   659
		@leave			KErrNoMemory, (@see CDiscoverer::MountDriveL)
sl@0
   660
		@since			7.0
sl@0
   661
		@return			None
sl@0
   662
		@pre 			CDiscoverer_MountDriveL_Transition is fully constructed.
sl@0
   663
		@post			No change in the CDiscoverer_MountDriveL_Transition apart
sl@0
   664
						from iDiscoverer, which may have changed state.
sl@0
   665
						(@see CDiscoverer::MountDriveL post-condition) for iDiscoverer's new state.
sl@0
   666
	*/
sl@0
   667
	inline void TransitMethodL();
sl@0
   668
sl@0
   669
	/**
sl@0
   670
		@fn				Context() const
sl@0
   671
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   672
		Error Condition	: None.
sl@0
   673
		@since			7.0
sl@0
   674
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   675
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   676
		@post			No change in the CDiscoverer_MountDriveL_Transition
sl@0
   677
	*/
sl@0
   678
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   679
	};	// CDiscoverer_MountDriveL_Transition
sl@0
   680
sl@0
   681
// ______________________________________________________________________________
sl@0
   682
//
sl@0
   683
/**
sl@0
   684
	@internalComponent
sl@0
   685
	Comments : Transition test of the CDiscoverer::UnmountDrive method.
sl@0
   686
 */
sl@0
   687
class CDiscoverer_UnmountDrive_Transition : public CTransition
sl@0
   688
	{
sl@0
   689
public:
sl@0
   690
	/**
sl@0
   691
		@fn				CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
sl@0
   692
																	TTransitionValidator& aValidator)
sl@0
   693
		Intended Usage	: Standard c'tor method.
sl@0
   694
		Error Condition	: None.
sl@0
   695
		@since			7.0
sl@0
   696
		@param			aUTContext The context this transition is operating in.
sl@0
   697
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   698
		@pre 			None.
sl@0
   699
		@post			CDiscoverer_UnmountDrive_Transition is fully constructed.
sl@0
   700
	*/
sl@0
   701
	CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
sl@0
   702
													TTransitionValidator& aValidator);
sl@0
   703
	/**
sl@0
   704
		@fn				TransitMethodL()
sl@0
   705
		Intended Usage	: To execute the CDiscoverer::UnmountDrive method for the test harness.
sl@0
   706
		Error Condition	: Leaves with an error code.
sl@0
   707
		@leave			KErrNoMemory, (@see CDiscoverer::UnmountDrive)
sl@0
   708
		@since			7.0
sl@0
   709
		@return			None
sl@0
   710
		@pre 			CDiscoverer_UnmountDrive_Transition is fully constructed.
sl@0
   711
		@post			No change in the CDiscoverer_UnmountDrive_Transition apart
sl@0
   712
						from iDiscoverer, which may have changed state.
sl@0
   713
						(@see CDiscoverer::UnmountDrive post-condition) for iDiscoverer's new state.
sl@0
   714
	*/
sl@0
   715
	inline void TransitMethodL();
sl@0
   716
sl@0
   717
	/**
sl@0
   718
		@fn				Context() const
sl@0
   719
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   720
		Error Condition	: None.
sl@0
   721
		@since			7.0
sl@0
   722
		@return			The unit test context cast to a CDiscoverer_UnitTestContext
sl@0
   723
		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
sl@0
   724
		@post			No change in the CDiscoverer_UnmountDrive_Transition
sl@0
   725
	*/
sl@0
   726
	inline CDiscoverer_UnitTestContext& Context() const;
sl@0
   727
	};	// CDiscoverer_UnmountDrive_Transition
sl@0
   728
sl@0
   729
sl@0
   730
#include "DiscovererTransitions.inl"
sl@0
   731
sl@0
   732
#endif		// __DISCOVERERTRANSITIONS_H__