Informing the test engine that the subsystem exists

Subsystems are identified to the performance test engine with extensions. Typically, a new protocol indicates in its plugin.xml file the class name of the subsystem that it is providing. This example modifies an existing performance test plug-in and specifies the class name of the sample plug-in in the plugin.xml file.

About this task

To identify the subsystem to the performance testing engine, complete the following steps.

Procedure

  1. Open a command prompt, and change directory to the __PT_ACRONYM__ plug-ins directory.
  2. Save a copy of the existing HTTP execution JAR. For example: C:\__BRAND_NAME__\common\plugins>copy com.ibm.rational.test.lt.execution.http_7.0.0.v200609010404.jar com.ibm.rational.test.lt.execution.http_7.0.0.v200609010404.jar.orig
  3. Make a new copy of the HTTP execution JAR for modification. For example: C:\__BRAND_NAME__\common\plugins>copy com.ibm.rational.test.lt.execution.http_7.0.0.v200609010404.jar foo.jar
  4. Extract the plugin.xml file. For example: C:\__BRAND_NAME__\common\plugins>jar xvf foo.jar plugin.xml Note: You must have a Java SDK in your PATH statement so that you have access to the JAR utility.
  5. Add these lines to the plugin.xml file just above the </plugin> line at the bottom:
    <extension
    	point="com.ibm.rational.test.lt.execution.Subsystem">
    	<Subsystem
    		feature="com.ibm.rational.test.lt.feature.lt"
    		class="test.SampleSubsystem"/>
    </extension>
  6. Start HCL OneTest Performance with the -clean option so that the plug-ins are reloaded, for example: C:\IBM\RPT>eclipse –clean.