Nothing
# test_config_metadata_thredds_noaa.R
# Author: Emmanuel Blondel <emmanuel.blondel1@gmail.com>
#
# Description: Integration tests for config_metadata_thredds_noaa.json workflow
#=======================
require(geoflow, quietly = TRUE)
require(testthat)
#init
test_that("init",{
testthat::skip_on_cran()
cfg_file = system.file("extdata/workflows/config_metadata_thredds_noaa.json", package = "geoflow")
CFG <- geoflow::initWorkflow(cfg_file, dir = tempdir())
expect_is(CFG$metadata$content, "list")
expect_equal(length(CFG$metadata$content), 1L)
expect_equal(names(CFG$metadata$content), "entities")
expect_equal(length(CFG$metadata$content$entities), 1L)
expect_equal(length(CFG$getEntities()), 1L)
expect_equal(length(CFG$actions), 0L)
})
#debug
test_that("debug",{
testthat::skip_on_cran()
cfg_file = system.file("extdata/workflows/config_metadata_thredds_noaa.json", package = "geoflow")
DEBUG <- geoflow::debugWorkflow(cfg_file, entityIndex = 1, dir = tempdir())
expect_equal(names(DEBUG), c("config", "entity", "dir"))
expect_is(DEBUG$config, "list")
expect_is(DEBUG$entity, "geoflow_entity")
})
#execute
test_that("execute",{
#testthat::skip_on_cran()
#cfg_file = system.file("extdata/workflows/config_metadata_thredds_noaa.json", package = "geoflow")
#execution
#EXEC <- geoflow::executeWorkflow(cfg_file, dir = tempdir())
#expect_true(dir.exists(EXEC))
#expect_true(file.exists(file.path(EXEC, "job.json")))
#expect_true(file.exists(file.path(EXEC, "job-logs.txt")))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.