Nothing
test_that("s3 uri parsing", {
url <- "s3://neon4cast-scores/parquet/aquatics"
parts <- url_parse(url)
expect_true(parts$scheme == "s3")
expect_null(parts$username)
expect_equal(parts$path, "/parquet/aquatics")
url <- "s3://neon4cast-scores/parquet/aquatics?endpoint_url=data.ecoforecast.org"
parts <- url_parse(url)
expect_true(parts$scheme == "s3")
expect_null(parts$username)
expect_equal(parts$path, "/parquet/aquatics")
expect_equal(parts$query[["endpoint_url"]], "data.ecoforecast.org")
url <- "s3://user:password:token@neon4cast-scores/parquet/aquatics?endpoint_url=data.ecoforecast.org"
parts <- url_parse(url)
expect_true(parts$scheme == "s3")
expect_equal(parts$username, "user")
expect_equal(parts$password, "password")
expect_equal(parts$token, "token")
expect_equal(parts$path, "/parquet/aquatics")
expect_equal(parts$query[["endpoint_url"]], "data.ecoforecast.org")
url <- "s3://anonymous@neon4cast-scores/parquet/aquatics?endpoint_url=data.ecoforecast.org"
parts <- url_parse(url)
expect_equal(parts$username, "anonymous")
})
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.