Just as cargo run
compiles your code and then runs the resultant binary, cargo test
compiles your code in test mode and runs the resultant test binary. The default behavior of the binary produced by cargo test
is to run all the tests in parallel and capture output generated during test runs, preventing the output from being displayed and making it easier to read the output related to the test results. You can, however, specify command line options to change this default behavior.
Some command line options go to cargo test
, and some go to the resultant test binary. To separate these two types of arguments, you list the arguments that go to cargo test
followed by the separator --
and then the ones that go to the test binary. Running cargo test --help
displays the options you can use with cargo test
, and running cargo test -- --help
displays the options you can use after the separator. Those options are also documented in the “Tests” section of the the rustc book.
When you run multiple tests, by default they run in parallel using threads, meaning they finish running faster and you get feedback quicker. Because the tests are running at the same time, you must make sure your tests don’t depend on each other or on any shared state, including a shared environment, such as the current working directory or environment variables.
For example, say each of your tests runs some code that creates a file on disk named test-output.txt and writes some data to that file. Then each test reads the data in that file and asserts that the file contains a particular value, which is different in each test. Because the tests run at the same time, one test might overwrite the file in the time between another test writing and reading the file. The second test will then fail, not because the code is incorrect but because the tests have interfered with each other while running in parallel. One solution is to make sure each test writes to a different file; another solution is to run the tests one at a time.
If you don’t want to run the tests in parallel or if you want more fine-grained control over the number of threads used, you can send the --test-threads
flag and the number of threads you want to use to the test binary. Take a look at the following example:
$ cargo test -- --test-threads=1
We set the number of test threads to 1
, telling the program not to use any parallelism. Running the tests using one thread will take longer than running them in parallel, but the tests won’t interfere with each other if they share state.
By default, if a test passes, Rust’s test library captures anything printed to standard output. For example, if we call println!
in a test and the test passes, we won’t see the println!
output in the terminal; we’ll see only the line that indicates the test passed. If a test fails, we’ll see whatever was printed to standard output with the rest of the failure message.
As an example, Listing 11-10 has a silly function that prints the value of its parameter and returns 10, as well as a test that passes and a test that fails.
{{#rustdoc_include ../listings/ch11-writing-automated-tests/listing-11-10/src/lib.rs}}
When we run these tests with cargo test
, we’ll see the following output:
{{#include ../listings/ch11-writing-automated-tests/listing-11-10/output.txt}}
Note that nowhere in this output do we see I got the value 4
, which is printed when the test that passes runs. That output has been captured. The output from the test that failed, I got the value 8
, appears in the section of the test summary output, which also shows the cause of the test failure.
If we want to see printed values for passing tests as well, we can tell Rust to also show the output of successful tests with --show-output
:
$ cargo test -- --show-output
When we run the tests in Listing 11-10 again with the --show-output
flag, we see the following output:
{{#include ../listings/ch11-writing-automated-tests/output-only-01-show-output/output.txt}}
Sometimes, running a full test suite can take a long time. If you’re working on code in a particular area, you might want to run only the tests pertaining to that code. You can choose which tests to run by passing cargo test
the name or names of the test(s) you want to run as an argument.
To demonstrate how to run a subset of tests, we’ll first create three tests for our add_two
function, as shown in Listing 11-11, and choose which ones to run.
{{#rustdoc_include ../listings/ch11-writing-automated-tests/listing-11-11/src/lib.rs}}
If we run the tests without passing any arguments, as we saw earlier, all the tests will run in parallel:
{{#include ../listings/ch11-writing-automated-tests/listing-11-11/output.txt}}
We can pass the name of any test function to cargo test
to run only that test:
{{#include ../listings/ch11-writing-automated-tests/output-only-02-single-test/output.txt}}
Only the test with the name one_hundred
ran; the other two tests didn’t match that name. The test output lets us know we had more tests that didn’t run by displaying 2 filtered out
at the end.
We can’t specify the names of multiple tests in this way; only the first value given to cargo test
will be used. But there is a way to run multiple tests.
We can specify part of a test name, and any test whose name matches that value will be run. For example, because two of our tests’ names contain add
, we can run those two by running cargo test add
:
{{#include ../listings/ch11-writing-automated-tests/output-only-03-multiple-tests/output.txt}}
This command ran all tests with add
in the name and filtered out the test named one_hundred
. Also note that the module in which a test appears becomes part of the test’s name, so we can run all the tests in a module by filtering on the module’s name.
Sometimes a few specific tests can be very time-consuming to execute, so you might want to exclude them during most runs of cargo test
. Rather than listing as arguments all tests you do want to run, you can instead annotate the time-consuming tests using the ignore
attribute to exclude them, as shown here:
Filename: src/lib.rs
{{#rustdoc_include ../listings/ch11-writing-automated-tests/no-listing-11-ignore-a-test/src/lib.rs:here}}
After #[test]
, we add the #[ignore]
line to the test we want to exclude. Now when we run our tests, it_works
runs, but expensive_test
doesn’t:
{{#include ../listings/ch11-writing-automated-tests/no-listing-11-ignore-a-test/output.txt}}
The expensive_test
function is listed as ignored
. If we want to run only the ignored tests, we can use cargo test -- --ignored
:
{{#include ../listings/ch11-writing-automated-tests/output-only-04-running-ignored/output.txt}}
By controlling which tests run, you can make sure your cargo test
results will be returned quickly. When you’re at a point where it makes sense to check the results of the ignored
tests and you have time to wait for the results, you can run cargo test -- --ignored
instead. If you want to run all tests whether they’re ignored or not, you can run cargo test -- --include-ignored
.