1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
#' Create or edit R or test files
#'
#' This pair of functions makes it easy to create paired R and test files,
#' using the convention that the tests for `R/foofy.R` should live
#' in `tests/testthat/test-foofy.R`. You can use them to create new files
#' from scratch by supplying `name`, or if you use RStudio, you can call
#' to create (or navigate to) the companion file based on the currently open
#' file. This also works when a test snapshot file is active, i.e. if you're
#' looking at `tests/testthat/_snaps/foofy.md`, `use_r()` or `use_test()` take
#' you to `R/foofy.R` or `tests/testthat/test-foofy.R`, respectively.
#'
#' @section Renaming files in an existing package:
#'
#' Here are some tips on aligning file names across `R/` and `tests/testthat/`
#' in an existing package that did not necessarily follow this convention
#' before.
#'
#' This script generates a data frame of `R/` and test files that can help you
#' identify missed opportunities for pairing:
#'
#' ```
#' library(fs)
#' library(tidyverse)
#'
#' bind_rows(
#' tibble(
#' type = "R",
#' path = dir_ls("R/", regexp = "\\.[Rr]$"),
#' name = as.character(path_ext_remove(path_file(path))),
#' ),
#' tibble(
#' type = "test",
#' path = dir_ls("tests/testthat/", regexp = "/test[^/]+\\.[Rr]$"),
#' name = as.character(path_ext_remove(str_remove(path_file(path), "^test[-_]"))),
#' )
#' ) %>%
#' pivot_wider(names_from = type, values_from = path) %>%
#' print(n = Inf)
#' ```
#'
#' The [rename_files()] function can also be helpful.
#'
#' @param name Either a string giving a file name (without directory) or
#' `NULL` to take the name from the currently open file in RStudio.
#' @inheritParams edit_file
#' @seealso
#' * The [testing](https://r-pkgs.org/testing-basics.html) and
#' [R code](https://r-pkgs.org/code.html) chapters of
#' [R Packages](https://r-pkgs.org).
#' * [use_test_helper()] to create a testthat helper file.
#'
#' @export
#'
#' @examples
#' \dontrun{
#' # create a new .R file below R/
#' use_r("coolstuff")
#'
#' # if `R/coolstuff.R` is active in a supported IDE, you can now do:
#' use_test()
#'
#' # if `tests/testthat/test-coolstuff.R` is active in a supported IDE, you can
#' # return to `R/coolstuff.R` with:
#' use_r()
#' }
use_r <- function(name = NULL, open = rlang::is_interactive()) {
use_directory("R")
path <- path("R", compute_name(name))
edit_file(proj_path(path), open = open)
invisible(TRUE)
}
#' @rdname use_r
#' @export
use_test <- function(name = NULL, open = rlang::is_interactive()) {
if (!uses_testthat()) {
use_testthat_impl()
}
path <- path("tests", "testthat", paste0("test-", compute_name(name)))
if (!file_exists(path)) {
use_template("test-example-2.1.R", save_as = path)
}
edit_file(proj_path(path), open = open)
invisible(TRUE)
}
#' Create or edit a test helper file
#'
#' This function creates (or opens) a test helper file, typically
#' `tests/testthat/helper.R`. Test helper files are executed at the
#' beginning of every automated test run and are also executed by
#' [`load_all()`][pkgload::load_all]. A helper file is a great place to
#' define test helper functions for use throughout your test suite, such as
#' a custom expectation.
#'
#' @param name Can be used to specify the optional "SLUG" in
#' `tests/testthat/helper-SLUG.R`.
#' @inheritParams edit_file
#' @seealso
#' * [use_test()] to create a test file.
#' * The testthat vignette on special files
#' `vignette("special-files", package = "testthat")`.
#' @export
#'
#' @examples
#' \dontrun{
#' use_test_helper()
#' use_test_helper("mocks")
#' }
use_test_helper <- function(name = NULL, open = rlang::is_interactive()) {
maybe_name(name)
if (!uses_testthat()) {
ui_abort(c(
"x" = "Your package must use {.pkg testthat} to use a helper file.",
"_" = "Call {.run usethis::use_testthat()} to set up {.pkg testthat}."
))
}
target_path <- proj_path(
path("tests", "testthat", as_test_helper_file(name))
)
if (!file_exists(target_path)) {
ui_bullets(c(
"i" = "Test helper files are executed at the start of all automated
test runs.",
"i" = "{.run devtools::load_all()} also sources test helper files."
))
}
edit_file(target_path, open = open)
invisible(TRUE)
}
# helpers -----------------------------------------------------------------
compute_name <- function(name = NULL, ext = "R", error_call = caller_env()) {
if (!is.null(name)) {
check_file_name(name, call = error_call)
if (path_ext(name) == "") {
name <- path_ext_set(name, ext)
} else if (path_ext(name) != ext) {
cli::cli_abort(
"{.arg name} must have extension {.str {ext}}, not {.str {path_ext(name)}}.",
call = error_call
)
}
return(as.character(name))
}
if (!rstudio_available()) {
cli::cli_abort(
"{.arg name} is absent but must be specified.",
call = error_call
)
}
compute_active_name(
path = rstudioapi::getSourceEditorContext()$path,
ext = ext,
error_call = error_call
)
}
compute_active_name <- function(path, ext, error_call = caller_env()) {
if (is.null(path)) {
cli::cli_abort(
c(
"No file is open in RStudio.",
i = "Please specify {.arg name}."
),
call = error_call
)
}
## rstudioapi can return a path like '~/path/to/file' where '~' means
## R's notion of user's home directory
path <- proj_path_prep(path_expand_r(path))
dir <- path_dir(proj_rel_path(path))
if (!dir %in% c("R", "src", "tests/testthat", "tests/testthat/_snaps")) {
cli::cli_abort("Open file must be code, test, or snapshot.", call = error_call)
}
file <- path_file(path)
if (dir == "tests/testthat") {
file <- gsub("^test[-_]", "", file)
}
as.character(path_ext_set(file, ext))
}
check_file_name <- function(name, call = caller_env()) {
if (!is_string(name)) {
cli::cli_abort("{.arg name} must be a single string", call = call)
}
if (name == "") {
cli::cli_abort("{.arg name} must not be an empty string", call = call)
}
if (path_dir(name) != ".") {
cli::cli_abort(
"{.arg name} must be a file name without directory.",
call = call
)
}
if (!valid_file_name(path_ext_remove(name))) {
cli::cli_abort(
c(
"{.arg name} ({.str {name}}) must be a valid file name.",
i = "A valid file name consists of only ASCII letters, numbers, '-', and '_'."
),
call = call
)
}
}
valid_file_name <- function(x) {
grepl("^[a-zA-Z0-9._-]+$", x)
}
as_test_helper_file <- function(name = NULL) {
file <- name %||% "helper.R"
if (!grepl("^helper", file)) {
file <- glue("helper-{file}")
}
if (path_ext(file) == "") {
file <- path_ext_set(file, "R")
}
unclass(file)
}
|