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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
context("api")
test_that("api() returns endpoints", {
skip_on_cran()
skip_if_not_master()
res <- api()
expect_true(length(res) > 1)
expect_true(all(c("plots", "grids", "folders") %in% names(res)))
})
test_that("Can search with white-space", {
skip_on_cran()
skip_if_not_master()
res <- api("search?q=overdose drugs")
expect_true(length(res) > 1)
})
test_that("Changing a filename works", {
skip_on_cran()
skip_if_not_master()
id <- plotly:::new_id()
f <- api("files/cpsievert:14680", "PATCH", list(filename = id))
expect_equivalent(f$filename, id)
})
test_that("Downloading plots works", {
skip_on_cran()
skip_if_not_master()
# https://plot.ly/~cpsievert/200
p <- api_download_plot(200, "cpsievert")
expect_is(p, "htmlwidget")
expect_is(p, "plotly")
l <- plotly_build(p)$x
expect_length(l$data, 1)
# This file is a grid, not a plot https://plot.ly/~cpsievert/14681
expect_error(
api_download_plot(14681, "cpsievert"), "grid"
)
})
test_that("Downloading grids works", {
skip_on_cran()
skip_if_not_master()
g <- api_download_grid(14681, "cpsievert")
expect_is(g, "api_file")
expect_is(
tibble::as_tibble(g$preview), "data.frame"
)
# This file is a plot, not a grid https://plot.ly/~cpsievert/14681
expect_error(
api_download_grid(200, "cpsievert"), "plot"
)
})
test_that("Creating produces a new file by default", {
skip_on_cran()
skip_if_not_master()
expect_new <- function(obj) {
old <- api("folders/home?user=cpsievert")
new_obj <- api_create(obj)
Sys.sleep(3)
new <- api("folders/home?user=cpsievert")
n <- if (plotly:::is.plot(new_obj)) 2 else 1
expect_equivalent(old$children$count + n, new$children$count)
}
expect_new(mtcars)
# even if plot has multiple traces, only one grid should be created
p1 <- plot_ly(mtcars, x = ~mpg, y = ~wt)
p2 <- add_markers(p1, color = ~factor(cyl))
p3 <- add_markers(p1, color = ~factor(cyl), frame = ~factor(vs))
expect_new(p1)
expect_new(p2)
expect_new(p3)
})
test_that("Can overwrite a grid", {
skip_on_cran()
skip_if_not_master()
id <- new_id()
m <- api_create(mtcars, id)
m2 <- api_create(palmerpenguins::penguins, id)
expect_true(identical(m$embed_url, m2$embed_url))
expect_false(identical(m$cols, m2$cols))
})
test_that("Can overwrite a plot", {
skip_on_cran()
skip_if_not_master()
id <- new_id()
p <- plot_ly()
m <- api_create(p, id)
m2 <- api_create(layout(p, title = "test"), id)
expect_true(identical(m$embed_url, m2$embed_url))
expect_false(identical(m$figure$layout$title, m2$figure$layout$title))
})
test_that("Can create plots with non-trivial src attributes", {
skip_on_cran()
skip_if_not_master()
expect_srcified <- function(x) {
expect_length(strsplit(x, ":")[[1]], 3)
}
expect_not_srcified <- function(x) {
expect_true(is.null(x))
}
# src-ifies data arrays, but not arrayOk of length 1
p <- plot_ly(x = 1:10, y = 1:10, marker = list(color = "red"))
res <- api_create(p)
trace <- res$figure$data[[1]]
expect_srcified(trace$xsrc)
expect_srcified(trace$ysrc)
expect_true(trace$marker$color == "red")
# can src-ify data[i].marker.color
p <- plot_ly(x = 1:10, y = 1:10, color = 1:10)
res <- api_create(p)
trace <- res$figure$data[[1]]
expect_srcified(trace$marker$colorsrc)
# can src-ify frames[i].data[i].marker.color
res <- p %>%
add_markers(frame = rep(1:2, 5)) %>%
api_create()
trace <- res$figure$frames[[1]]$data[[1]]
expect_srcified(trace$marker$colorsrc)
# doesn't src-ify layout arrays (layout.xaxis.tickvals)
res <- api_create(ggplot() + geom_bar(aes(1:10)))
expect_not_srcified(res$figure$layout$xaxis$tickvalssrc)
})
|