Nothing
skip_offline_test()
test_that("Test set up of Token", {
withr::local_options(
.new = list(
connector.sharepoint.verbosity_level = "verbose",
zephyr.verbosity_level = "verbose"
),
.local_envir = teardown_env()
)
hash <- names(AzureAuth::list_azure_tokens())[1]
## Use the var env
withr::with_envvar(c("SHAREPOINT_AZURE_HASH" = hash), {
messages <- capture_messages(get_token())
expect_false(
any(grepl(x = messages, pattern = "No SHAREPOINT_AZURE_HASH env found"))
)
})
## Error if no token
withr::with_envvar(c("R_AZURE_DATA_DIR" = "~"), {
quiet_token <- function(...) {
suppressMessages(get_token(...))
}
expect_error(quiet_token())
})
## Manipulate .active_file
file.rename(
from = get_tk_active_file(),
to = file.path(AzureAuth::AzureR_dir(), ".old_hash")
)
messages_a <- capture_messages(get_token())
expect_true(
any(
grepl(
x = messages_a,
pattern = "No hash provided or found, using the first token found"
)
)
)
## create one without SHAREPOINT
file.create(file.path(AzureAuth::AzureR_dir(), ".active_hash"))
messages_s <- capture_messages(get_token())
expect_true(
any(
grepl(
x = messages_s,
pattern = "SHAREPOINT key not found in the active hash file"
)
)
)
file.remove(file.path(AzureAuth::AzureR_dir(), ".active_hash"))
## Restore .active_file
file.rename(
from = file.path(AzureAuth::AzureR_dir(), ".old_hash"),
to = file.path(AzureAuth::AzureR_dir(), ".active_hash")
)
})
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.