os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/ComponentTester.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 CComponentTester
    15 // This file comment is for DOxygen only and is ignored by EDoc.
    16 // 
    17 //
    18 
    19 /**
    20  @test
    21 */
    22 
    23 #ifndef __COMPONENTTESTER_H__
    24 #define __COMPONENTTESTER_H__
    25 
    26 #include <e32base.h>
    27 #include <e32test.h>
    28 
    29 #include <ecom/test_bed/unittestinfo.h>
    30 #include <ecom/test_bed/unittest.h>
    31 #include <ecom/test_bed/datalogger.h>
    32 #include <ecom/test_bed/componenttestobserver.h>
    33 
    34 class CDataLogger;
    35 
    36 /**
    37 	@internalAll
    38 	@struct TTestInfo
    39 	Comments : Used by the UI component to pass in a list of the tests which are to run
    40 	with information about each one.
    41  */
    42 
    43 struct TTestInfo
    44 	{
    45 /** The zero-based component Id based on the list passed out from 
    46 	CTestController::FindComponents */
    47 	
    48 	TInt	iComponentId;
    49 /** The zero-based unit test Id within the above component */
    50 	
    51 	TInt	iUnitTestId;
    52 /** The time at which this unit test should be scheduled to run */
    53 	
    54 	TTimeIntervalMicroSeconds32 iRunTime;
    55 /** Parameter block which is to be passed to the unit test */
    56 	
    57 	TAny*	iParameters;
    58 	};
    59 
    60 
    61 // Global function typedef declaration of function provided by a test module of the component
    62 // under test and is used as an entry point to kick start test bed. Provided as argument to CTestController.
    63 typedef CComponentTester* (*ComponentTesterInitialiserLC)(CDataLogger&, MComponentTestObserver&);
    64 
    65 
    66 /**
    67 	@internalAll
    68 	Comments : Abstract class from which developers can derive their own component testing
    69 	classes.  To write a derived class just implement a NewLC() and a ConstructL() from 
    70 	which ComponentTesterConstructL() should be the first thing called.
    71  */
    72 
    73 class CComponentTester : public CActive, public MUnitTestObserver
    74 	{
    75 public:
    76 /**
    77 	@fn				 ~CComponentTester()
    78 	Intended Usage	: Standardized virtual destruction method 
    79 	@since			7.0
    80  */
    81 	
    82 	IMPORT_C ~CComponentTester();
    83 
    84 /**
    85 	@fn				IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests)
    86 	Intended Usage	:	Called to perform a full test of the component. Runs the listed 
    87 					tests or all unit tests if aTests == 0
    88 	Error Condition	:	
    89 	@since			7.0
    90 	@param			aTests The list of tests to run, 0 means run all tests
    91 	@pre 			This CComponentTester is fully initialized
    92 	@post			All unit tests will be set up to run
    93  */
    94 	
    95 	IMPORT_C virtual void TestComponent(RPointerArray<TTestInfo>* aTests);
    96 
    97 /**
    98 	@fn				IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const
    99 	Intended Usage	:	Called to provide a list of the transition sets in this component test.
   100 						Ownership of the array is passed to the calling object.
   101 	Error Condition	:	
   102 	@since			7.0
   103 	@return			RPointerArray<CUnitTestInfo>* Information on the unit tests contained
   104 	in this component.  Ownership of the array is passed to the calling object.
   105 	@pre 			None
   106  */
   107 	
   108 	IMPORT_C RPointerArray<CUnitTestInfo>* TransitionSetsL() const;
   109 
   110 /**
   111 	@fn				IMPORT_C void Complete(CUnitTest* aUnitTest)
   112 	Intended Usage	:	Used, by the observed unit test, to indicate that the 
   113 					test has completed
   114 	Error Condition	:	
   115 	@since			7.0
   116 	@param			aUnitTest	The unit test which has completed.
   117 	@pre 			None
   118 	@post			If this was the last unit test then iObserver is informed that this 
   119 	component is complete.
   120  */
   121 	
   122 	IMPORT_C void Complete(CUnitTest* aUnitTest);
   123 
   124 /**
   125 	@fn				IMPORT_C void SetRtest(RTest* aRTest)
   126 	Intended Usage	:	Used by Controller or Manager to initialise the iRTest
   127 					attribute of the component & unit test objects in t
   128 	Error Condition	:	
   129 	@since			7.0s
   130 	@param			aRTest	Pointer to RTest object 
   131 	@pre 			None
   132 	@post			None
   133  */
   134 	IMPORT_C void SetRTest(RTest* aRTest);
   135 
   136 protected:
   137 /**
   138 	@fn				 IMPORT_C CComponentTester(CDataLogger&				aDataLogger, 
   139 											   MComponentTestObserver&	aObserver)
   140 	Intended Usage	: Default Constructor	
   141 	@since			7.0
   142 	@param 			aDataLogger Used for file logging capability
   143 	@param 			aObserver To inform of completion of all tests
   144  */
   145 	IMPORT_C CComponentTester(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
   146 
   147 /**
   148 	@fn				IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest)
   149 	Intended Usage	:	Used by derived class to add UnitTests to the list
   150 	Error Condition	:	
   151 	@since			7.0
   152 	@param			aUnitTest The UnitTest to be added
   153 	@pre 			None
   154 	@post			The specified unit test is added to the list of tests to be executed.
   155  */
   156 	
   157 	IMPORT_C void AddUnitTestL(const CUnitTest* aUnitTest);
   158 
   159 /**
   160 	@fn				IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest)
   161 	Intended Usage	:	Used by derived classes to add UnitTests which can only be run when
   162 	they are supplied with parameters from the UI.
   163 	Error Condition	:
   164 	@since			7.0
   165 	@param			aUnitTest The unit test to add to the list
   166 	@pre 			None
   167 	@post			The specified unit test is added to the list of test to be executed and 
   168 	is flagged as requiring parameters
   169  */
   170 	
   171 	IMPORT_C void AddParamUnitTestL(const CUnitTest* aUnitTest);
   172 
   173 /**
   174 	@fn				IMPORT_C virtual void ConstructL() = 0
   175 	Intended Usage	:	Standard two-phase construction method.  To be implemented 
   176 	in derived class
   177 	Error Condition	:	
   178 	@since			7.0
   179 	@pre 			First phase of construction is complete
   180 	@post			Object is fully constructed
   181  */
   182 	
   183 	IMPORT_C virtual void ConstructL() = 0;
   184 
   185 /**
   186 	@fn				IMPORT_C void ComponentTesterConstructL()
   187 	Intended Usage	:	Must be called by derived class ConstructL() to perform base class 
   188 					initialisation.
   189 	Error Condition	:	
   190 	@since			7.0
   191 	@pre 			None
   192 	@post			Object is fully constructed
   193  */
   194 	
   195 	IMPORT_C void ComponentTesterConstructL();
   196 
   197 /**
   198 	@fn				IMPORT_C void RunL()
   199 	Intended Usage	:	
   200 	Error Condition	:	
   201 	@since			7.0
   202 	@pre 			This CComponentTester is fully constructed
   203 	@post			One of the CUnitTest contained in this CComponentTester has been run
   204  */
   205 	
   206 	IMPORT_C void RunL();
   207 
   208 /**
   209 	@fn				IMPORT_C void DoCancel()
   210 	Intended Usage	:	
   211 	Error Condition	:	
   212 	@since			7.0
   213 	@pre 			This CComponentTester is fully constructed.
   214 	@post			Any outstanding asynchronous requests are cancelled.
   215  */
   216 	
   217 	IMPORT_C void DoCancel();
   218 
   219 protected:
   220 /** List of all the unit tests which make up this component test*/
   221 	
   222 	RPointerArray<CUnitTest>* iUnitTests;
   223 /** The test logging mechanism*/
   224 	
   225 	CDataLogger&			iDataLogger;
   226 /** The observer to inform when we have completed the test */
   227 	
   228 	MComponentTestObserver&		iObserver;
   229 /** The index of the unittest which is to be run next */
   230 	
   231 	TInt						iCurrentUnitTest;
   232 /** The list of tests to run, NULL means run all tests. We take ownership of the list but 
   233 	not the items on it.*/
   234 	
   235 	RPointerArray<TTestInfo>*	iUnitTestsToRun;
   236 /** A list of the test which cannot run without a parameter set from the UI */
   237 	
   238 	RArray<TInt>				iParameterizedTests;
   239 /** A placeholder which is only used to ensure correct object cleanup when 
   240 	TransitionSetsL() leaves */
   241 	
   242 	mutable RPointerArray<CUnitTestInfo>* iTransitionSets;
   243 /** Optional reference to the RTest object used in the EXE test harness code which
   244 	kicked off this test framework */
   245 	RTest* iRTest;
   246 
   247 	friend class TComponentTester_StateAccessor;
   248 	};
   249 
   250 #endif