Testthat: feature request: add expect_na function

Created on 2 Sep 2015  Â·  7Comments  Â·  Source: r-lib/testthat

You can test for TRUE or FALSE using expect_true and expect_false respectively. For completeness, it would be nice to have expect_na for testing for missing values.

At the moment, you can do this with expect_equal(x, NA), but this requires a little care since different NAs are treated as different. For example expect_equal(NA, NA_character_) will fail. expect_na should treat them as the same (or have an argument to specify whether or not they should be considered the same).

Most helpful comment

Yes, you can always use expect_equal, so this feature is pure syntactic sugar (just like expect_true). I think it's useful sugar though - testing weird edge cases is important so having an NA return value is (or should be) moderately common.

All 7 comments

What would you expect expect_na(c(NA, TRUE)) to do?

In my opinion

  1. All five missing values (NA, NA_real_, etc.) should pass.
  2. Values that don't have length one should fail. You could document or have an example to say that vector return values should be combined with any or all, or use the more general expect_equal.

The alternate behaviour is to work like if and throw a warning

the condition has length > 1 and only the first element will be used

I don't think that this is right though. It's easier to work with if tests simply pass or fail rather than throw warnings.

  1. Recursive return values like list(NA) and data.frame(NA) should fail.
  2. The string "NA" should fail. You might need to be careful about coercing to logical.
  3. Attributes are OK, For example, c(na = NA) and structure(NA, class = "whatever") and matrix(NA) should pass. (Be careful about testing with identical.)

expect_true, expect_false, and expect_na form a triumvirate, so you need to make sure that the behaviour is consistent across all three functions.

Hmmm, if expect_true, expect_false and expect_na form a triumvirate, then the definition of expect_na should use identical(x, NA)

Maybe identical(x, NA) || identical(x, NA_real_) || identical(x, NA_character_) || identical(x, NA_integer_) || identical(x, NA_complex_)
then.

Though an option for all three to ignore differences in attributes would be
nice. Possibly worth looking at is_identical_to_na in assertive.base as a
parallel.

https://bitbucket.org/richierocks/assertive.base/src/35037c57c024860f19fbc624b385c75b52b38f35/R/is-identical-to-true-false-na.R?fileviewer=file-view-default

On 25 September 2015 at 14:52, Hadley Wickham [email protected]
wrote:

Hmmm, if expect_true, expect_false and expect_na form a triumvirate, then
the definition of expect_na should use identical(x, NA)

—
Reply to this email directly or view it on GitHub
https://github.com/hadley/testthat/issues/291#issuecomment-143194727.

Regards,
Richie

Learning R http://shop.oreilly.com/product/0636920028352.do
4dpiecharts.com

That just doesn't feel terribly compelling/systematic to me. You might as well do expect_equal(is.na(x), TRUE)

Yes, you can always use expect_equal, so this feature is pure syntactic sugar (just like expect_true). I think it's useful sugar though - testing weird edge cases is important so having an NA return value is (or should be) moderately common.

In that case I think you'd be better testing the type of the NA value too.

Was this page helpful?
0 / 5 - 0 ratings