JUnit with Maven Build Automation

This example illustrates how to use the Shell Script Automation Host Feature to pull tests from GitHub. run an Apache Maven Build of JUnit tests, parse the results, and automatically upload the test results to qTest Manager.

After the initial upload, the script allows you to schedule specific tests from qTest Manager, rerun selected tests, and update only those results on qTest.

The directions below are only samples but have been tested for accuracy. Use at your own risk. If there is a problem with an end result, make sure that the configuration has been established correctly. Issues with sample exercises are not covered by support. 

Prerequisites

You will need to install the following applications to use the JMeter Automation Feature:

Tips for Prerequisite Set Up

Check PIP Installation

These instructions will work from Terminal (Mac. or Command Prompt (Windows.):

  1. Run this command to ensure the PIP install with Python was successful. It should output the pip version:

    pip --version Note: pip3 will work as well, example: pip3--version
  2. If PIP did not install, run the command below:

    python -m -ensurepip --default-pip 

    Note: For more information on PIP installation, read here:

    https://packaging.python.org/tutorials/installing-packages/

  3. Once the PIP install is successful, run the following commands individually:

    pip install requests
    pip install beautifulsoup4
    pip install lxml
    pip install pybase64

    Note: If using pip3, run the commands with pip3 in the individual install commands listed above.

    Example: pip3 install requests These commands will install the necessary modules required to run the python scripts. The modules are used to send requests to the API, parse xml documents, and upload files to qTest.

Windows

Ensure that all environment variables are set up correctly before running the Automation Host script, specifically that the PATH variable is updated for Python, Maven. and Git.

Mac

  1. Use Homebrew to install Python and Maven. Steps for installing Homebrew can be found at https://brew.sh

  2. Once you install Homebrew, run the following command to get Python3:

    brew install python3
  3. Enter the following command to get Apache Maven:

    brew install maven

JUnit Automation Host Example from GitHub

https://github.com/sanjayjohn/shell-agent-samples/tree/master/AutomationHostExamples/automateJunit

Update Configuration File

Open the conf.json file and update with your personal information. Enter your own qTest URL and API Token found in your qTest Manager Environment.

  • git_url: The shell script uses the URL to clone a repository and send pull requests every time it runs if -git input is used.

  • local_repository: The folder containing the test cases. The shell script will use this to know where to run the maven build. Make sure to place this folder in the same directory as the python and shell scripts.

  • qTest_api_token: The token used to authorize the connection to qTest Manager.

  • qTest_url: The personal URL that is used to access QASymphony API.

For this example, we will be pulling a JUnit Sample Test from our GitHub’s junit-sample https://github.com/QASymphony/junit-sample. For the git URL and local repository, use the information shown below in the example configuration file. Make sure to use your own API Token and URL or the demo will not work.

Setup Automation

Follow these steps to Setup your Automated Testing:

  1. Navigate to your Automation Host.

  2. Select the Add icon to add a new agent.

  3. In the New Agent window, enter the appropriate information for the following fields:

     

    • General Agent Information

      • Agent Name: Name

      • qTest Manager Project: Select your project

      • Agent Type: Choose Shell Agent

    • Test Scripts Information

      • Directory: The directory containing your scripts and shell agent (Directory where the scripts were cloned.)

      • Allocated Execution Time: Amount of time you expect the script to take to execute in minutes.

      • Kick-off Scripts: The file path to your shell script. This shell script takes in two inputs, one for using git and the second for updating your current test cycle.

        • To give the shell script permission to run, use the following command: Windows: run.bat Linux: chmod +x run.sh

        • Shell Script Inputs: -git Uses GitHub to clone a test case repository and send pull requests every time the shell script is run.

          -update Updates an existing test cycle or create a new test cycle if the first test run. (To create a new test cycle every time the script is run, do not use this argument.)

          Important: To run the shell agent without using GitHub or updating the existing test cycle, do not include the parameters above in the Kick-off Scripts section.

  4. Save to close.

Run the Shell Script

To start the shell script, select the yellow icon in the action field which will upload all of the test cases to qTest Manager.

Schedule your Tests

  1. In Manager, select the Test Execution tab. 

  2. Locate the Test Cycle in your project named "JUnit Automated Tests."

  3. Select the Test Cycle and it will display all of the tests that were run through the maven Build along with their statuses.

  4. Select the checkboxes for the specific tests you would like to schedule and select 'Schedule' from the 'More' drop-down menu.

  5. In the Agent drop-down menu, select the Shell Agent and select OK.

  6. Once the tests are scheduled, you will need to go back to the Automation Host and select Poll Now to kick the Shell Agent off.

Important: The shell script will only run the scheduled tests and upload those results to qTest Manager.

Tips for Maven Build:

In the pom.xml file, make sure the maven-surefire-plugin version is up to date. The shell script runs a maven test command to run single tests, which will only work on surefire-plugin versions 2.19.1 and above.