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 CDataLogger class methods. sl@0: // sl@0: // sl@0: sl@0: #ifndef __DATALOGGERTRANSITIONS_H__ sl@0: #define __DATALOGGERTRANSITIONS_H__ sl@0: sl@0: #include "TestUtilities.h" sl@0: #include "StateAccessor.h" sl@0: #include "LeakTestTransition.h" sl@0: #include sl@0: #include "DataLoggerStateAccessor.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 CDataLogger specific sl@0: parameters and behaviour on the CDataLogger sl@0: test class for a transition. sl@0: */ sl@0: class CDataLogger_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver) 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 CDataLogger class under test. sl@0: @pre None. sl@0: @post CDataLogger_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CDataLogger_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver); sl@0: sl@0: /** sl@0: @fn ~CDataLogger_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CDataLogger_UnitTestContext is fully constructed. sl@0: @post CDataLogger_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CDataLogger_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: CDataLogger* iDataLogger; sl@0: /** The logging info to be used by the data logger */ sl@0: TLoggingInfo* iLoggingInfo; sl@0: /** The address of the start of the block to be logged */ sl@0: const TUint8* iAddress; sl@0: /** The number of bytes to be logged */ sl@0: TInt iLength; sl@0: /** The argument set to be logged */ sl@0: HBufC* iArg; sl@0: /** A narrow descriptor version of the argument set to be logged */ sl@0: HBufC8* iArgNarrow; sl@0: /** The text to be added to the report */ sl@0: const TDesC* iReportComment; sl@0: /** The text to be formatted and added to the report */ sl@0: const TDesC* iFormatReport; sl@0: /** The argument set to be added to the report */ sl@0: const TDesC* iReportArg; sl@0: sl@0: }; // CDataLogger_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::NewL method. sl@0: */ sl@0: class CDataLogger_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_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 CDataLogger_NewL_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_NewL_Transition is fully constructed. sl@0: @post No change in the CDataLogger_NewL_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::NewL post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_NewL_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::Dtor method. sl@0: */ sl@0: class CDataLogger_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_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 CDataLogger_Dtor_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_Dtor_Transition is fully constructed. sl@0: @post No change in the CDataLogger_Dtor_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::Dtor post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_Dtor_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::DumpMemoryBlock method. sl@0: */ sl@0: class CDataLogger_DumpMemoryBlock_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_DumpMemoryBlock_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 CDataLogger_DumpMemoryBlock_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::DumpMemoryBlock method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::DumpMemoryBlock) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_DumpMemoryBlock_Transition is fully constructed. sl@0: @post No change in the CDataLogger_DumpMemoryBlock_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::DumpMemoryBlock post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_DumpMemoryBlock_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_DumpMemoryBlock_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::LogInformation method. sl@0: */ sl@0: class CDataLogger_LogInformation_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_LogInformation_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 CDataLogger_LogInformation_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::LogInformation method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::LogInformation) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_LogInformation_Transition is fully constructed. sl@0: @post No change in the CDataLogger_LogInformation_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::LogInformation post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_LogInformation_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_LogInformation_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::LogInformationNarrow method. sl@0: */ sl@0: class CDataLogger_LogInformationNarrow_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_LogInformationNarrow_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 CDataLogger_LogInformationNarrow_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::LogInformationNarrow method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::LogInformationNarrow) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_LogInformationNarrow_Transition is fully constructed. sl@0: @post No change in the CDataLogger_LogInformationNarrow_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::LogInformationNarrow post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_LogInformationNarrow_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_LogInformationNarrow_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::LogInformationWithParameters method. sl@0: */ sl@0: class CDataLogger_LogInformationWithParameters_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_LogInformationWithParameters_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 CDataLogger_LogInformationWithParameters_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::LogInformationWithParameters method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::LogInformationWithParameters) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_LogInformationWithParameters_Transition is fully constructed. sl@0: @post No change in the CDataLogger_LogInformationWithParameters_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::LogInformationWithParameters post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_LogInformationWithParameters_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_LogInformationWithParameters_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::LogInformationWithParametersNarrow method. sl@0: */ sl@0: class CDataLogger_LogInformationWithParametersNarrow_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_LogInformationWithParametersNarrow_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 CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::LogInformationWithParametersNarrow method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::LogInformationWithParametersNarrow) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed. sl@0: @post No change in the CDataLogger_LogInformationWithParametersNarrow_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::LogInformationWithParametersNarrow post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_LogInformationWithParametersNarrow_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_LogInformationWithParametersNarrow_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::ReportInformation method. sl@0: */ sl@0: class CDataLogger_ReportInformation_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_ReportInformation_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 CDataLogger_ReportInformation_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::ReportInformation method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::ReportInformation) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_ReportInformation_Transition is fully constructed. sl@0: @post No change in the CDataLogger_ReportInformation_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::ReportInformation post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_ReportInformation_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_ReportInformation_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDataLogger::ReportInformationWithParameters method. sl@0: */ sl@0: class CDataLogger_ReportInformationWithParameters_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDataLogger_ReportInformationWithParameters_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 CDataLogger_ReportInformationWithParameters_Transition is fully constructed. sl@0: */ sl@0: CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDataLogger::ReportInformationWithParameters method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDataLogger::ReportInformationWithParameters) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDataLogger_ReportInformationWithParameters_Transition is fully constructed. sl@0: @post No change in the CDataLogger_ReportInformationWithParameters_Transition apart sl@0: from iDataLogger, which may have changed state. sl@0: (@see CDataLogger::ReportInformationWithParameters post-condition) for iDataLogger'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 CDataLogger_UnitTestContext sl@0: @pre iUTContext is a valid CDataLogger_UnitTestContext. sl@0: @post No change in the CDataLogger_ReportInformationWithParameters_Transition sl@0: */ sl@0: inline CDataLogger_UnitTestContext& Context() const; sl@0: }; // CDataLogger_ReportInformationWithParameters_Transition sl@0: sl@0: sl@0: // Add additional Transition class definitions here... sl@0: sl@0: #include "DataLoggerTransitions.inl" sl@0: sl@0: #include "DataLoggerUnitTestContext.inl" sl@0: sl@0: #endif // __DATALOGGERTRANSITIONS_H__ sl@0: