Metadata-Version: 2.1
Name: nrtest
Version: 0.2.5
Summary: Numerical regression testing
Home-page: https://github.com/davidchall/nrtest
Author: David Hall
Author-email: dhcrawley@gmail.com
License: MIT
Keywords: nrtest
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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 :: 3.7
Classifier: Programming Language :: Python :: 3.8
License-File: LICENSE

===============================
nrtest
===============================

|pypi| |ci| |readthedocs|

``nrtest`` is an end-to-end regression testing framework, designed for scientific software that perform numerical calculations.


Features
--------

``nrtest`` aims to simplify your workflow:

- JSON files describe the software under test and the tests themselves
- result files are stored in a portable benchmark directory
- benchmarks are compared by iterating through tests and their results
- custom comparisons can easily be added through extensions


.. _basic_usage:

Basic Usage
-----------

As an example usage, we consider testing TOPAS_. This is a Monte Carlo tool for particle simulation, designed for medical physics research. Of course, such a tool must be rigorously validated against experimental data. But it is also useful to frequently run shorter tests, checking for regressions by comparing results to a previous version.

First, we describe the software under test in a configuration file called ``apps/topas-2.0.3.json``. Note that ``setup_script`` defines the environment needed to run the software.

.. code-block:: json

    {
        "name": "topas",
        "version" : "2.0.3",
        "setup_script" : "/path/to/topas-2.0.3/setup.sh",
        "exe" : "topas"
    }

We then describe the test in second configuration file called ``tests/Scoring_01.json``. In doing so, we define the command-line arguments presented to the executable and the input files needed for the test to run. Finally, we also specify the expected output files, and declare how they should be compared to a benchmark. Here we use ``topas binned``, which is a custom comparison routine, though some comparison routines are bundled with nrtest. It is also easy to add your own.

.. code-block:: json

    {
        "name": "Scoring_01",
        "version": "1.0",
        "description": "Basic test shooting a 6cm diameter proton beam into a water phantom.",
        "args": [
            "Scoring_01.txt"
        ],
        "input_files": [
            "Scoring_01.txt",
            "GlobalParameters.txt"
        ],
        "output_files": {
            "Dose.csv": "topas binned"
        }
    }

To execute the test, we tell ``nrtest`` where to find the configuration files and where to output the benchmark. Note that ``nrtest`` will search ``tests/`` for tests, though we could have specified ``tests/Scoring_01.json``.

.. code-block:: bash

    $ nrtest execute apps/topas-2.0.3.json tests/ -o benchmarks/2.0.3
    INFO: Found 1 tests
    Scoring_01: pass
    INFO: Finished

To compare to a previous benchmark:

.. code-block:: bash

    $ nrtest compare benchmarks/2.0.3 benchmarks/2.0.2
    Scoring_01: pass
    INFO: Finished


More advanced usage is detailed in the documentation_.




.. _TOPAS: http://www.topasmc.org
.. _documentation: https://nrtest.readthedocs.org/en/latest


.. |pypi| image:: https://img.shields.io/pypi/v/nrtest.svg
        :target: https://pypi.python.org/pypi/nrtest
        :alt: PyPI Package

.. |ci| image:: https://github.com/davidchall/nrtest/workflows/CI/badge.svg
        :target: https://github.com/davidchall/nrtest/actions
        :alt: Build Status

.. |readthedocs| image:: https://readthedocs.org/projects/nrtest/badge/?version=latest
        :target: https://nrtest.readthedocs.org/en/latest/?badge=latest
        :alt: Documentation Status


=======
History
=======

0.2.5 (2021-08-10)
------------------

* Add ability to skip tests based on `minimum_app_version` config


0.2.4 (2019-09-11)
------------------

* Fix sporadic failures on Windows when deleting temporary files


0.2.3 (2018-02-09)
------------------

* Add ability to write comparison results to JSON file


0.2.0 (2016-02-21)
------------------

* Add extensions for compare functions


0.1.0 (2016-02-21)
------------------

* First release on PyPI.


