tests/testthat/test_config_metadata_gsheets_sdi_geoserver_geotiff.R

# test_config_metadata_gsheets_geoserver_geotiff.R
# Author: Emmanuel Blondel <emmanuel.blondel1@gmail.com>
#
# Description: Integration tests for config_metadata_gsheets_geoserver_geotiff.json workflow
#=======================
require(geoflow, quietly = TRUE)
require(testthat)

cfg_file = system.file("extdata/workflows/config_metadata_gsheets_sdi_geoserver_geotiff.json", package = "geoflow")

#init
test_that("init",{
  testthat::skip_on_cran()
  CFG <- geoflow::initWorkflow(cfg_file, dir = tempdir())
  expect_is(CFG$metadata$content, "list")
  expect_equal(length(CFG$metadata$content), 2L)
  expect_equal(names(CFG$metadata$content), c("contacts", "entities"))
  expect_equal(length(CFG$metadata$content$contacts), 4L)
  expect_equal(length(CFG$getContacts()), 4L)
  expect_equal(length(CFG$metadata$content$entities), 2L)
  expect_equal(length(CFG$getEntities()), 2L)
  expect_equal(length(CFG$actions), 1L)
  expect_equal(length(CFG$software), 2L)
  expect_equal(names(CFG$software), c("input", "output"))
  expect_equal(length(CFG$software$input), 0L)
  expect_equal(length(CFG$software$output), 2L)
})

#debug
test_that("debug",{
  testthat::skip_on_cran()
  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()
  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")))
  expect_true(file.exists(file.path(EXEC, "config_copyof_contacts_1.csv")))
  expect_true(file.exists(file.path(EXEC, "config_copyof_entities_1.csv")))
  expect_true(dir.exists(file.path(EXEC, "entities")))
  entity_dirs <- list.dirs(path = file.path(EXEC, "entities"), full.names = F,recursive = F)
  expect_true(all(entity_dirs %in% c("my-geoflow-coverage-record1", "my-geoflow-coverage-record2")))
  config <- geoflow::initWorkflow(cfg_file, dir = tempdir())
  GS <- config$software$output$geoserver
  expect_is(GS$getWorkspace("mysf"), "GSWorkspace")
  expect_is(GS$getCoverageStore("mysf", "mysfdem1"), "GSGeoTIFFCoverageStore")
  expect_is(GS$getCoverageStore("mysf", "mysfdem2"), "GSGeoTIFFCoverageStore")
  expect_true("sfdem" %in% GS$getStyleNames(ws = "mysf"))
  expect_true("sfdem2" %in% GS$getStyleNames(ws = "mysf"))
  expect_is(GS$getCoverage("mysf", "mysfdem1", "mysfdem1"), "GSCoverage")
  expect_is(GS$getCoverage("mysf", "mysfdem2", "mysfdem2"), "GSCoverage")
  expect_is(GS$getLayer("mysfdem1"), "GSLayer")
  expect_is(GS$getLayer("mysfdem2"), "GSLayer")
})

Try the geoflow package in your browser

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

geoflow documentation built on Dec. 12, 2025, 5:08 p.m.