# ------------------------------------------------------------------------------ # type / size strict-ness test_that("size of each `.f` result must be 1", { expect_snapshot({ (expect_error(slide_period_vec(1:2, new_date(c(1, 2)), "day", ~c(.x, 1)))) (expect_error(slide_period_dbl(1:2, new_date(c(1, 2)), "day", ~c(.x, 1)))) }) }) test_that("inner type is allowed to be different", { expect_equal( slide_period_vec(1:2, new_date(c(1, 2)), "day", ~if (.x == 1L) {list(1)} else {list("hi")}, .ptype = list()), list(1, "hi") ) }) test_that("inner type can be restricted with list_of", { expect_snapshot({ (expect_error( slide_period_vec(1:2, new_date(c(1, 2)), "day", ~if (.x == 1L) {list_of(1)} else {list_of("hi")}, .ptype = list_of(.ptype = double())), class = "vctrs_error_incompatible_type" )) }) }) test_that("type can be restricted", { expect_snapshot({ (expect_error( slide_period_dbl(1:2, new_date(c(1, 2)), "day", ~if (.x == 1L) {1} else {"hi"}), class = "vctrs_error_incompatible_type" )) }) }) test_that("empty input works with `.complete = TRUE` (#111)", { expect_equal(slide_period_dbl(integer(), new_date(), "year", ~.x, .complete = TRUE), double()) }) # ------------------------------------------------------------------------------ # .ptype test_that(".ptype is respected", { expect_equal(slide_period_vec(1, new_date(0), "day", ~.x), 1) expect_equal(slide_period_vec(1, new_date(0), "day", ~.x, .ptype = int()), 1L) expect_snapshot({ (expect_error(slide_period_vec(1, new_date(0), "day", ~.x + .5, .ptype = integer()), class = "vctrs_error_cast_lossy")) }) }) test_that("`.ptype = NULL` results in 'guessed' .ptype", { expect_equal( slide_period_vec(1, new_date(0), "day", ~.x, .ptype = NULL), slide_period_vec(1, new_date(0), "day", ~.x, .ptype = dbl()) ) }) test_that("`.ptype = NULL` fails if no common type is found", { expect_snapshot({ (expect_error( slide_period_vec(1:2, new_date(c(0, 1)), "day", ~ifelse(.x == 1L, "hello", 1), .ptype = NULL), class = "vctrs_error_incompatible_type" )) }) }) test_that("`.ptype = NULL` validates that element lengths are 1", { expect_snapshot({ (expect_error(slide_period_vec(1:2, new_date(c(0, 1)), "day", ~if(.x == 1L) {1:2} else {1}, .ptype = NULL))) (expect_error(slide_period_vec(1:2, new_date(c(0, 1)), "day", ~if(.x == 1L) {NULL} else {1}, .ptype = NULL))) }) }) test_that("`.ptype = NULL` returns `NULL` with size 0 `.x`", { expect_equal(slide_period_vec(integer(), new_date(), "day", ~.x, .ptype = NULL), NULL) }) test_that(".ptypes with a vec_proxy() are restored to original type", { expect_s3_class( slide_period_vec(Sys.Date() + 1:5, new_date(c(1, 2, 3, 4, 5)), "day", ~.x, .ptype = as.POSIXlt(Sys.Date())), "POSIXlt" ) }) test_that("with `.complete = TRUE`, `.ptype` is used to pad", { expect_equal( slide_period_dbl( 1:3, new_date(c(1, 2, 3)), "day", ~1, .before = 1, .complete = TRUE ), c(NA, 1, 1) ) }) test_that("with `.complete = TRUE`, padding is size stable (#93)", { expect_equal( slide_period_vec( 1:3, new_date(c(1, 2, 3)), "day", ~new_date(0), .before = 1, .complete = TRUE, .ptype = new_date() ), new_date(c(NA, 0, 0)) ) expect_equal( slide_period_vec( 1:3, new_date(c(1, 2, 3)), "day", ~new_date(0), .after = 1, .complete = TRUE, .ptype = new_date() ), new_date(c(0, 0, NA)) ) expect_equal( slide_period_vec( 1:3, new_date(c(1, 2, 3)), "day", ~new_date(0), .before = 1, .complete = TRUE, .ptype = NULL ), new_date(c(NA, 0, 0)) ) }) test_that("can return a matrix and rowwise bind the results together", { mat <- matrix(1, ncol = 2) expect_equal( slide_period_vec(1:5, new_date(c(1, 2, 3, 4, 5)), "day", ~mat, .ptype = mat), rbind(mat, mat, mat, mat, mat) ) }) test_that("`slide_period_vec()` falls back to `c()` method as required", { local_c_foobar() expect_identical(slide_period_vec(1:3, new_date(c(1, 2, 3)), "day", ~foobar(.x), .ptype = foobar(integer())), foobar(1:3)) expect_condition(slide_period_vec(1:3, new_date(c(1, 2, 3)), "day", ~foobar(.x), .ptype = foobar(integer())), class = "slider_c_foobar") expect_identical(slide_period_vec(1:3, new_date(c(1, 2, 3)), "day", ~foobar(.x)), foobar(1:3)) expect_condition(slide_period_vec(1:3, new_date(c(1, 2, 3)), "day", ~foobar(.x)), class = "slider_c_foobar") }) # ------------------------------------------------------------------------------ # suffix tests test_that("slide_period_int() works", { expect_equal(slide_period_int(1L, new_date(0), "day", ~.x), 1L) }) test_that("slide_period_int() can coerce", { expect_equal(slide_period_int(1, new_date(0), "day", ~.x), 1L) }) test_that("slide_period_dbl() works", { expect_equal(slide_period_dbl(1, new_date(0), "day", ~.x), 1) }) test_that("slide_period_dbl() can coerce", { expect_equal(slide_period_dbl(1L, new_date(0), "day", ~.x), 1) }) test_that("slide_period_chr() works", { expect_equal(slide_period_chr("x", new_date(0), "day", ~.x), "x") }) test_that("slide_period_chr() cannot coerce", { expect_error(slide_period_chr(1, new_date(0), "day", ~.x), class = "vctrs_error_incompatible_type") }) test_that("slide_period_lgl() works", { expect_equal(slide_period_lgl(TRUE, new_date(0), "day", ~.x), TRUE) }) test_that("slide_period_lgl() can coerce", { expect_equal(slide_period_lgl(1, new_date(0), "day", ~.x), TRUE) }) # ------------------------------------------------------------------------------ # data frame suffix tests test_that("slide_period_dfr() works", { expect_identical( slide_period_dfr( 1:2, new_date(c(1, 2)), "day", ~new_data_frame(list(x = list(.x))), .before = 1 ), slide_dfr(1:2, ~new_data_frame(list(x = list(.x))), .before = 1) ) }) test_that("slide_period_dfc() works", { x <- 1:2 fn <- function(x) { if (length(x) == 1) { data.frame(x1 = x) } else { data.frame(x2 = x) } } expect_identical( slide_period_dfc( 1:2, new_date(c(1, 2)), "day", fn, .before = 1 ), data.frame( x1 = c(1L, 1L), x2 = 1:2 ) ) }) # ------------------------------------------------------------------------------ # input names test_that("names exist on inner sliced elements", { names <- letters[1:5] x <- set_names(1:5, names) exp <- as.list(names) expect_equal(slide_period_vec(x, new_date(c(1, 2, 3, 4, 5)), "day", ~list(names(.x))), exp) }) test_that("names are never placed on the output", { x <- set_names(1:5, letters[1:5]) expect_null(names(slide_period_vec(x, new_date(c(1, 2, 3, 4, 5)), "day", ~.x))) expect_null(names(slide_period_vec(x, new_date(c(1, 2, 3, 4, 5)), "day", ~.x, .ptype = int()))) expect_null(names(slide_period_int(x, new_date(c(1, 2, 3, 4, 5)), "day", ~.x))) })