12 releases
0.4.2 | Oct 16, 2023 |
---|---|
0.4.0 | Mar 2, 2023 |
0.3.2 | Dec 1, 2022 |
0.3.1 | Jun 10, 2022 |
0.1.1 | Sep 26, 2018 |
#167 in Testing
354 downloads per month
Used in 4 crates
(2 directly)
22KB
387 lines
TAP: Test Anything Protocol
->
Lives on crates.io as the testanything
crate.
This Rust library provides facilities for the generating and emitting results in the Test Anything Protocol. Please feel free to see testanything.org for more information.
Usage
Please see the examples in the examples
folder.
Simple:
1..2
ok 1 Panda Bamboo
not ok 2 Curry Noodle
# Tree
# Flower
Use with alloc
only (#[no_std]
)
To use this crate with alloc in #[no_std]
, use:
testanything = { version = "*", default-features = false, features = ["alloc"] }
Testing
cargo test
License
lib.rs
:
The Test Anything Protocol (TAP) is a plaintext format for expressing test results. It has been around since 1987 when it was invented to help test Perl. With this crate, this wonderfully-useful tool has been brought to Rust!
This crate provides the machinery needed for producing and emitting TAP streams.
For working, executable examples, please see the examples
directory.
Examples
The first method for producing a TAP stream is the TapSuite
mechanism. This will come in handy when you're iterating over a collection and want to map
it to a collection of TapTest
results. We supply a TapSuiteBuilder
and a TapTestBuilder
to make this as nice as possible.
Behold! The TapSuite
use testanything::tap_test_builder::TapTestBuilder;
use testanything::tap_suite_builder::TapSuiteBuilder;
use std::io;
// Build a failing test
let failing_tap_test = TapTestBuilder::new()
.name("Example TAP test")
.passed(false)
.diagnostics(&vec!["This test failed because of X"])
.finalize();
// Construct a test result suite
let tap_suite = TapSuiteBuilder::new()
.name("Example TAP suite")
.tests(vec![failing_tap_test])
.finalize();
// Print TAP to standard output in one chunk
match tap_suite.print(io::stdout().lock()) {
Ok(_) => {}
Err(reason) => eprintln!("{}", reason),
}
The second method uses the TapWriter
facility and may be thought of as the direct approach. This mechanism allows you to write a semi-customizable TAP stream to STDOUT from anywhere in your program. Since the TAP specification requires that TAP be emitted to STDOUT, the TapWriter
doesn't get fancy with any of the stream interfaces.
Behold, the TapWriter
!
use testanything::tap_writer::TapWriter;
let writer = TapWriter::new("Example TAP stream");
// Write the plan out. This can come before or after the test results themselves.
writer.plan(1, 6);
// Give me the name as a diagnostic line
writer.name();
// Print out some test results
writer.ok(1, "Panda");
writer.ok(2, "Bamboo");
writer.ok(3, "Curry");
// This one failed, so explain why with a diagnostic line
writer.not_ok(4, "Noodle");
writer.diagnostic("The above test failed because of XYZ reason");
writer.ok(5, "Tree");
// Uh oh! something went horribly wrong and we need to stop before
// we print out the results from test 6!
writer.bail_out_with_message("Destabilized warp core! Can't continue!");