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