miamioh/behat-sensu-formatter

There is no license information available for the latest version (v0.6.1) of this package.

Package created to allow behat tests to be used within the sensu monitoring framework

v0.6.1 2018-01-10 13:51 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:21:16 UTC


README

Prerequisites

This extension requires:

  • PHP 7.0 or higher
  • Behat 3.x or higher

Install with composer:

$ composer require miamioh/behat-sensu-formatter

Basic usage

Activate the extension by specifying its class in your behat.yml:

# behat.yml
default:
    suites:
    ...

    extensions:
      miamioh\BehatSensuFormatter\BehatSensuFormatterExtension: ~
    ...

Then add it as a formatter in your behat.yml :

#behat.yml
  ...
  formatters:
    SensuFormatter: ~
  ...

Metric Check Type

If the check is going to be a metric check there is a change that needs to be made and another one that could be made depending on the check.

#behat.yml
  ...
  extensions:
    miamioh\BehatSensuFormatter\BehatSensuFormatterExtension:
      checkType: 'metric'
  ...

This will add 3 lines of metrics to the output:

  behat.tests.run 2 1515546664
  behat.tests.passed 2 1515546664
  behat.tests.failed 0 1515546664
  OK: All 2 tests passed

The Description of the metric, the value of the metric and the timestamp the metric was created. This information can then be used by Graphite to show a chart of passed and failed tests.

Additionally you could add the metricPreface parameter to your yml file to preface the metric name with specific information about the test run.

and another one that could be made depending on the check. so maybe metricPreface: 'test.myapp' or something like metricPreface: 'test.chrome.myapp' if you wanted to collet all your test metrics when the test is run against chrome vs maybe safari. when this preface is added then the output would be

  test.chrome.myapp.behat.tests.run 2 1515546664
  test.chrome.myapp.behat.tests.passed 2 1515546664
  test.chrome.myapp.behat.tests.failed 0 1515546664
  OK: All 2 tests passed