forked from tidyverse/dbplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-frame.R
100 lines (85 loc) · 2.18 KB
/
test-frame.R
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
#' Infrastructure for testing dplyr
#'
#' Register testing sources, then use `test_load()` to load an existing
#' data frame into each source. To create a new table in each source,
#' use `test_frame()`.
#'
#' @keywords internal
#' @examples
#' \dontrun{
#' test_register_src("sqlite", {
#' DBI::dbConnect(RSQLite::SQLite(), ":memory:", create = TRUE)
#' })
#'
#' test_frame(x = 1:3, y = 3:1)
#' test_load(mtcars)
#' }
#' @name testing
NULL
#' @export
#' @rdname testing
test_register_src <- function(name, src) {
message("Registering testing src: ", name, " ", appendLF = FALSE)
tryCatch(
{
test_srcs$add(name, src)
message("OK")
},
error = function(e) message("\n* ", conditionMessage(e))
)
}
#' @export
#' @rdname testing
test_register_con <- function(name, ...) {
test_register_src(name, DBI::dbConnect(...))
}
#' @export
#' @rdname testing
src_test <- function(name) {
srcs <- test_srcs$get()
if (!name %in% names(srcs)) {
testthat::skip(paste0("No ", name))
} else {
srcs[[name]]
}
}
#' @export
#' @rdname testing
test_load <- function(df, name = unique_table_name(), srcs = test_srcs$get(),
ignore = character()) {
stopifnot(is.data.frame(df))
stopifnot(is.character(ignore))
srcs <- srcs[setdiff(names(srcs), ignore)]
lapply(srcs, copy_to, df, name = name)
}
#' @export
#' @rdname testing
test_frame <- function(..., srcs = test_srcs$get(), ignore = character()) {
df <- tibble(...)
test_load(df, srcs = srcs, ignore = ignore)
}
# Manage cache of testing srcs
test_srcs <- local({
list(
get = function() env_get(cache(), "srcs", list()),
has = function(x) {
srcs <- env_get(cache(), "srcs", list())
has_name(srcs, x)
},
add = function(name, src) {
srcs <- env_get(cache(), "srcs", list())
srcs[[name]] <- src
env_poke(cache(), "srcs", srcs)
},
set = function(...) {
env_poke(cache(), "src", list(...))
},
length = function() {
length(cache()$srcs)
}
)
})
# Modern helpers ----------------------------------------------------------
copy_to_test <- function(src, df, ..., name = "test") {
copy_to(src_test(src), df, name, ..., overwrite = TRUE)
}