Skip to main content

Elasticsearch process and client fixtures for py.test.

Project description

pytest-elasticsearch

Latest PyPI version Wheel Status Supported Python Versions License

Package status

Tests Coverage Status Requirements Status

What is this?

This is a pytest plugin, that enables you to test your code that relies on a running Elasticsearch search engine. It allows you to specify fixtures for Elasticsearch process and client.

How to use

Plugin contains two fixtures

  • elasticsearch - it’s a client fixture that has functional scope, and which cleans Elasticsearch at the end of each test.

  • elasticsearch_proc - session scoped fixture, that starts Elasticsearch instance at it’s first use and stops at the end of the tests.

Simply include one of these fixtures into your tests fixture list.

You can also create additional elasticsearch client and process fixtures if you’d need to:

from pytest_elasticsearch import factories

elasticsearch_my_proc = factories.elasticsearch_proc(
    port=None, logsdir='/tmp')
elasticsearch_my = factories.elasticsearch('elasticsearch_my_proc')

Configuration

You can define your settings in three ways, it’s fixture factory argument, command line option and pytest.ini configuration option. You can pick which you prefer, but remember that these settings are handled in the following order:

  • Fixture factory argument

  • Command line option

  • Configuration option in your pytest.ini file

Elasticsearch option

Fixture factory argument

Command line option

pytest.ini option

Default

logs directory

logsdir

–elasticsearch-logsdir

elasticsearch_logsdir

$TMPDIR

host

host

–elasticsearch-host

elasticsearch_host

127.0.0.1

port

port

–elasticsearch-port

elasticsearch_port

random

cluster_name

cluster_name

–elasticsearch-cluster-name

elasticsearch_cluster_name

elasticsearch_cluster_<port>

index store type

index_store_type

–elasticsearch-index-store-type

elasticsearch_index_store_type

memory

network publish host

network_publish_host

–elasticsearch-network-publish-host

elasticsearch_network_publish_host

127.0.0.1

logs prefix

logs_prefix

–elasticsearch-logs-prefix

elasticsearch_logs_prefix

enable zen discovery

discovery_zen_ping_multicast_enabled

–elasticsearch-discovery-zen-ping-multicast-enabled

elasticsearch_discovery_zen_ping_multicast_enabled

False

Example usage:

  • pass it as an argument in your own fixture

    elasticsearch_proc = factories.elasticsearch_proc(
        cluster_name='awsome_cluster)
  • use --elasticsearch-logsdir command line option when you run your tests

    py.test tests --elasticsearch-cluster-name=awsome_cluster
  • specify your directory as elasticsearch_cluster_name in your pytest.ini file.

    To do so, put a line like the following under the [pytest] section of your pytest.ini:

    [pytest]
    elasticsearch_cluster_name = awsome_cluster

Package resources

CHANGELOG

1.2.0

  • [feature] - migrate usage of getfuncargvalue to getfixturevalue. require at least pytest 3.0.0

  • [feature] - default logsdir to $TMPDIR

  • [feature] - run process on random port by default - enhances xdist experience

1.1.0

  • [feature] use tmpfile.gettempdir instead of hardcoded /tmp directory

  • [docs] added description to all command line and ini options

  • [bugfix] made command line option’s dests more distinc, to prevent from influencing other pytest plugins

1.0.0

  • [feature] pytest.ini option for every command line option

  • [feature] Command line options for every fixture factory argument

  • Extracted original code from pytest-dbfixtures

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-elasticsearch-1.2.0.tar.gz (30.5 kB view details)

Uploaded Source

Built Distributions

pytest_elasticsearch-1.2.0-py2.py3-none-any.whl (12.5 kB view details)

Uploaded Python 2 Python 3

pytest_elasticsearch-1.2.0-py2.7.egg (15.0 kB view details)

Uploaded Source

File details

Details for the file pytest-elasticsearch-1.2.0.tar.gz.

File metadata

File hashes

Hashes for pytest-elasticsearch-1.2.0.tar.gz
Algorithm Hash digest
SHA256 df96880c5538aeef80e015cd9080156d02540abd64bf45d4b3a7c37b89dccaf4
MD5 29aaca8bd4fd6d2f23c61ccc24ca94ee
BLAKE2b-256 b19ee9c162df2cbd20ff17c3184684e2faec5047a3965d128648770fc239756d

See more details on using hashes here.

File details

Details for the file pytest_elasticsearch-1.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_elasticsearch-1.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8e708e929b54314b56343b03896c1bf85884b39303c5d7d583d2f96e881a7915
MD5 922979dd020056e4965d5fec3bd40717
BLAKE2b-256 e12a801d92892c3a97173cd53a349ad0429f0ec760121ad0a30fd895483ce206

See more details on using hashes here.

File details

Details for the file pytest_elasticsearch-1.2.0-py2.7.egg.

File metadata

File hashes

Hashes for pytest_elasticsearch-1.2.0-py2.7.egg
Algorithm Hash digest
SHA256 ac4047e30c35325b97ed34b421549dd5616b7bcf78b284226aeb020023ccc160
MD5 74fd5fce221ea9378085ed727c90d0d9
BLAKE2b-256 ea2d3cef00d99a4aa3985933d1c5ff61707693764a36cf025db89404252eb0a9

See more details on using hashes here.

Supported by

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