os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitions.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definitions of the transition classes upon the CComponentInfo class methods.
    15 // 
    16 //
    17 
    18 #ifndef __COMPONENTINFOTRANSITIONS_H__
    19 #define __COMPONENTINFOTRANSITIONS_H__
    20 
    21 #include "TestUtilities.h"
    22 #include "StateAccessor.h"
    23 #include "LeakTestTransition.h"
    24 #include <ecom/test_bed/datalogger.h>
    25 #include "ComponentInfo.h"
    26 #include "ComponentInfoStateAccessor.h"
    27 #include <ecom/test_bed/unittest.h>
    28 
    29 // Global function typedef declaration of function provided by a test module of the component
    30 // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
    31 typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
    32 
    33 #define CTransitionType CLeakTestTransition
    34 
    35 // ______________________________________________________________________________
    36 //
    37 /**
    38 	@internalComponent
    39 
    40 	Comments : Provide all the CComponentInfo specific
    41 	parameters and behaviour on the CComponentInfo
    42 	test class for a transition.
    43  */
    44 class CComponentInfo_UnitTestContext : public CUnitTestContext
    45 	{
    46 public:
    47 	/**
    48 		@fn				CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
    49 														MStateAccessor& aStateAccessor,
    50 														MTransitionObserver& aObserver)
    51 		Intended Usage	: Default constructor.
    52 		Error Condition	: None. 
    53 		@since			7.0
    54 		@param			aDataLogger The output logging object.
    55 		@param			aObserver The observer of this UnitTest's Transitions.
    56 		@param			aStateAccessor WhiteBox state access to the CComponentInfo class under test.
    57 		@pre 			None.
    58 		@post			CComponentInfo_UnitTestContext is fully constructed, and initialised.
    59 	*/
    60 	inline CComponentInfo_UnitTestContext(CDataLogger& aDataLogger,
    61 										MStateAccessor& aStateAccessor,
    62 										MTransitionObserver& aObserver);
    63 
    64 	/**
    65 		@fn				~CComponentInfo_UnitTestContext()
    66 		Intended Usage	: Default Destructor
    67 		@since			7.0
    68 		@pre 			CComponentInfo_UnitTestContext is fully constructed.
    69 		@post			CComponentInfo_UnitTestContext is fully destroyed
    70 		*/
    71 		virtual inline ~CComponentInfo_UnitTestContext();
    72 
    73 	/** The instance of the class under test */
    74 	CComponentInfo* iComponentInfo;
    75 	/** The directory entry for a dll */
    76 	ComponentTesterInitialiserLC iEntryFunc;
    77 	/** A TEntry to check that the correct directory for the test component is found */
    78 	ComponentTesterInitialiserLC iEntryFuncPostCheck;
    79 	/** The array of unit tests for the component under test */
    80 	RPointerArray<CUnitTestInfo>* iTestInfoArray;
    81 	/** Used to check that the correct list of unit tests is found for a particular component */
    82 	const RPointerArray<CUnitTestInfo>* iTestInfoArrayPostCheck;
    83 	/** Flag indicating whether we have passed ownership of iEntry & iTestInfoArray
    84 	to the CComponentInfo */
    85 	TBool iOwnParams;
    86 	}; // CComponentInfo_UnitTestContext
    87 
    88 // ______________________________________________________________________________
    89 //
    90 /**
    91 	@internalComponent
    92 
    93 	Comments : Transition test of the CComponentInfo::NewL method.
    94  */
    95 class CComponentInfo_NewL_Transition : public CTransitionType
    96 	{
    97 public:
    98 	/**
    99 		@fn				CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
   100 																	TTransitionValidator& aValidator)
   101 		Intended Usage	: Standard c'tor method.
   102 		Error Condition	: None.
   103 		@since			7.0
   104 		@param			aUTContext The context this transition is operating in.
   105 		@param			aValidator Used for checking the pre & post conditions of the test object.
   106 		@pre 			None.
   107 		@post			CComponentInfo_NewL_Transition is fully constructed.
   108 	*/
   109 	CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
   110 													TTransitionValidator& aValidator);
   111 	/**
   112 		@fn				TransitMethodL()
   113 		Intended Usage	: To execute the CComponentInfo::NewL method for the test harness.
   114 		Error Condition	: Leaves with an error code.
   115 		@leave  		KErrNoMemory, (@see CComponentInfo::NewL)
   116 		@since			7.0
   117 		@return			None
   118 		@pre 			CComponentInfo_NewL_Transition is fully constructed.
   119 		@post			No change in the CComponentInfo_NewL_Transition apart
   120 						from iComponentInfo, which may have changed state.
   121 						(@see CComponentInfo::NewL post-condition) for iComponentInfo's new state.
   122 	*/
   123 	inline void TransitMethodL();
   124 
   125 	/**
   126 		@fn				Context() const
   127 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   128 		Error Condition	: None.
   129 		@since			7.0
   130 		@return			The unit test context cast to a CComponentInfo_UnitTestContext
   131 		@pre 			iUTContext is a valid CComponentInfo_UnitTestContext.
   132 		@post			No change in the CComponentInfo_NewL_Transition
   133 	*/
   134 	inline CComponentInfo_UnitTestContext& Context() const;
   135 	};	// CComponentInfo_NewL_Transition
   136 
   137 // ______________________________________________________________________________
   138 //
   139 /**
   140 	@internalComponent
   141 
   142 	Comments : Transition test of the CComponentInfo::Dtor method.
   143  */
   144 class CComponentInfo_Dtor_Transition : public CTransition
   145 	{
   146 public:
   147 	/**
   148 		@fn				CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
   149 																	TTransitionValidator& aValidator)
   150 		Intended Usage	: Standard c'tor method.
   151 		Error Condition	: None.
   152 		@since			7.0
   153 		@param			aUTContext The context this transition is operating in.
   154 		@param			aValidator Used for checking the pre & post conditions of the test object.
   155 		@pre 			None.
   156 		@post			CComponentInfo_Dtor_Transition is fully constructed.
   157 	*/
   158 	CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
   159 													TTransitionValidator& aValidator);
   160 	/**
   161 		@fn				TransitMethodL()
   162 		Intended Usage	: To execute the CComponentInfo::Dtor method for the test harness.
   163 		Error Condition	: Leaves with an error code.
   164 		@leave  		KErrNoMemory, (@see CComponentInfo::Dtor)
   165 		@since			7.0
   166 		@return			None
   167 		@pre 			CComponentInfo_Dtor_Transition is fully constructed.
   168 		@post			No change in the CComponentInfo_Dtor_Transition apart
   169 						from iComponentInfo, which may have changed state.
   170 						(@see CComponentInfo::Dtor post-condition) for iComponentInfo's new state.
   171 	*/
   172 	inline void TransitMethodL();
   173 
   174 	/**
   175 		@fn				Context() const
   176 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   177 		Error Condition	: None.
   178 		@since			7.0
   179 		@return			The unit test context cast to a CComponentInfo_UnitTestContext
   180 		@pre 			iUTContext is a valid CComponentInfo_UnitTestContext.
   181 		@post			No change in the CComponentInfo_Dtor_Transition
   182 	*/
   183 	inline CComponentInfo_UnitTestContext& Context() const;
   184 	};	// CComponentInfo_Dtor_Transition
   185 
   186 // ______________________________________________________________________________
   187 //
   188 /**
   189 	@internalComponent
   190 
   191 	Comments : Transition test of the CComponentInfo::Entry method.
   192  */
   193 class CComponentInfo_Entry_Transition : public CTransition
   194 	{
   195 public:
   196 	/**
   197 		@fn				CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
   198 																	TTransitionValidator& aValidator)
   199 		Intended Usage	: Standard c'tor method.
   200 		Error Condition	: None.
   201 		@since			7.0
   202 		@param			aUTContext The context this transition is operating in.
   203 		@param			aValidator Used for checking the pre & post conditions of the test object.
   204 		@pre 			None.
   205 		@post			CComponentInfo_Entry_Transition is fully constructed.
   206 	*/
   207 	CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
   208 													TTransitionValidator& aValidator);
   209 	/**
   210 		@fn				TransitMethodL()
   211 		Intended Usage	: To execute the CComponentInfo::Entry method for the test harness.
   212 		Error Condition	: Leaves with an error code.
   213 		@leave  		KErrNoMemory, (@see CComponentInfo::Entry)
   214 		@since			7.0
   215 		@return			None
   216 		@pre 			CComponentInfo_Entry_Transition is fully constructed.
   217 		@post			No change in the CComponentInfo_Entry_Transition apart
   218 						from iComponentInfo, which may have changed state.
   219 						(@see CComponentInfo::Entry post-condition) for iComponentInfo's new state.
   220 	*/
   221 	inline void TransitMethodL();
   222 
   223 	/**
   224 		@fn				Context() const
   225 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   226 		Error Condition	: None.
   227 		@since			7.0
   228 		@return			The unit test context cast to a CComponentInfo_UnitTestContext
   229 		@pre 			iUTContext is a valid CComponentInfo_UnitTestContext.
   230 		@post			No change in the CComponentInfo_Entry_Transition
   231 	*/
   232 	inline CComponentInfo_UnitTestContext& Context() const;
   233 	};	// CComponentInfo_Entry_Transition
   234 
   235 // ______________________________________________________________________________
   236 //
   237 /**
   238 	@internalComponent
   239 
   240 	Comments : Transition test of the CComponentInfo::UnitTestsInfo method.
   241  */
   242 class CComponentInfo_UnitTestsInfo_Transition : public CTransition
   243 	{
   244 public:
   245 	/**
   246 		@fn				CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
   247 																	TTransitionValidator& aValidator)
   248 		Intended Usage	: Standard c'tor method.
   249 		Error Condition	: None.
   250 		@since			7.0
   251 		@param			aUTContext The context this transition is operating in.
   252 		@param			aValidator Used for checking the pre & post conditions of the test object.
   253 		@pre 			None.
   254 		@post			CComponentInfo_UnitTestsInfo_Transition is fully constructed.
   255 	*/
   256 	CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
   257 													TTransitionValidator& aValidator);
   258 	/**
   259 		@fn				TransitMethodL()
   260 		Intended Usage	: To execute the CComponentInfo::UnitTestsInfo method for the test harness.
   261 		Error Condition	: Leaves with an error code.
   262 		@leave  		KErrNoMemory, (@see CComponentInfo::UnitTestsInfo)
   263 		@since			7.0
   264 		@return			None
   265 		@pre 			CComponentInfo_UnitTestsInfo_Transition is fully constructed.
   266 		@post			No change in the CComponentInfo_UnitTestsInfo_Transition apart
   267 						from iComponentInfo, which may have changed state.
   268 						(@see CComponentInfo::UnitTestsInfo post-condition) for iComponentInfo's new state.
   269 	*/
   270 	inline void TransitMethodL();
   271 
   272 	/**
   273 		@fn				Context() const
   274 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   275 		Error Condition	: None.
   276 		@since			7.0
   277 		@return			The unit test context cast to a CComponentInfo_UnitTestContext
   278 		@pre 			iUTContext is a valid CComponentInfo_UnitTestContext.
   279 		@post			No change in the CComponentInfo_UnitTestsInfo_Transition
   280 	*/
   281 	inline CComponentInfo_UnitTestContext& Context() const;
   282 	};	// CComponentInfo_UnitTestsInfo_Transition
   283 
   284 
   285 // Add additional Transition class definitions here...
   286 
   287 #include "ComponentInfoTransitions.inl"
   288 
   289 #include "ComponentInfoUnitTestContext.inl"
   290 
   291 #endif // __COMPONENTINFOTRANSITIONS_H__
   292