1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/TestManager.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,217 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// This file contains the definition of the class CTestManager
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @test
1.23 +*/
1.24 +
1.25 +#ifndef __TESTMANAGER_H__
1.26 +#define __TESTMANAGER_H__
1.27 +
1.28 +#include <e32base.h>
1.29 +#include <e32test.h>
1.30 +
1.31 +#include <ecom/test_bed/componentinfo.h>
1.32 +#include <ecom/test_bed/datalogger.h>
1.33 +#include <ecom/test_bed/componenttester.h>
1.34 +#include <ecom/test_bed/componenttestobserver.h>
1.35 +#include <ecom/test_bed/managerobserver.h>
1.36 +
1.37 +/**
1.38 + @internalAll
1.39 + Comments : Active object which launches all the tests which the TestController has
1.40 + discovered. Also, acts as an observer on each CComponentTester waiting for a Complete
1.41 + message to indicate the test has finished.
1.42 + */
1.43 +
1.44 +NONSHARABLE_CLASS(CTestManager) : public CActive, public MComponentTestObserver
1.45 + {
1.46 +public:
1.47 +/**
1.48 + @fn static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
1.49 + CDataLogger& aDataLogger,
1.50 + MManagerObserver& aObserver,
1.51 + RTest* aRTest = NULL);
1.52 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.53 + CleanupStack
1.54 + @since 7.0
1.55 + @param aTestList List of tests available to be performed
1.56 + @param aDataLogger Provides the file logging functionality
1.57 + @param aObserver The object to inform when all the tests are complete
1.58 + @param aRTest Optional RTest object to use in check unit test results
1.59 + @return CTestManager* A pointer to the newly created class
1.60 + @pre None
1.61 + @post Nothing is left on the CleanupStack
1.62 + */
1.63 +
1.64 + static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
1.65 + CDataLogger& aDataLogger,
1.66 + MManagerObserver& aObserver,
1.67 + RTest* aRTest = NULL);
1.68 +
1.69 +/**
1.70 + @fn ~CTestManager()
1.71 + Intended Usage : Standard destructor
1.72 + @since 7.0
1.73 + */
1.74 +
1.75 + ~CTestManager();
1.76 +
1.77 +/**
1.78 + @fn void RunTests(RPointerArray<TTestInfo>* aTests)
1.79 + Intended Usage : Prepare for the test run.
1.80 + Error Condition :
1.81 + @since 7.0
1.82 + @param aTests The list of tests to run, 0 means all tests
1.83 + @pre None
1.84 + @post This is active and awaiting call to RunL() by the active scheduler
1.85 + */
1.86 +
1.87 + void RunTests(RPointerArray<TTestInfo>* aTests);
1.88 +
1.89 +/**
1.90 + @fn void Complete(CComponentTester* aTester, TInt aUnitTestId)
1.91 + Intended Usage : Callback from the CComponentTester being observed to indicate
1.92 + that it has completed a unit test
1.93 + @since 7.0
1.94 + @param aTester The CComponentTester which is signalling
1.95 + @param aUnitTestId The Id of the completed unit test
1.96 + @pre The specified unit test has been launched
1.97 + @post If all unit tests are complete then the specified CComponentTester has been
1.98 + added to the Garbage list ready for deletion at the next opportunity, this will also
1.99 + unload the appropriate library. Otherwise launch the next unit test.
1.100 + */
1.101 +
1.102 + void Complete(CComponentTester* aTester, TInt aUnitTestId);
1.103 +
1.104 +/**
1.105 + @fn StartedTests() const
1.106 + Intended Usage : Returns a flag indicating whether any tests have been started yet
1.107 + @since 7.0
1.108 + @return ETrue if any tests have been launched, EFalse otherwise
1.109 + @pre This object is fully constructed
1.110 + */
1.111 + TBool StartedTests() const;
1.112 +
1.113 +protected:
1.114 +/**
1.115 + @fn CTestManager(RPointerArray<CComponentInfo>* aTestList,
1.116 + CDataLogger& aDataLogger,
1.117 + MManagerObserver& aObserver,
1.118 + RTest* aRTest = NULL);
1.119 + Intended Usage : Constructor
1.120 + @since 7.0
1.121 + @param aTestList The list of tests to be launched by this CTestManager
1.122 + @param aDataLogger The file logging capability
1.123 + @param aObserver The class to inform when all the tests are complete
1.124 + @param aRTest Optional RTest object to use in check unit test results
1.125 + */
1.126 +
1.127 + CTestManager(RPointerArray<CComponentInfo>* aTestList,
1.128 + CDataLogger& aDataLogger,
1.129 + MManagerObserver& aObserver,
1.130 + RTest* aRTest = NULL);
1.131 +
1.132 +/**
1.133 + @fn void ConstructL()
1.134 + Intended Usage : Second phase of safe two-phase construction method
1.135 + @since 7.0
1.136 + @pre First phase of construction is complete
1.137 + @post Object is fully constructed and initialized
1.138 + */
1.139 +
1.140 + void ConstructL();
1.141 +
1.142 +/**
1.143 + @fn void RunL()
1.144 + Intended Usage : Used to launch each test, in turn, and then to stop the active
1.145 + scheduler when all tests have completed
1.146 + @since 7.0
1.147 + @pre None
1.148 + @post Initially each run of RunL() will result in a ComponentTester being created and
1.149 + launched. Once all the tests have launched RunL() will only be called at completion
1.150 + to stop the active scheduler.
1.151 + */
1.152 +
1.153 + void RunL();
1.154 +
1.155 +/**
1.156 + @fn void DoCancel()
1.157 + Intended Usage : Standard Active Object method used to cancel any outstanding requests
1.158 + Error Condition :
1.159 + @since 7.0
1.160 + @pre Object is fully constructed and initialised
1.161 + @post Any outstanding requests have been cancelled.
1.162 + */
1.163 +
1.164 + void DoCancel();
1.165 +
1.166 +/**
1.167 + @fn void TestComponentL(TInt aComponentIndex)
1.168 + Intended Usage : Loads the appropriate library and test the specified component
1.169 + @since 7.0
1.170 + @param aComponentIndex The zero base index of the component to test
1.171 + @pre Object is fully constructed and initialised
1.172 + @post Specified component test has been activated to run
1.173 + */
1.174 +
1.175 + void TestComponentL(TInt aComponentIndex);
1.176 +
1.177 +/**
1.178 + @fn RunError(TInt aErrorCode)
1.179 + Intended Usage : Handles the situation where the RunL leaves. RunL will only leave
1.180 + through a leave from TestComponentL, this will occur if the test to be run fails to
1.181 + construct.
1.182 + Error Condition : None
1.183 + @since 7.0
1.184 + @param aErrorCode The error code which RunL left with.
1.185 + @return KErrNone because we handle the error.
1.186 + @pre This object is fully constructed and initialized
1.187 + @post The test which failed to construct is cleaned up.
1.188 + */
1.189 +
1.190 + TInt RunError(TInt aErrorCode);
1.191 +
1.192 +protected:
1.193 +/** The observer to inform when all tests are complete */
1.194 + MManagerObserver& iObserver;
1.195 +/** List of all the test to be run*/
1.196 +
1.197 + RPointerArray<CComponentInfo>* iTestList;
1.198 +/** The index (in iTestList) of the test which is to be loaded next*/
1.199 +
1.200 + TInt iCurrentTestLoad;
1.201 +/** The test logging mechanism*/
1.202 +
1.203 + CDataLogger& iDataLogger;
1.204 +/** Flag indicating that all tests have completed*/
1.205 +
1.206 + TBool iAmStopping;
1.207 +/** List of the tests to be run, NULL means run all tests */
1.208 +
1.209 + RPointerArray<TTestInfo>* iTestsToRun;
1.210 +/** The test which is currently being run */
1.211 +
1.212 + CComponentTester* iCurrentTester;
1.213 +/** Optional reference to the RTest object used in the EXE test harness code which
1.214 + kicked off this test framework */
1.215 + RTest* iRTest;
1.216 +
1.217 + friend class TTestManager_StateAccessor;
1.218 + };
1.219 +
1.220 +#endif