2010-10-27 20:52:28 +08:00
2010-10-27 23:36:27 +08:00
.. _`non-python tests`:
2010-10-27 20:52:28 +08:00
Working with non-python tests
====================================================
2010-11-06 06:37:25 +08:00
.. _`yaml plugin`:
2011-09-06 17:43:42 +08:00
A basic example for specifying tests in Yaml files
2010-10-27 20:52:28 +08:00
--------------------------------------------------------------
.. _`pytest-yamlwsgi`: http://bitbucket.org/aafshar/pytest-yamlwsgi/src/tip/pytest_yamlwsgi.py
2010-10-27 21:14:12 +08:00
.. _`PyYAML`: http://pypi.python.org/pypi/PyYAML/
2010-10-27 20:52:28 +08:00
Here is an example `` conftest.py `` (extracted from Ali Afshnars special purpose `pytest-yamlwsgi`_ plugin). This `` conftest.py `` will collect `` test*.yml `` files and will execute the yaml-formatted content as custom tests:
.. include :: nonpython/conftest.py
:literal:
You can create a simple example file:
.. include :: nonpython/test_simple.yml
:literal:
2010-10-27 21:14:12 +08:00
and if you installed `PyYAML`_ or a compatible YAML-parser you can
now execute the test specification::
2010-10-27 20:52:28 +08:00
2010-11-01 02:51:16 +08:00
nonpython $ py.test test_simple.yml
2015-06-07 05:30:49 +08:00
======= test session starts ========
2015-09-29 19:10:59 +08:00
platform linux -- Python 3.4.3, pytest-2.8.1, py-1.4.30, pluggy-0.3.1
2015-09-22 20:02:11 +08:00
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
2012-10-18 18:24:50 +08:00
collected 2 items
2010-11-07 17:19:58 +08:00
2015-09-29 19:10:59 +08:00
test_simple.yml F.
2012-10-18 18:24:50 +08:00
2015-06-07 05:30:49 +08:00
======= FAILURES ========
_______ usecase: hello ________
2012-10-18 18:24:50 +08:00
usecase execution failed
spec failed: 'some': 'other'
no further details known at this point.
2015-06-07 05:30:49 +08:00
======= 1 failed, 1 passed in 0.12 seconds ========
2010-10-27 20:52:28 +08:00
2015-09-22 20:02:11 +08:00
.. regendoc:wipe
2010-10-27 20:52:28 +08:00
You get one dot for the passing `` sub1: sub1 `` check and one failure.
Obviously in the above `` conftest.py `` you'll want to implement a more
2010-11-06 06:37:25 +08:00
interesting interpretation of the yaml-values. You can easily write
your own domain specific testing language this way.
.. note ::
`` repr_failure(excinfo) `` is called for representing test failures.
2010-11-06 18:38:53 +08:00
If you create custom collection nodes you can return an error
2010-11-06 06:37:25 +08:00
representation string of your choice. It
will be reported as a (red) string.
2011-12-05 18:10:48 +08:00
`` reportinfo() `` is used for representing the test location and is also
consulted when reporting in `` verbose `` mode::
2010-10-27 20:52:28 +08:00
nonpython $ py.test -v
2015-06-07 05:30:49 +08:00
======= test session starts ========
2015-09-29 19:10:59 +08:00
platform linux -- Python 3.4.3, pytest-2.8.1, py-1.4.30, pluggy-0.3.1 -- $PYTHON_PREFIX/bin/python3.4
2015-09-22 20:02:11 +08:00
cachedir: .cache
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
2012-10-18 18:24:50 +08:00
collecting ... collected 2 items
2015-09-22 22:52:35 +08:00
test_simple.yml::hello FAILED
2015-09-29 19:10:59 +08:00
test_simple.yml::ok PASSED
2010-11-07 17:19:58 +08:00
2015-06-07 05:30:49 +08:00
======= FAILURES ========
_______ usecase: hello ________
2012-10-18 18:24:50 +08:00
usecase execution failed
spec failed: 'some': 'other'
no further details known at this point.
2015-06-07 05:30:49 +08:00
======= 1 failed, 1 passed in 0.12 seconds ========
2010-10-27 20:52:28 +08:00
2015-09-22 20:02:11 +08:00
.. regendoc:wipe
2010-10-27 20:52:28 +08:00
While developing your custom test collection and execution it's also
interesting to just look at the collection tree::
2013-08-01 23:32:19 +08:00
nonpython $ py.test --collect-only
2015-06-07 05:30:49 +08:00
======= test session starts ========
2015-09-29 19:10:59 +08:00
platform linux -- Python 3.4.3, pytest-2.8.1, py-1.4.30, pluggy-0.3.1
2015-09-22 20:02:11 +08:00
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
2012-10-18 18:24:50 +08:00
collected 2 items
2015-09-22 20:02:11 +08:00
<YamlFile 'test_simple.yml'>
2015-09-22 22:52:35 +08:00
<YamlItem 'hello'>
2015-09-29 19:10:59 +08:00
<YamlItem 'ok'>
2011-03-09 17:58:36 +08:00
2015-06-07 05:30:49 +08:00
======= in 0.12 seconds ========