Nothing
#' Check cassette names
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' This function has been deprecated because it's not possible for it to
#' detect re-used cassette names 100% correctly and the problem of duplicated
#' cassette names is relatively easy to debug by hand.
#'
#' @export
#' @keywords internal
#' @param pattern (character) regex pattern for file paths to check.
#' This is done inside of `tests/testthat/`. Default: "test-".
#' @param behavior (character) "stop" (default) or "warning". If "warning",
#' we use `immediate.=TRUE` so the warning happens at the top of your
#' tests rather than you seeing it after tests have run (as would happen
#' by default).
#' @param allowed_duplicates (character) Cassette names that can be duplicated.
check_cassette_names <- function(
pattern = "test-",
behavior = "stop",
allowed_duplicates = NULL
) {
lifecycle::deprecate_warn("2.0.0", "check_cassette_names()")
check_character(allowed_duplicates, allow_null = TRUE)
files <- list.files(".", pattern = pattern, full.names = TRUE)
if (length(files) == 0) {
return(invisible())
}
cassette_names <- function(x) {
tmp <- parse(x, keep.source = TRUE)
df <- utils::getParseData(tmp)
row.names(df) = NULL
z <- as.numeric(row.names(df[df$text == "use_cassette", ])) + 2
gsub("\"", "", df[z, "text"])
}
nms <- stats::setNames(lapply(files, cassette_names), files)
cnms <- unname(unlist(nms))
if (!is.null(allowed_duplicates)) {
cnms <- cnms[!cnms %in% allowed_duplicates]
}
if (any(duplicated(cnms))) {
dups <- unique(cnms[duplicated(cnms)])
fdups <- c()
for (i in seq_along(dups)) {
matched <- lapply(nms, function(w) dups[i] %in% w)
fdups[i] <- sprintf(
"%s (found in %s)",
dups[i],
paste0(basename(names(nms[unlist(matched)])), collapse = ", ")
)
}
mssg <- c(
"you should not have duplicated cassette names:",
paste0("\n ", paste0(fdups, collapse = "\n "))
)
switch(
behavior,
stop = stop(mssg, call. = FALSE),
warning = warning(mssg, call. = FALSE, immediate. = TRUE)
)
}
invisible()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.