Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address testthat deprecation warnings + drop mockery #589

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

olivroy
Copy link
Contributor

@olivroy olivroy commented Dec 12, 2024

They turned more challenging to fix than I expected.

I therefore removed the mockery dependency and testthat::with_mock() usage, but that required a bit of refactoring, such as importing from {httr} namespace to be able to mock httr::content, httr::RETRY, etc.

Kept everything related to mocking here to address testthat 3.2.2 deprecation warnings and sent other things to other PRs.

@jimhester
Copy link
Member

Hi, thanks for working on the changes, but before you go further could you provide some motivation for the changes. Particularly if they are going to touch a lot of files and be largely cosmetic vs functional.

Copy link
Contributor Author

@olivroy olivroy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are some explanations of what I did.

I decided to run styler on test-codecov.R and test-coveralls.R, because the indentation was quite inconsistent and we have an automated way to do it. It produces a more difficult to read diff, but at least the code style is consistent.

Comment on lines +38 to +37
importFrom(httr,RETRY)
importFrom(httr,content)
importFrom(httr,upload_file)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on lines -3 to 15
if (!file.exists(file)) {
if (!source_file_exists(file)) {
return(NULL)
}

lines <- readLines(file)
lines <- read_lines_impl(file)
source_file <- rex::re_matches(lines[1], rex::rex("Source:", capture(name = "source", anything)))$source

# retrieve full path to the source files
source_file <- normalize_path(source_file)

# If the source file does not start with the package path or does not exist ignore it.
if (!file.exists(source_file) || !grepl(rex::rex(start, rex::regex(paste0(rex::escape(package_path), collapse = "|"))), source_file)) {
if (!source_file_exists(source_file) || !grepl(rex::rex(start, rex::regex(paste0(rex::escape(package_path), collapse = "|"))), source_file)) {
return(NULL)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes are required to remove the mockery dependency. I kept the commit self-contained.

But basically, with mockery::stub(), we can mock a function contained to a function. For example, mocking file.exists() only inside parse_gcov(). However, testthat::local_mocked_bindings() doesn't provide this ability.

The workaround I found is to create a wrapper function for file.exists() (in this case source_file_exists().) that I will only use inside parse_gcov(). This way, I can mock source_file_exists() to only mock file.exists() inside parse_gcov().

tests/testthat/test-S7.R Outdated Show resolved Hide resolved
Comment on lines -53 to 78

withr::with_envvar(c(ci_vars, "CI_NAME" = "FAKECI"),
with_mock(
`httr:::RETRY` = function(...) list(...),
`httr::content` = identity,
`httr::upload_file` = function(file) readChar(file, file.info(file)$size),

res <- coveralls(coverage = cov),
json <- jsonlite::fromJSON(res$body$json_file),

expect_equal(nrow(json$source_files), 1),
expect_equal(json$service_name, "fakeci"),
expect_match(json$source_files$name, rex::rex("R", one_of("/", "\\"), "TestS4.R")),
expect_equal(json$source_files$source, read_file("TestS4/R/TestS4.R")),
expect_equal(json$source_files$source_digest, '1233f2eca5d84704101cb9d9b928f2e9'),
expect_equal(json$source_files$coverage[[1]],
c(NA, NA, NA, NA, NA, NA, 5, 2, NA, 3, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, 1, NA, NA, NA, NA, NA, 1, NA, NA, NA, NA, NA, 1, NA))
withr::with_envvar(
c(ci_vars, "CI_NAME" = "FAKECI"),
with_mocked_bindings(
RETRY = function(...) list(...),
content = identity,
upload_file = function(file) readChar(file, file.info(file)$size),
code = {
res <- coveralls(coverage = cov)
json <- jsonlite::fromJSON(res$body$json_file)

expect_equal(nrow(json$source_files), 1)
expect_equal(json$service_name, "fakeci")
expect_match(json$source_files$name, rex::rex("R", one_of("/", "\\"), "TestS4.R"))
expect_equal(json$source_files$source, read_file("TestS4/R/TestS4.R"))
expect_equal(json$source_files$source_digest, "1233f2eca5d84704101cb9d9b928f2e9")
expect_equal(
json$source_files$coverage[[1]],
c(
NA, NA, NA, NA, NA, NA, 5, 2, NA, 3, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, 1, NA, NA, NA, NA, NA, 1, NA, NA, NA, NA, NA, 1, NA
)
)
}
)
)
})
Copy link
Contributor Author

@olivroy olivroy Dec 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An example of replacing with_mock() with with_mocked_bindings().

In short, we cannot have namespaced functions. And we give it a series of functions to mock. And then provide which code to run with the mocking. Very similar to withr::with_*() syntax.

I didn't understand why internal covr functions were fully qualified, due to r-lib/testthat#734 (comment), but it no longer seems necessary.

@olivroy olivroy marked this pull request as ready for review December 12, 2024 21:21
@olivroy olivroy changed the title Import cli instead of crayon to display messages + use testthat new mocking approach Address testthat deprecation warnings + drop mockery Dec 13, 2024
Comment on lines +11 to -9
with_mocked_bindings(
expect_equal(parse_gcov("hi.c.gcov"), numeric()),
read_lines_impl = function(x) {
" -: 0:Source:simple.c"
}
)

mockery::stub(parse_gcov, "readLines",
" -: 0:Source:simple.c")
expect_equal(parse_gcov("hi.c.gcov"), numeric())
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inside parse_gcov(), I replaced readLines() by read_lines_impl() to be able to mock readLines() only inside parse_gcov()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants