tests/testthat/test-svglite-output.R

# https://github.com/r-lib/svglite/blob/master/tests/testthat/test-output.R

test_that("different string and file output produce identical svg", {
  ugd()

  ## 1. Write to a file
  f1 <- tempfile()
  plot(1:5)
  ugd_save(file=f1, as="svg")
  dev.off()

  out1 <- readLines(f1, warn = FALSE)

  ## 2. Write to a string stream
  ugd()
  plot(1:5)
  s <- ugd_render()
  dev.off()
  out2 <- strsplit(s, "\n")[[1]]

  expect_equal(out1, out2)
})

test_that("intermediate outputs are always valid svg", {
  ugd()
  
  expect_valid_svg <- function() {
    expect_error(xml2::read_xml(ugd_render()), NA)
  }

  mini_plot(1:10)
  expect_valid_svg()

  rect(2, 2, 3, 3)
  expect_valid_svg()

  segments(5, 5, 6, 6)
  expect_valid_svg()

  dev.off()
})

Try the unigd package in your browser

Any scripts or data that you put into this service are public.

unigd documentation built on April 3, 2025, 6:11 p.m.