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 definition of the unit stet classes for the CRegistryData testing. sl@0: // sl@0: // sl@0: sl@0: #ifndef __REGISTRYDATAUNITTESTS_H__ sl@0: #define __REGISTRTDATAUNITTESTS_H__ sl@0: sl@0: #include "RegistryDataTransitionValidation.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for CreateAndDestroy on CRegistryData, the class under test. sl@0: */ sl@0: class CRegistryData_CreateAndDestroy_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CRegistryData_CreateAndDestroy_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CRegistryData_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CRegistryData_CreateAndDestroy_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CRegistryData_CreateAndDestroy_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post CRegistryData_CreateAndDestroy_UnitTest is fully destroyed. sl@0: */ sl@0: ~CRegistryData_CreateAndDestroy_UnitTest(); sl@0: sl@0: /** sl@0: @fn PrepareUnitTestL() sl@0: Intended Usage : Called by test framework just before test is run to allow sl@0: any test preparation to take place. sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post This unit test is ready to run. sl@0: */ sl@0: void PrepareUnitTestL(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CRegistryData class. sl@0: @pre None. sl@0: @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed. sl@0: */ sl@0: inline CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post CRegistryData_CreateAndDestroy_UnitTest is fully initialised. sl@0: */ sl@0: inline void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CRegistryData class tested by this UnitTest's transitions. sl@0: */ sl@0: CRegistryData_UnitTestContext* iUTContext; sl@0: TRegistryData_Ctor_TransitionValidator* iCtorValidator; sl@0: TRegistryData_Dtor_TransitionValidator* iDtorValidator; sl@0: TRegistryData_StateAccessor* iStateAccessor; sl@0: }; // CRegistryData_CreateAndDestroy_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for AddData on CRegistryData, the class under test. sl@0: */ sl@0: class CRegistryData_AddData_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CRegistryData_AddData_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CRegistryData_AddData_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CRegistryData_AddData_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CRegistryData_AddData_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CRegistryData_AddData_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CRegistryData_AddData_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CRegistryData_AddData_UnitTest is fully constructed. sl@0: @post CRegistryData_AddData_UnitTest is fully destroyed. sl@0: */ sl@0: ~CRegistryData_AddData_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CRegistryData class. sl@0: @pre None. sl@0: @post CRegistryData_AddData_UnitTest is fully constructed. sl@0: */ sl@0: inline CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_AddData_UnitTest is fully constructed. sl@0: @post CRegistryData_AddData_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CRegistryData class tested by this UnitTest's transitions. sl@0: */ sl@0: CRegistryData_UnitTestContext* iUTContext; sl@0: TRegistryData_StateAccessor* iStateAccessor; sl@0: sl@0: TRegistryData_Ctor_TransitionValidator* iCtorValidator; sl@0: TRegistryData_SetPolicyObserver_TransitionValidator* iSetObserverValidator; sl@0: TRegistryData_UndoTemporaryUninstall_TransitionValidator* iUndoTemporaryUninstallValidator; sl@0: TRegistryData_AddDllDataL_TransitionValidator* iAddDllDataValidator; sl@0: TRegistryData_IsRegisteredWithDate_TransitionValidator* iIsRegisteredValidator; sl@0: TRegistryData_UpdateDllData_TransitionValidator* iUpdateDllDataValidator; sl@0: TRegistryData_TemporaryUninstall_TransitionValidator* iTemporaryUninstallValidator; sl@0: TRegistryData_PersistNow_TransitionValidator* iPersistNowValidator; sl@0: TRegistryData_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CRegistryData_AddData_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for RetrieveInfo on CRegistryData, the class under test. sl@0: */ sl@0: class CRegistryData_RetrieveInfo_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CRegistryData_RetrieveInfo_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CRegistryData_RetrieveInfo_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CRegistryData_RetrieveInfo_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CRegistryData_RetrieveInfo_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed. sl@0: @post CRegistryData_RetrieveInfo_UnitTest is fully destroyed. sl@0: */ sl@0: ~CRegistryData_RetrieveInfo_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CRegistryData class. sl@0: @pre None. sl@0: @post CRegistryData_RetrieveInfo_UnitTest is fully constructed. sl@0: */ sl@0: inline CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed. sl@0: @post CRegistryData_RetrieveInfo_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CRegistryData class tested by this UnitTest's transitions. sl@0: */ sl@0: CRegistryData_UnitTestContext* iUTContext; sl@0: TRegistryData_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and default transition validators sl@0: TRegistryData_Ctor_TransitionValidator* iCtorValidator; sl@0: TRegistryData_ListImplementations_TransitionValidator* iListImplementationsValidator; sl@0: TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplementationInformationValidator; sl@0: TRegistryData_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CRegistryData_RetrieveInfo_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for ConstructIndex on CRegistryData, the class under test. sl@0: */ sl@0: class CRegistryData_GetImplInfoWhileDiscovering_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CRegistryData_GetImplInfoWhileDiscovering_UnitTest* The sl@0: constructed object. sl@0: @pre None. sl@0: @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully sl@0: constructed, and initialised. sl@0: */ sl@0: static CRegistryData_GetImplInfoWhileDiscovering_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CRegistryData_ConstructIndex_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully sl@0: constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed. sl@0: @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully destroyed. sl@0: */ sl@0: ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CRegistryData class. sl@0: @pre None. sl@0: @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed. sl@0: */ sl@0: inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed. sl@0: @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CRegistryData class tested by this UnitTest's transitions. sl@0: */ sl@0: CRegistryData_UnitTestContext* iUTContext; sl@0: TRegistryData_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and method transition validators sl@0: TRegistryData_Ctor_TransitionValidator* iCtorValidator; sl@0: TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplInfoValidator; sl@0: TRegistryData_DiscoveriesBeginning_TransitionValidator* iDiscoveriesBeginningValidator; sl@0: TRegistryData_GetSecondImplInfo_TransitionValidator* iGetSecondImplInfoValidator; sl@0: TRegistryData_Dtor_TransitionValidator* iDtorValidator; sl@0: sl@0: }; // CRegistryData_GetImplInfoWhileDiscovering_UnitTest sl@0: sl@0: #include "RegistryDataUnitTests.inl" sl@0: sl@0: #endif // __REGISTRYDATAUNITTESTS_H__