Skip to main content

A simple plugin to use with pytest

Project description

pytest-elk-reporter

PyPI version Python versions See Build Status on Travis CI See Build Status on AppVeyor Libraries.io dependency status for GitHub repo Using Black Codecov Reports

A plugin to send pytest test results to ELK stack, with extra context data

Features

  • Reporting into Elasticsearch each test result, as the test finish
  • Automaticlly append context data to each test:
    • git inforamtion such as branch or last commit and more
    • all of Jenkins env variables
    • username if available
  • Report a test summery to Elastic for each session with all the context data
  • can append any user data into the context sent to elastic

Requirements

Installation

You can install "pytest-elk-reporter" via pip from PyPI

pip install pytest-elk-reporter

ElasticSearch configureation

We need this auto_create_index enable for the indexes that are going to be used, since we don't have code to create the indexes, this is the default

curl -X PUT "localhost:9200/_cluster/settings" -H 'Content-Type: application/json' -d'
{
    "persistent": {
        "action.auto_create_index": "true"
    }
}
'

For more info on this elasticsearch feature check thier index documention

Usage

Run and configure from command line

pytest --es-address 127.0.0.1:9200
# or if you need user/password to authenticate
pytest --es-address my-elk-server.io:9200 --es-username fruch --es-password 'passwordsarenicetohave'

Configure from code

import pytest

@pytest.fixture(scope='session', autouse=True)
def configure_es(elk_reporter):
    # TODO: get cerdentials in more secure fashion programtically, maybe AWS secrects or the likes
    # or put them in plain-text in the code... what can ever go wrong...
    elk_reporter.es_address = "my-elk-server.io:9200"
    elk_reporter.es_user = 'fruch'
    elk_reporter.es_password = 'passwordsarenicetohave'
    elk_reporter.es_index_name = 'test_data'

Configure from pytest ini file

# put this in pytest.ini / tox.ini / setup.cfg
[pytest]
es_address = my-elk-server.io:9200
es_user = fruch
es_password = passwordsarenicetohave
es_index_name = test_data

see pytest docs for more about how to configure using .ini files

Collect context data for the whole session

For example, with this I'll be able to build a dash board per version

@pytest.fixture(scope="session", autouse=True)
def report_formal_version_to_elk(request):
    """
    Append my own data specific, for example which of the code uner test is used
    """
    # TODO: take it programticly of of the code under test...
    my_data = {"formal_version": "1.0.0-rc2" }

    elk = request.config.pluginmanager.get_plugin("elk-reporter-runtime")
    elk.session_data.update(**my_data)

Collect data for specific tests

def test_my_service_and_collect_timings(request, elk_reporter):
    response = requests.get("http://my-server.io/api/do_something")
    assert response.status_code == 200

    elk_reporter.append_test_data(request, {"do_something_response_time": response.elapsed.total_seconds() })
    # now doing response time per version dashboard quite easy
    # and yeah, it's not exactly real usable metric, it's just an example...

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the MIT license, "pytest-elk-reporter" is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

Thanks

This pytest plugin was generated with Cookiecutter along with @hackebrot's cookiecutter-pytest-plugin template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-elk-reporter-0.1.7.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

pytest_elk_reporter-0.1.7-py2.py3-none-any.whl (7.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pytest-elk-reporter-0.1.7.tar.gz.

File metadata

  • Download URL: pytest-elk-reporter-0.1.7.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pytest-elk-reporter-0.1.7.tar.gz
Algorithm Hash digest
SHA256 93cfaa810f737ac8784a67d4a9012355d174524b2d88f58591dd0ddbee3968f3
MD5 d6bb4f42933d6b55be80d50de90caf3d
BLAKE2b-256 a0cd46b2a8372fc9a5d9ef53ba1b52189676232f9c4a24aa2ae1fb71c901c92d

See more details on using hashes here.

File details

Details for the file pytest_elk_reporter-0.1.7-py2.py3-none-any.whl.

File metadata

  • Download URL: pytest_elk_reporter-0.1.7-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pytest_elk_reporter-0.1.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e89e9e9ce3b3fa0db3becfcf2ed84d834f93ad36b895921c6c2ee2deea1cbe9b
MD5 5241a4d0410eb231f19e4fa4f614a681
BLAKE2b-256 c196938a58a15769fbad234009df13595c9b63760aeec46a36ecebfaae6d9f8d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page