fuzzr

fuzzr implements some simple “fuzz tests” for your R functions, passing in a wide array of inputs and returning a report on how your function reacts.

Installation

install.package("fuzzr")

# Or, for the development version:
devtools::install_github("mdlincoln/fuzzr")

Usage

Tests are set by passing functions that return named lists of input values. These values will be passed as function arguments. Several default suites are provided with this package, such as test_char, however you may implement your own by passing a function that returns a similarly-formatted list.

library(fuzzr)
str(test_char())
#> List of 8
#>  $ char_empty         : chr(0) 
#>  $ char_single        : chr "a"
#>  $ char_single_blank  : chr ""
#>  $ char_multiple      : chr [1:3] "a" "b" "c"
#>  $ char_multiple_blank: chr [1:4] "a" "b" "c" ""
#>  $ char_with_na       : chr [1:3] "a" "b" NA
#>  $ char_single_na     : chr NA
#>  $ char_all_na        : chr [1:3] NA NA NA

Evaluate a function argument by supplying fuzz_function its quoted name, the tests to run, along with any other required static values. fuzz_function returns a fuzz_results object that stores conditions raised by a function (message, warning, or error) along with any value returned by that function.

fuzz_results <- fuzz_function(fun = lm, arg_name = "subset", data = iris, 
                              formula = Sepal.Length ~ Petal.Width + Petal.Length, 
                              tests = test_all())
#> Warning: `cross_n()` is deprecated; please use `cross()` instead.

#> Warning: `cross_n()` is deprecated; please use `cross()` instead.
#> Warning: at_depth() is deprecated, please use `modify_depth()` instead

You can render these results as a data frame:

fuzz_df <- as.data.frame(fuzz_results)
knitr::kable(head(fuzz_df))
subsetdataformulaoutputmessageswarningserrorsresult_classesresults_index
char_emptyirisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA1
char_singleirisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA2
char_single_blankirisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA3
char_multipleirisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA4
char_multiple_blankirisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA5
char_with_nairisSepal.Length ~ Petal.Width + Petal.LengthNANANA0 (non-NA) casesNA6

You can also access the value returned by any one test by matching the argument tested with its test name:

model <- fuzz_value(fuzz_results, subset = "int_multiple")
coefficients(model)
#>  (Intercept)  Petal.Width Petal.Length 
#>          0.8           NA          3.0

Multiple-argument tests

Specify multiple-argument tests with p_fuzz_function, passing a named list of arguments and tests to run on each. p_fuzz_function will test every combination of argument and variable.

fuzz_p <- p_fuzz_function(agrep, list(pattern = test_char(), x = test_char()))
#> Warning: `cross_n()` is deprecated; please use `cross()` instead.

#> Warning: `cross_n()` is deprecated; please use `cross()` instead.
#> Warning: at_depth() is deprecated, please use `modify_depth()` instead
length(fuzz_p)
#> [1] 64
knitr::kable(head(as.data.frame(fuzz_p)))
patternxoutputmessageswarningserrorsresult_classesresults_index
char_emptychar_emptyNANANAinvalid ‘pattern’ argumentNA1
char_singlechar_emptyNANANANAinteger2
char_single_blankchar_emptyNANANA‘pattern’ must be a non-empty character stringNA3
char_multiplechar_emptyNANAargument ‘pattern’ has length > 1 and only the first element will be usedNAinteger4
char_multiple_blankchar_emptyNANAargument ‘pattern’ has length > 1 and only the first element will be usedNAinteger5
char_with_nachar_emptyNANAargument ‘pattern’ has length > 1 and only the first element will be usedNAinteger6

Matthew Lincoln

Copy Link

Version

Down Chevron

Install

install.packages('fuzzr')

Monthly Downloads

184

Version

0.2.2

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

May 8th, 2018

Functions in fuzzr (0.2.2)