Nothing
testthat::test_that(
"created query is as expected",{
testthat::expect_equal(
prep_sql_query(
resource = "42f17a3c-a4db-4965-ba68-3dffe6bca13a",
fields = c("Dose", "Product"),
limit = 10,
offset = 0,
where = "\"Product\" = \'Total\' AND \"DOSE\" = \'Dose 1\'"),
"https://www.opendata.nhs.scot/api/3/action/datastore_search_sql?sql=SELECT%20%22Dose%22,%22Product%22%20FROM%20%2242f17a3c-a4db-4965-ba68-3dffe6bca13a%22%20WHERE%20%22Product%22%20=%20'Total'%20AND%20%22DOSE%22%20=%20'Dose%201'%20ORDER%20BY%20%22_id%22%20ASC%20%20LIMIT%2010%20OFFSET%200"
)
})
testthat::test_that(
"created query is as expected and works with API",{
testthat::skip_on_cran()
query <- prep_sql_query(
resource = "edee9731-daf7-4e0d-b525-e4c1469b8f69",
fields = c("AgeGroup", "EuropeanStandardPopulation"),
limit = 1,
offset = 0,
where = "\"AgeGroup\" = \'45-49 years\'"
)
res <- httr::content(httr::GET(query))
testthat::expect_true(
res$success &
length(res$result$records) == 1 &
length(res$result$records[[1]]) == 2 &
res$result$records[[1]]$EuropeanStandardPopulation == 7000
)
})
testthat::test_that(
"created query is as expected but fails because of
'abc' in 'where' not being a valid field name",{
testthat::skip_on_cran()
query <- prep_sql_query(
resource = "edee9731-daf7-4e0d-b525-e4c1469b8f69",
fields = c("AgeGroup", "EuropeanStandardPopulation"),
limit = 1,
offset = 0,
where = "\"abc\" = \'45-49 years\'"
)
res <- httr::content(httr::GET(query))
testthat::expect_false(res$success)
})
testthat::test_that(
"error for non valid resource id",{
testthat::skip_on_cran()
query <- prep_sql_query(
resource = "abc123",
fields = NULL,
where = NULL,
limit = 1,
offset = 0
)
res <- httr::content(httr::GET(query))
testthat::expect_false(res$success)
})
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.