corda/docs/source/testing.rst

36 lines
1.8 KiB
ReStructuredText
Raw Normal View History

Testing your changes
====================
2017-09-05 16:21:07 +00:00
Automated tests
2017-09-05 16:21:07 +00:00
---------------
Corda has a suite of tests that any contributing developers must maintain and extend when adding new code.
2017-09-05 16:21:07 +00:00
There are several test suites:
2017-09-05 16:21:07 +00:00
* **Unit tests**: These are traditional unit tests that should only test a single code unit, typically a method or class.
* **Integration tests**: These tests should test the integration of small numbers of units, preferably with mocked out services.
* **Smoke tests**: These are full end to end tests which start a full set of Corda nodes and verify broader behaviour.
* **Other**: These include tests such as performance tests, stress tests, etc, and may be in an external repo.
2017-09-05 16:21:07 +00:00
Running the automated tests
^^^^^^^^^^^^^^^^^^^^^^^^^^^
These tests are mostly written with JUnit and can be run via ``gradle``:
2017-09-05 16:21:07 +00:00
* **Windows**: Run ``gradlew test integrationTest smokeTest``
* **Unix/Mac OSX**: Run ``./gradlew test integrationTest smokeTest``
2017-09-05 16:21:07 +00:00
Before creating a pull request please make sure these pass.
Manual testing
2017-09-05 16:21:07 +00:00
--------------
You should manually test anything that would be impacted by your changes. The areas that usually need to be manually tested and when are
as follows:
2017-09-05 16:21:07 +00:00
* **Node startup** - changes in the ``node`` or ``node:capsule`` project in both the Kotlin or gradle or the ``cordformation`` gradle plugin.
* **Sample project** - changes in the ``samples`` project. eg; changing the IRS demo means you should manually test the IRS demo.
* **Explorer** - changes to the ``tools/explorer`` project.
* **Demobench** - changes to the ``tools/demobench`` project.
2017-09-05 16:21:07 +00:00
How to manually test each of these areas differs and is currently not fully specified. For now the best thing to do is to ensure the
program starts, that you can interact with it, and that no exceptions are generated in normal operation.