Skip to main content

pytest plugin to manage external processes across test runs

Project description

.. image:: https://drone.io/bitbucket.org/pytest-dev/pytest-xprocess/status.png
:target: https://drone.io/bitbucket.org/pytest-dev/pytest-xprocess/latest
.. image:: https://pypip.in/v/pytest-xprocess/badge.png
:target: https://pypi.python.org/pypi/pytest-xprocess

experimental py.test plugin for managing processes across test runs
====================================================

Usage
---------

install via::

pip install pytest-xprocess

This will provide a ``xprocess`` fixture which helps
you to ensure that one ore more longer-running processes
are present for your tests. You can use it to start and
pre-configure test-specific databases (Postgres, Couchdb, ...).

Additionally there are two new command line options::

--xkill # kills all external processes
--xshow # shows currently running processes and log files


``xprocess`` fixture usage
-----------------------------

You typically define a project-specific fixture which
uses the ``xprocess`` fixture internally::

# content of conftest.py

import pytest

@pytest.fixture
def myserver(xprocess):
def preparefunc(cwd):
return ("PATTERN", [subprocess args])

logfile = xprocess.ensure("myserver", preparefunc)
conn = # create a connection or url/port info to the server
return conn

The ``xprocess.ensure`` function takes a name for the external process
because you can have multiple external processes.

The ``preparefunc`` is a function which gets the current working directory and
returns a ``(PATTERN, args, env)`` tuple. If the server has not yet been
started:

- the returned ``args`` are used to perform a subprocess invocation with
environment ``env`` (a mapping) and redirect its stdout to a new logfile

- the ``PATTERN`` is waited for in the logfile before returning.
It should thus match a state of your server where it is ready to
answer queries.

- the logfile is returned pointing to the line right after the match

else, if the server is already running simply the logfile is returned.

To inherit the main test process environment, return ``None`` for ``env``, or
omit it and return just ``(PATTERN, args)`` from the ``preparefunc``.

Note that the plugin needs to persist the process ID and logfile
information. It does this in a sub directory of the directory
which contains a ``pytest.ini`` or ``setup.py`` file.


Notes
-------------

The repository of this plugin is at http://bitbucket.org/pytest-dev/pytest-xprocess

For more info on py.test see http://pytest.org

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-xprocess-0.9.1.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

pytest_xprocess-0.9.1-py2.py3-none-any.whl (7.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pytest-xprocess-0.9.1.tar.gz.

File metadata

File hashes

Hashes for pytest-xprocess-0.9.1.tar.gz
Algorithm Hash digest
SHA256 f70e60cadb5ca1ac9500158ab0144dc9533586e1152fce1fe37e70dc03c5f49f
MD5 539574e58220fe333378983323a2cde9
BLAKE2b-256 a43e5aacf8ec5c94119aa116aadf424165d2bb1f8e010342a5aa6d4cad024224

See more details on using hashes here.

File details

Details for the file pytest_xprocess-0.9.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_xprocess-0.9.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b4455061b223b11c9dcb49c54da466441838dcb0c6d96496ef45997a21a28cd5
MD5 8a74ad811528dff0c6a64641fdddf0c5
BLAKE2b-256 b6464d2c0a1ae227ea7e5cb11fef9daa10ed1501112308ce5b17f5989fffa537

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