-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d7fc9b
commit 878dacf
Showing
11 changed files
with
110 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#' Require usage of expect_length(x, n) over expect_equal(length(x), n) | ||
#' | ||
#' [testthat::expect_length()] exists specifically for testing the [length()] of | ||
#' an object. [testthat::expect_equal()] can also be used for such tests, | ||
#' but it is better to use the tailored function instead. | ||
#' | ||
#' @evalRd rd_tags("expect_length_linter") | ||
#' @seealso [linters] for a complete list of linters available in lintr. | ||
#' @export | ||
expect_length_linter <- function() { | ||
Linter(function(source_file) { | ||
if (length(source_file$parsed_content) == 0L) { | ||
return(list()) | ||
} | ||
|
||
xml <- source_file$xml_parsed_content | ||
|
||
# TODO(michaelchirico): also catch expect_true(length(x) == 1) | ||
xpath <- sprintf("//expr[ | ||
SYMBOL_FUNCTION_CALL[text() = 'expect_equal' or text() = 'expect_identical'] | ||
and following-sibling::expr[ | ||
expr[SYMBOL_FUNCTION_CALL[text() = 'length']] | ||
and (position() = 1 or preceding-sibling::expr[NUM_CONST]) | ||
] | ||
]") | ||
|
||
bad_expr <- xml2::xml_find_all(xml, xpath) | ||
return(lapply(bad_expr, gen_expect_length_lint, source_file)) | ||
}) | ||
} | ||
|
||
gen_expect_length_lint <- function(expr, source_file) { | ||
matched_function <- xml2::xml_text(xml2::xml_find_first(expr, "SYMBOL_FUNCTION_CALL")) | ||
lint_msg <- sprintf("expect_length(x, n) is better than %s(length(x), n)", matched_function) | ||
xml_nodes_to_lint(expr, source_file, lint_msg, type = "warning") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
test_that("expect_length_linter skips allowed usages", { | ||
expect_lint("expect_equal(nrow(x), 4L)", NULL, expect_length_linter()) | ||
# NB: also applies to tinytest, but it's sufficient to test testthat | ||
expect_lint("testthat::expect_equal(nrow(x), 4L)", NULL, expect_length_linter()) | ||
|
||
# only check the first argument. yoda tests in the second argument will be | ||
# missed, but there are legitimate uses of length() in argument 2 | ||
expect_lint("expect_equal(nrow(x), length(y))", NULL, expect_length_linter()) | ||
}) | ||
|
||
test_that("expect_length_linter blocks simple disallowed usages", { | ||
expect_lint( | ||
"expect_equal(length(x), 2L)", | ||
rex::rex("expect_length(x, n) is better than expect_equal(length(x), n)"), | ||
expect_length_linter() | ||
) | ||
|
||
expect_lint( | ||
"testthat::expect_equal(length(DF), length(old))", | ||
rex::rex("expect_length(x, n) is better than expect_equal(length(x), n)"), | ||
expect_length_linter() | ||
) | ||
|
||
# yoda test cases | ||
expect_lint( | ||
"expect_equal(2, length(x))", | ||
rex::rex("expect_length(x, n) is better than expect_equal(length(x), n)"), | ||
expect_length_linter() | ||
) | ||
|
||
expect_lint( | ||
"expect_equal(2L, length(x))", | ||
rex::rex("expect_length(x, n) is better than expect_equal(length(x), n)"), | ||
expect_length_linter() | ||
) | ||
}) | ||
|
||
test_that("expect_length_linter blocks expect_identical usage as well", { | ||
expect_lint( | ||
"expect_identical(length(x), 2L)", | ||
rex::rex("expect_length(x, n) is better than expect_identical(length(x), n)"), | ||
expect_length_linter() | ||
) | ||
}) |