Nothing
#' Run a 'testme' Test Script
#'
#' R usage:
#' future::testme("<name>")
#'
#' Command-line usage:
#' Rscript tests/test-<name>.R
#'
#' Command-line usage without package re-install:
#' Rscript inst/testme/run.R --name=<name>
cmd_args <- commandArgs(trailingOnly = TRUE)
pattern <- "--package=([[:alpha:][:alnum:]]+)"
idx <- grep(pattern, cmd_args)
if (length(idx) > 0L) {
stopifnot(length(idx) == 1L)
testme_package <- gsub(pattern, "\\1", cmd_args[idx])
} else {
testme_package <- Sys.getenv("R_TESTME_PACKAGE", NA_character_)
if (is.na(testme_package)) {
desc <- read.dcf("DESCRIPTION")
testme_package <- desc[1, "Package"]
}
}
pattern <- "--path=([[:alpha:][:alnum:]]+)"
idx <- grep(pattern, cmd_args)
if (length(idx) > 0L) {
stopifnot(length(idx) == 1L)
path <- gsub(pattern, "\\1", cmd_args[idx])
} else {
path <- Sys.getenv("R_TESTME_PATH", NA_character_)
if (is.na(path)) {
path <- file.path("inst", "testme")
}
if (!utils::file_test("-d", path)) {
stop("There exist no such 'R_TESTME_PATH' folder: ", sQuote(path))
}
}
Sys.setenv(R_TESTME_PATH = path)
pattern <- "--name=([[:alpha:][:alnum:]]+)"
idx <- grep(pattern, cmd_args)
if (length(idx) > 0L) {
stopifnot(length(idx) == 1L)
testme_name <- gsub(pattern, "\\1", cmd_args[idx])
} else {
testme_name <- Sys.getenv("R_TESTME_NAME", NA_character_)
if (is.na(testme_name)) {
stop("testme: Environment variable 'R_TESTME_NAME' is not set")
}
}
testme_file <- file.path(path, sprintf("test-%s.R", testme_name))
if (!utils::file_test("-f", testme_file)) {
stop("There exist no such 'testme' file: ", sQuote(testme_file))
}
## -----------------------------------------------------------------
## testme environment
## -----------------------------------------------------------------
on_cran <- function() {
not_cran <- Sys.getenv("NOT_CRAN", NA_character_)
if (is.na(not_cran)) {
not_cran <- FALSE
} else {
not_cran <- isTRUE(as.logical(not_cran))
}
!interactive() && !not_cran
} ## on_cran()
## Get test script tags
tags <- local({
lines <- readLines(testme_file, warn = FALSE)
pattern <- "^#'[[:blank:]]+@tags[[:blank:]]+"
lines <- grep(pattern, lines, value = TRUE)
tags <- sub(pattern, "", lines)
tags
})
if (length(tags) > 0) {
tags <- sub("[[:blank:]]*$", "", tags)
tags <- unlist(strsplit(tags, split = "[[:blank:]]+"))
tags <- sort(unique(tags))
} else {
tags <- character(0L)
}
## Create 'testme' environment on the search() path
testme_config <- list(
package = testme_package,
name = testme_name,
tags = tags,
status = "created",
start = proc.time(),
script = testme_file,
on_cran = on_cran(),
debug = isTRUE(as.logical(Sys.getenv("R_TESTME_DEBUG")))
)
if ("testme" %in% search()) detach(name = "testme")
testme <- attach(testme_config, name = "testme", warn.conflicts = FALSE)
rm(list = c("tags", "testme_package", "testme_name", "testme_file"))
## -----------------------------------------------------------------
## Filters
## -----------------------------------------------------------------
## Skip on CRAN? To run these tests, set env var NOT_CRAN=true
if ("skip_on_cran" %in% tags && on_cran()) {
testme[["status"]] <- "skipped"
}
code <- Sys.getenv("R_TESTME_FILTER_NAME", NA_character_)
if (!is.na(code)) {
expr <- tryCatch(parse(text = code), error = identity)
if (inherits(expr, "error")) {
stop("Syntax error in R_TESTME_FILTER_NAME: ", sQuote(code))
}
keep <- tryCatch(eval(expr, envir = testme), error = identity)
if (inherits(keep, "error")) {
stop("Evaluation of R_TESTME_FILTER_NAME=%s produced an error: %s",
sQuote(code), conditionMessage(keep))
}
if (!isTRUE(keep)) testme[["status"]] <- "skipped"
}
code <- Sys.getenv("R_TESTME_FILTER_TAGS", NA_character_)
if (!is.na(code)) {
expr <- tryCatch(parse(text = code), error = identity)
if (inherits(expr, "error")) {
stop("Syntax error in R_TESTME_FILTER_TAGS: ", sQuote(code))
}
keep <- tryCatch(eval(expr, envir = testme), error = identity)
if (inherits(keep, "error")) {
stop("Evaluation of R_TESTME_FILTER_TAGS=%s produced an error: %s",
sQuote(code), conditionMessage(keep))
}
if (!isTRUE(keep)) testme[["status"]] <- "skipped"
}
message(sprintf("Test %s ...", sQuote(testme[["name"]])))
## Process prologue scripts, if they exist
if (testme[["status"]] != "skipped" &&
utils::file_test("-d", file.path(path, "_prologue"))) {
testme[["status"]] <- "prologue"
local({
## Find all prologue scripts
files <- dir(file.path(path, "_prologue"), pattern = "*[.]R$", full.names = TRUE)
files <- sort(files)
testme[["prologue_scripts"]] <- files
## Source all prologue scripts inside the 'testme' environment
expr <- quote({
files <- prologue_scripts
message(sprintf("Sourcing %d prologue scripts ...", length(files)))
for (kk in seq_along(files)) {
file <- files[kk]
message(sprintf("%02d/%02d prologue script %s", kk, length(files), sQuote(file)))
source(file, local = TRUE)
}
message(sprintf("Sourcing %d prologue scripts ... done", length(files)))
rm(list = c("kk", "file", "files"))
})
eval(expr, envir = testme)
})
# ## In case prologue scripts overwrote some elements in 'testme'
# for (name in names(testme_config)) {
# testme[[name]] <- testme_config[[name]]
# }
}
## Run test script
## Note, prologue scripts may trigger test to be skipped
if (testme[["status"]] != "skipped") {
message("Running test script: ", sQuote(testme[["script"]]))
testme[["status"]] <- "failed"
source(testme[["script"]], echo = TRUE)
testme[["status"]] <- "success"
# ## In case test script overwrote some elements in 'testme'
# for (name in names(testme_config)) {
# testme[[name]] <- testme_config[[name]]
# }
}
## Process epilogue scripts, if they exist
## Note, epilogue scripts may change status or produce check errors
if (testme[["status"]] == "success" &&
utils::file_test("-d", file.path(path, "_epilogue"))) {
testme[["status"]] <- "epilogue"
local({
## Find all epilogue scripts
files <- dir(file.path(path, "_epilogue"), pattern = "*[.]R$", full.names = TRUE)
files <- sort(files)
testme[["epilogue_scripts"]] <- files
## Source all epilogue scripts inside the 'testme' environment
expr <- quote({
files <- epilogue_scripts
message(sprintf("Sourcing %d epilogue scripts ...", length(files)))
for (kk in seq_along(files)) {
file <- files[kk]
message(sprintf("%02d/%02d epilogue script %s", kk, length(files), sQuote(file)))
source(file, local = TRUE)
}
message(sprintf("Sourcing %d epilogue scripts ... done", length(files)))
rm(list = c("kk", "file", "files"))
})
eval(expr, envir = testme)
})
testme[["status"]] <- "success"
}
testme[["stop"]] <- proc.time()
dt <- testme[["stop"]] - testme[["start"]]
dt_str <- sprintf("%s=%.1gs", names(dt), dt)
message("Test time: ", paste(dt_str, collapse = ", "))
message(sprintf("Test %s ... %s", sQuote(testme[["name"]]), testme[["status"]]))
if ("testme" %in% search()) detach(name = "testme")
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.