Testing with Jenkins

Starting with v9.1.0.1, you can use the Rational® Test Workbench Web UI Tester and Rational Performance Tester plugins for Jenkins to run tests on a Jenkins server by using a Jenkins build step.

Introduction

To automate testing with Jenkins, you must configure two computers: A Jenkins master and a Jenkins slave. This master-slave configuration allows a single Jenkins installation on the master computer to host multiple slave environments for building and running tests. You must install the Jenkins plugins on the master computer, and install the products themselves on the slave, where you create the tests. For detailed information about the Jenkins master-slave relationship, see the Distributed Builds section on the Jenkins site.

Before you begin

  • Install IBM® Installation Manager, which is required for installing the products.
  • Install the products.
  • Verify that you have a Jenkins master computer where Jenkins and the Jenkins plugins are installed.
  • Verify that you have a Jenkins slave computer where the products are installed.
  • Verify that you have a test residing within an Eclipse workspace on the Jenkins slave where the products are installed.
  • You must shut down IBM Installation Manager and the testing products before starting test execution.
Note: Tests will not run in the Chrome browser on Linux or Mac OS. This is because the Jenkins slave must be started with Admin or root privileges using the java -jar slave.jar method, while Chrome cannot be run as root. With other browsers on Linux or Mac OS, you must use sudo before running the java command or run directly as root. On Windows, you must run the java command from a terminal launched by Administrator.

Installing the Jenkins plugins on the Jenkins master computer

  1. Download the Jenkins plugins from https://public.dhe.ibm.com/ibmdl/export/pub/software/rational/Jenkins_Plugins/ .
  2. From the Jenkins dashboard, install the Jenkins plugin for one or both test products.
  3. Configure Global Security to allow Random TCP Ports for JNLP (Java™ Network Launch Protocol) agents.

Job Configuration

  1. Create a new Jenkins free-style software project. For details, see https://wiki.jenkins-ci.org/display/JENKINS/Building+a+software+project.
  2. From the Jenkins dashboard, click Build > Add build step and click Run a product name test.

  3. Provide details about the test run as described below.

    The following table explains each field.

    Field Description
    Name Required. The name of the test.
    IBM Installation Manager location Required. Complete path to IBM Installation Manager.
    Workspace Required. Complete path to the Eclipse workspace.
    Project Required. The path, including the file name, of the project relative to the workspace.
    Test Suite Name Required. The path, including the file name, of the test to run relative to the project.
    Var File Optional. The complete path to the XML file that contains the variable name and value pairs.
    Config File Optional. The complete path to a file that contains the parameters for a test or schedule run.
    Results File Optional. The name of the results file. The default result file is the test or schedule name with a time stamp appended.
    Overwrite Results File Optional. Determines whether a results file with the same name is overwritten. The default value, false, means that the results file will not be overwritten.
    Quiet Optional. Turns off any message output from the launcher and returns to the command shell when the run or the attempt is complete.
    Number of Virtual Users Optional. Rational Performance Tester only. Overrides the default number of virtual users in the run. For a schedule, the default is the number of users specified in the schedule editor. For a test, the default is one user.
    Vm Args Optional. Java virtual machine arguments to pass in.
    Export Statistical Report Data File Optional. The complete path to a directory in which to store exported statistical report data.
    Custom Report Format File Optional. A comma-separated list of absolute paths to custom report format files (.view files) to use when exporting statistical report data with the Export Statistical Report Data File option.
    Exported Statistical Report in html Optional. The complete path to a directory in which to export web analytic results. The results are exported in the specified directory. Analyze the results on a web browser without using the test workbench.
    User Comments Optional. Add text within double quotation mark to display it in the User Comments row of the report.

    If you do not supply a value for Exported Statistical Report Data File, these logs will be saved in the Jenkins workspace/temp directory.

  4. Click Save to save the build step configuration.
  5. To run multiple test under the same job, click Add build step again and provide details for the next test.

Master/Slave Configuration

Master and slave configurations are supported by this plugin. See the Jenkins documentation on Distributed builds for more information.

While creating the job configuration, in addition to the steps above, you must provide the name of the slave node as the Label Expression in the Restrict where this project can be run field. This is the location where the products are installed and where tests can be run.

Restrict where this project can be run

Running tests

After creating the Job (project), open the project and click Build Now. This action starts the test run on the slave computer.

Build result and logs

  1. After the build completes, click the build number and open the console for the project. Look for Test Result to check the test execution status.
    Note: If you added multiple build steps to run multiple tests, you will find more than one Test Result.
  2. For product logs, log in to the slave machine and look in the Jenkins slave workspace/temp directory.

Feedback