Next: Demonstration Functions, Up: Test and Demo Functions
Perform tests from the first file in the loadpath matching name.
test
can be called as a command or as a function. Called with a single argument name, the tests are run interactively and stop after the first error is encountered.With a second argument the tests which are performed and the amount of output is selected.
- 'quiet'
- Don't report all the tests as they happen, just the errors.
- 'normal'
- Report all tests as they happen, but don't do tests which require user interaction.
- 'verbose'
- Do tests which require user interaction.
The argument fid can be used to allow batch processing. Errors can be written to the already open file defined by fid, and hopefully when octave crashes this file will tell you what was happening when it did. You can use
stdout
if you want to see the results as they happen. You can also give a file name rather than an fid, in which case the contents of the file will be replaced with the log from the current test.Called with a single output argument success,
test
returns true is all of the tests were successful. Called with two output arguments n and max, the number of sucessful test and the total number of tests in the file name are returned.If the second argument is the string 'grabdemo', the contents of the demo blocks are extracted but not executed. Code for all code blocks is concatented and returned as code with idx being a vector of positions of the ends of the demo blocks.
If the second argument is 'explain', then name is ignored and an explanation of the line markers used is written to the file fid.
See also: error, assert, fail, demo, example.
test
scans the named script file looking for lines which
start with %!
. The prefix is stripped off and the rest of the
line is processed through the octave interpreter. If the code
generates an error, then the test is said to fail.
Since eval()
will stop at the first error it encounters, you must
divide your tests up into blocks, with anything in a separate
block evaluated separately. Blocks are introduced by the keyword
test
immediately following the %!
. For example,
%!test error("this test fails!"); %!test "this test doesn't fail since it doesn't generate an error";
When a test fails, you will see something like:
***** test error('this test fails!') !!!!! test failed this test fails!
Generally, to test if something works, you want to assert that it produces a correct value. A real test might look something like
%!test %! a = [1, 2, 3; 4, 5, 6]; B = [1; 2]; %! expect = [ a ; 2*a ]; %! get = kron (b, a); %! if (any(size(expect) != size(get))) %! error ("wrong size: expected %d,%d but got %d,%d", %! size(expect), size(get)); %! elseif (any(any(expect!=get))) %! error ("didn't get what was expected."); %! endif
To make the process easier, use the assert
function. For example,
with assert
the previous test is reduced to:
%!test %! a = [1, 2, 3; 4, 5, 6]; b = [1; 2]; %! assert (kron (b, a), [ a; 2*a ]);
assert
can accept a tolerance so that you can compare results
absolutely or relatively. For example, the following all succeed:
%!test assert (1+eps, 1, 2*eps) # absolute error %!test assert (100+100*eps, 100, -2*eps) # relative error
You can also do the comparison yourself, but still have assert generate the error:
%!test assert (isempty([])) %!test assert ([ 1,2; 3,4 ] > 0)
Because assert
is so frequently used alone in a test block, there
is a shorthand form:
%!assert (...)
which is equivalent to:
%!test assert (...)
Each block is evaluated in its own function environment, which means
that variables defined in one block are not automatically shared
with other blocks. If you do want to share variables, then you
must declare them as shared
before you use them. For example, the
following declares the variable a, gives it an initial value (default
is empty), then uses it in several subsequent tests.
%!shared a %! a = [1, 2, 3; 4, 5, 6]; %!assert (kron ([1; 2], a), [ a; 2*a ]); %!assert (kron ([1, 2], a), [ a, 2*a ]); %!assert (kron ([1,2; 3,4], a), [ a,2*a; 3*a,4*a ]);
You can share several variables at the same time:
%!shared a, b
You can also share test functions:
%!function a = fn(b) %! a = 2*b; %!assert (a(2),4);
Note that all previous variables and values are lost when a new shared block is declared.
Error and warning blocks are like test blocks, but they only succeed
if the code generates an error. You can check the text of the error
is correct using an optional regular expression <pattern>
.
For example:
%!error <passes!> error('this test passes!');
If the code doesn't generate an error, the test fails. For example,
%!error "this is an error because it succeeds.";
produces
***** error "this is an error because it succeeds."; !!!!! test failed: no error
It is important to automate the tests as much as possible, however
some tests require user interaction. These can be isolated into
demo blocks, which if you are in batch mode, are only run when
called with demo
or verbose
. The code is displayed before
it is executed. For example,
%!demo %! t=[0:0.01:2*pi]; x=sin(t); %! plot(t,x); %! you should now see a sine wave in your figure window
produces
> t=[0:0.01:2*pi]; x=sin(t); > plot(t,x); > you should now see a sine wave in your figure window Press <enter> to continue:
Note that demo blocks cannot use any shared variables. This is so that they can be executed by themselves, ignoring all other tests.
If you want to temporarily disable a test block, put #
in place
of the block type. This creates a comment block which is echoed
in the log file, but is not executed. For example:
%!#demo %! t=[0:0.01:2*pi]; x=sin(t); %! plot(t,x); %! you should now see a sine wave in your figure window
Block type summary:
%!test
%!error
%!warning
%!demo
%!#
%!shared x,y,z
%!function
%!assert (x, y, tol)
You can also create test scripts for builtins and your own C++ functions. Just put a file of the function name on your path without any extension and it will be picked up by the test procedure. You can even embed tests directly in your C++ code:
#if 0 %!test disp('this is a test') #endif
or
/* %!test disp('this is a test') */
but then the code will have to be on the load path and the user will have to remember to type test('name.cc'). Conversely, you can separate the tests from normal octave script files by putting them in plain files with no extension rather than in script files.
Produces an error if the condition is not met.
assert
can be called in three different ways.
assert (
cond)
- Called with a single argument cond,
assert
produces an error if cond is zero.assert (
observed,
expected)
- Produce an error if observed is not the same as expected. Note that observed and expected can be strings, scalars, vectors, matrices, lists or structures.
assert(
observed,
expected,
tol)
- Produce an error if relative error is less than tolerance. That is,
abs(
observed-
expected) >
tol*
expected. Absolute errorabs(
observed-
expected) > abs(
tol)
will be used when tolerance is negative or when the expected value is zero.See also: test.
Return true if code fails with an error message matching pattern, otherwise produce an error. Note that code is a string and if code runs successfully, the error produced is:
expected error but got noneIf the code fails with a different error, the message produced is:
expected <pattern> but got <text of actual error>The angle brackets are not part of the output.
Called with three arguments, the behavior is similar to
fail(
code,
pattern)
, but produces an error if no warning is given during code execution or if the code fails.