1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
.. image:: https://img.shields.io/github/actions/workflow/status/saltstack/pytest-shell-utilities/testing.yml?style=plastic&branch=main
:target: https://github.com/saltstack/pytest-shell-utilities/actions/workflows/testing.yml
:alt: CI
.. image:: https://readthedocs.org/projects/pytest-shell-utilities/badge/?style=plastic
:target: https://pytest-shell-utilities.readthedocs.io
:alt: Docs
.. image:: https://img.shields.io/codecov/c/github/saltstack/pytest-shell-utilities?style=plastic&token=ctdrjPj4mc
:target: https://codecov.io/gh/saltstack/pytest-shell-utilities
:alt: Codecov
.. image:: https://img.shields.io/pypi/pyversions/pytest-shell-utilities?style=plastic
:target: https://pypi.org/project/pytest-shell-utilities
:alt: Python Versions
.. image:: https://img.shields.io/pypi/wheel/pytest-shell-utilities?style=plastic
:target: https://pypi.org/project/pytest-shell-utilities
:alt: Python Wheel
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=plastic
:target: https://github.com/psf/black
:alt: Code Style: black
.. image:: https://img.shields.io/pypi/l/pytest-shell-utilities?style=plastic
:alt: PyPI - License
..
include-starts-here
==============================
What is Pytest Shell Utilities
==============================
"When in doubt, shell out"
-- Thomas S. Hatch
This pytest plugin was extracted from `pytest-salt-factories`_.
If provides a basic fixture ``shell`` which basically uses ``subprocess.Popen``
to run commands against the running system on a shell while providing a nice
assert'able return class.
.. _pytest-salt-factories: https://github.com/saltstack/pytest-salt-factories
Install
=======
Installing ``pytest-shell-utilities`` is as simple as:
.. code-block:: bash
python -m pip install pytest-shell-utilities
And, that's honestly it.
Usage
=====
Once installed, you can now use the ``shell`` fixture to run some commands and assert against the
outcome.
.. code-block:: python
def test_assert_good_exitcode(shell):
ret = shell.run("exit", "0")
assert ret.returncode == 0
def test_assert_bad_exitcode(shell):
ret = shell.run("exit", "1")
assert ret.returncode == 1
If the command outputs parseable JSON, the ``shell`` fixture can attempt loading that output as
JSON which allows for asserting against the JSON loaded object.
.. code-block:: python
def test_against_json_output(shell):
d = {"a": "a", "b": "b"}
ret = shell.run("echo", json.dumps(d))
assert ret.data == d
Additionally, the return object's ``.stdout`` and ``.stderr`` can be line matched using
`pytest.pytester.LineMatcher`_:
.. code-block:: python
MARY_HAD_A_LITTLE_LAMB = """\
Mary had a little lamb,
Its fleece was white as snow;
And everywhere that Mary went
The lamb was sure to go.
"""
def test_matcher_attribute(shell):
ret = shell.run("echo", MARY_HAD_A_LITTLE_LAMB)
ret.stdout.matcher.fnmatch_lines_random(
[
"*had a little*",
"Its fleece was white*",
"*Mary went",
"The lamb was sure to go.",
]
)
.. _pytest.pytester.LineMatcher: https://docs.pytest.org/en/stable/reference.html#pytest.pytester.LineMatcher
..
include-ends-here
Documentation
=============
The full documentation can be seen `here <https://pytest-shell-utilities.readthedocs.io>`_.
|