# set verbose to off
galah_config(verbose = FALSE, run_checks = FALSE)
test_that("swapping to atlas = Portugal works", {
expect_message(galah_config(atlas = "Portugal"))
})
test_that("show_all(fields) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(fields) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gt(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_all(collections) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(collections, limit = 10) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_lte(nrow(x), 10)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_all(datasets) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(datasets, limit = 10) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_lte(nrow(x), 10)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
## FIXME: No data returned
test_that("show_all(providers) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(providers, limit = 10) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_lte(nrow(x), 10)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_all(reasons) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(reasons) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gt(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_all(assertions) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- show_all(assertions) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gt(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_all(profiles) fails for Portugal", {
expect_error(show_all(profiles))
})
test_that("show_all(lists) fails for Portugal", {
expect_error(show_all(lists))
})
test_that("search_all(fields) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- search_all(fields, "year") |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gte(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("search_all(taxa) works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- search_all(taxa, "Mammalia") |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gte(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("show_values works for fields for Portugal", {
skip_if_offline(); skip_on_ci()
x <- search_all(fields, "basis_of_record") |>
show_values() |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gte(nrow(x), 1)
expect_true(inherits(x, c("tbl_df", "tbl", "data.frame")))
})
test_that("atlas_counts works for Portugal", {
skip_if_offline(); skip_on_ci()
x <- atlas_counts() |>
pull(count) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gt(x, 0)
})
test_that("atlas_counts works with type = 'species' for Portugal", {
skip_if_offline(); skip_on_ci()
x <- atlas_counts(type = "species") |>
pull(count) |>
try(silent = TRUE)
skip_if(inherits(x, "try-error"), message = "API not available")
expect_gt(x, 0)
})
test_that("atlas_counts works with galah_identify for Portugal", {
skip_if_offline(); skip_on_ci()
result <- galah_call() |>
identify("Mammalia") |>
count() |>
collect() |>
try(silent = TRUE)
skip_if(inherits(result, "try-error"), message = "API not available")
expect_gt(result$count, 1)
result2 <- galah_call() |>
filter(class == "Mammalia") |>
count() |>
collect() |>
try(silent = TRUE)
skip_if(inherits(result2, "try-error"), message = "API not available")
expect_lt(
sqrt((result2$count - result$count)^2) / result$count,
0.1) # i.e. <1% margin of error
})
test_that("atlas_counts works with group_by for Portugal", {
skip_if_offline(); skip_on_ci()
result <- galah_call() |>
filter(year >= 2000) |>
group_by(basis_of_record) |>
count() |>
collect() |>
try(silent = TRUE)
skip_if(inherits(result, "try-error"), message = "API not available")
expect_gt(nrow(result), 1)
expect_equal(names(result), c("basis_of_record", "count"))
})
# NOTE: I've so far been unable to register for this atlas,
# so we can't test downloads. This affects `atlas_occurrences()` and
# `atlas_species()`
test_that("atlas_species returns error for Portugal", {
skip_if_offline(); skip_on_ci()
expect_error({galah_call(type = "species") |>
identify("Carnivora") |>
collect()
})
})
test_that("atlas_occurrences returns error for Portugal", {
skip_if_offline(); skip_on_ci()
expect_error(atlas_occurrences(
filter = galah_filter(year == 2020)
))
})
# Note: atlas_media() should also work, in theory, but again am unable to test
galah_config(atlas = "Australia")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.