Nothing
test_that("get_keys (keys): simplest examples work", {
expect_equal(get_keys('"A"=>"B"'), "A")
expect_equal(get_keys(c('"A"=>"B"', '"C"=>"D"')), c("A", "C"))
# multiple input + sorted output
expect_equal(
get_keys(c('"C"=>"D", "C"=>"B"', '"C"=>"A","B"=>"A"')),
c("C", "B")
)
})
test_that("get_keys (keys): more complicated examples: ", {
expect_equal(get_keys('"A"=>"B=C"'), "A") # = in values
expect_equal(get_keys('"A"=>"B,C"'), "A") # , in values
expect_equal(get_keys('"A"=>"B\\""'), "A") # \\" in values
expect_equal(get_keys('"A"=>"B > C'), "A") # > in values
expect_equal(get_keys('"A"=>"B\nC"'), "A") # \n in values
})
test_that("get_keys (values): simplest examples work", {
expect_identical(
object = unclass(get_keys('"A"=>"B"', values = TRUE)),
expected = list(A = "B"),
ignore_attr = TRUE
)
expect_identical(
object = unclass(get_keys('"A"=>"B","C"=>"D"', values = TRUE)),
expected = list(A = "B", C = "D"),
ignore_attr = TRUE
)
})
test_that("get_keys (values): more complicated examples", {
# = and , into the values
expect_identical(
object = unclass(get_keys('"A"=>"B=C","C"=>"D,E"', values = TRUE)),
expected = list(A = "B=C", C = "D,E"),
ignore_attr = TRUE
)
# Multiple outputs + sorted keys
expect_identical(
object = unclass(get_keys(c('"A"=>"B","C"=>"D"', '"C"=>"E"'), values = TRUE)),
expected = list(C = c("D", "E"), A = "B"),
ignore_attr = TRUE
)
# subset keys
expect_identical(
object = unclass(get_keys(c('"A"=>"B","C"=>"D"', '"C"=>"E"'), values = TRUE, which_keys = "C")),
expected = list(C = c("D", "E")),
ignore_attr = TRUE
)
# there might be empty values or newlines, see
# https://github.com/ropensci/osmextract/issues/250
expect_identical(
object = unclass(get_keys('"A"=>"\n","B"=>"C","D"=>""', values = TRUE)),
expected = list(A = "", B = "C", D = ""),
ignore_attr = TRUE
)
})
test_that("oe_get_keys: simplest examples work", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
# Define path to gpkg object
its_gpkg = oe_vectortranslate(its_pbf, quiet = TRUE)
# Extract keys from pbg and gpkg file
keys1 = oe_get_keys(its_pbf)
keys2 = oe_get_keys(its_gpkg)
# Tests
expect_type(keys1, "character")
expect_type(keys2, "character")
expect_equal(length(keys1), length(keys2))
})
test_that("oe_get_keys + values: printing method", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
expect_snapshot_output(oe_get_keys(its_pbf, values = TRUE))
# Define path to gpkg object
its_gpkg = oe_vectortranslate(its_pbf, quiet = TRUE)
expect_snapshot_output(oe_get_keys(its_gpkg, values = TRUE))
})
test_that("oe_get_keys: returns error with wrong inputs", {
expect_error(
oe_get_keys(sf::st_sfc(sf::st_point(c(1, 1)), crs = 4326)),
class = "oe_get_keys-noSupport"
)
expect_error( # file does not exist
oe_get_keys("xxx.gpkg"),
class = "oe_get_keys-matchedFileMissing"
)
expect_error( # length > 1
oe_get_keys(c("a.gpkg", "b.gpkg")),
class = "oe_get_keys-lengthOneCharacterInput"
)
})
test_that("oe_get_keys: reads from sf object", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
its = oe_read(its_pbf, skip_vectortranslate = TRUE, quiet = TRUE)
expect_error(oe_get_keys(its), NA)
})
test_that("the output from oe_get_keys is the same as for hstore_get_values", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
my_output = oe_get_keys("ITS Leeds", values = TRUE)
its_leeds_with_surface = oe_get(
"ITS Leeds",
query = "SELECT *, hstore_get_value(other_tags, 'surface') AS surface FROM lines",
quiet = TRUE,
force_vectortranslate = TRUE
)
expect_equal(
object = sort(table(my_output[["surface"]]), decreasing = TRUE)[1:2],
expected = sort(table(its_leeds_with_surface[["surface"]]), decreasing = TRUE)[1:2]
)
})
test_that("oe_get_keys stops when there is no other_tags field", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
# Read data ignoring the other_tags field
its_object = oe_read(
its_pbf,
query = "SELECT highway, geometry FROM lines",
quiet = TRUE
)
expect_error(
oe_get_keys(its_object),
class = "oe_get_keys-inputMustHaveOtherTagsField"
)
# Translate data ignoring the other_tags field
its_gpkg = oe_read(
its_pbf,
download_only = TRUE,
quiet = TRUE,
vectortranslate_options = c(
"-f", "GPKG", "-overwrite", "-select", "highway", "lines"
)
)
expect_error(
oe_get_keys(its_gpkg),
class = "oe_get_keys-matchedFileMustHaveOtherTagsFields"
)
})
test_that("oe_get_keys matches input zone with file", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
# Simplest example works
expect_error(oe_get_keys("ITS Leeds"), NA)
# Cannot extract from files that were not previously downloaded
expect_error(oe_get_keys("Brazil"), class = "oe_get_keys-matchedFileMissing")
})
test_that("oe_get_keys errors when asking for non existing layer", {
withr::local_envvar(
.new = list(
"OSMEXT_DOWNLOAD_DIRECTORY" = tempdir(),
"TESTTHAT" = "true"
)
)
its_pbf = setup_pbf()
its_gpkg = oe_vectortranslate(its_pbf, quiet = TRUE)
expect_error(
object = oe_get_keys(its_gpkg, layer = "points"),
class = "oe_get_keys-missingLayerSelected"
)
})
test_that("oe_get_keys emits warning when some keys were already extracted", {
its_pbf = setup_pbf()
withr::local_envvar(
.new = list("OSMEXT_DOWNLOAD_DIRECTORY" = tempdir())
)
its_gpkg = oe_vectortranslate(its_pbf, quiet = TRUE, extra_tags = "amenity")
expect_warning(
object = oe_get_keys(its_gpkg),
regexp = "The following keys were already extracted"
)
})
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.