tests/async/test-some.R

test_that("async_some", {

  is_odd <- function(x) {
    force(x)
    delay(1/1000)$then(function(value) as.logical(x %% 2))
  }

  result <- synchronise(async_some(1:10, is_odd))
  expect_identical(result, TRUE)

  result <- synchronise(async_some(numeric(), is_odd))
  expect_identical(result, FALSE)

  result <- synchronise(async_some(1:10 * 2, is_odd))
  expect_identical(result, FALSE)

})

test_that("async_some, errors", {

  called <- FALSE
  do <- function()  {
    async_some(1:10, function(x) stop("doh"))$
      then(function() called <<- TRUE)$
      catch(error = function(e) {
        expect_equal(conditionMessage(e), "doh")
        expect_s3_class(e, "async_rejected")
      })
  }

  synchronise(do())
  expect_false(called)
})

Try the pkgcache package in your browser

Any scripts or data that you put into this service are public.

pkgcache documentation built on July 26, 2023, 5:44 p.m.