Zig Test
introducing_zig_test.zig
Shell
$ zig test introducing_zig_test.zig
1/1 test "expect addOne adds one to 41"... OK
All 1 tests passed.
The introducing_zig_test.zig
code sample tests the addOne
to ensure that it returns 42
given the input 41
. From this test’s perspective, the addOne
function is said to be code under test.
zig test is a tool that creates and runs a test build. By default, it builds and runs an executable program using the default test runner provided by the Zig Standard Library as its main entry point. During the build, test
declarations found while the given Zig source file are included for the default test runner to run and report on.
This documentation discusses the features of the default test runner as provided by the Zig Standard Library. Its source code is located in lib/std/special/test_runner.zig
.
The shell output shown above displays two lines after the zig test command. These lines are printed to standard error by the default test runner:
Test [1/1] test “expect addOne adds one to 41”…
Lines like this indicate which test, out of the total number of tests, is being run. In this case, [1/1] indicates that the first test, out of a total of one test, is being run. Note that, when the test runner program’s standard error is output to the terminal, these lines are cleared when a test succeeds.
All 1 tests passed.
This line indicates the total number of tests that have passed.
Test declarations contain the keyword test
, followed by an optional name written as a , followed by a block containing any valid Zig code that is allowed in a .
By convention, non-named tests should only be used to make other tests run. Non-named tests cannot be .
Test declarations are similar to Functions: they have a return type and a block of code. The implicit return type of test
is the anyerror!void
, and it cannot be changed. When a Zig source file is not built using the zig test tool, the test declarations are omitted from the build.
See also:
When the zig test tool is building a test runner, only resolved test
declarations are included in the build. Initially, only the given Zig source file’s top-level declarations are resolved. Unless nested containers are referenced from a top-level test declaration, nested container tests will not be resolved.
The code sample below uses the std.testing.refAllDecls(@This())
function call to reference all of the containers that are in the file including the imported Zig source file. The code sample also shows an alternative way to reference containers using the _ = C;
syntax. This syntax tells the compiler to ignore the result of the expression on the right side of the assignment operator.
testdecl_container_top_level.zig
const std = @import("std");
const expect = std.testing.expect;
// Imported source file tests will run when referenced from a top-level test declaration.
// The next line alone does not cause "introducing_zig_test.zig" tests to run.
const imported_file = @import("introducing_zig_test.zig");
test {
// To run nested container tests, either, call `refAllDecls` which will
// reference all declarations located in the given argument.
// `@This()` is a builtin function that returns the innermost container it is called from.
// In this example, the innermost container is this file (implicitly a struct).
std.testing.refAllDecls(@This());
// or, reference each container individually from a top-level test declaration.
// The `_ = C;` syntax is a no-op reference to the identifier `C`.
_ = S;
_ = U;
_ = @import("introducing_zig_test.zig");
}
const S = struct {
test "S demo test" {
try expect(true);
}
const SE = enum {
V,
// This test won't run because its container (SE) is not referenced.
test "This Test Won't Run" {
try expect(false);
}
};
};
const U = union { // U is referenced by the file's top-level test declaration
s: US, // and US is referenced here; therefore, "U.Us demo test" will run
const US = struct {
test "U.US demo test" {
// This test is a top-level test declaration for the struct.
// The struct is nested (declared) inside of a union.
try expect(true);
};
test "U demo test" {
try expect(true);
}
};
Shell
$ zig test testdecl_container_top_level.zig
1/5 test ""... OK
2/5 S.test "S demo test"... OK
3/5 U.test "U demo test"... OK
4/5 introducing_zig_test.test "expect addOne adds one to 41"... OK
5/5 US.test "U.US demo test"... OK
All 5 tests passed.
The default test runner checks for an error returned from a test. When a test returns an error, the test is considered a failure and its is output to standard error. The total number of failures will be reported after all tests have run.
test.zig
const std = @import("std");
test "expect this to fail" {
try std.testing.expect(false);
}
test "expect this to succeed" {
try std.testing.expect(true);
}
Shell
One way to skip tests is to filter them out by using the zig test command line parameter --test-filter [text]. This makes the test build only include tests whose name contains the supplied filter text. Note that non-named tests are run even when using the --test-filter [text] command line parameter.
To programmatically skip a test, make a test
return the error error.SkipZigTest
and the default test runner will consider the test as being skipped. The total number of skipped tests will be reported after all tests have run.
test.zig
test "this will be skipped" {
return error.SkipZigTest;
}
Shell
$ zig test test.zig
1/1 test "this will be skipped"... test "this will be skipped"... SKIP
SKIP
0 passed; 1 skipped; 0 failed.
The default test runner skips tests containing a suspend point while the test is running using the default, blocking IO mode. (The evented IO mode is enabled using the --test-evented-io command line parameter.)
const std = @import("std");
test "async skip test" {
var frame = async func();
const result = await frame;
try std.testing.expect(result == 1);
}
fn func() i32 {
suspend {
resume @frame();
}
return 1;
}
Shell
$ zig test async_skip.zig
1/1 test "async skip test"... test "async skip test"... SKIP (async test)
SKIP (async test)
0 passed; 1 skipped; 0 failed.
In the code sample above, the test would not be skipped in blocking IO mode if the nosuspend
keyword was used (see ).
When code allocates Memory using the ‘s testing allocator, std.testing.allocator
, the default test runner will report any leaks that are found from using the testing allocator:
test.zig
Shell
$ zig test test.zig
1/1 test "detect leak"... OK
[gpa] (err): memory address 0x7fc140eb0000 leaked:
/home/andy/Downloads/zig/lib/std/array_list.zig:325:69: 0x20d9d9 in std.array_list.ArrayListAligned(u21,null).ensureTotalCapacityPrecise (test)
const new_memory = try self.allocator.reallocAtLeast(self.allocatedSlice(), new_capacity);
^
/home/andy/Downloads/zig/lib/std/array_list.zig:310:55: 0x20d7de in std.array_list.ArrayListAligned(u21,null).ensureTotalCapacity (test)
return self.ensureTotalCapacityPrecise(better_capacity);
^
try self.ensureTotalCapacity(newlen);
/home/andy/Downloads/zig/lib/std/array_list.zig:161:49: 0x209d54 in std.array_list.ArrayListAligned(u21,null).append (test)
const new_item_ptr = try self.addOne();
^
/home/andy/Downloads/zig/docgen_tmp/test.zig:6:20: 0x209730 in test "detect leak" (test)
try list.append('☔');
^
/home/andy/Downloads/zig/lib/std/special/test_runner.zig:80:28: 0x23bd83 in std.special.main (test)
} else test_fn.func();
^
/home/andy/Downloads/zig/lib/std/start.zig:543:22: 0x233cac in std.start.callMain (test)
root.main();
^
/home/andy/Downloads/zig/lib/std/start.zig:495:12: 0x20e7ce in std.start.callMainWithArgs (test)
return @call(.{ .modifier = .always_inline }, callMain, .{});
^
All 1 tests passed.
1 errors were logged.
1 tests leaked memory.
error: the following test command failed with exit code 1:
docgen_tmp/zig-cache/o/8e4964e05ddaf866e77360a551b3c05b/test /home/andy/Downloads/zig/build-release/zig
See also:
Use the compile variable @import("builtin").is_test
to detect a test build:
detect_test.zig
const std = @import("std");
const builtin = @import("builtin");
const expect = std.testing.expect;
test "builtin.is_test" {
try expect(isATest());
}
fn isATest() bool {
return builtin.is_test;
}
Shell
$ zig test detect_test.zig
1/1 test "builtin.is_test"... OK
All 1 tests passed.
The default test runner and the Zig Standard Library’s testing namespace output messages to standard error.
The Testing Namespace
The Zig Standard Library’s testing
namespace contains useful functions to help you create tests. In addition to the expect
function, this document uses a couple of more functions as exemplified here:
testing_functions.zig
const std = @import("std");
test "expectEqual demo" {
const expected: i32 = 42;
const actual = 42;
// The first argument to `expectEqual` is the known, expected, result.
// The second argument is the result of some expression.
// The actual's type is casted to the type of expected.
try std.testing.expectEqual(expected, actual);
}
test "expectError demo" {
const expected_error = error.DemoError;
const actual_error_union: anyerror!void = error.DemoError;
// `expectError` will fail when the actual error is different than
// the expected error.
try std.testing.expectError(expected_error, actual_error_union);
Shell
Test Tool Documentation
zig test has a few command line parameters which affect the compilation. See zig test —help for a full list.