os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarTransitionValidation.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 validation class definitions for the CRegistrar class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __REGISTRARTRANSITIONVALIDATION_H__
sl@0
    19
#define __REGISTRARTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
// ______________________________________________________________________________
sl@0
    22
//
sl@0
    23
/**
sl@0
    24
	@internalComponent
sl@0
    25
	Comments : Provide all the CtorUnit Test's specific
sl@0
    26
	validatation for the state of a transition before and after its execution.
sl@0
    27
	on the CRegistrar test class for a transition.
sl@0
    28
 */
sl@0
    29
class TRegistrar_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    30
	{
sl@0
    31
public:
sl@0
    32
	/**
sl@0
    33
		@fn				TRegistrar_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    34
		Intended Usage	:	
sl@0
    35
		@leave  		KErrNoMemory
sl@0
    36
		@since			7.0
sl@0
    37
		@param			aUTContext The context within which this transition is executing
sl@0
    38
	 */
sl@0
    39
	inline TRegistrar_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    40
sl@0
    41
	/**
sl@0
    42
		@fn				ValidatePreConditions()
sl@0
    43
		Intended Usage	: Implemented by the developer to check the
sl@0
    44
						end state of the transition behaviour.
sl@0
    45
		Error Condition	: Invalid pre-conditions
sl@0
    46
		@since			7.0
sl@0
    47
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
    48
		@pre 			TRegistrar_Ctor_TransitionValidator is fully constructed.
sl@0
    49
		@post			No change to the iUTContext class.
sl@0
    50
	*/
sl@0
    51
	virtual inline TBool ValidatePreConditions();
sl@0
    52
sl@0
    53
	/**
sl@0
    54
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
    55
		Intended Usage	:	Implemented by the developer to check the
sl@0
    56
						end state of the transition behaviour.
sl@0
    57
						When overriding, if the transition calls an asynchronous function
sl@0
    58
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
    59
						asynchronous function has been called and, secondly, after the 
sl@0
    60
						asynchronous request has completed. The parameter aAsyncState can
sl@0
    61
						be used to distinguish between these two cases.
sl@0
    62
		Error Condition	: Invalid post-conditions.
sl@0
    63
		@since			7.0
sl@0
    64
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
    65
						EAsyncCompleted if the function has completed.
sl@0
    66
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
    67
		@pre 			TRegistrar_Ctor_TransitionValidator is fully constructed.
sl@0
    68
		@post			No change to the iUTContext class.
sl@0
    69
	*/
sl@0
    70
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
    71
	};	// TRegistrar_Ctor_TransitionValidator
sl@0
    72
sl@0
    73
// ______________________________________________________________________________
sl@0
    74
//
sl@0
    75
/**
sl@0
    76
	@internalComponent
sl@0
    77
	Comments : Provide all the DtorUnit Test's specific
sl@0
    78
	validatation for the state of a transition before and after its execution.
sl@0
    79
	on the CRegistrar test class for a transition.
sl@0
    80
 */
sl@0
    81
class TRegistrar_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    82
	{
sl@0
    83
public:
sl@0
    84
	/**
sl@0
    85
		@fn				TRegistrar_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    86
		Intended Usage	:	
sl@0
    87
		@leave  		KErrNoMemory
sl@0
    88
		@since			7.0
sl@0
    89
		@param			aUTContext The context within which this transition is executing
sl@0
    90
	 */
sl@0
    91
	inline TRegistrar_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    92
sl@0
    93
	/**
sl@0
    94
		@fn				ValidatePreConditions()
sl@0
    95
		Intended Usage	: Implemented by the developer to check the
sl@0
    96
						end state of the transition behaviour.
sl@0
    97
		Error Condition	: Invalid pre-conditions
sl@0
    98
		@since			7.0
sl@0
    99
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   100
		@pre 			TRegistrar_Dtor_TransitionValidator is fully constructed.
sl@0
   101
		@post			No change to the iUTContext class.
sl@0
   102
	*/
sl@0
   103
	virtual inline TBool ValidatePreConditions();
sl@0
   104
sl@0
   105
	/**
sl@0
   106
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   107
		Intended Usage	:	Implemented by the developer to check the
sl@0
   108
						end state of the transition behaviour.
sl@0
   109
						When overriding, if the transition calls an asynchronous function
sl@0
   110
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   111
						asynchronous function has been called and, secondly, after the 
sl@0
   112
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   113
						be used to distinguish between these two cases.
sl@0
   114
		Error Condition	: Invalid post-conditions.
sl@0
   115
		@since			7.0
sl@0
   116
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   117
						EAsyncCompleted if the function has completed.
sl@0
   118
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   119
		@pre 			TRegistrar_Dtor_TransitionValidator is fully constructed.
sl@0
   120
		@post			No change to the iUTContext class.
sl@0
   121
	*/
sl@0
   122
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   123
	};	// TRegistrar_Dtor_TransitionValidator
sl@0
   124
sl@0
   125
// ______________________________________________________________________________
sl@0
   126
//
sl@0
   127
/**
sl@0
   128
	@internalComponent
sl@0
   129
	Comments : Provide all the DefaultUnit Test's specific
sl@0
   130
	validatation for the state of a transition before and after its execution.
sl@0
   131
	on the CRegistrar test class for a transition.
sl@0
   132
 */
sl@0
   133
class TRegistrar_Default_TransitionValidator : public TTransitionValidator
sl@0
   134
	{
sl@0
   135
public:
sl@0
   136
	/**
sl@0
   137
		@fn				TRegistrar_Default_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   138
		Intended Usage	:	
sl@0
   139
		@leave  		KErrNoMemory
sl@0
   140
		@since			7.0
sl@0
   141
		@param			aUTContext The context within which this transition is executing
sl@0
   142
	 */
sl@0
   143
	inline TRegistrar_Default_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   144
sl@0
   145
	/**
sl@0
   146
		@fn				ValidatePreConditions()
sl@0
   147
		Intended Usage	: Implemented by the developer to check the
sl@0
   148
						end state of the transition behaviour.
sl@0
   149
		Error Condition	: Invalid pre-conditions
sl@0
   150
		@since			7.0
sl@0
   151
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   152
		@pre 			TRegistrar_Default_TransitionValidator is fully constructed.
sl@0
   153
		@post			No change to the iUTContext class.
sl@0
   154
	*/
sl@0
   155
	virtual inline TBool ValidatePreConditions();
sl@0
   156
sl@0
   157
	/**
sl@0
   158
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   159
		Intended Usage	:	Implemented by the developer to check the
sl@0
   160
						end state of the transition behaviour.
sl@0
   161
						When overriding, if the transition calls an asynchronous function
sl@0
   162
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   163
						asynchronous function has been called and, secondly, after the 
sl@0
   164
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   165
						be used to distinguish between these two cases.
sl@0
   166
		Error Condition	: Invalid post-conditions.
sl@0
   167
		@since			7.0
sl@0
   168
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   169
						EAsyncCompleted if the function has completed.
sl@0
   170
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   171
		@pre 			TRegistrar_Default_TransitionValidator is fully constructed.
sl@0
   172
		@post			No change to the iUTContext class.
sl@0
   173
	*/
sl@0
   174
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   175
	};	// TRegistrar_Default_TransitionValidator
sl@0
   176
sl@0
   177
// ______________________________________________________________________________
sl@0
   178
//
sl@0
   179
/**
sl@0
   180
	@internalComponent
sl@0
   181
	Comments : Provide all the RegisterDiscoveryLUnit Test's specific
sl@0
   182
	validatation for the state of a transition before and after its execution.
sl@0
   183
	on the CRegistrar test class for a transition.
sl@0
   184
 */
sl@0
   185
class TRegistrar_RegisterDiscoveryL_TransitionValidator : public TTransitionValidator
sl@0
   186
	{
sl@0
   187
public:
sl@0
   188
	/**
sl@0
   189
		@fn				TRegistrar_RegisterDiscoveryL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   190
		Intended Usage	:	
sl@0
   191
		@leave  		KErrNoMemory
sl@0
   192
		@since			7.0
sl@0
   193
		@param			aUTContext The context within which this transition is executing
sl@0
   194
	 */
sl@0
   195
	inline TRegistrar_RegisterDiscoveryL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   196
sl@0
   197
	/**
sl@0
   198
		@fn				ValidatePreConditions()
sl@0
   199
		Intended Usage	: Implemented by the developer to check the
sl@0
   200
						end state of the transition behaviour.
sl@0
   201
		Error Condition	: Invalid pre-conditions
sl@0
   202
		@since			7.0
sl@0
   203
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   204
		@pre 			TRegistrar_RegisterDiscoveryL_TransitionValidator is fully constructed.
sl@0
   205
		@post			No change to the iUTContext class.
sl@0
   206
	*/
sl@0
   207
	virtual inline TBool ValidatePreConditions();
sl@0
   208
sl@0
   209
	/**
sl@0
   210
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   211
		Intended Usage	:	Implemented by the developer to check the
sl@0
   212
						end state of the transition behaviour.
sl@0
   213
						When overriding, if the transition calls an asynchronous function
sl@0
   214
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   215
						asynchronous function has been called and, secondly, after the 
sl@0
   216
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   217
						be used to distinguish between these two cases.
sl@0
   218
		Error Condition	: Invalid post-conditions.
sl@0
   219
		@since			7.0
sl@0
   220
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   221
						EAsyncCompleted if the function has completed.
sl@0
   222
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   223
		@pre 			TRegistrar_RegisterDiscoveryL_TransitionValidator is fully constructed.
sl@0
   224
		@post			No change to the iUTContext class.
sl@0
   225
	*/
sl@0
   226
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   227
	};	// TRegistrar_RegisterDiscoveryL_TransitionValidator
sl@0
   228
sl@0
   229
// ______________________________________________________________________________
sl@0
   230
//
sl@0
   231
/**
sl@0
   232
	@internalComponent
sl@0
   233
	Comments : Provide all the DriveRemoved Transition's validatation.
sl@0
   234
 */
sl@0
   235
class TRegistrar_DriveRemoved_TransitionValidator : public TTransitionValidator
sl@0
   236
	{
sl@0
   237
public:
sl@0
   238
	/**
sl@0
   239
		@fn				TRegistrar_DriveRemoved_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   240
		Intended Usage	:	
sl@0
   241
		@leave  		KErrNoMemory
sl@0
   242
		@since			7.0
sl@0
   243
		@param			aUTContext The context within which this transition is executing
sl@0
   244
	 */
sl@0
   245
	inline TRegistrar_DriveRemoved_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   246
sl@0
   247
	/**
sl@0
   248
		@fn				ValidatePreConditions()
sl@0
   249
		Intended Usage	: Implemented by the developer to check the
sl@0
   250
						end state of the transition behaviour.
sl@0
   251
		Error Condition	: Invalid pre-conditions
sl@0
   252
		@since			7.0
sl@0
   253
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   254
		@pre 			TRegistrar_DriveRemoved_TransitionValidator is fully constructed.
sl@0
   255
		@post			No change to the iUTContext class.
sl@0
   256
	*/
sl@0
   257
	virtual inline TBool ValidatePreConditions();
sl@0
   258
sl@0
   259
	/**
sl@0
   260
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   261
		Intended Usage	:	Implemented by the developer to check the
sl@0
   262
						end state of the transition behaviour.
sl@0
   263
						When overriding, if the transition calls an asynchronous function
sl@0
   264
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   265
						asynchronous function has been called and, secondly, after the 
sl@0
   266
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   267
						be used to distinguish between these two cases.
sl@0
   268
		Error Condition	: Invalid post-conditions.
sl@0
   269
		@since			7.0
sl@0
   270
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   271
						EAsyncCompleted if the function has completed.
sl@0
   272
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   273
		@pre 			TRegistrar_DriveRemoved_TransitionValidator is fully constructed.
sl@0
   274
		@post			No change to the iUTContext class.
sl@0
   275
	*/
sl@0
   276
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   277
	};	// TRegistrar_DriveRemoved_TransitionValidator
sl@0
   278
sl@0
   279
// ______________________________________________________________________________
sl@0
   280
//
sl@0
   281
/**
sl@0
   282
	@internalComponent 
sl@0
   283
	Comments : Provide all the DriveRemoved Transition's validatation.
sl@0
   284
 */
sl@0
   285
class TRegistrar_CheckRegWhileDiscovering_TransitionValidator : public TTransitionValidator
sl@0
   286
	{
sl@0
   287
public:
sl@0
   288
	/**
sl@0
   289
		@fn				TRegistrar_CheckRegWhileDiscovering_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   290
		Intended Usage	:	
sl@0
   291
		@leave  		KErrNoMemory
sl@0
   292
		@since			7.0
sl@0
   293
		@param			aUTContext The context within which this transition is executing
sl@0
   294
	 */
sl@0
   295
	inline TRegistrar_CheckRegWhileDiscovering_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   296
sl@0
   297
	/**
sl@0
   298
		@fn				ValidatePreConditions()
sl@0
   299
		Intended Usage	: Implemented by the developer to check the
sl@0
   300
						end state of the transition behaviour.
sl@0
   301
		Error Condition	: Invalid pre-conditions
sl@0
   302
		@since			7.0
sl@0
   303
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   304
		@pre 			TRegistrar_CheckRegWhileDiscovering_TransitionValidator is fully constructed.
sl@0
   305
		@post			No change to the iUTContext class.
sl@0
   306
	*/
sl@0
   307
	virtual inline TBool ValidatePreConditions();
sl@0
   308
sl@0
   309
	/**
sl@0
   310
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   311
		Intended Usage	:	Implemented by the developer to check the
sl@0
   312
						end state of the transition behaviour.
sl@0
   313
						When overriding, if the transition calls an asynchronous function
sl@0
   314
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   315
						asynchronous function has been called and, secondly, after the 
sl@0
   316
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   317
						be used to distinguish between these two cases.
sl@0
   318
		Error Condition	: Invalid post-conditions.
sl@0
   319
		@since			7.0
sl@0
   320
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   321
						EAsyncCompleted if the function has completed.
sl@0
   322
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   323
		@pre 			TRegistrar_CheckRegWhileDiscovering_TransitionValidator is fully constructed.
sl@0
   324
		@post			No change to the iUTContext class.
sl@0
   325
	*/
sl@0
   326
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   327
	};	// TRegistrar_CheckRegWhileDiscovering_TransitionValidator
sl@0
   328
sl@0
   329
// ______________________________________________________________________________
sl@0
   330
//
sl@0
   331
/**
sl@0
   332
	@internalComponent 
sl@0
   333
	Comments : Provide all the DiscoveriesComplete Transition's validatation.
sl@0
   334
 */
sl@0
   335
class TRegistrar_NewLHasContent_TransitionValidator : public TTransitionValidator
sl@0
   336
	{
sl@0
   337
public:
sl@0
   338
	/**
sl@0
   339
		@fn				TRegistrar_NewLHasContent_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   340
		Intended Usage	:	
sl@0
   341
		@leave  		KErrNoMemory
sl@0
   342
		@since			7.0
sl@0
   343
		@param			aUTContext The context within which this transition is executing
sl@0
   344
	 */
sl@0
   345
	inline TRegistrar_NewLHasContent_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   346
sl@0
   347
	/**
sl@0
   348
		@fn				ValidatePreConditions()
sl@0
   349
		Intended Usage	: Implemented by the developer to check the
sl@0
   350
						end state of the transition behaviour.
sl@0
   351
		Error Condition	: Invalid pre-conditions
sl@0
   352
		@since			7.0
sl@0
   353
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   354
		@pre 			TRegistrar_NewLHasContent_TransitionValidator is fully constructed.
sl@0
   355
		@post			No change to the iUTContext class.
sl@0
   356
	*/
sl@0
   357
	virtual inline TBool ValidatePreConditions();
sl@0
   358
sl@0
   359
	/**
sl@0
   360
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   361
		Intended Usage	:	Implemented by the developer to check the
sl@0
   362
						end state of the transition behaviour.
sl@0
   363
						When overriding, if the transition calls an asynchronous function
sl@0
   364
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   365
						asynchronous function has been called and, secondly, after the 
sl@0
   366
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   367
						be used to distinguish between these two cases.
sl@0
   368
		Error Condition	: Invalid post-conditions.
sl@0
   369
		@since			7.0
sl@0
   370
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   371
						EAsyncCompleted if the function has completed.
sl@0
   372
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   373
		@pre 			TRegistrar_NewLHasContent_TransitionValidator is fully constructed.
sl@0
   374
		@post			No change to the iUTContext class.
sl@0
   375
	*/
sl@0
   376
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   377
	};	// TRegistrar_NewLHasContent_TransitionValidator
sl@0
   378
sl@0
   379
#include "RegistrarTransitionValidation.inl"
sl@0
   380
sl@0
   381
#endif		// __REGISTRARTRANSITIONVALIDATION_H__