sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The definitions of the transition classes upon the CTestController class methods. sl@0: // sl@0: // sl@0: sl@0: #ifndef __TESTCONTROLLERTRANSITIONS_H__ sl@0: #define __TESTCONTROLLERTRANSITIONS_H__ sl@0: sl@0: #include "TestUtilities.h" sl@0: #include "StateAccessor.h" sl@0: #include "LeakTestTransition.h" sl@0: #include sl@0: #include "TestController.h" sl@0: #include "TestControllerStateAccessor.h" sl@0: #include sl@0: sl@0: #define CTransitionType CLeakTestTransition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the CTestController specific sl@0: parameters and behaviour on the CTestController sl@0: test class for a transition. sl@0: */ sl@0: class CTestController_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver, sl@0: RFs& aFs) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest's Transitions. sl@0: @param aStateAccessor WhiteBox state access to the CTestController class under test. sl@0: @param aFs A handle to the file server sl@0: @pre None. sl@0: @post CTestController_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CTestController_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver, sl@0: RFs& aFs); sl@0: sl@0: /** sl@0: @fn ~CTestController_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CTestController_UnitTestContext is fully constructed. sl@0: @post CTestController_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CTestController_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: CTestController* iTestController; sl@0: /** The active scheduler for the TestController to use */ sl@0: CActiveScheduler* iScheduler; sl@0: /** An array of tests to be run */ sl@0: RPointerArray iTests; sl@0: /** The logging info for the TestController to use */ sl@0: TLoggingInfo* iLogInfo; sl@0: /** File server handle */ sl@0: RFs iFs; sl@0: sl@0: }; // CTestController_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::NewL method. sl@0: */ sl@0: class CTestController_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_NewL_Transition is fully constructed. sl@0: */ sl@0: CTestController_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_NewL_Transition is fully constructed. sl@0: @post No change in the CTestController_NewL_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::NewL post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_NewL_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::Dtor method. sl@0: */ sl@0: class CTestController_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_Dtor_Transition is fully constructed. sl@0: */ sl@0: CTestController_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_Dtor_Transition is fully constructed. sl@0: @post No change in the CTestController_Dtor_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::Dtor post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_Dtor_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::ScanDriveL method. sl@0: */ sl@0: class CTestController_ScanDriveL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_ScanDriveL_Transition is fully constructed. sl@0: */ sl@0: CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::ScanDriveL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::ScanDriveL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_ScanDriveL_Transition is fully constructed. sl@0: @post No change in the CTestController_ScanDriveL_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::ScanDriveL post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_ScanDriveL_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_ScanDriveL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::DiscoverTestsL method. sl@0: */ sl@0: class CTestController_DiscoverTestsL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_DiscoverTestsL_Transition is fully constructed. sl@0: */ sl@0: CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::DiscoverTestsL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::DiscoverTestsL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_DiscoverTestsL_Transition is fully constructed. sl@0: @post No change in the CTestController_DiscoverTestsL_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::DiscoverTestsL post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_DiscoverTestsL_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_DiscoverTestsL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::FindComponents method. sl@0: */ sl@0: class CTestController_FindComponents_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_FindComponents_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_FindComponents_Transition is fully constructed. sl@0: */ sl@0: CTestController_FindComponents_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::FindComponents method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::FindComponents) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_FindComponents_Transition is fully constructed. sl@0: @post No change in the CTestController_FindComponents_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::FindComponents post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_FindComponents_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_FindComponents_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CTestController::Start method. sl@0: */ sl@0: class CTestController_Start_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CTestController_Start_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CTestController_Start_Transition is fully constructed. sl@0: */ sl@0: CTestController_Start_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CTestController::Start method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CTestController::StartL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestController_Start_Transition is fully constructed. sl@0: @post No change in the CTestController_Start_Transition apart sl@0: from iTestController, which may have changed state. sl@0: (@see CTestController::Start post-condition) for iTestController's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CTestController_UnitTestContext sl@0: @pre iUTContext is a valid CTestController_UnitTestContext. sl@0: @post No change in the CTestController_Start_Transition sl@0: */ sl@0: inline CTestController_UnitTestContext& Context() const; sl@0: }; // CTestController_Start_Transition sl@0: sl@0: sl@0: // Add additional Transition class definitions here... sl@0: sl@0: #include "TestControllerTransitions.inl" sl@0: sl@0: #include "TestControllerUnitTestContext.inl" sl@0: sl@0: #endif // __TESTCONTROLLERTRANSITIONS_H__ sl@0: