Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8395510
PKG-INFO
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
12 KB
Subscribers
None
PKG-INFO
View Options
Metadata-Version: 2.1
Name: mirakuru
Version: 1.1.0
Summary: Process executor for tests.
Home-page: https://github.com/ClearcodeHQ/mirakuru
Author: Clearcode - The A Room
Author-email: thearoom@clearcode.cc
License: LGPL
Description: mirakuru
========
Mirakuru is a process orchestration tool designed for functional and integration tests.
Maybe you want to be able to start a database before you start your program
or maybe you just need to set additional services up for your tests.
This is where you should consider using **mirakuru** to add superpowers to your program or tests.
.. image:: https://img.shields.io/pypi/v/mirakuru.svg
:target: https://pypi.python.org/pypi/mirakuru/
:alt: Latest PyPI version
.. image:: https://readthedocs.org/projects/mirakuru/badge/?version=v1.1.0
:target: http://mirakuru.readthedocs.io/en/v1.1.0/
:alt: Documentation Status
.. image:: https://img.shields.io/pypi/wheel/mirakuru.svg
:target: https://pypi.python.org/pypi/mirakuru/
:alt: Wheel Status
.. image:: https://img.shields.io/pypi/pyversions/mirakuru.svg
:target: https://pypi.python.org/pypi/mirakuru/
:alt: Supported Python Versions
.. image:: https://img.shields.io/pypi/l/mirakuru.svg
:target: https://pypi.python.org/pypi/mirakuru/
:alt: License
Package status
--------------
.. image:: https://travis-ci.org/ClearcodeHQ/mirakuru.svg?branch=v1.1.0
:target: https://travis-ci.org/ClearcodeHQ/mirakuru
:alt: Tests
.. image:: https://coveralls.io/repos/ClearcodeHQ/mirakuru/badge.png?branch=v1.1.0
:target: https://coveralls.io/r/ClearcodeHQ/mirakuru?branch=v1.1.0
:alt: Coverage Status
.. image:: https://requires.io/github/ClearcodeHQ/mirakuru/requirements.svg?tag=v1.1.0
:target: https://requires.io/github/ClearcodeHQ/mirakuru/requirements/?tag=v1.1.0
:alt: Requirements Status
About
-----
In a project that relies on multiple processes there might be a need to guard code
with tests that verify interprocess communication. So one needs to set up all of
required databases, auxiliary and application services to verify their cooperation.
Synchronising (or orchestrating) test procedure with tested processes might be a hell.
If so, then **mirakuru** is what you need.
``Mirakuru`` starts your process and waits for the clear indication that it's running.
Library provides six executors to fit different cases:
* SimpleExecutor - starts a process and does not wait for anything.
It is useful to stop or kill a process and its subprocesses.
Base class for all the rest of executors.
* Executor - base class for executors verifying if a process has started.
* OutputExecutor - waits for a specified output to be printed by a process.
* TCPExecutor - waits for the ability to connect through TCP with a process.
* HTTPExecutor - waits for a successful HEAD request (and TCP before).
* PidExecutor - waits for a specified .pid file to exist.
.. code-block:: python
from mirakuru import HTTPExecutor
from httplib import HTTPConnection, OK
def test_it_works():
# The ``./http_server`` here launches some HTTP server on the 6543 port,
# but naturally it is not immediate and takes a non-deterministic time:
executor = HTTPExecutor("./http_server", url="http://127.0.0.1:6543/")
# Start the server and wait for it to run (blocking):
executor.start()
# Here the server should be running!
conn = HTTPConnection("127.0.0.1", 6543)
conn.request("GET", "/")
assert conn.getresponse().status is OK
executor.stop()
A command by which executor spawns a process can be defined by either string or list.
.. code-block:: python
# command as string
TCPExecutor('python -m smtpd -n -c DebuggingServer localhost:1025', host='localhost', port=1025)
# command as list
TCPExecutor(
['python', '-m', 'smtpd', '-n', '-c', 'DebuggingServer', 'localhost:1025'],
host='localhost', port=1025
)
Authors
-------
The project was firstly developed by `Mateusz Lenik <http://mlen.pl>`_
as the `summon_process <https://github.com/mlen/summon_process>`_.
Later forked, renamed into **mirakuru** and tended to by The A Room @ `Clearcode <http://clearcode.cc>`_
and `the other authors <https://github.com/ClearcodeHQ/mirakuru/blob/master/AUTHORS.rst>`_.
License
-------
``mirakuru`` is licensed under LGPL license, version 3.
Contributing and reporting bugs
-------------------------------
Source code is available at: `ClearcodeHQ/mirakuru <https://github.com/ClearcodeHQ/mirakuru>`_.
Issue tracker is located at `GitHub Issues <https://github.com/ClearcodeHQ/mirakuru/issues>`_.
Projects `PyPI page <https://pypi.python.org/pypi/mirakuru>`_.
When contributing, don't forget to add your name to the AUTHORS.rst file.
CHANGELOG
=========
1.1.0
----------
- [enhancement] Executor's timeout to be set for both executor's start and stop
- [enhancement] It's no longer possible to hang indefinitely on the start
or stop. Timeout is set to 3600 seconds by default, with values possible
between `0` and `sys.maxsize` with the latter still bit longer
than `2924712086` centuries.
1.0.0
----------
- [enhancement] Do not fail if processes child throw EPERM error
during clean up phase
- [enhancement] Run subprocesses in shell by default on Windows
- [ehnancement] Do not pass preexec_fn on windows
0.9.0
----------
- [enhancement] Fallback to kill through SIGTERM on Windows,
since SIGKILL is not available
- [enhancement] detect cases where during stop process already exited,
and simply clean up afterwards
0.8.3
----------
- [enhancement] when killing the process ignore OsError with errno `no such process` as the process have already died.
- [enhancement] small context manager code cleanup
0.8.2
----------
- [bugfix] atexit cleanup_subprocesses() function now reimports needed functions
0.8.1
----------
- [bugfix] Handle IOErrors from psutil (#112)
- [bugfix] Pass global vars to atexit cleanup_subprocesses function (#111)
0.8.0
----------
- [feature] Kill all running mirakuru subprocesses on python exit.
- [enhancement] Prefer psutil library (>=4.0.0) over calling 'ps xe' command to find leaked subprocesses.
0.7.0
----------
- [feature] HTTPExecutor enriched with the 'status' argument.
It allows to define which HTTP status code(s) signify that a HTTP server is running.
- [feature] Changed executor methods to return itself to allow method chaining.
- [feature] Context Manager to return Executor instance, allows creating Executor instance on the fly.
- [style] Migrated `%` string formating to `format()`.
- [style] Explicitly numbered replacement fields in string.
- [docs] Added documentation for timeouts.
0.6.1
----------
- [refactoring] Moved source to src directory.
- [fix, feature] Python 3.5 fixes.
- [fix] Docstring changes for updated pep257.
0.6.0
----------
- [fix] Modify MANIFEST to prune tests folder.
- [feature] HTTPExecutor will now set the default 80 if not present in a URL.
- [feature] Detect subprocesses exiting erroneously while polling the checks and error early.
- [fix] Make test_forgotten_stop pass by preventing the shell from optimizing forking out.
0.5.0
----------
- [style] Corrected code to conform with W503, D210 and E402 linters errors as reported by pylama `6.3.1`.
- [feature] Introduced a hack that kills all subprocesses of executor process.
It requires 'ps xe -ww' command being available in OS otherwise logs error.
- [refactoring] Classes name convention change.
Executor class got renamed into SimpleExecutor and StartCheckExecutor class got renamed into Executor.
0.4.0
-------
- [feature] Ability to set up custom signal for stopping and killing processes managed by executors.
- [feature] Replaced explicit parameters with keywords for kwargs handled by basic Executor init method.
- [feature] Executor now accepts both list and string as a command.
- [fix] Even it's not recommended to import all but `from mirakuru import *` didn't worked. Now it's fixed.
- [tests] increased tests coverage.
Even test cover 100% of code it doesn't mean they cover 100% of use cases!
- [code quality] Increased Pylint code evaluation.
0.3.0
-------
- [feature] Introduced PidExecutor that waits for specified file to be created.
- [feature] Provided PyPy compatibility.
- [fix] Closing all resources explicitly.
0.2.0
-------
- [fix] Kill all children processes of Executor started with shell=True.
- [feature] Executors are now context managers - to start executors for given context.
- [feature] Executor.stopped - context manager for stopping executors for given context.
- [feature] HTTPExecutor and TCPExecutor before .start() check whether port
is already used by other processes and raise AlreadyRunning if detects it.
- [refactoring] Moved python version conditional imports into compat.py module.
0.1.4
-------
- [fix] Fixed an issue where setting shell to True would execute only part of the command.
0.1.3
-------
- [fix] Fixed an issue where OutputExecutor would hang, if started process stopped producing output.
0.1.2
-------
- [fix] Removed leftover sleep from TCPExecutor._wait_for_connection.
0.1.1
-------
- [fix] Fixed `MANIFEST.in`.
- Updated packaging options.
0.1.0
-------
- Exposed process attribute on Executor.
- Exposed port and host on TCPExecutor.
- Exposed URL on HTTPExecutor.
- Simplified package structure.
- Simplified executors operating API.
- Updated documentation.
- Added docblocks for every function.
- Applied license headers.
- Stripped orchestrators.
- Forked off from `summon_process`.
Keywords: process executor tests summon_process
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing
Provides-Extra: docs
Provides-Extra: tests
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Jun 4 2025, 7:40 PM (10 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3242099
Attached To
rPMK python3-mirakuru
Event Timeline
Log In to Comment