Test Management

Attention

This module is part of Tuleap Entreprise. It might not be available on your installation of Tuleap.

The Tuleap Test Management plugin (aka TTM) aims at providing a straightforward way to deal with test campaigns.

Test Management features:

  • Create and maintain test case definitions

  • Create test campaigns as a collection of test cases (manual or automated)

  • Follow test executions (Not run, passed, failed, blocked), with creation of bugs when a test fails

  • Realtime update for concurrent test execution by team

  • Link with requirements managed by Backlog

Overview

Here are the main concepts with Tuleap Test Management:

  • Test Case: it’s the description of something to test. The definition is meant to be re-used

  • Test Campaign: a collection of Test Case to run.

  • Test Execution: it’s the execution of one Test Case in the context of a Test Campaign

Test Case, Test Campaign and Test Execution are 3 different trackers.

When you click on Test management service in a project, you land on TTM home page that lists all active test campaigns and allows to create new ones.

Test management home page

Create a test campaign

From the home page of the service, there is “New campaign” button that will open the Campaign creation screen.

Test Management test creation

You need to give a name to your campaign and select which tests you want to execute during your validation campaign.

Adding tests to a campaign

Within a campaign, you can create add tests with a click on “Edit” button.

A new modal will enable you to look for existing artifacts or to create directly a new one.

Add tests to existing campaign

Modify or create tests

You can create tests directly inside the “Test Case” tracker, it means that you benefit of all tracker power for artifact creation:

  • Create one after another

  • Import from CSV

  • Import via REST

  • Import via XML

You can also directly create tests in campaigns via the [Edit] button next to campaign title.

Test Management test edition

You can also edit the test directly from the Test Management interface.

The test you create or you edit are automatically updated in the test campaign and will be re-usable in a following campaign.

Test steps

Important

You should manage steps in the Test Case tracker directly. Steps cannot be seen or defined from the Test Management interface.

In the artifact view of the test case you can:

  • Create new steps, at any place in the step list

  • Delete steps

  • Reorder existing steps

Each step is made of two text boxes:

  • In first place, Actions: should hold a list of things to do.

  • Then Expected Results: what you are expected to get after having done the Actions.

Both areas support HTML and Markdown formatting as well as images (copy/paste, drag’n drop, …).

Test Management test step edit in artifact

Those steps are displayed in the test management view, in the campaign.

Test Management test step

These steps provide a global result for the tests:

  • All steps are done -> test done

  • At least one step failed -> test fail

  • At least one step is blocked -> test blocked

  • At lest one step is not run -> test not run

Run a test campaign, execute tests

Within a campaign, you will see the list of tests proposed in the given campaign.

In the following figure, the user selected a test that “Passed”.

Test Management test list

Tests can have following status:

  • Not run, this is the default

  • Passed, the test was successful

  • Failed, the test lead to an error

  • Blocked, the test cannot be run

One can switch from one state to another (a test can be “Not run” then “Passed”, re-switched to “Not run” because tester didn’t get what was described to finish by “Failed”).

Example of test failure:

Test Management test fail

On failure, testers can give context and comments about it. In the comment section they can use inline HTML as well as paste images:

Pasted image in a failed test

Sometimes a failed test should lead to the creation of bug report. Testers can click on the bug icon in the test toolbar to either create a new bug or link to an existing one:

Create a bug out of a failed test

Linked bugs are then showed in the same “Bug” menu:

See bugs linked to failed tests

Test snapshot

When a test is selected for a campaign, Tuleap makes a snapshot of it. It means that if the test evolves later on, the campaign will still display the old version of the test. This allows to keep campaign consistent with the status of the project at a given point in the past.

When you modify a test in the Test Case tracker, the campaigns that were already created with this test will show the previous version of the test. To be precise, each campaign will the state of the test at the time ot the campaign creation.

When you modify a test within a given campaign (with the Edit button) the test content in this campaign will be automatically updated.

Test automation

Note

As of Tuleap 11.15 the REST API is able to process junit files directly making the ttm CLI tool deprecated. This documentation makes use of the Jq tool to format JSON payload but you obviously can run your own solution to format it.

TTM is able to consolidate automated test results inside its campaign. This way you can have a mixed campaign with both manual and automated tests. The key principles are:

  • TTM relies on an external tool like Jenkins to execute tests. Any CI tool can be used.

  • Test automation itself is not TTM business, you can use whatever tool you want (robot framework, cypress, selenium, etc) as long as it produces a junit XML output with results.

  • Automated tests are stored in a SCM (git or subversion)

  • The link between TTM and test results is done by associating TTM Test Definitions and Junit Test Suite

  • One Test Definition can be linked to one Test Suite at max

  • One Test Suite can be linked to one Test Definition at max

In the next sections we will describe how to setup TTM with Jenkins.

This assumes a couple of things:

  • The server where Tuleap is installed is located at https://tuleap.example.com

  • The project where TTM is enabled is called ‘test-automation-demo’ (its shortname)

Users and credentials

First you need to create a new Tuleap user that will be used by Jenkins to report test results. This user must be configured Tuleap side with the appropriate permissions to update “Test Executions” and read “Test Definitions”. We recommend using a dedicated user with limited permissions to reduce risks of credentials leaking.

At Jenkins side, you need to register this Tuleap user in the “Credentials” section. Create a new entry for “username and password” and give it a descriptive id like jenkins-tuleap-bot.

Configure TTM

The “Test Definitions” tracker must have one string or text field with name automated_tests. We recommend to add it close to “Description”. You can set whatever label you want, only the name is meaningful.

Note

Starting from Tuleap 9.19 the automated_tests field is part of the default Test Management tracker templates.

Associate automated tests results and test definitions

You need to associate testsuite from your junit test results and Test Definitions artifacts.

At this point you’ve got everything you need to report test results. You can test it by yourself by creating a new test campaign “Test automated” with the selected test definitions and call the API by hand:

$> make tests
$> ( for i in *.xml ; do cat $i ; echo 'JQ-SEPARATOR-JQ' ; done ) | \
jq -aRs 'rtrimstr("\n") | rtrimstr("JQ-SEPARATOR-JQ") | split("JQ-SEPARATOR-JQ") | {automated_tests_results: {build_url: "https://jenkins.example.com", junit_contents: .}} | \
curl -X PATCH --data-binary @- --header 'Content-type: application/json' --header 'X-Auth-AccessKey: tlp-k1-29.a3ba...' https://tuleap.example.com/api/testmanagement_campaigns/<YourCampaignId> '

Then check the status of your campaign in Test Management.

Configure Jenkins job

The configuration is done by using the Tuleap API plugin.

See Jenkins configuration for test automation to configure the Jenkins part.

Launch automated tests from the Test Management campaign

Edit your Campaign in Test Management and fill in the Jenkins job URL for the job you have just configured. Also fill in the Authentication token defined in the step before.

Configure the Test campaign and enter the Jenkins job URL and token

Once the campaign is configured, a button will appear in the Campaign details next to the Edit button: “Launch automated tests” The button lets you trigger the Jenkins job which will run the automated tests and set the corresponding Test executions to “Passed”!

Launch the Jenkins job from the Test campaign

Configuration of TTM

This section is for project administrators that want to customize / adapt TTM to better fit their usage.

Steps are missing in Test Case

Steps are parts of all templates but if you are using TTM since a long time you might not have them in you tracker yet.

This section covers how to activate steps in TTM when they are not present.

There are two new fields to add in your testmanagement trackers to be able to defined your steps:

  • Field step definition into Test definition tracker

  • Field step execution into Test execution tracker.

If one of this field is missing, steps cannot be run. In addition, these fields can only be added in the Test definition tracker and Test exec tracker defined in your testmanagement configuration.

To have working steps, these 2 fields must have a specific shortname:

  • Field step definition must have the shortname steps

  • Field step execution must have the shortname steps_results