# ------------------------------------------------------------------------------ # map2() furrr_test_that("future_map2() matches map2() for simple cases", { expect_identical( future_map2(1:3, 4:6, ~ .x + .y), map2(1:3, 4:6, ~ .x + .y) ) }) furrr_test_that("names of `.x` are retained", { x <- c(a = 1, b = 2) y <- c(c = 1, d = 2) expect_named(future_map2(x, y, ~1), c("a", "b")) }) furrr_test_that("named empty input makes named empty output", { x <- set_names(list(), character()) expect_named(future_map2(x, x, ~.x), character()) }) # ------------------------------------------------------------------------------ # atomic variants furrr_test_that("future_map2_dbl() works", { x <- c(1, 2, 3) y <- c(4, 5, 6) expect_identical( future_map2_dbl(x, y, ~ .x + .y), map2_dbl(x, y, ~ .x + .y) ) }) furrr_test_that("future_map2_int() works", { x <- c(1L, 2L, 3L) y <- c(4L, 5L, 6L) expect_identical( future_map2_int(x, y, ~ .x + .y), map2_int(x, y, ~ .x + .y) ) }) furrr_test_that("future_map2_lgl() works", { x <- c(TRUE, FALSE, TRUE) y <- c(FALSE, TRUE, TRUE) expect_identical( future_map2_lgl(x, y, ~ .x || .y), map2_lgl(x, y, ~ .x || .y) ) }) furrr_test_that("future_map2_chr() works", { x <- c("a", "b", "c") y <- c("d", "e", "f") expect_identical( future_map2_chr(x, y, ~.y), map2_chr(x, y, ~.y) ) }) furrr_test_that("future_map2_vec() works", { x <- as.Date(c("2020-01-01", "2020-01-02", "2020-01-03")) y <- 1:3 expect_identical( future_map2_vec(x, y, ~.x), map2_vec(x, y, ~.x) ) expect_identical( future_map2_vec(x, y, ~1, .ptype = integer()), map2_vec(x, y, ~1, .ptype = integer()) ) expect_identical( future_map2_vec(integer(), integer(), identity), map2_vec(integer(), integer(), identity) ) expect_identical( future_map2_vec( set_names(integer(), character()), integer(), identity ), map2_vec( set_names(integer(), character()), integer(), identity ) ) # Vector error expect_snapshot(error = TRUE, { future_map2_vec(1:2, 1:2, ~NULL) }) # Size error expect_snapshot(error = TRUE, { future_map2_vec(1:2, 1:2, ~ 1:2) }) # Type error expect_snapshot(error = TRUE, { future_map2_vec(1:2, 1:2, ~ if (.x == 1L) 1 else "x") }) }) furrr_test_that("names of `.x` are retained", { x <- c(a = 1, b = 2) y <- c(c = 1, d = 2) expect_named(future_map2_dbl(x, y, ~1), c("a", "b")) x <- c(a = as.Date("2020-01-01"), b = as.Date("2020-01-02")) y <- c(c = 1, d = 2) expect_named(future_map2_vec(x, y, ~1), c("a", "b")) }) # ------------------------------------------------------------------------------ # data frame variants furrr_test_that("future_map2_dfr() works", { x <- c("a", "b", "c") y <- c("d", "e", "f") expect_identical( future_map2_dfr(x, y, ~ data.frame(x = .x, y = .y)), map2_dfr(x, y, ~ data.frame(x = .x, y = .y)) ) }) furrr_test_that("future_map2_dfc() works", { x <- c("a", "b", "c") y <- c("d", "e", "f") expect_identical( future_map2_dfc(x, y, ~ as.data.frame(set_names(list(.x), .y))), map2_dfc(x, y, ~ as.data.frame(set_names(list(.x), .y))) ) }) # ------------------------------------------------------------------------------ # size furrr_test_that("future_map2() works with size zero input", { expect_identical(future_map2(list(), list(), identity), list()) }) furrr_test_that("atomic variants work with size zero input", { expect_identical(future_map2_chr(list(), list(), identity), character()) expect_identical(future_map2_dbl(list(), list(), identity), double()) expect_identical(future_map2_int(list(), list(), identity), integer()) expect_identical(future_map2_lgl(list(), list(), identity), logical()) }) furrr_test_that("generic variant works with size zero input", { expect_identical( future_map2_vec(list(), list(), identity), NULL ) expect_identical( future_map2_vec(list(), list(), identity, .ptype = integer()), integer() ) }) furrr_test_that("size one recycling works", { expect_identical( future_map2(1, 1:2, ~ c(.x, .y)), list(c(1, 1), c(1, 2)) ) expect_identical( future_map2(1:2, 1, ~ c(.x, .y)), list(c(1, 1), c(2, 1)) ) expect_identical( future_map2(integer(), 1, ~ c(.x, .y)), list() ) expect_identical( future_map2(1, integer(), ~ c(.x, .y)), list() ) }) # TODO: Reenable this test after future issue is fixed # https://github.com/futureverse/future/issues/820 # https://github.com/futureverse/furrr/issues/307 # furrr_test_that("generally can't recycle to size zero", { # expect_error( # future_map2(1:2, integer(), ~ c(.x, .y)), # "Can't recycle" # ) # # expect_error( # future_map2(integer(), 1:2, ~ c(.x, .y)), # "Can't recycle" # ) # }) # ------------------------------------------------------------------------------ # Miscellaneous furrr_test_that("globals in `.x` and `.y` are found (#16)", { fn1 <- function(x) sum(x, na.rm = TRUE) fn2 <- function(x) sum(x, na.rm = FALSE) x <- list(c(1, 2, NA), c(2, 3, 4)) fns1 <- map(x, ~ purrr::partial(fn1, x = .x)) fns2 <- map(x, ~ purrr::partial(fn2, x = .x)) expect_identical( future_map2(fns1, fns2, ~ c(.x(), .y())), list(c(3, NA), c(9, 9)) ) }) furrr_test_that("chunk balancing is correct after a recycle (#30)", { expect_identical( future_map2(1, 1:4, ~ c(.x, .y)), list(c(1, 1), c(1, 2), c(1, 3), c(1, 4)) ) })