我想测试一个函数是否返回了预期的data.frame。data.frame 太大而无法在 R 文件中定义(例如,使用类似的东西structure()
)。当我尝试从磁盘进行简单检索时,我的环境出现了问题,例如:
test_that("SO example for data.frame retreival", {
path_expected <- "./inst/test_data/project_longitudinal/expected/default.rds"
actual <- data.frame(a=1:5, b=6:10) #saveRDS(actual, file=path_expected)
expected <- readRDS(path_expected)
expect_equal(actual, expected, label="The returned data.frame should be correct")
})
在控制台中运行时,这些行正确执行。但是当我运行devtools::test()
时,从文件中读取 rds/data.frame 时会出现以下错误。
1. Error: All Records -Default ----------------------------------------------------------------
cannot open the connection
1: withCallingHandlers(eval(code, new_test_environment), error = capture_calls, message = function(c) invokeRestart("muffleMessage"),
warning = function(c) invokeRestart("muffleWarning"))
2: eval(code, new_test_environment)
3: eval(expr, envir, enclos)
4: readRDS(path_expected) at test-read_batch_longitudinal.R:59
5: gzfile(file, "rb")
要做到这一点,需要对环境进行哪些调整?如果没有简单的方法,那么测试大型 data.frames 的好方法是什么?