I finally succumbed to modernity and set up continuous integration in the citeproc-js
repo, rewriting the old Python test runner in node
. In the process, I spun the test runner off as a separate project, and included the support files (locales, juris modules, CSL and CSL-M schemata) as dependencies, so that the runner can be used as a standalone tool outside of the citeproc-js
source repository. If you have node
, mocha
, and java
installed on your system, you can install with this:
npm install -g citeproc-test-runner
After installing, you can invoke the runner with cslrun
. It will spit out instructions on how to set the path to a directory where style tests will be saved and read. After configuration, cslrun -h
will display a list of options to help you get started.
The tool can be used both for building and for running tests. If you export a set of items in CSL JSON, you can build tests from them with:
cslrun -S <style-nickname> -C <csl-json-file>
That will create a subdirectory with the style nickname under your styles root, and populate it with boilerplate test fixtures built from the data in the export file. You can then run:
cslrun -S <style-nickname> -w <csl-style-file> -a -k
That will run each of the tests in turn, failing miserably but with an option to adopt the processor’s return as the expected result for the test. If you hit Y
for each fixture, you have a set of passing tests, which you can tweak if there are anomalies in the style that generated the output. Be sure to rename the fixtures from their boilerplate names, since another run with the -C
option will overwrite them otherwise.
To use the tests as a validation and output monitor when editing a style, remove the -k
option:
cslrun -S <style-nickname> -w <csl-style-file> -a
The runner will watch the style file, and rerun validation and tests when it changes on disk, for pretty-good dynamic validation with any editor that saves files. Long-suffering users of nano
and edlin
rejoice!
As a nice extra in the CSL-M zone, the -w
option can be repeated, to watch one or more jurisdiction submodules in addition to the parent style, for unified integration testing of the two working together.
The script seems to work fine, but parts of it needed to be coded with async functions, which I don’t understand at all well. If you spot something awful in there and would like to file a PR, the script is in the Citeproc Test Runner repo on GitHub.
Enjoy!
FB