Right now we are only checking tests individually, but by using this command you could analyze all the tests in one go. Although that sounds really nice, it’s output was only ever intended to be read by machines: what it actually outputs is a huge JSON string. This section will go over how to analyze that, and / or get cargo-difftests
to actually rerun the tests.
Warning
Under construction.
The actual type of the JSON is an array of AnalyzeAllSingleTestGroup, if you would like to parse that.
If you only want to rerun the tests, then maybe this section is for you.
Automatic test-rerunning
cargo-difftests analyze-all
accepts an --action
option, which can be either print
(default), assert-clean
or rerun-dirty
.
--action=print
As the name implies, this only prints out the JSON corresponding to all the analysis results, and leaves it up to the calling process to do something with that.
--action=assert-clean
This action analyzes all the difftest directories that were discovered, and if any of them is dirty, then it errors (and exits with a non-zero status code). Otherwise, it exits with the status code of 0, meaning that all the difftests found were clean after analysis.
--action=rerun-dirty
This action analyzes all the difftest directories, and then checks the analysis results for the dirty tests. It then proceeds to invoke an external command (--runner
option) for all the tests that have to be rerun, and then exits with the status code of that external command. Projects with non-trivial test pipelines can write special binaries for this purpose, but the default of cargo-difftests-default-runner
should be enough for most projects. Writing a custom runner will be covered in a later section.
cargo-difftests-default-runner
As previously mentioned, this is the default runner that cargo-difftests
uses. It is a binary that is installed alongside cargo-difftests
by default.
It has a few requirements to be able to use:
- It has to be in the
PATH
environment variable. - It has to be able to find the
cargo
binary in thePATH
environment variable.
Extra configuration
It then proceeds to invoke the following for each test.
-
<cargo_difftests_profile>
is the profile thatcargo-difftests
uses to run tests. By default, it isdifftests
, but can be configured using theCARGO_DIFFTESTS_PROFILE
environment variable. -
<test_name>
is the name of the test. -
<extra_args>
is a list of extra arguments that can be passed tocargo difftests
, specified in theCARGO_DIFFTESTS_EXTRA_CARGO_ARGS
environment variable. They are separated by,
s, and then are passed tocargo difftests collect-profiling-data
as-is.
Custom test runners
If the default runner is not enough for your project, you can write your own.
Take a look over the source code of the default runner if you would like some inspiration, but the gist of it is that you have to write a rust binary, which roughly looks like this:
Warning
Keep in mind that this does not also collect new profiling data. This means that if we analyze the code again, we will still have the old profiling data, and that would mean the test hasn’t run since, or at least that’s what
cargo-difftests
knows. Thehyper-complex-test-runner
has to invokecargo difftests collect-profiling-data
if subsequent calls tocargo-difftests analyze* / rerun-dirty*
will be made, or otherwise they will return incorrect results.