os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/TestManager.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the class CTestManager
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __TESTMANAGER_H__
    23 #define __TESTMANAGER_H__
    24 
    25 #include <e32base.h>
    26 #include <e32test.h>
    27 
    28 #include <ecom/test_bed/componentinfo.h>
    29 #include <ecom/test_bed/datalogger.h>
    30 #include <ecom/test_bed/componenttester.h>
    31 #include <ecom/test_bed/componenttestobserver.h>
    32 #include <ecom/test_bed/managerobserver.h>
    33 
    34 /**
    35 	@internalAll
    36 	Comments : Active object which launches all the tests which the TestController has 
    37 	discovered.  Also, acts as an observer on each CComponentTester waiting for a Complete
    38 	message to indicate the test has finished.
    39  */
    40 
    41 NONSHARABLE_CLASS(CTestManager) : public CActive, public MComponentTestObserver
    42 	{
    43 public:
    44 /**
    45 	@fn				static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
    46 											  CDataLogger& aDataLogger,
    47  											  MManagerObserver& aObserver,
    48 											  RTest* aRTest = NULL);
    49 	Intended Usage	:	Standard two-phase construction which leaves nothing on the 
    50 	CleanupStack
    51 	@since			7.0
    52 	@param			aTestList List of tests available to be performed
    53 	@param			aDataLogger Provides the file logging functionality
    54 	@param			aObserver The object to inform when all the tests are complete
    55 	@param			aRTest Optional RTest object to use in check unit test results
    56 	@return			CTestManager* A pointer to the newly created class
    57 	@pre 			None
    58 	@post			Nothing is left on the CleanupStack
    59  */
    60 	
    61 	static CTestManager* NewL(RPointerArray<CComponentInfo>* aTestList,
    62 							  CDataLogger& aDataLogger,
    63  							  MManagerObserver& aObserver,
    64 							  RTest* aRTest = NULL);
    65 
    66 /**
    67 	@fn				~CTestManager()
    68 	Intended Usage	:	Standard destructor
    69 	@since			7.0
    70  */
    71 	
    72 	~CTestManager();
    73 
    74 /**
    75 	@fn				void RunTests(RPointerArray<TTestInfo>* aTests)
    76 	Intended Usage	:	Prepare for the test run.
    77 	Error Condition	:	
    78 	@since			7.0
    79 	@param			aTests The list of tests to run, 0 means all tests
    80 	@pre 			None
    81 	@post			This is active and awaiting call to RunL() by the active scheduler
    82  */
    83 	
    84 	void RunTests(RPointerArray<TTestInfo>* aTests);
    85 
    86 /**
    87 	@fn				void Complete(CComponentTester* aTester, TInt aUnitTestId)
    88 	Intended Usage	:	Callback from the CComponentTester being observed to indicate 
    89 	that it has completed a unit test
    90 	@since			7.0
    91 	@param			aTester The CComponentTester which is signalling
    92 	@param			aUnitTestId The Id of the completed unit test
    93 	@pre 			The specified unit test has been launched
    94 	@post			If all unit tests are complete then the specified CComponentTester has been 
    95 	added to the Garbage list ready for deletion at the next opportunity, this will also 
    96 	unload the appropriate library. Otherwise launch the next unit test.
    97  */
    98 	
    99 	void Complete(CComponentTester* aTester, TInt aUnitTestId);
   100 
   101 /**
   102 	@fn				StartedTests() const
   103 	Intended Usage	:	Returns a flag indicating whether any tests have been started yet
   104 	@since			7.0
   105 	@return			ETrue if any tests have been launched, EFalse otherwise
   106 	@pre 			This object is fully constructed
   107  */
   108 	TBool StartedTests() const;
   109 
   110 protected:
   111 /**
   112 	@fn				CTestManager(RPointerArray<CComponentInfo>* aTestList, 
   113 								 CDataLogger& aDataLogger,
   114 								 MManagerObserver& aObserver,
   115 								 RTest* aRTest = NULL);
   116 	Intended Usage	:	Constructor
   117 	@since			7.0
   118 	@param			aTestList The list of tests to be launched by this CTestManager
   119 	@param			aDataLogger The file logging capability
   120 	@param			aObserver The class to inform when all the tests are complete
   121 	@param			aRTest Optional RTest object to use in check unit test results
   122  */
   123 	
   124 	CTestManager(RPointerArray<CComponentInfo>* aTestList, 
   125 				 CDataLogger& aDataLogger,
   126 				 MManagerObserver& aObserver,
   127 				 RTest* aRTest = NULL);
   128 
   129 /**
   130 	@fn				void ConstructL()
   131 	Intended Usage	:	Second phase of safe two-phase construction method
   132 	@since			7.0
   133 	@pre 			First phase of construction is complete
   134 	@post			Object is fully constructed and initialized
   135  */
   136 	
   137 	void ConstructL();
   138 
   139 /**
   140 	@fn				void RunL()
   141 	Intended Usage	:	Used to launch each test, in turn, and then to stop the active 
   142 	scheduler when all tests have completed
   143 	@since			7.0
   144 	@pre 			None
   145 	@post			Initially each run of RunL() will result in a ComponentTester being created and
   146 					launched.  Once all the tests have launched RunL() will only be called at completion
   147 					to stop the active scheduler.
   148  */
   149 	
   150 	void RunL();
   151 
   152 /**
   153 	@fn				void DoCancel()
   154 	Intended Usage	:	Standard Active Object method used to cancel any outstanding requests
   155 	Error Condition	:	
   156 	@since			7.0
   157 	@pre 			Object is fully constructed and initialised
   158 	@post			Any outstanding requests have been cancelled.
   159  */
   160 	
   161 	void DoCancel();
   162 
   163 /**
   164 	@fn				void TestComponentL(TInt aComponentIndex)
   165 	Intended Usage	:	Loads the appropriate library and test the specified component
   166 	@since			7.0
   167 	@param			aComponentIndex The zero base index of the component to test
   168 	@pre 			Object is fully constructed and initialised
   169 	@post			Specified component test has been activated to run
   170  */
   171 	
   172 	void TestComponentL(TInt aComponentIndex);
   173 
   174 /**
   175 	@fn				RunError(TInt aErrorCode)
   176 	Intended Usage	:	Handles the situation where the RunL leaves.  RunL will only leave 
   177 	through a leave from TestComponentL, this will occur if the test to be run fails to 
   178 	construct.
   179 	Error Condition	:	None
   180 	@since			7.0
   181 	@param			aErrorCode The error code which RunL left with.
   182 	@return			KErrNone because we handle the error.
   183 	@pre 			This object is fully constructed and initialized
   184 	@post			The test which failed to construct is cleaned up.
   185  */
   186 	
   187 	TInt RunError(TInt aErrorCode);
   188 
   189 protected:
   190 /** The observer to inform when all tests are complete */
   191 	MManagerObserver&	iObserver;
   192 /** List of all the test to be run*/
   193 	
   194 	RPointerArray<CComponentInfo>*	iTestList;
   195 /** The index (in iTestList) of the test which is to be loaded next*/
   196 	
   197 	TInt iCurrentTestLoad;
   198 /** The test logging mechanism*/
   199 	
   200 	CDataLogger&	iDataLogger;
   201 /** Flag indicating that all tests have completed*/
   202 	
   203 	TBool			iAmStopping;
   204 /** List of the tests to be run, NULL means run all tests */
   205 	
   206 	RPointerArray<TTestInfo>* iTestsToRun;
   207 /** The test which is currently being run */
   208 	
   209 	CComponentTester* iCurrentTester;
   210 /** Optional reference to the RTest object used in the EXE test harness code which
   211 	kicked off this test framework */
   212 	RTest* iRTest;
   213 
   214 	friend class TTestManager_StateAccessor;
   215 	};
   216 
   217 #endif