os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.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 CTestController class methods.
    15 // 
    16 //
    17 
    18 #ifndef __TESTCONTROLLERTRANSITIONS_H__
    19 #define __TESTCONTROLLERTRANSITIONS_H__
    20 
    21 #include "TestUtilities.h"
    22 #include "StateAccessor.h"
    23 #include "LeakTestTransition.h"
    24 #include <ecom/test_bed/datalogger.h>
    25 #include "TestController.h"
    26 #include "TestControllerStateAccessor.h"
    27 #include <ecom/test_bed/unittest.h>
    28 
    29 #define CTransitionType CLeakTestTransition
    30 
    31 // ______________________________________________________________________________
    32 //
    33 /**
    34 	@internalComponent
    35 
    36 	Comments : Provide all the CTestController specific
    37 	parameters and behaviour on the CTestController
    38 	test class for a transition.
    39  */
    40 class CTestController_UnitTestContext : public CUnitTestContext
    41 	{
    42 public:
    43 	/**
    44 		@fn				CTestController_UnitTestContext(CDataLogger& aDataLogger,
    45 														MStateAccessor& aStateAccessor,
    46 														MTransitionObserver& aObserver,
    47 														RFs& aFs)
    48 		Intended Usage	: Default constructor.
    49 		Error Condition	: None. 
    50 		@since			7.0
    51 		@param			aDataLogger The output logging object.
    52 		@param			aObserver The observer of this UnitTest's Transitions.
    53 		@param			aStateAccessor WhiteBox state access to the CTestController class under test.
    54 		@param			aFs A handle to the file server
    55 		@pre 			None.
    56 		@post			CTestController_UnitTestContext is fully constructed, and initialised.
    57 	*/
    58 	inline CTestController_UnitTestContext(CDataLogger& aDataLogger,
    59 										MStateAccessor& aStateAccessor,
    60 										MTransitionObserver& aObserver,
    61 										RFs& aFs);
    62 
    63 	/**
    64 		@fn				~CTestController_UnitTestContext()
    65 		Intended Usage	: Default Destructor
    66 		@since			7.0
    67 		@pre 			CTestController_UnitTestContext is fully constructed.
    68 		@post			CTestController_UnitTestContext is fully destroyed
    69 		*/
    70 		virtual inline ~CTestController_UnitTestContext();
    71 
    72 	/** The instance of the class under test */
    73 	CTestController* iTestController;
    74 	/** The active scheduler for the TestController to use */
    75 	CActiveScheduler* iScheduler;
    76 	/** An array of tests to be run */
    77 	RPointerArray<TTestInfo> iTests;
    78 	/** The logging info for the TestController to use */
    79 	TLoggingInfo* iLogInfo;
    80 	/** File server handle */
    81 	RFs iFs;
    82 
    83 	}; // CTestController_UnitTestContext
    84 
    85 // ______________________________________________________________________________
    86 //
    87 /**
    88 	@internalComponent
    89 
    90 	Comments : Transition test of the CTestController::NewL method.
    91  */
    92 class CTestController_NewL_Transition : public CTransitionType
    93 	{
    94 public:
    95 	/**
    96 		@fn				CTestController_NewL_Transition(CUnitTestContext& aUTContext,
    97 																	TTransitionValidator& aValidator)
    98 		Intended Usage	: Standard c'tor method.
    99 		Error Condition	: None.
   100 		@since			7.0
   101 		@param			aUTContext The context this transition is operating in.
   102 		@param			aValidator Used for checking the pre & post conditions of the test object.
   103 		@pre 			None.
   104 		@post			CTestController_NewL_Transition is fully constructed.
   105 	*/
   106 	CTestController_NewL_Transition(CUnitTestContext& aUTContext,
   107 													TTransitionValidator& aValidator);
   108 	/**
   109 		@fn				TransitMethodL()
   110 		Intended Usage	: To execute the CTestController::NewL method for the test harness.
   111 		Error Condition	: Leaves with an error code.
   112 		@leave  		KErrNoMemory, (@see CTestController::NewL)
   113 		@since			7.0
   114 		@return			None
   115 		@pre 			CTestController_NewL_Transition is fully constructed.
   116 		@post			No change in the CTestController_NewL_Transition apart
   117 						from iTestController, which may have changed state.
   118 						(@see CTestController::NewL post-condition) for iTestController's new state.
   119 	*/
   120 	inline void TransitMethodL();
   121 
   122 	/**
   123 		@fn				Context() const
   124 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   125 		Error Condition	: None.
   126 		@since			7.0
   127 		@return			The unit test context cast to a CTestController_UnitTestContext
   128 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   129 		@post			No change in the CTestController_NewL_Transition
   130 	*/
   131 	inline CTestController_UnitTestContext& Context() const;
   132 	};	// CTestController_NewL_Transition
   133 
   134 // ______________________________________________________________________________
   135 //
   136 /**
   137 	@internalComponent
   138  
   139 	Comments : Transition test of the CTestController::Dtor method.
   140  */
   141 class CTestController_Dtor_Transition : public CTransition
   142 	{
   143 public:
   144 	/**
   145 		@fn				CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
   146 																	TTransitionValidator& aValidator)
   147 		Intended Usage	: Standard c'tor method.
   148 		Error Condition	: None.
   149 		@since			7.0
   150 		@param			aUTContext The context this transition is operating in.
   151 		@param			aValidator Used for checking the pre & post conditions of the test object.
   152 		@pre 			None.
   153 		@post			CTestController_Dtor_Transition is fully constructed.
   154 	*/
   155 	CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
   156 													TTransitionValidator& aValidator);
   157 	/**
   158 		@fn				TransitMethodL()
   159 		Intended Usage	: To execute the CTestController::Dtor method for the test harness.
   160 		Error Condition	: Leaves with an error code.
   161 		@leave  		KErrNoMemory, (@see CTestController::Dtor)
   162 		@since			7.0
   163 		@return			None
   164 		@pre 			CTestController_Dtor_Transition is fully constructed.
   165 		@post			No change in the CTestController_Dtor_Transition apart
   166 						from iTestController, which may have changed state.
   167 						(@see CTestController::Dtor post-condition) for iTestController's new state.
   168 	*/
   169 	inline void TransitMethodL();
   170 
   171 	/**
   172 		@fn				Context() const
   173 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   174 		Error Condition	: None.
   175 		@since			7.0
   176 		@return			The unit test context cast to a CTestController_UnitTestContext
   177 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   178 		@post			No change in the CTestController_Dtor_Transition
   179 	*/
   180 	inline CTestController_UnitTestContext& Context() const;
   181 	};	// CTestController_Dtor_Transition
   182 
   183 // ______________________________________________________________________________
   184 //
   185 /**
   186 	@internalComponent
   187 
   188 	Comments : Transition test of the CTestController::ScanDriveL method.
   189  */
   190 class CTestController_ScanDriveL_Transition : public CTransitionType
   191 	{
   192 public:
   193 	/**
   194 		@fn				CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
   195 																	TTransitionValidator& aValidator)
   196 		Intended Usage	: Standard c'tor method.
   197 		Error Condition	: None.
   198 		@since			7.0
   199 		@param			aUTContext The context this transition is operating in.
   200 		@param			aValidator Used for checking the pre & post conditions of the test object.
   201 		@pre 			None.
   202 		@post			CTestController_ScanDriveL_Transition is fully constructed.
   203 	*/
   204 	CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
   205 													TTransitionValidator& aValidator);
   206 	/**
   207 		@fn				TransitMethodL()
   208 		Intended Usage	: To execute the CTestController::ScanDriveL method for the test harness.
   209 		Error Condition	: Leaves with an error code.
   210 		@leave  		KErrNoMemory, (@see CTestController::ScanDriveL)
   211 		@since			7.0
   212 		@return			None
   213 		@pre 			CTestController_ScanDriveL_Transition is fully constructed.
   214 		@post			No change in the CTestController_ScanDriveL_Transition apart
   215 						from iTestController, which may have changed state.
   216 						(@see CTestController::ScanDriveL post-condition) for iTestController's new state.
   217 	*/
   218 	inline void TransitMethodL();
   219 
   220 	/**
   221 		@fn				Context() const
   222 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   223 		Error Condition	: None.
   224 		@since			7.0
   225 		@return			The unit test context cast to a CTestController_UnitTestContext
   226 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   227 		@post			No change in the CTestController_ScanDriveL_Transition
   228 	*/
   229 	inline CTestController_UnitTestContext& Context() const;
   230 	};	// CTestController_ScanDriveL_Transition
   231 
   232 // ______________________________________________________________________________
   233 //
   234 /**
   235 	@internalComponent
   236 
   237 	Comments : Transition test of the CTestController::DiscoverTestsL method.
   238  */
   239 class CTestController_DiscoverTestsL_Transition : public CTransitionType
   240 	{
   241 public:
   242 	/**
   243 		@fn				CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
   244 																	TTransitionValidator& aValidator)
   245 		Intended Usage	: Standard c'tor method.
   246 		Error Condition	: None.
   247 		@since			7.0
   248 		@param			aUTContext The context this transition is operating in.
   249 		@param			aValidator Used for checking the pre & post conditions of the test object.
   250 		@pre 			None.
   251 		@post			CTestController_DiscoverTestsL_Transition is fully constructed.
   252 	*/
   253 	CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
   254 													TTransitionValidator& aValidator);
   255 	/**
   256 		@fn				TransitMethodL()
   257 		Intended Usage	: To execute the CTestController::DiscoverTestsL method for the test harness.
   258 		Error Condition	: Leaves with an error code.
   259 		@leave  		KErrNoMemory, (@see CTestController::DiscoverTestsL)
   260 		@since			7.0
   261 		@return			None
   262 		@pre 			CTestController_DiscoverTestsL_Transition is fully constructed.
   263 		@post			No change in the CTestController_DiscoverTestsL_Transition apart
   264 						from iTestController, which may have changed state.
   265 						(@see CTestController::DiscoverTestsL post-condition) for iTestController's new state.
   266 	*/
   267 	inline void TransitMethodL();
   268 
   269 	/**
   270 		@fn				Context() const
   271 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   272 		Error Condition	: None.
   273 		@since			7.0
   274 		@return			The unit test context cast to a CTestController_UnitTestContext
   275 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   276 		@post			No change in the CTestController_DiscoverTestsL_Transition
   277 	*/
   278 	inline CTestController_UnitTestContext& Context() const;
   279 	};	// CTestController_DiscoverTestsL_Transition
   280 
   281 // ______________________________________________________________________________
   282 //
   283 /**
   284 	@internalComponent
   285 
   286 	Comments : Transition test of the CTestController::FindComponents method.
   287  */
   288 class CTestController_FindComponents_Transition : public CTransition
   289 	{
   290 public:
   291 	/**
   292 		@fn				CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
   293 																	TTransitionValidator& aValidator)
   294 		Intended Usage	: Standard c'tor method.
   295 		Error Condition	: None.
   296 		@since			7.0
   297 		@param			aUTContext The context this transition is operating in.
   298 		@param			aValidator Used for checking the pre & post conditions of the test object.
   299 		@pre 			None.
   300 		@post			CTestController_FindComponents_Transition is fully constructed.
   301 	*/
   302 	CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
   303 													TTransitionValidator& aValidator);
   304 	/**
   305 		@fn				TransitMethodL()
   306 		Intended Usage	: To execute the CTestController::FindComponents method for the test harness.
   307 		Error Condition	: Leaves with an error code.
   308 		@leave  		KErrNoMemory, (@see CTestController::FindComponents)
   309 		@since			7.0
   310 		@return			None
   311 		@pre 			CTestController_FindComponents_Transition is fully constructed.
   312 		@post			No change in the CTestController_FindComponents_Transition apart
   313 						from iTestController, which may have changed state.
   314 						(@see CTestController::FindComponents post-condition) for iTestController's new state.
   315 	*/
   316 	inline void TransitMethodL();
   317 
   318 	/**
   319 		@fn				Context() const
   320 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   321 		Error Condition	: None.
   322 		@since			7.0
   323 		@return			The unit test context cast to a CTestController_UnitTestContext
   324 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   325 		@post			No change in the CTestController_FindComponents_Transition
   326 	*/
   327 	inline CTestController_UnitTestContext& Context() const;
   328 	};	// CTestController_FindComponents_Transition
   329 
   330 // ______________________________________________________________________________
   331 //
   332 /**
   333 	@internalComponent
   334 
   335 	Comments : Transition test of the CTestController::Start method.
   336  */
   337 class CTestController_Start_Transition : public CTransition
   338 	{
   339 public:
   340 	/**
   341 		@fn				CTestController_Start_Transition(CUnitTestContext& aUTContext,
   342 																	TTransitionValidator& aValidator)
   343 		Intended Usage	: Standard c'tor method.
   344 		Error Condition	: None.
   345 		@since			7.0
   346 		@param			aUTContext The context this transition is operating in.
   347 		@param			aValidator Used for checking the pre & post conditions of the test object.
   348 		@pre 			None.
   349 		@post			CTestController_Start_Transition is fully constructed.
   350 	*/
   351 	CTestController_Start_Transition(CUnitTestContext& aUTContext,
   352 													TTransitionValidator& aValidator);
   353 	/**
   354 		@fn				TransitMethodL()
   355 		Intended Usage	: To execute the CTestController::Start method for the test harness.
   356 		Error Condition	: Leaves with an error code.
   357 		@leave  		KErrNoMemory, (@see CTestController::StartL)
   358 		@since			7.0
   359 		@return			None
   360 		@pre 			CTestController_Start_Transition is fully constructed.
   361 		@post			No change in the CTestController_Start_Transition apart
   362 						from iTestController, which may have changed state.
   363 						(@see CTestController::Start post-condition) for iTestController's new state.
   364 	*/
   365 	inline void TransitMethodL();
   366 
   367 	/**
   368 		@fn				Context() const
   369 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   370 		Error Condition	: None.
   371 		@since			7.0
   372 		@return			The unit test context cast to a CTestController_UnitTestContext
   373 		@pre 			iUTContext is a valid CTestController_UnitTestContext.
   374 		@post			No change in the CTestController_Start_Transition
   375 	*/
   376 	inline CTestController_UnitTestContext& Context() const;
   377 	};	// CTestController_Start_Transition
   378 
   379 
   380 // Add additional Transition class definitions here...
   381 
   382 #include "TestControllerTransitions.inl"
   383 
   384 #include "TestControllerUnitTestContext.inl"
   385 
   386 #endif // __TESTCONTROLLERTRANSITIONS_H__
   387