Numerical regression testing
Project description
===============================
nrtest
===============================
|pypi| |travis-ci| |coveralls| |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 comparison functions can easily be added
.. _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. Note that ``setup_script`` defines the environment needed to run the software.
.. code-block:: json
:caption: apps/topas-2.0.3.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. 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. In this case, we use ``topas binned`` (a custom comparison routine) though other comparison routines are available.
.. code-block:: json
:caption: tests/Scoring_01.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
.. |travis-ci| image:: https://img.shields.io/travis/davidchall/nrtest.svg
:target: https://travis-ci.org/davidchall/nrtest
:alt: Build Status
.. |coveralls| image:: https://coveralls.io/repos/github/davidchall/nrtest/badge.svg?branch=master
:target: https://coveralls.io/github/davidchall/nrtest?branch=master
:alt: Code Coverage
.. |readthedocs| image:: https://readthedocs.org/projects/nrtest/badge/?version=latest
:target: https://nrtest.readthedocs.org/en/latest/?badge=latest
:alt: Documentation Status
=======
History
=======
0.1.0 (2016-02-21)
------------------
* First release on PyPI.
nrtest
===============================
|pypi| |travis-ci| |coveralls| |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 comparison functions can easily be added
.. _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. Note that ``setup_script`` defines the environment needed to run the software.
.. code-block:: json
:caption: apps/topas-2.0.3.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. 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. In this case, we use ``topas binned`` (a custom comparison routine) though other comparison routines are available.
.. code-block:: json
:caption: tests/Scoring_01.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
.. |travis-ci| image:: https://img.shields.io/travis/davidchall/nrtest.svg
:target: https://travis-ci.org/davidchall/nrtest
:alt: Build Status
.. |coveralls| image:: https://coveralls.io/repos/github/davidchall/nrtest/badge.svg?branch=master
:target: https://coveralls.io/github/davidchall/nrtest?branch=master
:alt: Code Coverage
.. |readthedocs| image:: https://readthedocs.org/projects/nrtest/badge/?version=latest
:target: https://nrtest.readthedocs.org/en/latest/?badge=latest
:alt: Documentation Status
=======
History
=======
0.1.0 (2016-02-21)
------------------
* First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nrtest-0.1.0.tar.gz
(20.7 kB
view hashes)
Built Distribution
nrtest-0.1.0-py2.py3-none-any.whl
(17.0 kB
view hashes)
Close
Hashes for nrtest-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b319e7a5fae7752ec9df713b8d5a3a30616ad9adca6da7eb7b132c6f785f6ad7 |
|
MD5 | ecb2a66c6f2fd2eb25b198a6f58a025a |
|
BLAKE2b-256 | c5518bda9f9e429e8844eef413811ae5eb8245ad7d4d07663b6a4dff502aec1f |