Zig Test

Code written within one or more test declarations can be used to ensure behavior meets expectations:

testing_introduction.zig

  1. const std = @import("std");
  2. test "expect addOne adds one to 41" {
  3. // The Standard Library contains useful functions to help create tests.
  4. // `expect` is a function that verifies its argument is true.
  5. // It will return an error if its argument is false to indicate a failure.
  6. // `try` is used to return an error to the test runner to notify it that the test failed.
  7. try std.testing.expect(addOne(41) == 42);
  8. }
  9. test addOne {
  10. // A test name can also be written using an identifier.
  11. // This is a doctest, and serves as documentation for `addOne`.
  12. try std.testing.expect(addOne(41) == 42);
  13. }
  14. /// The function `addOne` adds one to the number given as its argument.
  15. fn addOne(number: i32) i32 {
  16. return number + 1;
  17. }

Shell

  1. $ zig test testing_introduction.zig
  2. 1/2 testing_introduction.test.expect addOne adds one to 41... OK
  3. 2/2 testing_introduction.decltest.addOne... OK
  4. All 2 tests passed.

The testing_introduction.zig code sample tests the function 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 resolving 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/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:

1/2 testing_introduction.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/2 indicates that the first test, out of a total of two tests, 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.

2/2 testing_introduction.decltest.addOne…

When the test name is an identifier, the default test runner uses the text decltest instead of test.

All 2 tests passed.

This line indicates the total number of tests that have passed.

Test Declarations

Test declarations contain the keyword test, followed by an optional name written as a string literal or an identifier, followed by a block containing any valid Zig code that is allowed in a function.

Non-named test blocks always run during test builds and are exempt from Skip Tests.

Test declarations are similar to Functions: they have a return type and a block of code. The implicit return type of test is the Error Union Type 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.

Test declarations can be written in the same file, where code under test is written, or in a separate Zig source file. Since test declarations are top-level declarations, they are order-independent and can be written before or after the code under test.

See also:

Doctests

Test declarations named using an identifier are doctests. The identifier must refer to another declaration in scope. A doctest, like a doc comment, serves as documentation for the associated declaration, and will appear in the generated documentation for the declaration.

An effective doctest should be self-contained and focused on the declaration being tested, answering questions a new user might have about its interface or intended usage, while avoiding unnecessary or confusing details. A doctest is not a substitute for a doc comment, but rather a supplement and companion providing a testable, code-driven example, verified by zig test.

Test Failure

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 error return trace is output to standard error. The total number of failures will be reported after all tests have run.

testing_failure.zig

  1. const std = @import("std");
  2. test "expect this to fail" {
  3. try std.testing.expect(false);
  4. }
  5. test "expect this to succeed" {
  6. try std.testing.expect(true);
  7. }

Shell

  1. $ zig test testing_failure.zig
  2. 1/2 testing_failure.test.expect this to fail... FAIL (TestUnexpectedResult)
  3. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/testing.zig:540:14: 0x1038ebf in expect (test)
  4. if (!ok) return error.TestUnexpectedResult;
  5. ^
  6. /home/ci/actions-runner/_work/zig-bootstrap/zig/docgen_tmp/testing_failure.zig:4:5: 0x1038fd5 in test.expect this to fail (test)
  7. try std.testing.expect(false);
  8. ^
  9. 2/2 testing_failure.test.expect this to succeed... OK
  10. 1 passed; 0 skipped; 1 failed.
  11. error: the following test command failed with exit code 1:
  12. /home/ci/actions-runner/_work/zig-bootstrap/out/zig-local-cache/o/72e7a2de6b571d78928d146ffe650af4/test

Skip Tests

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.

testing_skip.zig

  1. test "this will be skipped" {
  2. return error.SkipZigTest;
  3. }

Shell

  1. $ zig test testing_skip.zig
  2. 1/1 testing_skip.test.this will be skipped... SKIP
  3. 0 passed; 1 skipped; 0 failed.

Report Memory Leaks

When code allocates Memory using the Zig Standard Library‘s testing allocator, std.testing.allocator, the default test runner will report any leaks that are found from using the testing allocator:

testing_detect_leak.zig

  1. const std = @import("std");
  2. test "detect leak" {
  3. var list = std.ArrayList(u21).init(std.testing.allocator);
  4. // missing `defer list.deinit();`
  5. try list.append('☔');
  6. try std.testing.expect(list.items.len == 1);
  7. }

Shell

  1. $ zig test testing_detect_leak.zig
  2. 1/1 testing_detect_leak.test.detect leak... OK
  3. [gpa] (err): memory address 0x7fd0fba04000 leaked:
  4. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/array_list.zig:457:67: 0x104b67e in ensureTotalCapacityPrecise (test)
  5. const new_memory = try self.allocator.alignedAlloc(T, alignment, new_capacity);
  6. ^
  7. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/array_list.zig:434:51: 0x10416c0 in ensureTotalCapacity (test)
  8. return self.ensureTotalCapacityPrecise(better_capacity);
  9. ^
  10. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/array_list.zig:483:41: 0x103e0b0 in addOne (test)
  11. try self.ensureTotalCapacity(newlen);
  12. ^
  13. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/array_list.zig:262:49: 0x103affd in append (test)
  14. const new_item_ptr = try self.addOne();
  15. ^
  16. /home/ci/actions-runner/_work/zig-bootstrap/zig/docgen_tmp/testing_detect_leak.zig:6:20: 0x1039202 in test.detect leak (test)
  17. try list.append('☔');
  18. ^
  19. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/compiler/test_runner.zig:158:25: 0x10486f2 in mainTerminal (test)
  20. if (test_fn.func()) |_| {
  21. ^
  22. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/compiler/test_runner.zig:35:28: 0x103e98b in main (test)
  23. return mainTerminal();
  24. ^
  25. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/start.zig:501:22: 0x103b4f9 in posixCallMainAndExit (test)
  26. root.main();
  27. ^
  28. /home/ci/actions-runner/_work/zig-bootstrap/out/host/lib/zig/std/start.zig:253:5: 0x103b061 in _start (test)
  29. asm volatile (switch (native_arch) {
  30. ^
  31. All 1 tests passed.
  32. 1 errors were logged.
  33. 1 tests leaked memory.
  34. error: the following test command failed with exit code 1:
  35. /home/ci/actions-runner/_work/zig-bootstrap/out/zig-local-cache/o/f261b2384dc043b698497f585dc054f5/test

See also:

Detecting Test Build

Use the compile variable @import("builtin").is_test to detect a test build:

testing_detect_test.zig

  1. const std = @import("std");
  2. const builtin = @import("builtin");
  3. const expect = std.testing.expect;
  4. test "builtin.is_test" {
  5. try expect(isATest());
  6. }
  7. fn isATest() bool {
  8. return builtin.is_test;
  9. }

Shell

  1. $ zig test testing_detect_test.zig
  2. 1/1 testing_detect_test.test.builtin.is_test... OK
  3. All 1 tests passed.

Test Output and Logging

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_namespace.zig

  1. const std = @import("std");
  2. test "expectEqual demo" {
  3. const expected: i32 = 42;
  4. const actual = 42;
  5. // The first argument to `expectEqual` is the known, expected, result.
  6. // The second argument is the result of some expression.
  7. // The actual's type is casted to the type of expected.
  8. try std.testing.expectEqual(expected, actual);
  9. }
  10. test "expectError demo" {
  11. const expected_error = error.DemoError;
  12. const actual_error_union: anyerror!void = error.DemoError;
  13. // `expectError` will fail when the actual error is different than
  14. // the expected error.
  15. try std.testing.expectError(expected_error, actual_error_union);
  16. }

Shell

  1. $ zig test testing_namespace.zig
  2. 1/2 testing_namespace.test.expectEqual demo... OK
  3. 2/2 testing_namespace.test.expectError demo... OK
  4. All 2 tests passed.

The Zig Standard Library also contains functions to compare Slices, strings, and more. See the rest of the std.testing namespace in the Zig Standard Library for more available functions.

Test Tool Documentation

zig test has a few command line parameters which affect the compilation. See zig test —help for a full list.