Code Monkey home page Code Monkey logo

testcafe-reporter-prometheus-multi's Introduction

testcafe-reporter-prometheus-multi test

Prometheus reporter for TestCafe allowing for alerts based on multiple suite executions across time.

Installation

$ npm install --save-exact --save-dev testcafe-reporter-prometheus-multi

Usage

Setup

Specify the reporter in your TestCafe config, e.g.

reporter: [
	"spec",
	{
		"name": "prometheus-multi",
		"output": "report.txt"
	}
]

Use option -r prometheus-multi:report.txt if you're running TestCafe from command line.

Labeling tests

The reporter makes use of fixtures' and tests' meta.app and meta.owner. If app or owner is not specified for a test, the meta from the fixture is used.

Example fixture with correct meta tags

fixture('My fixture')
  .meta({
    app: 'my-app',
    owner: 'me',
  })
  .page(...);

test('some test about my-app', async (testcafe) => {
  ...
});

test.meta({ app: 'someone-elses-app' })('a test about someone-elses-app', async (testcafe) => {
  ...
});

test.meta({ app: 'someone-elses-app', owner: 'someone-else' })('a test about someone-elses-app with a different owner', async (testcafe) => {
  ...
});

For more information, refer to TestCafe documentation.

Sending data to Prometheus

The easiest way to send the report to Prometheus, is via Pushgateway. Just curl the report file to the Pushgateway endpoint:

curl --data-binary @report.txt http://address.of/pushgateway

Output format

The aim of this project is for the report format to be compatible with Prometheus data model. Output contains the number of passed, skipped and failed tests for every combination of app and owner from the test suite.

Metric names (e2e_passed_tests, e2e_skipped_tests, e2e_failed_tests) are hardcoded, because TestCafe doesn't provide an option to pass any parameters to the reporter. If you need to use different metric names, you'll have to fork the project and create a new node.js package.

Example

# HELP e2e_passed_tests Passed tests
# TYPE e2e_passed_tests gauge
e2e_passed_tests{app="my-app",owner="me"} 1
e2e_passed_tests{app="someone-elses-app",owner="someone-else"} 1
e2e_passed_tests{app="my-app",owner="someone-else"} 1

# HELP e2e_skipped_tests Skipped tests
# TYPE e2e_skipped_tests gauge
e2e_skipped_tests{app="my-app",owner="me"} 0
e2e_skipped_tests{app="someone-elses-app",owner="someone-else"} 0
e2e_skipped_tests{app="my-app",owner="someone-else"} 0

# HELP e2e_failed_tests Failed tests
# TYPE e2e_failed_tests gauge
e2e_failed_tests{app="my-app",owner="me"} 1
e2e_failed_tests{app="someone-elses-app",owner="someone-else"} 0
e2e_failed_tests{app="my-app",owner="someone-else"} 1

Development

Use NPM link command to make this package available for use on your local machine.

First, link this package to your global node_modules folder:

cd /path/to/testcafe-reporter-prometheus-multi
npm install
npm link

Then, go to your project with the test suite and link the package from the global folder:

cd /path/to/your-project-with-tests
npm link testcafe-reporter-prometheus-multi # or your changed package name

FAQ

Why is the name so long?

TestCafe requires all reporters to have testcafe-reporter- prefix, and testcafe-reporter-prometheus is already taken.

Can I customize the metric names?

No, TestCafe currently doesn't offer a possibility to pass parameters to reporters, but you can always fork the project.

testcafe-reporter-prometheus-multi's People

Contributors

christian-bromann avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  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.