module Test
Writing and running tests
This module provides a testing framework, and is used in the official suite that tests the specification. All its functions emit output conforming to the Test Anything Protocol.
Methods
sub plan
Defined as:
multi sub plan(Cool :skip-all()!)multi sub plan()
Specify the count of tests -- usually written at the beginning of a test file.
plan 15; # expect to run 15 tests
In subtest
s, plan
is used to specify the count of tests within the subtest.
If a plan
is used, it's not necessary to specify the end of testing with done-testing
.
You can also provide a :skip-all
named argument instead of a test count, to indicate that you want to skip all of the tests. Such a plan will call exit
, unless used inside of a subtest
.
plan :skip-all<These tests are only for Windows> unless .is-win;plan 1;ok dir 'C:/'; # this won't get run on non-Windows
If used in a subtest
, it will instead return
from that subtest
's Callable
. For that reason, to be able to use :skip-all
inside a subtest
, you must use a sub
instead of a regular block:
plan 2;subtest "Some Windows tests" => subok 42; # this will run everywhere and isn't affected by skip-all inside subtest
Note that plan
with :skip-all
is to avoid performing any tests without marking the test run as failed (i.e. the plan is to not run anything and that's all good). Use skip-rest
to skip all further tests, once the run has started (i.e. planned to run some tests, maybe even ran some, but now we're skipping all the rest of them). Use bail-out
to fail the test run without running any further tests (i.e. things are so bad, there's no point in running anything else; we've failed).
sub done-testing
Defined as:
sub done-testing()
Specify that testing has finished. Use this function when you don't have a plan
with the number of tests to run. A plan
is not required when using done-testing
.
It's recommended that the done-testing
function be removed and replaced with a plan
function when all tests are finalized. Use of plan
can help detect test failures otherwise not reported because tests were accidentally skipped due to bugs in the tests or bugs in the compiler. For example:
sub do-stuff ;use Test;ok .is-prime for do-stuff;done-testing;# output:1..0
The above example is where a done-testing
fails. do-stuff()
returned nothing and tested nothing, even though it should've returned results to test. But the test suite doesn't know how many tests were meant to be run, so it passes.
Adding plan
gives a true picture of the test:
sub do-stuff ;use Test;plan 1;ok .is-prime for do-stuff;# output:1..1# Looks like you planned 1 test, but ran 0
Note that leaving the done-testing
in place will have no effect on the new test results, but it should be removed for clarity.
sub ok
Defined as:
multi sub ok(Mu , = '')
The ok
function marks a test as passed if the given $value
evaluates to True
. The nok
function marks a test as passed if the given value evaluates to False
. Both functions accept an optional description of the test as second parameter.
my ; my ; ...;ok .success, 'HTTP response was successful';nok .error, 'Query completed without error';
In principle, you could use ok
for every kind of comparison test, by including the comparison in the expression passed to $value
:
sub factorial() ;ok factorial(6) == 720, 'Factorial - small integer';
However, where possible it's better to use one of the specialized comparison test functions below, because they can print more helpful diagnostics output in case the comparison fails.
sub nok
Defined as:
multi sub nok(Mu , = '')
The nok
function marks a test as passed if the given value evaluates to False
. It also accepts an optional description of the test as second argument.
my ; my ; ...;ok .success, 'HTTP response was successful';nok .error, 'Query completed without error';
sub is
Defined as
multi sub is(Mu , Mu , = '')multi sub is(Mu , Mu , = '')
Marks a test as passed if $value
and $expected
compare positively with the eq operator, unless $expected
is a type object, in which case ===
operator will be used instead; accepts an optional description of the test as the last argument.
NOTE: eq
operator the is()
uses stringifies, which means is()
is not a good function for testing more complex things, such as lists: is (1, (2, (3,))), [1, 2, 3]
passes the test, even though the operands are vastly different. For those cases, use is-deeply
routine
my ; sub factorial() ; ...;is .author, "Joe", 'Retrieving the author field';is factorial(6), 720, 'Factorial - small integer';my Int ;is , Int, 'The variable $a is an unassigned Int';
Note: if only whitespace differs between the values, is()
will output failure message differently, to show the whitespace in each values. For example, in the output below, the second test shows the literal \t
in the got:
line:
is "foo\tbar", "foo\tbaz"; # expected: 'foo baz'# got: 'foo bar'is "foo\tbar", "foo bar"; # expected: "foo bar"# got: "foo\tbar"
sub isnt
Defined as:
multi sub isnt(Mu , Mu , = '')multi sub isnt(Mu , Mu , = '')
Marks a test as passed if $value
and $expected
are not equal using the same rules as is()
. The function accepts an optional description of the test.
isnt pi, 3, 'The constant π is not equal to 3';my Int = 23;= Nil;isnt , Nil, 'Nil should not survive being put in a container';
sub is_approx
Defined as:
multi sub is_approx(Mu , Mu , = '')
NOTE: Deprecated as of version 6.d. Please use is-approx
instead.
Checks if result and the expected value are approximately equal to a certain degree of tolerance, fixed to 1e-5 or one-millionth of the expected value is its value is less than that.
use Test;is_approx(1e4, 1e4-1e-6, "Real close"); # OUTPUT: «ok 1 - Real close»
(This will print also a deprecation notice if you're using 6.d)
sub is-approx
Defined as:
multi sub is-approx(Numeric , Numeric , = '')
multi sub is-approx(Numeric , Numeric , Numeric ,= '')
multi sub is-approx(Numeric , Numeric , = '',Numeric : is required)
multi sub is-approx(Numeric , Numeric , = '',Numeric : is required)
multi sub is-approx(Numeric , Numeric , = '',Numeric : is required,Numeric : is required)
Marks a test as passed if the $value
and $expected
numerical values are approximately equal to each other. The subroutine can be called in numerous ways that let you test using relative tolerance ($rel-tol
) or absolute tolerance ($abs-tol
) of different values.
If no tolerance is set, the function will base the tolerance on the absolute value of $expected
: if it's smaller than 1e-6
, use absolute tolerance of 1e-5
; if it's larger, use relative tolerance of 1e-6
.
my Numeric (, , , ) = ...is-approx , ;is-approx , , 'test description';is-approx , , ;is-approx , , , 'test description';is-approx , , :;is-approx , , :, 'test description';is-approx , , :;is-approx , , :, 'test description';is-approx , , :, :;is-approx , , :, :, 'test description';
Absolute tolerance
When an absolute tolerance is set, it's used as the actual maximum value by which the $value
and $expected
can differ. For example:
is-approx 3, 4, 2; # successis-approx 3, 6, 2; # failis-approx 300, 302, 2; # successis-approx 300, 400, 2; # failis-approx 300, 600, 2; # fail
Regardless of values given, the difference between them cannot be more than 2
.
Relative tolerance
When a relative tolerance is set, the test checks the relative difference between values. Given the same tolerance, the larger the numbers given, the larger the value they can differ by can be.
For example:
is-approx 10, 10.5, :rel-tol<0.1>; # successis-approx 10, 11.5, :rel-tol<0.1>; # failis-approx 100, 105, :rel-tol<0.1>; # successis-approx 100, 115, :rel-tol<0.1>; # fail
Both versions use 0.1
for relative tolerance, yet the first can differ by about 1
while the second can differ by about 10
. The function used to calculate the difference is:
|value - expected|rel-diff = ────────────────────────max(|value|, |expected|)
and the test will fail if rel-diff
is higher than $rel-tol
.
Both absolute and relative tolerance specified
is-approx , , :rel-tol<.5>, :abs-tol<10>;
When both absolute and relative tolerances are specified, each will be tested independently, and the is-approx
test will succeed only if both pass.
sub is-approx-calculate
Defined as:
sub is-approx-calculate (,, where , where ,)
This is the actual routine called by is-approx
when absolute and relative tolerance are specified. They are tested independently, and the test succeeds only if both pass.
sub is-deeply
Defined as:
multi sub is-deeply(Seq , Seq , = '')multi sub is-deeply(Seq , Mu , = '')multi sub is-deeply(Mu , Seq , = '')multi sub is-deeply(Mu , Mu , = '')
Marks a test as passed if $value
and $expected
are equivalent, using the same semantics as the eqv operator. This is the best way to check for equality of (deep) data structures. The function accepts an optional description of the test as the last argument.
use Test;plan 1;sub string-info(Str() )is-deeply string-info('42 Butterflies ♥ Perl'), Map.new((:21length,char-counts => Bag.new-from-pairs: ( :15letters, :2digits, :4other, ))), 'string-info gives right info';
Note: for historical reasons, Seq:D arguments to is-deeply
get converted to Lists. If you want to ensure strict Seq
comparisons, use cmp-ok $got, 'eqv', $expected, $desc
instead.
sub cmp-ok
multi sub cmp-ok(Mu is raw, , Mu is raw, = '')
Compares $value
and $expected
with the given $comparison
comparator and passes the test if the comparison yields a True
value. The description of the test is optional.
The $comparison
comparator can be either a Callable or a Str containing an infix operator, such as '=='
, a '~~'
, or a user-defined infix.
cmp-ok 'my spelling is apperling', '~~', /perl/, "bad speller";
Metaoperators cannot be given as a string; pass them as a Callable instead:
cmp-ok <a b c>, &[!eqv], <b d e>, 'not equal';
A Callable $comparison
lets you use custom comparisons:
sub my-comp ;cmp-ok 1, , 2, 'the dice giveth and the dice taketh away'cmp-ok 2, -> , , 7,'we got primes, one larger than the other!';
sub isa-ok
Defined as:
multi sub isa-ok(Mu , Mu , = "The object is-a '$type.perl()'")
Marks a test as passed if the given object $value
is, or inherits from, the given $expected-type
. For convenience, types may also be specified as a string. The function accepts an optional description of the test, which defaults to a string that describes the object.
is Womblemy = GreatUncleBulgaria.new;isa-ok , Womble, "Great Uncle Bulgaria is a womble";isa-ok , 'Womble'; # equivalent
sub can-ok
Defined as:
multi sub can-ok(Mu , Str , = "..." )
Marks a test as passed if the given $variable
can run the given $method-name
. The function accepts an optional description. For instance:
;my = Womble.new;# with automatically generated test descriptioncan-ok , 'collect-rubbish';# => An object of type 'Womble' can do the method 'collect-rubbish'# with human-generated test descriptioncan-ok , 'collect-rubbish', "Wombles can collect rubbish";# => Wombles can collect rubbish
sub does-ok
Defined as:
multi sub does-ok(Mu , Mu , = "...")
Marks a test as passed if the given $variable
can do the given $role
. The function accepts an optional description of the test.
# create a Womble who can inventis Womble does Invent# ... and later in the testsuse Test;my = Tobermory.new;# with automatically generated test descriptiondoes-ok , Invent;# => The object does role Typedoes-ok , Invent, "Tobermory can invent";# => Tobermory can invent
sub like
Defined as:
sub like(Str() , Regex , = "text matches $expected.perl()")
Use it this way:
like 'foo', /fo/, 'foo looks like fo';
Marks a test as passed if the $value
, when coerced to a string, matches the $expected-regex
. The function accepts an optional description of the test with a default value printing the expected match.
sub unlike
Defined as:
multi sub unlike(Str() , Regex , = "text does not match $expected.perl()")
Used this way:
unlike 'foo', /bar/, 'foo does not look like bar';
Marks a test as passed if the $value
, when coerced to a string, does not match the $expected-regex
. The function accepts an optional description of the test, which defaults to printing the text that did not match.
sub use-ok
Defined as:
multi sub use-ok(Str , = "$code module can be use-d ok")
Marks a test as passed if the given $module
loads correctly.
use-ok 'Full::Qualified::ModuleName';
sub dies-ok
Defined as:
multi sub dies-ok(Callable , = '')
Marks a test as passed if the given $code
throws an exception.
The function accepts an optional description of the test.
sub saruman(Bool :)dies-ok , "Saruman dies";
sub lives-ok
Defined as:
multi sub lives-ok(Callable , = '')
Marks a test as passed if the given $code
does not throw an exception.
The function accepts an optional description of the test.
sub frodo(Bool :)lives-ok , "Frodo survives";
sub eval-dies-ok
Defined as:
multi sub eval-dies-ok(Str , = '')
Marks a test as passed if the given $string
throws an exception when eval
ed as code.
The function accepts an optional description of the test.
eval-dies-ok q[my $joffrey = "nasty";die "bye bye Ned" if $joffrey ~~ /nasty/],"Ned Stark dies";
sub eval-lives-ok
Defined as:
multi sub eval-lives-ok(Str , = '')
Marks a test as passed if the given $string
does not throw an exception when eval
ed as code.
The function accepts an optional description of the test.
eval-lives-ok q[my $daenerys-burns = False;die "Oops, Khaleesi now ashes" if $daenerys-burns],"Dany is blood of the dragon";
sub throws-like
Defined as:
sub throws-like(, , ?, *)
Marks a test as passed if the given $code
throws the specific exception expected exception type $ex_type
. The code $code
may be specified as something Callable
or as a string to be EVAL
ed. The exception may be specified as a type object or as a string containing its type name.
If an exception was thrown, it will also try to match the matcher hash, where the key is the name of the method to be called on the exception, and the value is the value it should have to pass. For example:
sub frodo(Bool :);throws-like , Exception, message => /dies/;
The function accepts an optional description of the test as the third positional argument.
The routine makes Failures fatal. If you wish to avoid that, use no fatal
pragma and ensure the tested code does not sink the possible Failures. If you wish to test that the code returns a Failure instead of throwing, use fails-like
routine instead.
sub fails-not-throws# test passes, even though it's just a Failure and would not always throw:throws-like , Exception;# test detects nothing thrown, because our Failure wasn't sunk or made fatal:throws-like , Exception;
Please note that you can only use the string form (for EVAL
) if you are not referencing any symbols in the surrounding scope. If you are, you should encapsulate your string with a block and an EVAL instead. For instance:
throws-like , X::TypeCheck::Argument;
sub fails-like
Defined as:
sub fails-like ( \test where Callable|Str, , ?, *)
Same interface as throws-like
, except checks that the code returns a Failure instead of throwing. If the code does throw or if the returned Failure has already been handled, that will be considered as a failed test.
fails-like , X::Str::Numeric,:message(/'Cannot convert string to number'/),'converting non-numeric string to number fails';
sub subtest
Defined as:
multi sub subtest(Pair )multi sub subtest(, )multi sub subtest(, = '')
The subtest
function executes the given block, consisting of usually more than one test, possibly including a plan
or done-testing
, and counts as one test in plan
, todo
, or skip
counts. It will pass the test only if all tests in the block pass. The function accepts an optional description of the subtest.
is Womblesubtest, "Check Great Uncle Bulgaria";
You can also place the description as the first positional argument, or use a Pair
with description as the key and subtest's code as the value. This can be useful for subtests with large bodies.
subtest 'A bunch of tests',subtest 'Another bunch of tests' =>
sub todo
Defined as:
multi sub todo(, = 1)
Sometimes tests just aren't ready to be run, for instance a feature might not yet be implemented, in which case tests can be marked as todo
. Or it could be the case that a given feature only works on a particular platform - in which case one would skip
the test on other platforms.
Mark $count
tests as TODO, giving a $reason
as to why. By default only one test will be marked TODO.
sub my-custom-pi ;todo 'not yet precise enough'; # Mark the test as TODO.is my-custom-pi(), pi, 'my-custom-pi'; # Run the test, but don't report# failure in test harness.
The result from the test code above will be something like:
not ok 1 - my-custom-pi# TODO not yet precise enough# Failed test 'my-custom-pi'# at test-todo.t line 7# expected: '3.14159265358979'# got: '3'
Note that if you todo
a subtest
, all of the failing tests inside of it will be automatically marked TODO as well and will not count towards your original TODO count.
sub skip
Defined as:
multi sub skip()multi sub skip(, = 1)
Skip $count
tests, giving a $reason
as to why. By default only one test will be skipped. Use such functionality when a test (or tests) would die if run.
sub num-forward-slashes() ;if ~~ 'linux'else
Note that if you mark a test as skipped, you must also prevent that test from running.
sub skip-rest
Defined as:
sub skip-rest( = '<unknown>')
Skip the remaining tests. If the remainder of the tests in the test file would all fail due to some condition, use this function to skip them, providing an optional $reason
as to why.
my ; sub womble ; ...;unless ~~ "Wimbledon Common"# tests requiring functional womblingok womble();# ...
Note that skip-rest
requires a plan
to be set, otherwise the skip-rest
call will throw an error. Note that skip-rest
does not exit the test run. Do it manually, or use conditionals to avoid running any further tests.
See also plan :skip-all('...')
to avoid running any tests at all and bail-out
to abort the test run and mark it as failed.
sub bail-out
sub bail-out (?)
If you already know the tests will fail, you can bail out of the test run using bail-out()
:
my ;...or bail-out 'Must have database connection for testing';
The function aborts the current test run, signaling failure to the harness. Takes an optional reason for bailing out. The subroutine will call exit()
, so if you need to do a clean-up, do it before calling bail-out()
.
If you want to abort the test run, but without marking it as failed, see skip-rest
or plan :skip-all('...')
sub pass
Defined as:
multi sub pass( = '')
The pass
function marks a test as passed. flunk
marks a test as not passed. Both functions accept an optional test description.
pass "Actually, this test has passed";flunk "But this one hasn't passed";
Since these subroutines do not provide indication of what value was received and what was expected, they should be used sparingly, such as when evaluating a complex test condition.
sub flunk
multi sub flunk( = '')
The opposite of pass
, makes a test fail with an optional message.
sub diag
sub diag()
Display diagnostic information in a TAP-compatible manner on the standard error stream. This is usually used when a particular test has failed to provide information that the test itself did not provide. Or it can be used to provide visual markers on how the testing of a test-file is progressing (which can be important when doing stress testing).
diag "Yay! The tests got to here!";