Title: | A Simple Package for Testing R Packages |
---|---|
Description: | Provides two convenience functions assert() and test_pkg() to facilitate testing R packages. |
Authors: | Yihui Xie [aut, cre] , Steven Mortimer [ctb] |
Maintainer: | Yihui Xie <[email protected]> |
License: | GPL-3 |
Version: | 0.13.1 |
Built: | 2024-11-08 05:59:05 UTC |
Source: | https://github.com/yihui/testit |
The function assert()
was inspired by stopifnot()
. It
emits a message in case of errors, which can be a helpful hint for diagnosing
the errors (stopifnot()
only prints the possibly truncated source code
of the expressions).
The infix operator %==%
is simply an alias of the
identical()
function to make it slightly easier and intuitive
to write test conditions. x %==% y
is the same as
identical(x, y)
. When it is used inside assert()
, a message
will be printed if the returned value is not TRUE
, to show the
values of the LHS (x
) and RHS (y
) via str()
,
which can be helpful for you to check why the assertion failed.
assert(fact, ...) x %==% y
assert(fact, ...) x %==% y
fact |
A message for the assertions when any of them fails; treated the
same way as expressions in |
... |
An R expression; see Details. |
x , y
|
two R objects to be compared |
For the ...
argument, it should be a single R expression wrapped in
{}
. This expression may contain multiple sub-expressions. A
sub-expression is treated as a test condition if it is wrapped in ()
(meaning its value will be checked to see if it is a logical vector
containing any FALSE
values) , otherwise it is evaluated in the normal
way and its value will not be checked. If the value of the last
sub-expression is logical, it will also be treated as a test condition.
For assert()
, invisible NULL
if all expressions
returned TRUE
, otherwise an error is signaled and the user-provided
message is emitted. For %==%
, TRUE
or FALSE
.
The internal implementation of assert()
is different with the
stopifnot()
function in R base: (1) the custom message
fact
is emitted if an error occurs; (2) assert()
requires the
logical values to be non-empty (logical(0)
will trigger an error);
(3) if ...
contains a compound expression in {}
that returns
FALSE
(e.g., if (TRUE) {1+1; FALSE}
), the first and the last
but one line of the source code from deparse()
are printed in
the error message, otherwise the first line is printed; (4) the arguments
in ...
are evaluated sequentially, and assert()
will signal
an error upon the first failed assertion, and will ignore the rest of
assertions.
library(testit) assert("T is bad for TRUE, and so is F for FALSE", { T = FALSE F = TRUE (T != TRUE) # note the parentheses (F != FALSE) }) assert("A Poisson random number is non-negative", { x = rpois(1, 10) (x >= 0) (x > -1) # () is optional because it's the last expression })
library(testit) assert("T is bad for TRUE, and so is F for FALSE", { T = FALSE F = TRUE (T != TRUE) # note the parentheses (F != FALSE) }) assert("A Poisson random number is non-negative", { x = rpois(1, 10) (x >= 0) (x > -1) # () is optional because it's the last expression })
The two functions has_warning()
and has_error()
check if an
expression produces warnings and errors, respectively.
has_warning(expr) has_error(expr, silent = !interactive())
has_warning(expr) has_error(expr, silent = !interactive())
expr |
an R expression |
silent |
logical: should the report of error messages be suppressed? |
A logical value.
has_warning(1 + 1) has_warning(1:2 + 1:3) has_error(2 - 3) has_error(1 + "a") has_error(stop("err"), silent = TRUE)
has_warning(1 + 1) has_warning(1:2 + 1:3) has_error(2 - 3) has_error(1 + "a") has_error(stop("err"), silent = TRUE)
The main purpose of this function is to expose the namespace of a package
when running tests, which allows one to use non-exported objects in the
package without having to resort to the triple colon :::
trick.
test_pkg(package, dir = c("testit", "tests/testit"))
test_pkg(package, dir = c("testit", "tests/testit"))
package |
the package name |
dir |
the directory of the test files; by default, it is the directory ‘testit/’ or ‘tests/testit/’ under the current working directory |
The tests are assumed to be under the ‘testit/’ or ‘tests/testit/’
directory by default (depending on your working directory is the package root
directory or the ‘tests/’ directory). This function also looks for the
‘tests/testit/’ directory under the package installation directory when
the user-provided dir
does not exist. The test scripts must be named
of the form ‘test-*.R’; other R scripts will not be treated as test
files (but may also be useful, e.g. you can source()
them in
tests).
For R CMD check
, this means the test R scripts (‘test-*.R’ are
under ‘pkg_root/tests/testit/’. The R scripts are executed with
sys.source
in the namespace of the package to be tested; when
an R script is executed, the working directory is the same as the directory
containing this script, and all existing objects in the test environment will
be removed before the code is executed.
NULL
. All test files are executed, unless an error occurs.
All test scripts (‘test-*.R’) must be encoded in UTF-8 if they contain any multibyte characters.
The testthat package (much more sophisticated).
## Not run: test_pkg("testit") ## End(Not run)
## Not run: test_pkg("testit") ## End(Not run)