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