Nothing
test_that("Manual request", {
skip_on_cran()
skip_if_offline()
skip_if_not(aemet_detect_api_key(), message = "No API KEY")
today <- "/api/prediccion/nacional/hoy"
expect_snapshot(tt <- get_data_aemet(today))
expect_true(is.character(tt))
tt2 <- get_metadata_aemet(today)
expect_s3_class(tt2, "tbl_df")
})
test_that("Priority of api keys", {
skip_on_cran()
skip_if_offline()
skip_if_not(aemet_detect_api_key(), message = "No API KEY")
db_file <- file.path(tempdir(), "dbapikey.rds")
if (file.exists(db_file)) unlink(db_file)
expect_false(file.exists(db_file))
# From scratch
ps <- cache_apikeys()
expect_true(file.exists(db_file))
# With 150 initially
db <- get_db_apikeys()
expect_identical(db$remain, rep_len(150, nrow(db)))
# Should be generated in the first run
if (file.exists(db_file)) unlink(db_file)
expect_false(file.exists(db_file))
tt <- aemet_daily_clim()
expect_true(file.exists(db_file))
# And the db should be updated now
db <- get_db_apikeys()
expect_false(all(db$remain == rep_len(150, nrow(db))))
# Do some runs to get actual quota
for (i in seq_len(nrow(db))) {
tt <- aemet_last_obs(station = climaemet:::default_station)
}
db <- get_db_apikeys()
# And exhaust
for (i in seq_len(nrow(db) * 2)) {
tt <- aemet_last_obs(station = climaemet:::default_station)
}
dbnow <- get_db_apikeys()
names(dbnow) <- c("apikey", "remain_test")
dbend <- merge(db, dbnow, by = "apikey")
# I would expect all values have reduced
expect_true(any(dbend$remain > dbend$remain_test))
})
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.