1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
context("get_figure")
test_that("requests made by a user who doesn't exist error a 404", {
skip_on_cran()
skip_if_not_master()
expect_error({
get_figure("klmadslfjdfljdsf", 0)
}, ".*404.*")
})
test_that("requests made to retrieve a figure that doesn't exist returns a 404", {
skip_on_cran()
skip_if_not_master()
expect_error({
get_figure("get_test_user", 18324823)
}, ".*404.*")
})
test_that("requests made to retrieve some elses private file errors", {
skip_on_cran()
skip_if_not_master()
expect_error(get_figure("get_test_user", 1))
})
test_that("retrieving a public figure ... works.", {
skip_on_cran()
skip_if_not_master()
fig <- get_figure("get_test_user", 0)
# get the data behind the hash
p <- plotly_build(fig)$x
expect_equivalent(p$data[[1]]$x, c("1", "2", "3"))
})
test_that("can add traces to a subplot figure", {
skip_on_cran()
skip_if_not_master()
fig <- get_figure('chelsea_lyn', 6366)
p <- add_lines(fig, x = c(1, 2, 3), y = c(4, 2, 4))
expect_equivalent(
length(plotly_build(fig)$x$data) + 1,
length(plotly_build(p)$x$data)
)
})
test_that("posting a hidden plot returns a secret key", {
skip_on_cran()
skip_if_not_master()
res <- plotly_POST(plot_ly(), sharing = "secret")
expect_true(res$share_key_enabled)
expect_true(nchar(res$share_key) > 1)
})
|