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: // This file contains the definition of the class CComponentTester sl@0: // This file comment is for DOxygen only and is ignored by EDoc. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @test sl@0: */ sl@0: sl@0: #ifndef __COMPONENTTESTER_H__ sl@0: #define __COMPONENTTESTER_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CDataLogger; sl@0: sl@0: /** sl@0: @internalAll sl@0: @struct TTestInfo sl@0: Comments : Used by the UI component to pass in a list of the tests which are to run sl@0: with information about each one. sl@0: */ sl@0: sl@0: struct TTestInfo sl@0: { sl@0: /** The zero-based component Id based on the list passed out from sl@0: CTestController::FindComponents */ sl@0: sl@0: TInt iComponentId; sl@0: /** The zero-based unit test Id within the above component */ sl@0: sl@0: TInt iUnitTestId; sl@0: /** The time at which this unit test should be scheduled to run */ sl@0: sl@0: TTimeIntervalMicroSeconds32 iRunTime; sl@0: /** Parameter block which is to be passed to the unit test */ sl@0: sl@0: TAny* iParameters; sl@0: }; sl@0: sl@0: sl@0: // Global function typedef declaration of function provided by a test module of the component sl@0: // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController. sl@0: typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&); sl@0: sl@0: sl@0: /** sl@0: @internalAll sl@0: Comments : Abstract class from which developers can derive their own component testing sl@0: classes. To write a derived class just implement a NewLC() and a ConstructL() from sl@0: which ComponentTesterConstructL() should be the first thing called. sl@0: */ sl@0: sl@0: class CComponentTester : public CActive, public MUnitTestObserver sl@0: { sl@0: public: sl@0: /** sl@0: @fn ~CComponentTester() sl@0: Intended Usage : Standardized virtual destruction method sl@0: @since 7.0 sl@0: */ sl@0: sl@0: IMPORT_C ~CComponentTester(); sl@0: sl@0: /** sl@0: @fn IMPORT_C virtual void TestComponent(RPointerArray* aTests) sl@0: Intended Usage : Called to perform a full test of the component. Runs the listed sl@0: tests or all unit tests if aTests == 0 sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aTests The list of tests to run, 0 means run all tests sl@0: @pre This CComponentTester is fully initialized sl@0: @post All unit tests will be set up to run sl@0: */ sl@0: sl@0: IMPORT_C virtual void TestComponent(RPointerArray* aTests); sl@0: sl@0: /** sl@0: @fn IMPORT_C RPointerArray* TransitionSetsL() const sl@0: Intended Usage : Called to provide a list of the transition sets in this component test. sl@0: Ownership of the array is passed to the calling object. sl@0: Error Condition : sl@0: @since 7.0 sl@0: @return RPointerArray* Information on the unit tests contained sl@0: in this component. Ownership of the array is passed to the calling object. sl@0: @pre None sl@0: */ sl@0: sl@0: IMPORT_C RPointerArray* TransitionSetsL() const; sl@0: sl@0: /** sl@0: @fn IMPORT_C void Complete(CUnitTest* aUnitTest) sl@0: Intended Usage : Used, by the observed unit test, to indicate that the sl@0: test has completed sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aUnitTest The unit test which has completed. sl@0: @pre None sl@0: @post If this was the last unit test then iObserver is informed that this sl@0: component is complete. sl@0: */ sl@0: sl@0: IMPORT_C void Complete(CUnitTest* aUnitTest); sl@0: sl@0: /** sl@0: @fn IMPORT_C void SetRtest(RTest* aRTest) sl@0: Intended Usage : Used by Controller or Manager to initialise the iRTest sl@0: attribute of the component & unit test objects in t sl@0: Error Condition : sl@0: @since 7.0s sl@0: @param aRTest Pointer to RTest object sl@0: @pre None sl@0: @post None sl@0: */ sl@0: IMPORT_C void SetRTest(RTest* aRTest); sl@0: sl@0: protected: sl@0: /** sl@0: @fn IMPORT_C CComponentTester(CDataLogger& aDataLogger, sl@0: MComponentTestObserver& aObserver) sl@0: Intended Usage : Default Constructor sl@0: @since 7.0 sl@0: @param aDataLogger Used for file logging capability sl@0: @param aObserver To inform of completion of all tests sl@0: */ sl@0: IMPORT_C CComponentTester(CDataLogger& aDataLogger, MComponentTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest) sl@0: Intended Usage : Used by derived class to add UnitTests to the list sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aUnitTest The UnitTest to be added sl@0: @pre None sl@0: @post The specified unit test is added to the list of tests to be executed. sl@0: */ sl@0: sl@0: IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest); sl@0: sl@0: /** sl@0: @fn IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest) sl@0: Intended Usage : Used by derived classes to add UnitTests which can only be run when sl@0: they are supplied with parameters from the UI. sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aUnitTest The unit test to add to the list sl@0: @pre None sl@0: @post The specified unit test is added to the list of test to be executed and sl@0: is flagged as requiring parameters sl@0: */ sl@0: sl@0: IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest); sl@0: sl@0: /** sl@0: @fn IMPORT_C virtual void ConstructL() = 0 sl@0: Intended Usage : Standard two-phase construction method. To be implemented sl@0: in derived class sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre First phase of construction is complete sl@0: @post Object is fully constructed sl@0: */ sl@0: sl@0: IMPORT_C virtual void ConstructL() = 0; sl@0: sl@0: /** sl@0: @fn IMPORT_C void ComponentTesterConstructL() sl@0: Intended Usage : Must be called by derived class ConstructL() to perform base class sl@0: initialisation. sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre None sl@0: @post Object is fully constructed sl@0: */ sl@0: sl@0: IMPORT_C void ComponentTesterConstructL(); sl@0: sl@0: /** sl@0: @fn IMPORT_C void RunL() sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre This CComponentTester is fully constructed sl@0: @post One of the CUnitTest contained in this CComponentTester has been run sl@0: */ sl@0: sl@0: IMPORT_C void RunL(); sl@0: sl@0: /** sl@0: @fn IMPORT_C void DoCancel() sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre This CComponentTester is fully constructed. sl@0: @post Any outstanding asynchronous requests are cancelled. sl@0: */ sl@0: sl@0: IMPORT_C void DoCancel(); sl@0: sl@0: protected: sl@0: /** List of all the unit tests which make up this component test*/ sl@0: sl@0: RPointerArray* iUnitTests; sl@0: /** The test logging mechanism*/ sl@0: sl@0: CDataLogger& iDataLogger; sl@0: /** The observer to inform when we have completed the test */ sl@0: sl@0: MComponentTestObserver& iObserver; sl@0: /** The index of the unittest which is to be run next */ sl@0: sl@0: TInt iCurrentUnitTest; sl@0: /** The list of tests to run, NULL means run all tests. We take ownership of the list but sl@0: not the items on it.*/ sl@0: sl@0: RPointerArray* iUnitTestsToRun; sl@0: /** A list of the test which cannot run without a parameter set from the UI */ sl@0: sl@0: RArray iParameterizedTests; sl@0: /** A placeholder which is only used to ensure correct object cleanup when sl@0: TransitionSetsL() leaves */ sl@0: sl@0: mutable RPointerArray* iTransitionSets; sl@0: /** Optional reference to the RTest object used in the EXE test harness code which sl@0: kicked off this test framework */ sl@0: RTest* iRTest; sl@0: sl@0: friend class TComponentTester_StateAccessor; sl@0: }; sl@0: sl@0: #endif