os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoUnitTest.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoUnitTest.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,213 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The unit test class definitions for the CComponentInfo class.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __COMPONENTINFOUNITTEST_H__
    1.22 +#define __COMPONENTINFOUNITTEST_H__
    1.23 +
    1.24 +#include <ecom/test_bed/testbeddefinitions.h>
    1.25 +#include "ComponentInfoStateAccessor.h"
    1.26 +#include "ComponentInfoTransitionValidation.h"
    1.27 +#include "ComponentInfoTransitions.h"
    1.28 +
    1.29 +// ______________________________________________________________________________
    1.30 +//
    1.31 +/**
    1.32 +	@internalComponent
    1.33 +
    1.34 +	Comments : Unit Test for CreateAndDestroy on CComponentInfo, the class under test.
    1.35 + */
    1.36 +class CComponentInfo_CreateAndDestroy_UnitTest : public CUnitTest
    1.37 +	{
    1.38 +public:
    1.39 +	/**
    1.40 +		@fn				NewL(CDataLogger& aDataLogger,
    1.41 +							MUnitTestObserver& aObserver)
    1.42 +		Intended Usage	: Standard two-phase construction which leaves nothing on the
    1.43 +						cleanup stack.
    1.44 +		Error Condition	: Leaves with the error code.
    1.45 +		@leave  		KErrNoMemory
    1.46 +		@since			7.0
    1.47 +		@param			aDataLogger The output logging object.
    1.48 +		@param			aObserver The observer of this UnitTest.
    1.49 +		@return			CComponentInfo_CreateAndDestroy_UnitTest* The constructed object.
    1.50 +		@pre 			None.
    1.51 +		@post			CComponentInfo_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    1.52 +	 */
    1.53 +	static CComponentInfo_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
    1.54 +											MUnitTestObserver& aObserver);
    1.55 +
    1.56 +	/**
    1.57 +		@fn				RunError(TInt aError)
    1.58 +		Intended Usage	: Intercept the panic caused by a RunL leave,
    1.59 +						to restore the CComponentInfo_CreateAndDestroy_UnitTest
    1.60 +						object to a sensible state.
    1.61 +						(called by the Active Scheduler immediately before the Panic).
    1.62 +		Error Condition	: @see CUnitTest::RunError().
    1.63 +		@since			7.0
    1.64 +		@return			TInt KErrNone if cleanup successful, otherwise
    1.65 +						@see CUnitTest::RunError()
    1.66 +		@pre 			CComponentInfo_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    1.67 +		@post			The object has been restored to a sensible state.
    1.68 +	 */
    1.69 +	inline TInt RunError(TInt aError);
    1.70 +
    1.71 +	/**
    1.72 +		@fn				~CComponentInfo_CreateAndDestroy_UnitTest()
    1.73 +		Intended Usage	: Standard Destructor.
    1.74 +		Error Condition	: None.	
    1.75 +		@since			7.0
    1.76 +		@pre 			CComponentInfo_CreateAndDestroy_UnitTest is fully constructed.
    1.77 +		@post			CComponentInfo_CreateAndDestroy_UnitTest is fully destroyed.
    1.78 +	*/
    1.79 +	~CComponentInfo_CreateAndDestroy_UnitTest();
    1.80 +
    1.81 +private:
    1.82 +	/**
    1.83 +		@fn				CComponentInfo_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.84 +														MUnitTestObserver& aObserver)
    1.85 +		Intended Usage	: Default constructor.
    1.86 +		Error Condition	: None. 
    1.87 +		@since			7.0
    1.88 +		@param			aDataLogger The output logging object.
    1.89 +		@param			aObserver The observer of this UnitTest.
    1.90 +		@param			aStateAccessor WhiteBox state access to the CComponentInfo class.
    1.91 +		@pre 			None.
    1.92 +		@post			CComponentInfo_CreateAndDestroy_UnitTest is fully constructed.
    1.93 +	*/
    1.94 +	inline CComponentInfo_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.95 +											MUnitTestObserver& aObserver);
    1.96 +
    1.97 +	/**
    1.98 +		@fn				void ConstructL()
    1.99 +		Intended Usage	: Second phase of safe two phase construction, 
   1.100 +		to complete the object initialisation.
   1.101 +		Error Condition	: Leaves with an error code.
   1.102 +		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   1.103 +		@since			7.0
   1.104 +		@return			None 
   1.105 +		@pre 			CComponentInfo_CreateAndDestroy_UnitTest is fully constructed.
   1.106 +		@post			CComponentInfo_CreateAndDestroy_UnitTest is fully initialised.
   1.107 +	*/
   1.108 +	void ConstructL();
   1.109 +
   1.110 +	/**
   1.111 +	The context of the Unit Test.
   1.112 +	i.e The CComponentInfo class tested by this UnitTest's transitions.
   1.113 +	 */
   1.114 +	CComponentInfo_UnitTestContext* iUTContext;
   1.115 +	TComponentInfo_StateAccessor*	iStateAccessor;
   1.116 +	// C'tor, d'tor, and method transition validators
   1.117 +	TComponentInfo_Ctor_TransitionValidator*	iCtorValidator;
   1.118 +	TComponentInfo_Dtor_TransitionValidator*	iDtorValidator;
   1.119 +	};	// CComponentInfo_CreateAndDestroy_UnitTest
   1.120 +
   1.121 +// ______________________________________________________________________________
   1.122 +//
   1.123 +/**
   1.124 +	@internalComponent
   1.125 +
   1.126 +	Comments : Unit Test for RetrieveTestNames on CComponentInfo, the class under test.
   1.127 + */
   1.128 +class CComponentInfo_RetrieveTestNames_UnitTest : public CUnitTest
   1.129 +	{
   1.130 +public:
   1.131 +	/**
   1.132 +		@fn				NewL(CDataLogger& aDataLogger,
   1.133 +							MUnitTestObserver& aObserver)
   1.134 +		Intended Usage	: Standard two-phase construction which leaves nothing on the
   1.135 +						cleanup stack.
   1.136 +		Error Condition	: Leaves with the error code.
   1.137 +		@leave  		KErrNoMemory
   1.138 +		@since			7.0
   1.139 +		@param			aDataLogger The output logging object.
   1.140 +		@param			aObserver The observer of this UnitTest.
   1.141 +		@return			CComponentInfo_RetrieveTestNames_UnitTest* The constructed object.
   1.142 +		@pre 			None.
   1.143 +		@post			CComponentInfo_RetrieveTestNames_UnitTest is fully constructed, and initialised.
   1.144 +	 */
   1.145 +	static CComponentInfo_RetrieveTestNames_UnitTest* NewL(CDataLogger& aDataLogger,
   1.146 +											MUnitTestObserver& aObserver);
   1.147 +
   1.148 +	/**
   1.149 +		@fn				RunError(TInt aError)
   1.150 +		Intended Usage	: Intercept the panic caused by a RunL leave,
   1.151 +						to restore the CComponentInfo_RetrieveTestNames_UnitTest
   1.152 +						object to a sensible state.
   1.153 +						(called by the Active Scheduler immediately before the Panic).
   1.154 +		Error Condition	: @see CUnitTest::RunError().
   1.155 +		@since			7.0
   1.156 +		@return			TInt KErrNone if cleanup successful, otherwise
   1.157 +						@see CUnitTest::RunError()
   1.158 +		@pre 			CComponentInfo_RetrieveTestNames_UnitTest is fully constructed, and initialised.
   1.159 +		@post			The object has been restored to a sensible state.
   1.160 +	 */
   1.161 +	inline TInt RunError(TInt aError);
   1.162 +
   1.163 +	/**
   1.164 +		@fn				~CComponentInfo_RetrieveTestNames_UnitTest()
   1.165 +		Intended Usage	: Standard Destructor.
   1.166 +		Error Condition	: None.	
   1.167 +		@since			7.0
   1.168 +		@pre 			CComponentInfo_RetrieveTestNames_UnitTest is fully constructed.
   1.169 +		@post			CComponentInfo_RetrieveTestNames_UnitTest is fully destroyed.
   1.170 +	*/
   1.171 +	~CComponentInfo_RetrieveTestNames_UnitTest();
   1.172 +
   1.173 +private:
   1.174 +	/**
   1.175 +		@fn				CComponentInfo_RetrieveTestNames_UnitTest(CDataLogger& aDataLogger,
   1.176 +														MUnitTestObserver& aObserver)
   1.177 +		Intended Usage	: Default constructor.
   1.178 +		Error Condition	: None. 
   1.179 +		@since			7.0
   1.180 +		@param			aDataLogger The output logging object.
   1.181 +		@param			aObserver The observer of this UnitTest.
   1.182 +		@param			aStateAccessor WhiteBox state access to the CComponentInfo class.
   1.183 +		@pre 			None.
   1.184 +		@post			CComponentInfo_RetrieveTestNames_UnitTest is fully constructed.
   1.185 +	*/
   1.186 +	inline CComponentInfo_RetrieveTestNames_UnitTest(CDataLogger& aDataLogger,
   1.187 +											MUnitTestObserver& aObserver);
   1.188 +
   1.189 +	/**
   1.190 +		@fn				void ConstructL()
   1.191 +		Intended Usage	: Second phase of safe two phase construction, 
   1.192 +		to complete the object initialisation.
   1.193 +		Error Condition	: Leaves with an error code.
   1.194 +		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   1.195 +		@since			7.0
   1.196 +		@return			None 
   1.197 +		@pre 			CComponentInfo_RetrieveTestNames_UnitTest is fully constructed.
   1.198 +		@post			CComponentInfo_RetrieveTestNames_UnitTest is fully initialised.
   1.199 +	*/
   1.200 +	void ConstructL();
   1.201 +
   1.202 +	/**
   1.203 +	The context of the Unit Test.
   1.204 +	i.e The CComponentInfo class tested by this UnitTest's transitions.
   1.205 +	 */
   1.206 +	CComponentInfo_UnitTestContext* iUTContext;
   1.207 +	TComponentInfo_StateAccessor*	iStateAccessor;
   1.208 +	// C'tor, d'tor, and method transition validators
   1.209 +	TComponentInfo_Ctor_TransitionValidator*	iCtorValidator;
   1.210 +	TComponentInfo_Entry_TransitionValidator*	iEntryValidator;
   1.211 +	TComponentInfo_UnitTestsInfo_TransitionValidator*		iUnitTestsInfoValidator;
   1.212 +	TComponentInfo_Dtor_TransitionValidator*	iDtorValidator;
   1.213 +	};	// CComponentInfo_RetrieveTestNames_UnitTest
   1.214 +
   1.215 +
   1.216 +#endif	// __COMPONENTINFOUNITTEST_H__