os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverUnitTests.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 CResolver unit test classes.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __RESOLVERUNITTESTS_H__
sl@0
    19
#define __RESOLVERUNITTESTS_H__
sl@0
    20
sl@0
    21
#include "ResolverTransitions.h"
sl@0
    22
#include "ResolverStateAccessor.h"
sl@0
    23
#include "ResolverTransitionValidation.h"
sl@0
    24
sl@0
    25
// ______________________________________________________________________________
sl@0
    26
//
sl@0
    27
/**
sl@0
    28
	@internalComponent
sl@0
    29
sl@0
    30
	Comments : Unit Test for CreateAndDestroy on CDefaultResolver, the class under test.
sl@0
    31
 */
sl@0
    32
class CDefaultResolver_CreateAndDestroy_UnitTest : public CUnitTest
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	/**
sl@0
    36
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
    37
							MUnitTestObserver& aObserver)
sl@0
    38
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
    39
						cleanup stack.
sl@0
    40
		Error Condition	: Leaves with the error code.
sl@0
    41
		@leave  		KErrNoMemory
sl@0
    42
		@since			7.0
sl@0
    43
		@param			aDataLogger The output logging object.
sl@0
    44
		@param			aObserver The observer of this UnitTest.
sl@0
    45
		@return			CDefaultResolver_CreateAndDestroy_UnitTest* The constructed object.
sl@0
    46
		@pre 			None.
sl@0
    47
		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
    48
	 */
sl@0
    49
	static CDefaultResolver_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
    50
											MUnitTestObserver& aObserver);
sl@0
    51
sl@0
    52
	/**
sl@0
    53
		@fn				RunError(TInt aError)
sl@0
    54
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
    55
						to restore the CDefaultResolver_CreateAndDestroy_UnitTest
sl@0
    56
						object to a sensible state.
sl@0
    57
						(called by the Active Scheduler immediately before the Panic).
sl@0
    58
		Error Condition	: @see CUnitTest::RunError().
sl@0
    59
		@since			7.0
sl@0
    60
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
    61
						@see CUnitTest::RunError()
sl@0
    62
		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
    63
		@post			The object has been restored to a sensible state.
sl@0
    64
	 */
sl@0
    65
	inline TInt RunError(TInt aError);
sl@0
    66
sl@0
    67
	/**
sl@0
    68
		@fn				~CDefaultResolver_CreateAndDestroy_UnitTest()
sl@0
    69
		Intended Usage	: Standard Destructor.
sl@0
    70
		Error Condition	: None.	
sl@0
    71
		@since			7.0
sl@0
    72
		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
sl@0
    73
		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully destroyed.
sl@0
    74
	*/
sl@0
    75
	~CDefaultResolver_CreateAndDestroy_UnitTest();
sl@0
    76
sl@0
    77
/**
sl@0
    78
	@fn				PrepareUnitTestL()
sl@0
    79
	Intended Usage	: Called by test framework just before test is run to allow
sl@0
    80
					any test preparation to take place.
sl@0
    81
	Error Condition	: 
sl@0
    82
	@since			7.0
sl@0
    83
	@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
sl@0
    84
	@post			This unit test is ready to run.
sl@0
    85
*/
sl@0
    86
	void PrepareUnitTestL();
sl@0
    87
sl@0
    88
private:
sl@0
    89
	/**
sl@0
    90
		@fn				CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    91
														MUnitTestObserver& aObserver)
sl@0
    92
		Intended Usage	: Default constructor.
sl@0
    93
		Error Condition	: None. 
sl@0
    94
		@since			7.0
sl@0
    95
		@param			aDataLogger The output logging object.
sl@0
    96
		@param			aObserver The observer of this UnitTest.
sl@0
    97
		@param			aStateAccessor WhiteBox state access to the CDefaultResolver class.
sl@0
    98
		@pre 			None.
sl@0
    99
		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
sl@0
   100
	*/
sl@0
   101
	inline CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
   102
											MUnitTestObserver& aObserver);
sl@0
   103
sl@0
   104
	/**
sl@0
   105
		@fn				void ConstructL()
sl@0
   106
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   107
		to complete the object initialisation.
sl@0
   108
		Error Condition	: Leaves with an error code.
sl@0
   109
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   110
		@since			7.0
sl@0
   111
		@return			None 
sl@0
   112
		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
sl@0
   113
		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully initialised.
sl@0
   114
	*/
sl@0
   115
	void ConstructL();
sl@0
   116
sl@0
   117
	/**
sl@0
   118
	The context of the Unit Test.
sl@0
   119
	i.e The CDefaultResolver class tested by this UnitTest's transitions.
sl@0
   120
	 */
sl@0
   121
	CDefaultResolver_UnitTestContext* iUTContext;
sl@0
   122
	TDefaultResolver_StateAccessor*	iStateAccessor;
sl@0
   123
	// C'tor, d'tor, and method transition validators
sl@0
   124
	TDefaultResolver_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   125
	TDefaultResolver_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   126
	};	// CDefaultResolver_CreateAndDestroy_UnitTest
sl@0
   127
sl@0
   128
// ______________________________________________________________________________
sl@0
   129
//
sl@0
   130
/**
sl@0
   131
	@internalComponent
sl@0
   132
sl@0
   133
	Comments : Unit Test for IdentifyImplementation on CDefaultResolver, the class under test.
sl@0
   134
 */
sl@0
   135
class CDefaultResolver_IdentifyImplementation_UnitTest : public CUnitTest
sl@0
   136
	{
sl@0
   137
public:
sl@0
   138
	/**
sl@0
   139
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   140
							MUnitTestObserver& aObserver)
sl@0
   141
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   142
						cleanup stack.
sl@0
   143
		Error Condition	: Leaves with the error code.
sl@0
   144
		@leave  		KErrNoMemory
sl@0
   145
		@since			7.0
sl@0
   146
		@param			aDataLogger The output logging object.
sl@0
   147
		@param			aObserver The observer of this UnitTest.
sl@0
   148
		@return			CDefaultResolver_IdentifyImplementation_UnitTest* The constructed object.
sl@0
   149
		@pre 			None.
sl@0
   150
		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
sl@0
   151
	 */
sl@0
   152
	static CDefaultResolver_IdentifyImplementation_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   153
											MUnitTestObserver& aObserver);
sl@0
   154
sl@0
   155
	/**
sl@0
   156
		@fn				RunError(TInt aError)
sl@0
   157
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   158
						to restore the CDefaultResolver_IdentifyImplementation_UnitTest
sl@0
   159
						object to a sensible state.
sl@0
   160
						(called by the Active Scheduler immediately before the Panic).
sl@0
   161
		Error Condition	: @see CUnitTest::RunError().
sl@0
   162
		@since			7.0
sl@0
   163
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   164
						@see CUnitTest::RunError()
sl@0
   165
		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
sl@0
   166
		@post			The object has been restored to a sensible state.
sl@0
   167
	 */
sl@0
   168
	inline TInt RunError(TInt aError);
sl@0
   169
sl@0
   170
	/**
sl@0
   171
		@fn				~CDefaultResolver_IdentifyImplementation_UnitTest()
sl@0
   172
		Intended Usage	: Standard Destructor.
sl@0
   173
		Error Condition	: None.	
sl@0
   174
		@since			7.0
sl@0
   175
		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
sl@0
   176
		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully destroyed.
sl@0
   177
	*/
sl@0
   178
	~CDefaultResolver_IdentifyImplementation_UnitTest();
sl@0
   179
sl@0
   180
private:
sl@0
   181
	/**
sl@0
   182
		@fn				CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
sl@0
   183
														MUnitTestObserver& aObserver)
sl@0
   184
		Intended Usage	: Default constructor.
sl@0
   185
		Error Condition	: None. 
sl@0
   186
		@since			7.0
sl@0
   187
		@param			aDataLogger The output logging object.
sl@0
   188
		@param			aObserver The observer of this UnitTest.
sl@0
   189
		@param			aStateAccessor WhiteBox state access to the CDefaultResolver class.
sl@0
   190
		@pre 			None.
sl@0
   191
		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
sl@0
   192
	*/
sl@0
   193
	inline CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
sl@0
   194
											MUnitTestObserver& aObserver);
sl@0
   195
sl@0
   196
	/**
sl@0
   197
		@fn				void ConstructL()
sl@0
   198
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   199
		to complete the object initialisation.
sl@0
   200
		Error Condition	: Leaves with an error code.
sl@0
   201
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   202
		@since			7.0
sl@0
   203
		@return			None 
sl@0
   204
		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
sl@0
   205
		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully initialised.
sl@0
   206
	*/
sl@0
   207
	void ConstructL();
sl@0
   208
sl@0
   209
	/**
sl@0
   210
	The context of the Unit Test.
sl@0
   211
	i.e The CDefaultResolver class tested by this UnitTest's transitions.
sl@0
   212
	 */
sl@0
   213
	CDefaultResolver_UnitTestContext* iUTContext;
sl@0
   214
	TDefaultResolver_StateAccessor*	iStateAccessor;
sl@0
   215
	// C'tor, d'tor, and method transition validators
sl@0
   216
	TDefaultResolver_Ctor_TransitionValidator*		iCtorValidator;
sl@0
   217
	TDefaultResolver_Default_TransitionValidator*	iDefaultValidator;
sl@0
   218
	TDefaultResolver_Match_TransitionValidator*		iMatchValidator;
sl@0
   219
	TDefaultResolver_IdentifyImplementationL_TransitionValidator*	iIdentifyImplementationValidator;
sl@0
   220
	TDefaultResolver_Dtor_TransitionValidator*		iDtorValidator;
sl@0
   221
	};	// CDefaultResolver_IdentifyImplementation_UnitTest
sl@0
   222
sl@0
   223
#include "ResolverUnitTests.inl"
sl@0
   224
sl@0
   225
#endif		// __RESOLVERUNITTESTS_H__