plotly-master/tests/testthat/test-plotly-getfigure.R

context("get_figure")

test_that("requests made by a user who doesn't exist error a 404", {
  skip_on_cran()
  skip_on_pull_request()
  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_on_pull_request()
  expect_error({
    get_figure("get_test_user", 18324823)
  }, ".*404.*")
})

test_that("requests made to retrieve some elses private file errors a 403", {
  skip_on_cran()
  skip_on_pull_request()
  expect_error({
    get_figure("get_test_user", 1)
  }, ".*403.*")
})

test_that("retrieving a public figure ... works.", {
  skip_on_cran()
  skip_on_pull_request()
  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_on_pull_request()
  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_on_pull_request()
  res <- plotly_POST(plot_ly(), sharing = "secret")
  key <- strsplit(res$url, "=")[[1]][2]
  expect_true(nchar(key) > 1)
})
franciscorichter/dmea documentation built on May 16, 2019, 1:54 p.m.