Giter VIP home page Giter VIP logo

jmeter-allure-reporting's Introduction

preview

JMeter Allure reporting

Stars Watchers

Introduction

  • Are you writing functional tests in JMeter?
  • Do you find it difficult to understand what went wrong using standard means?
  • Do you want to see detailed test reports?
  • Do you need historical data?
  • Do you need to keep test documentation?

This solution can help you create reports on JMeter tests in the Allure Report format.

However, please note that it is NOT USABLE for load testing.


Table of contents


Quick start via docker-compose

docker compose up && \
docker cp jmeter:/result/allure-results allure-results-example &&\
docker rm -f jmeter &&\
allure generate allure-results-example --clean -o allure-report
allure open allure-report/

Quick start via GUI-Mode

chmod +x installer.sh
./installer.sh
./apache-jmeter/bin/jmeter -t allure-jmeter-example.jmx
allure generate allure-results/ --clean -o allure-report
allure open allure-report/

Then you should change the two variables in User Defined Variables to an absolute path and click RUN.

_ALLURE_REPORT_PATH:

  • To run it via docker-compose just put '/result/allure-results'
  • To run locally provide the absolute path to the allure-results folder

_ALLURE_CONFIG_PATH:

  • To run via docker-compose, just put allure-reporter.groovy (this file is already located in the root directory).
  • To run locally provide the absolute path to the allure-reporter.groovy

How it works

First, you need to initialize the parameters that are required to generate test results: Optional Text

If the case consists of several steps, it should look like this: Optional Text

Declare annotations before first step: Optional Text

Declare parameters in JSR223 Assertion: Optional Text

For example, if the case consists of one step a validation check looks like this: Optional Text

Do not use parameters if case has one step: Optional Text

Default report looks like this: Optional Text

  • After running the script, files will be created in the allure-results folder for generating the report. Next, you can generate the Allure Report by using the following command:
allure generate allure-results --clean -o allure-report

Allure Report would look like this: Optional Text

Works with the following Assertions:

Assertion
Response Assertion
JSON Assertion
Size Assertion
jp@gc - JSON/YAML Path Assertion

It should also work with the rest of the default assertions.

Additional features

Skipped annotations

If you would like to ignore test case, just add 'skipped' to the parameters near 'stop': Optional Text Optional Text

Critical annotations

If you have critical main case to prepares data for next tests, you may use 'critical' parameters. If this case fails - all next tests (thread group) will be stopped. Optional Text

Parameters annotations

The Markdown Table Data-driven Controller plugin allows you to use parameterized tests. We can put our params to the report

  1. Add Markdown Controller with params Optional Text

  2. Add variables to the main annotations like this:

    vars.put("allure.parameters","capsule_name,second_example_name_variable")

    Optional Text

  3. Add parameters to the sub annotations like this:

    parameters=[error_message_expected]
    
    // if step parameters more 1 - write with comma like
    // parameters=[variable1,variable2,error_message_expected]

    Optional Text

  4. Run the tests and then generate the report. Optional Text


Keep in report JSR223 Sampler

  1. Just use JSR223 Sampler as simple step
  2. Add sub annotation and asserts
  3. Generate report Optional Text

Add description

You can add some description to your test using this variable

vars.put("allure.description","Lorem Ipsum is simply dummy text of the printing and typesetting industry. \\nLorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book");

Change response content-type manually

Content-type is set automatically. If the default content-type of the response is incorrect, you can change it manually:

 content_type=[application/pdf]

Optional Text

Add link

You can add any links to your test like this:

vars.put("allure.links","issue,https://github.com/nonealexq/jmeter-allure-reporting/issues/6");

Also, you can add multiple links in one string like:

vars.put("allure.links","issue,https://github.com/nonealexq/jmeter-allure-reporting/issues/8," + "google.com,https://google.com");

Optional Text

Add issues (Only for AllureTMS)

You can add any issues to your test like this:

vars.put("allure.label.issue","JIRA_PROJECT_ID-100");

Also, you can add multiple issues in one string like:

vars.put("allure.label.issues","JIRA_PROJECT_ID-100,"JIRA_PROJECT_ID-129");

Add any custom label

If you want to add some custom label (for example severity/owner/tag) - you can do it!

vars.put("allure.label.severity","critical");
vars.put("allure.label.owner","None Alex");
vars.put("allure.label.tag","smoke");

Also, you can add multiple tags like this:

vars.put("allure.label.tags","critical,smoke,api,");

Ignore links or tags annotations in your solostep tests

This is often useful if you are create tests in MarkDown Table Data Driven Controller. When you need to create report one of the test without tags/links from Declare allure annotations you can use this parameters:

  • ignore_links - will not add any links to your solostep test
  • ignore_tags - will not add any tags to your solostep test

Look and feel with additional features: Optional Text Optional Text


Remove safety data in request

We do not recommend storing sensitive information in the reports. By default, all mentions of such information are overwritten Optional Text Optional Text


Log details to console

  1. The passing time of the test is logged.
  2. The number of passed tests is logged.
  3. Information about test passing status is logged at the end of the line along with the corresponding status.
  4. Critical failed tests are logged at the WARN level. Optional Text
  5. An error is logged if the start, continue, or stop annotations are not correct. Optional Text

Configure build in CI

Test Fragments info

If you want to use Test Fragments with prefix in CI - use this structure of .jmx files:

├── project-folder/
│   ├── test-plan/
│   │   ├── service-one.jmx
│   │   ├── service-two.jmx
│   │   ├── test_fragments/ 
│   │   │   ├── test-fragment-one.jmx
│   │   │   └── test-fragment-two.jmx
│   │   └──
│   └──    
└── 

Default docker nonealexq/jmeter:5.6.2 container will use include_prefix like /mnt/jmeter/test-plan/test_fragments/. It will be equated your local include_prefix.

Environment in container:

ENV JMETER_HOME="/opt/apache-jmeter/bin"
ENV JMETER_LIB="/opt/apache-jmeter/lib"
ENV TEST_FRAGMENTS_FOLDER="/mnt/jmeter/test-plan/test_fragments/"

Docker compose info

Use docker-compose up to clone data to container and run tests

Volumes:

    volumes:
      - ./:/mnt/jmeter
      - ./allure-results:/result/allure-results

If you want to save results - use

docker cp jmeter:/result ./results

It will copy your results from container to your agent.


Troubleshooting:

  • In a test case with multiple steps, if you forget to add one of the parameters in one of the steps, that step will not make it to the report, and something will definitely go wrong. So, be careful!

jmeter-allure-reporting's People

Contributors

nonealexq avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.