context("Test international atlases: Austria") # set verbose to off galah_config(verbose = FALSE, run_checks = FALSE) test_that("swapping to atlas = Austria works", { expect_message(galah_config(atlas = "Austria")) }) test_that("show_all(fields) works for Austria", { vcr::use_cassette("IA_Austria_show_all_fields", { x <- show_all(fields) }) expect_gt(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(collections) works for Austria", { vcr::use_cassette("IA_Austria_show_all_collections", { x <- show_all(collections, limit = 10) }) expect_lte(nrow(x), 10) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(datasets) works for Austria", { vcr::use_cassette("IA_Austria_show_all_datasets", { x <- show_all(datasets, limit = 10) }) expect_lte(nrow(x), 10) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(providers) works for Austria", { vcr::use_cassette("IA_Austria_show_all_providers", { x <- show_all(providers, limit = 10) }) expect_lte(nrow(x), 10) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(reasons) works for Austria", { vcr::use_cassette("IA_Austria_show_all_reasons", { x <- show_all(reasons) }) expect_gt(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(assertions) works for Austria", { vcr::use_cassette("IA_Austria_show_all_assertions", { x <- show_all(assertions) }) expect_gt(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_all(profiles) fails for Austria", { expect_error(show_all(profiles)) }) test_that("show_all(lists) works for Austria", { vcr::use_cassette("IA_Austria_show_all_lists", { x <- show_all(lists, limit = 10) }) expect_gt(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("search_all(fields) works for Austria", { x <- search_all(fields, "year") expect_gte(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("search_all(taxa) works for Austria", { vcr::use_cassette("IA_Austria_search_all_taxa", { x <- search_all(taxa, "Vulpes vulpes") }) expect_gte(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_values works for fields for Austria", { vcr::use_cassette("IA_Austria_show_values_fields", { x <- search_all(fields, "basisOfRecord") |> show_values() }) expect_gte(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) test_that("show_values works for lists for Austria", { vcr::use_cassette("IA_Austria_show_values_profiles", { x <- search_all(lists, "dr113") |> show_values() }) expect_gte(nrow(x), 1) expect_true(inherits(x, c("tbl_df", "tbl", "data.frame"))) }) vcr::use_cassette("IA_Austria_atlas_counts", { test_that("atlas_counts works for Austria", { expect_gt(atlas_counts()$count, 0) expect_gt(atlas_counts(type = "species")$count, 0) }) }) vcr::use_cassette("IA_Austria_atlas_counts_identify", { test_that("atlas_counts works with galah_identify for Austria", { result <- galah_call() |> galah_identify("Mammalia") |> atlas_counts() expect_gt(result$count, 1) result2 <- galah_call() |> galah_filter(class == "Mammalia") |> atlas_counts() expect_lt( sqrt((result2$count - result$count)^2) / result$count, 0.1) # i.e. <1% margin of error }) }) vcr::use_cassette("IA_Austria_atlas_counts_group_by", { test_that("atlas_counts works with group_by for Austria", { result <- galah_call() |> galah_filter(year >= 2020) |> galah_group_by(year) |> atlas_counts() expect_gt(nrow(result), 1) expect_equal(names(result), c("year", "count")) }) }) test_that("atlas_occurrences works for Austria", { skip_on_cran() galah_config( atlas = "Austria", email = "ala4r@ala.org.au", send_email = FALSE) occ <- galah_call() |> galah_identify("Mammalia") |> galah_filter(year == 1990) |> galah_select(species, year) |> atlas_occurrences() expect_gt(nrow(occ), 0) expect_equal(ncol(occ), 2) expect_true(inherits(occ, c("tbl_df", "tbl", "data.frame"))) }) galah_config(atlas = "Australia")