os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitionValidation.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 validation classes for the CDiscoverer transitions.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __DISCOVERERTRANSITIONVALIDATION_H__
sl@0
    19
#define __DISCOVERERTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "DiscovererTransitions.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 CreateAndDestroy Unit Test's specific
sl@0
    29
	validatation for the state of a transition before and after its execution.
sl@0
    30
	on the CDiscoverer test class for a transition.
sl@0
    31
sl@0
    32
 */
sl@0
    33
class TDiscoverer_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	/**
sl@0
    37
		@fn				TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    38
		Intended Usage	: Standard 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 TDiscoverer_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 			TDiscoverer_Default_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 			TDiscoverer_Default_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
	};	// TDiscoverer_Ctor_TransitionValidator
sl@0
    76
sl@0
    77
sl@0
    78
// ______________________________________________________________________________
sl@0
    79
//
sl@0
    80
/**
sl@0
    81
	@internalComponent
sl@0
    82
sl@0
    83
	Comments : Provide all the CreateAndDestroy Unit Test's specific
sl@0
    84
	validatation for the state of a transition before and after its execution.
sl@0
    85
	on the CDiscoverer test class for a transition.
sl@0
    86
sl@0
    87
 */
sl@0
    88
class TDiscoverer_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    89
	{
sl@0
    90
public:
sl@0
    91
	/**
sl@0
    92
		@fn				TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    93
		Intended Usage	:	
sl@0
    94
		@leave			KErrNoMemory
sl@0
    95
		@since			7.0
sl@0
    96
		@param			aUTContext The context within which this transition is executing
sl@0
    97
	 */
sl@0
    98
	inline TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    99
sl@0
   100
	/**
sl@0
   101
		@fn				ValidatePreConditions()
sl@0
   102
		Intended Usage	: Implemented by the developer to check the
sl@0
   103
						end state of the transition behaviour.
sl@0
   104
		Error Condition	: Invalid pre-conditions
sl@0
   105
		@since			7.0
sl@0
   106
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   107
		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
sl@0
   108
		@post			No change to the iUTContext class.
sl@0
   109
	*/
sl@0
   110
	virtual inline TBool ValidatePreConditions();
sl@0
   111
sl@0
   112
	/**
sl@0
   113
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   114
		Intended Usage	:	Implemented by the developer to check the
sl@0
   115
						end state of the transition behaviour.
sl@0
   116
						When overriding, if the transition calls an asynchronous function
sl@0
   117
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   118
						asynchronous function has been called and, secondly, after the 
sl@0
   119
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   120
						be used to distinguish between these two cases.
sl@0
   121
		Error Condition	: Invalid post-conditions.
sl@0
   122
		@since			7.0
sl@0
   123
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   124
						EAsyncCompleted if the function has completed.
sl@0
   125
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   126
		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
sl@0
   127
		@post			No change to the iUTContext class.
sl@0
   128
	*/
sl@0
   129
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   130
	};	// TDiscoverer_Dtor_TransitionValidator
sl@0
   131
sl@0
   132
// ______________________________________________________________________________
sl@0
   133
//
sl@0
   134
/**
sl@0
   135
	@internalComponent
sl@0
   136
	Comments : Provide all the MountDriveLUnit Test's specific
sl@0
   137
	validatation for the state of a transition before and after its execution.
sl@0
   138
	on the CDiscoverer test class for a transition.
sl@0
   139
sl@0
   140
 */
sl@0
   141
class TDiscoverer_MountDriveL_TransitionValidator : public TTransitionValidator
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	/**
sl@0
   145
		@fn				TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   146
		Intended Usage	:	
sl@0
   147
		@leave			KErrNoMemory
sl@0
   148
		@since			7.0
sl@0
   149
		@param			aUTContext The context within which this transition is executing
sl@0
   150
	 */
sl@0
   151
	inline TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   152
sl@0
   153
	/**
sl@0
   154
		@fn				ValidatePreConditions()
sl@0
   155
		Intended Usage	: Implemented by the developer to check the
sl@0
   156
						end state of the transition behaviour.
sl@0
   157
		Error Condition	: Invalid pre-conditions
sl@0
   158
		@since			7.0
sl@0
   159
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   160
		@pre 			TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
sl@0
   161
		@post			No change to the iUTContext class.
sl@0
   162
	*/
sl@0
   163
	virtual inline TBool ValidatePreConditions();
sl@0
   164
sl@0
   165
	/**
sl@0
   166
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   167
		Intended Usage	:	Implemented by the developer to check the
sl@0
   168
						end state of the transition behaviour.
sl@0
   169
						When overriding, if the transition calls an asynchronous function
sl@0
   170
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   171
						asynchronous function has been called and, secondly, after the 
sl@0
   172
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   173
						be used to distinguish between these two cases.
sl@0
   174
		Error Condition	: Invalid post-conditions.
sl@0
   175
		@since			7.0
sl@0
   176
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   177
						EAsyncCompleted if the function has completed.
sl@0
   178
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   179
		@pre 			TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
sl@0
   180
		@post			No change to the iUTContext class.
sl@0
   181
	*/
sl@0
   182
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   183
	};	// TDiscoverer_MountDriveL_TransitionValidator
sl@0
   184
sl@0
   185
// ______________________________________________________________________________
sl@0
   186
//
sl@0
   187
/**
sl@0
   188
	@internalComponent
sl@0
   189
sl@0
   190
	Comments : Provide all the UnmountDriveUnit Test's specific
sl@0
   191
	validatation for the state of a transition before and after its execution.
sl@0
   192
	on the CDiscoverer test class for a transition.
sl@0
   193
 */
sl@0
   194
class TDiscoverer_UnmountDrive_TransitionValidator : public TTransitionValidator
sl@0
   195
	{
sl@0
   196
public:
sl@0
   197
	/**
sl@0
   198
		@fn				TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   199
		Intended Usage	:	
sl@0
   200
		@leave			KErrNoMemory
sl@0
   201
		@since			7.0
sl@0
   202
		@param			aUTContext The context within which this transition is executing
sl@0
   203
	 */
sl@0
   204
	inline TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   205
sl@0
   206
	/**
sl@0
   207
		@fn				ValidatePreConditions()
sl@0
   208
		Intended Usage	: Implemented by the developer to check the
sl@0
   209
						end state of the transition behaviour.
sl@0
   210
		Error Condition	: Invalid pre-conditions
sl@0
   211
		@since			7.0
sl@0
   212
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   213
		@pre 			TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
sl@0
   214
		@post			No change to the iUTContext class.
sl@0
   215
	*/
sl@0
   216
	virtual inline TBool ValidatePreConditions();
sl@0
   217
sl@0
   218
	/**
sl@0
   219
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   220
		Intended Usage	:	Implemented by the developer to check the
sl@0
   221
						end state of the transition behaviour.
sl@0
   222
						When overriding, if the transition calls an asynchronous function
sl@0
   223
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   224
						asynchronous function has been called and, secondly, after the 
sl@0
   225
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   226
						be used to distinguish between these two cases.
sl@0
   227
		Error Condition	: Invalid post-conditions.
sl@0
   228
		@since			7.0
sl@0
   229
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   230
						EAsyncCompleted if the function has completed.
sl@0
   231
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   232
		@pre 			TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
sl@0
   233
		@post			No change to the iUTContext class.
sl@0
   234
	*/
sl@0
   235
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   236
	};	// TDiscoverer_UnmountDrive_TransitionValidator
sl@0
   237
sl@0
   238
// ______________________________________________________________________________
sl@0
   239
//
sl@0
   240
/**
sl@0
   241
	@internalComponent
sl@0
   242
sl@0
   243
	Comments : Provide all the IsValidEntryUnit Test's specific
sl@0
   244
	validatation for the state of a transition before and after its execution.
sl@0
   245
	on the CDiscoverer test class for a transition.
sl@0
   246
 */
sl@0
   247
class TDiscoverer_IsValidEntry_TransitionValidator : public TTransitionValidator
sl@0
   248
	{
sl@0
   249
public:
sl@0
   250
	/**
sl@0
   251
		@fn				TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   252
		Intended Usage	:	
sl@0
   253
		@leave			KErrNoMemory
sl@0
   254
		@since			7.0
sl@0
   255
		@param			aUTContext The context within which this transition is executing
sl@0
   256
	 */
sl@0
   257
	inline TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   258
sl@0
   259
	/**
sl@0
   260
		@fn				ValidatePreConditions()
sl@0
   261
		Intended Usage	: Implemented by the developer to check the
sl@0
   262
						end state of the transition behaviour.
sl@0
   263
		Error Condition	: Invalid pre-conditions
sl@0
   264
		@since			7.0
sl@0
   265
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   266
		@pre 			TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
sl@0
   267
		@post			No change to the iUTContext class.
sl@0
   268
	*/
sl@0
   269
	virtual inline TBool ValidatePreConditions();
sl@0
   270
sl@0
   271
	/**
sl@0
   272
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   273
		Intended Usage	:	Implemented by the developer to check the
sl@0
   274
						end state of the transition behaviour.
sl@0
   275
						When overriding, if the transition calls an asynchronous function
sl@0
   276
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   277
						asynchronous function has been called and, secondly, after the 
sl@0
   278
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   279
						be used to distinguish between these two cases.
sl@0
   280
		Error Condition	: Invalid post-conditions.
sl@0
   281
		@since			7.0
sl@0
   282
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   283
						EAsyncCompleted if the function has completed.
sl@0
   284
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   285
		@pre 			TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
sl@0
   286
		@post			No change to the iUTContext class.
sl@0
   287
	*/
sl@0
   288
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   289
	};	// TDiscoverer_IsValidEntry_TransitionValidator
sl@0
   290
sl@0
   291
// ______________________________________________________________________________
sl@0
   292
//
sl@0
   293
/**
sl@0
   294
	@internalComponent
sl@0
   295
sl@0
   296
	Comments : Provide all the ProcessEntryLUnit Test's specific
sl@0
   297
	validatation for the state of a transition before and after its execution.
sl@0
   298
	on the CDiscoverer test class for a transition.
sl@0
   299
 */
sl@0
   300
class TDiscoverer_ProcessEntryL_TransitionValidator : public TTransitionValidator
sl@0
   301
	{
sl@0
   302
public:
sl@0
   303
	/**
sl@0
   304
		@fn				TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   305
		Intended Usage	:	
sl@0
   306
		@leave			KErrNoMemory
sl@0
   307
		@since			7.0
sl@0
   308
		@param			aUTContext The context within which this transition is executing
sl@0
   309
	 */
sl@0
   310
	inline TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   311
sl@0
   312
	/**
sl@0
   313
		@fn				ValidatePreConditions()
sl@0
   314
		Intended Usage	: Implemented by the developer to check the
sl@0
   315
						end state of the transition behaviour.
sl@0
   316
		Error Condition	: Invalid pre-conditions
sl@0
   317
		@since			7.0
sl@0
   318
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   319
		@pre 			TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
sl@0
   320
		@post			No change to the iUTContext class.
sl@0
   321
	*/
sl@0
   322
	virtual inline TBool ValidatePreConditions();
sl@0
   323
sl@0
   324
	/**
sl@0
   325
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   326
		Intended Usage	:	Implemented by the developer to check the
sl@0
   327
						end state of the transition behaviour.
sl@0
   328
						When overriding, if the transition calls an asynchronous function
sl@0
   329
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   330
						asynchronous function has been called and, secondly, after the 
sl@0
   331
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   332
						be used to distinguish between these two cases.
sl@0
   333
		Error Condition	: Invalid post-conditions.
sl@0
   334
		@since			7.0
sl@0
   335
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   336
						EAsyncCompleted if the function has completed.
sl@0
   337
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   338
		@pre 			TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
sl@0
   339
		@post			No change to the iUTContext class.
sl@0
   340
	*/
sl@0
   341
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   342
	};	// TDiscoverer_ProcessEntryL_TransitionValidator
sl@0
   343
sl@0
   344
// ______________________________________________________________________________
sl@0
   345
//
sl@0
   346
/**
sl@0
   347
	@internalComponent
sl@0
   348
sl@0
   349
	Comments : Provide all the CompleteNotificationProcessingUnit Test's specific
sl@0
   350
	validatation for the state of a transition before and after its execution.
sl@0
   351
	on the CDiscoverer test class for a transition.
sl@0
   352
 */
sl@0
   353
class TDiscoverer_CompleteNotificationProcessing_TransitionValidator : public TTransitionValidator
sl@0
   354
	{
sl@0
   355
public:
sl@0
   356
	/**
sl@0
   357
		@fn				TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   358
		Intended Usage	:	
sl@0
   359
		@leave			KErrNoMemory
sl@0
   360
		@since			7.0
sl@0
   361
		@param			aUTContext The context within which this transition is executing
sl@0
   362
	 */
sl@0
   363
	inline TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   364
sl@0
   365
	/**
sl@0
   366
		@fn				ValidatePreConditions()
sl@0
   367
		Intended Usage	: Implemented by the developer to check the
sl@0
   368
						end state of the transition behaviour.
sl@0
   369
		Error Condition	: Invalid pre-conditions
sl@0
   370
		@since			7.0
sl@0
   371
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   372
		@pre 			TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
sl@0
   373
		@post			No change to the iUTContext class.
sl@0
   374
	*/
sl@0
   375
	virtual inline TBool ValidatePreConditions();
sl@0
   376
sl@0
   377
	/**
sl@0
   378
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   379
		Intended Usage	:	Implemented by the developer to check the
sl@0
   380
						end state of the transition behaviour.
sl@0
   381
						When overriding, if the transition calls an asynchronous function
sl@0
   382
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   383
						asynchronous function has been called and, secondly, after the 
sl@0
   384
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   385
						be used to distinguish between these two cases.
sl@0
   386
		Error Condition	: Invalid post-conditions.
sl@0
   387
		@since			7.0
sl@0
   388
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   389
						EAsyncCompleted if the function has completed.
sl@0
   390
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   391
		@pre 			TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
sl@0
   392
		@post			No change to the iUTContext class.
sl@0
   393
	*/
sl@0
   394
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   395
	};	// TDiscoverer_CompleteNotificationProcessing_TransitionValidator
sl@0
   396
sl@0
   397
// ______________________________________________________________________________
sl@0
   398
//
sl@0
   399
/**
sl@0
   400
	@internalComponent
sl@0
   401
sl@0
   402
	Comments : Provide all the NotificationUnit Test's specific
sl@0
   403
	validatation for the state of a transition before and after its execution.
sl@0
   404
	on the CDiscoverer test class for a transition.
sl@0
   405
 */
sl@0
   406
class TDiscoverer_Notification_TransitionValidator : public TTransitionValidator
sl@0
   407
	{
sl@0
   408
public:
sl@0
   409
	/**
sl@0
   410
		@fn				TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   411
		Intended Usage	:	
sl@0
   412
		@leave			KErrNoMemory
sl@0
   413
		@since			7.0
sl@0
   414
		@param			aUTContext The context within which this transition is executing
sl@0
   415
	 */
sl@0
   416
	inline TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   417
sl@0
   418
	/**
sl@0
   419
		@fn				ValidatePreConditions()
sl@0
   420
		Intended Usage	: Implemented by the developer to check the
sl@0
   421
						end state of the transition behaviour.
sl@0
   422
		Error Condition	: Invalid pre-conditions
sl@0
   423
		@since			7.0
sl@0
   424
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   425
		@pre 			TDiscoverer_Notification_TransitionValidator is fully constructed.
sl@0
   426
		@post			No change to the iUTContext class.
sl@0
   427
	*/
sl@0
   428
	virtual inline TBool ValidatePreConditions();
sl@0
   429
sl@0
   430
	/**
sl@0
   431
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   432
		Intended Usage	:	Implemented by the developer to check the
sl@0
   433
						end state of the transition behaviour.
sl@0
   434
						When overriding, if the transition calls an asynchronous function
sl@0
   435
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   436
						asynchronous function has been called and, secondly, after the 
sl@0
   437
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   438
						be used to distinguish between these two cases.
sl@0
   439
		Error Condition	: Invalid post-conditions.
sl@0
   440
		@since			7.0
sl@0
   441
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   442
						EAsyncCompleted if the function has completed.
sl@0
   443
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   444
		@pre 			TDiscoverer_Notification_TransitionValidator is fully constructed.
sl@0
   445
		@post			No change to the iUTContext class.
sl@0
   446
	*/
sl@0
   447
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   448
	};	// TDiscoverer_Notification_TransitionValidator
sl@0
   449
// ______________________________________________________________________________
sl@0
   450
//
sl@0
   451
/**
sl@0
   452
	@internalComponent
sl@0
   453
sl@0
   454
	Comments : Provide all the SuspendUnit Test's specific
sl@0
   455
	validatation for the state of a transition before and after its execution.
sl@0
   456
	on the CDiscoverer test class for a transition.
sl@0
   457
 */
sl@0
   458
class TDiscoverer_Suspend_TransitionValidator : public TTransitionValidator
sl@0
   459
	{
sl@0
   460
public:
sl@0
   461
	/**
sl@0
   462
		@fn				TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   463
		Intended Usage	:	
sl@0
   464
		@leave			KErrNoMemory
sl@0
   465
		@since			7.0
sl@0
   466
		@param			aUTContext The context within which this transition is executing
sl@0
   467
	 */
sl@0
   468
	inline TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   469
sl@0
   470
	/**
sl@0
   471
		@fn				ValidatePreConditions()
sl@0
   472
		Intended Usage	: Implemented by the developer to check the
sl@0
   473
						end state of the transition behaviour.
sl@0
   474
		Error Condition	: Invalid pre-conditions
sl@0
   475
		@since			7.0
sl@0
   476
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   477
		@pre 			TDiscoverer_Suspend_TransitionValidator is fully constructed.
sl@0
   478
		@post			No change to the iUTContext class.
sl@0
   479
	*/
sl@0
   480
	virtual inline TBool ValidatePreConditions();
sl@0
   481
sl@0
   482
	/**
sl@0
   483
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   484
		Intended Usage	:	Implemented by the developer to check the
sl@0
   485
						end state of the transition behaviour.
sl@0
   486
						When overriding, if the transition calls an asynchronous function
sl@0
   487
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   488
						asynchronous function has been called and, secondly, after the 
sl@0
   489
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   490
						be used to distinguish between these two cases.
sl@0
   491
		Error Condition	: Invalid post-conditions.
sl@0
   492
		@since			7.0
sl@0
   493
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   494
						EAsyncCompleted if the function has completed.
sl@0
   495
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   496
		@pre 			TDiscoverer_Suspend_TransitionValidator is fully constructed.
sl@0
   497
		@post			No change to the iUTContext class.
sl@0
   498
	*/
sl@0
   499
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   500
	};	// TDiscoverer_Suspend_TransitionValidator
sl@0
   501
sl@0
   502
sl@0
   503
// ______________________________________________________________________________
sl@0
   504
//
sl@0
   505
/**
sl@0
   506
	@internalComponent
sl@0
   507
sl@0
   508
	Comments : Provide all the ResumeUnit Test's specific
sl@0
   509
	validatation for the state of a transition before and after its execution.
sl@0
   510
	on the CDiscoverer test class for a transition.
sl@0
   511
 */
sl@0
   512
class TDiscoverer_Resume_TransitionValidator : public TTransitionValidator
sl@0
   513
	{
sl@0
   514
public:
sl@0
   515
	/**
sl@0
   516
		@fn				TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   517
		Intended Usage	:	
sl@0
   518
		@leave			KErrNoMemory
sl@0
   519
		@since			7.0
sl@0
   520
		@param			aUTContext The context within which this transition is executing
sl@0
   521
	 */
sl@0
   522
	inline TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   523
sl@0
   524
	/**
sl@0
   525
		@fn				ValidatePreConditions()
sl@0
   526
		Intended Usage	: Implemented by the developer to check the
sl@0
   527
						end state of the transition behaviour.
sl@0
   528
		Error Condition	: Invalid pre-conditions
sl@0
   529
		@since			7.0
sl@0
   530
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   531
		@pre 			TDiscoverer_Resume_TransitionValidator is fully constructed.
sl@0
   532
		@post			No change to the iUTContext class.
sl@0
   533
	*/
sl@0
   534
	virtual inline TBool ValidatePreConditions();
sl@0
   535
sl@0
   536
	/**
sl@0
   537
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   538
		Intended Usage	:	Implemented by the developer to check the
sl@0
   539
						end state of the transition behaviour.
sl@0
   540
						When overriding, if the transition calls an asynchronous function
sl@0
   541
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   542
						asynchronous function has been called and, secondly, after the 
sl@0
   543
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   544
						be used to distinguish between these two cases.
sl@0
   545
		Error Condition	: Invalid post-conditions.
sl@0
   546
		@since			7.0
sl@0
   547
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   548
						EAsyncCompleted if the function has completed.
sl@0
   549
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   550
		@pre 			TDiscoverer_Resume_TransitionValidator is fully constructed.
sl@0
   551
		@post			No change to the iUTContext class.
sl@0
   552
	*/
sl@0
   553
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   554
	};	// TDiscoverer_Resume_TransitionValidator
sl@0
   555
sl@0
   556
// ______________________________________________________________________________
sl@0
   557
//
sl@0
   558
/**
sl@0
   559
	@internalComponent
sl@0
   560
sl@0
   561
	Comments : Provide all the ScanDirectoryUnit Test's specific
sl@0
   562
	validatation for the state of a transition before and after its execution.
sl@0
   563
	on the CDiscoverer test class for a transition.
sl@0
   564
 */
sl@0
   565
class TDiscoverer_ScanDirectory_TransitionValidator : public TTransitionValidator
sl@0
   566
	{
sl@0
   567
public:
sl@0
   568
	/**
sl@0
   569
		@fn				TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   570
		Intended Usage	:	
sl@0
   571
		@leave			KErrNoMemory
sl@0
   572
		@since			7.0
sl@0
   573
		@param			aUTContext The context within which this transition is executing
sl@0
   574
	 */
sl@0
   575
	inline TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   576
sl@0
   577
	/**
sl@0
   578
		@fn				ValidatePreConditions()
sl@0
   579
		Intended Usage	: Implemented by the developer to check the
sl@0
   580
						end state of the transition behaviour.
sl@0
   581
		Error Condition	: Invalid pre-conditions
sl@0
   582
		@since			7.0
sl@0
   583
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   584
		@pre 			TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
sl@0
   585
		@post			No change to the iUTContext class.
sl@0
   586
	*/
sl@0
   587
	virtual inline TBool ValidatePreConditions();
sl@0
   588
sl@0
   589
	/**
sl@0
   590
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   591
		Intended Usage	:	Implemented by the developer to check the
sl@0
   592
						end state of the transition behaviour.
sl@0
   593
						When overriding, if the transition calls an asynchronous function
sl@0
   594
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   595
						asynchronous function has been called and, secondly, after the 
sl@0
   596
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   597
						be used to distinguish between these two cases.
sl@0
   598
		Error Condition	: Invalid post-conditions.
sl@0
   599
		@since			7.0
sl@0
   600
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   601
						EAsyncCompleted if the function has completed.
sl@0
   602
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   603
		@pre 			TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
sl@0
   604
		@post			No change to the iUTContext class.
sl@0
   605
	*/
sl@0
   606
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   607
	};	// TDiscoverer_ScanDirectory_TransitionValidator
sl@0
   608
sl@0
   609
// ______________________________________________________________________________
sl@0
   610
//
sl@0
   611
/**
sl@0
   612
	@internalComponent
sl@0
   613
sl@0
   614
	Comments : Provide all the ScanDirectoryCancelUnit Test's specific
sl@0
   615
	validatation for the state of a transition before and after its execution.
sl@0
   616
	on the CDiscoverer test class for a transition.
sl@0
   617
 */
sl@0
   618
class TDiscoverer_ScanDirectoryCancel_TransitionValidator : public TTransitionValidator
sl@0
   619
	{
sl@0
   620
public:
sl@0
   621
	/**
sl@0
   622
		@fn				TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   623
		Intended Usage	:	
sl@0
   624
		@leave			KErrNoMemory
sl@0
   625
		@since			7.0
sl@0
   626
		@param			aUTContext The context within which this transition is executing
sl@0
   627
	 */
sl@0
   628
	inline TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   629
sl@0
   630
	/**
sl@0
   631
		@fn				ValidatePreConditions()
sl@0
   632
		Intended Usage	: Implemented by the developer to check the
sl@0
   633
						end state of the transition behaviour.
sl@0
   634
		Error Condition	: Invalid pre-conditions
sl@0
   635
		@since			7.0
sl@0
   636
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   637
		@pre 			TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
sl@0
   638
		@post			No change to the iUTContext class.
sl@0
   639
	*/
sl@0
   640
	virtual inline TBool ValidatePreConditions();
sl@0
   641
sl@0
   642
	/**
sl@0
   643
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   644
		Intended Usage	:	Implemented by the developer to check the
sl@0
   645
						end state of the transition behaviour.
sl@0
   646
						When overriding, if the transition calls an asynchronous function
sl@0
   647
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   648
						asynchronous function has been called and, secondly, after the 
sl@0
   649
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   650
						be used to distinguish between these two cases.
sl@0
   651
		Error Condition	: Invalid post-conditions.
sl@0
   652
		@since			7.0
sl@0
   653
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   654
						EAsyncCompleted if the function has completed.
sl@0
   655
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   656
		@pre 			TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
sl@0
   657
		@post			No change to the iUTContext class.
sl@0
   658
	*/
sl@0
   659
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   660
	};	// TDiscoverer_ScanDirectoryCancel_TransitionValidator
sl@0
   661
sl@0
   662
// ______________________________________________________________________________
sl@0
   663
//
sl@0
   664
/**
sl@0
   665
	@internalComponent
sl@0
   666
	
sl@0
   667
	Comments : Provide all the ScanDirectoryIncrementUnit Test's specific
sl@0
   668
	validatation for the state of a transition before and after its execution.
sl@0
   669
	on the CDiscoverer test class for a transition.
sl@0
   670
 */
sl@0
   671
class TDiscoverer_ScanDirectoryIncrement_TransitionValidator : public TTransitionValidator
sl@0
   672
	{
sl@0
   673
public:
sl@0
   674
	/**
sl@0
   675
		@fn				TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   676
		Intended Usage	:	
sl@0
   677
		@leave			KErrNoMemory
sl@0
   678
		@since			7.0
sl@0
   679
		@param			aUTContext The context within which this transition is executing
sl@0
   680
	 */
sl@0
   681
	inline TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   682
sl@0
   683
	/**
sl@0
   684
		@fn				ValidatePreConditions()
sl@0
   685
		Intended Usage	: Implemented by the developer to check the
sl@0
   686
						end state of the transition behaviour.
sl@0
   687
		Error Condition	: Invalid pre-conditions
sl@0
   688
		@since			7.0
sl@0
   689
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   690
		@pre 			TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
sl@0
   691
		@post			No change to the iUTContext class.
sl@0
   692
	*/
sl@0
   693
	virtual inline TBool ValidatePreConditions();
sl@0
   694
sl@0
   695
	/**
sl@0
   696
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   697
		Intended Usage	:	Implemented by the developer to check the
sl@0
   698
						end state of the transition behaviour.
sl@0
   699
						When overriding, if the transition calls an asynchronous function
sl@0
   700
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   701
						asynchronous function has been called and, secondly, after the 
sl@0
   702
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   703
						be used to distinguish between these two cases.
sl@0
   704
		Error Condition	: Invalid post-conditions.
sl@0
   705
		@since			7.0
sl@0
   706
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   707
						EAsyncCompleted if the function has completed.
sl@0
   708
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   709
		@pre 			TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
sl@0
   710
		@post			No change to the iUTContext class.
sl@0
   711
	*/
sl@0
   712
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   713
	};	// TDiscoverer_ScanDirectoryIncrement_TransitionValidator
sl@0
   714
sl@0
   715
#include "DiscovererTransitionValidation.inl"
sl@0
   716
sl@0
   717
#endif		// __DISCOVERERTRANSITIONVALIDATION_H__
sl@0
   718