test_that("defaul template", { x <- read_pptx() expect_equal(length( x ), 0) expect_true(file.exists(x$package_dir)) }) test_that("console printing", { x <- read_pptx() x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world", location = ph_location_type(type = "body")) expect_output(print(x), "pptx document with 1 ") }) test_that("check extention and print document", { x <- read_pptx() x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world", location = ph_location_type(type = "body")) print(x, target = "print.pptx") expect_true( file.exists("print.pptx") ) expect_error(print(x, target = "print.pptxxx")) }) test_that("check template", { x <- read_pptx() x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world", location = ph_location_type(type = "body")) print(x, target = "template.pptx") expect_silent(x <- read_pptx(path = "template.pptx")) x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world again", location = ph_location_type(type = "body")) print(x, target = "example.pptx") expect_equal(length(x), 2) }) test_that("slide remove", { x <- read_pptx() x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 1", location = ph_location_type(type = "body")) x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 2", location = ph_location_type(type = "body")) x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 3", location = ph_location_type(type = "body")) print(x, target = "template.pptx") x <- read_pptx(path = "template.pptx") x <- remove_slide(x = x) expect_equal(length(x), 2) x <- remove_slide(x = x, index = 1) expect_equal(length(x), 1) sm <- slide_summary(x) expect_equal(sm[1,]$text, "Hello world 2") }) test_that("slide remove with rm_images", { img.file <- file.path(R.home(component = "doc"), "html", "logo.jpg") ext_img <- external_img(img.file) x <- read_pptx() x <- add_slide(x) x <- ph_with(x, ext_img, location = ph_location_type()) filename <- print(x, target = tempfile(fileext = ".pptx")) z <- read_pptx(filename) z <- remove_slide(z, index = 1) file1 <- print(z, target = tempfile(fileext = ".pptx")) z <- read_pptx(filename) z <- remove_slide(z, index = 1, rm_images = TRUE) file2 <- print(z, target = tempfile(fileext = ".pptx")) expect_gt(file.size(file1), file.size(file2)) }) test_that("ph remove", { x <- read_pptx() x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 1", location = ph_location_type(type = "body")) x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 2", location = ph_location_type(type = "body")) x <- add_slide(x, "Title and Content", "Office Theme") x <- ph_with(x, "Hello world 3", location = ph_location_type(type = "body")) print(x, target = "template.pptx") x <- read_pptx(path = "template.pptx") x <- ph_remove(x = x) expect_equal(nrow(slide_summary(x)), 0) }) test_that("cursor is incremented as expected", { x <- read_pptx() for(i in 1:11){ x <- add_slide(x, "Title Slide", "Office Theme") x <- ph_with(x, i, location = ph_location_type(type = "ctrTitle")) } expect_equal(nrow( slide_summary(x, 11) ), 1 ) expect_equal(x$slide$get_slide(11)$name(), "slide11.xml" ) }) test_that("annotate base template", { expect_s3_class(try(annotate_base(), silent = TRUE), "rpptx") }) test_that("no master do not generate an error", { x <- read_pptx("docs_dir/no_master.pptx") x <- add_slide(x, layout = "Page One", master = "Office Theme") x <- try(ph_with(x, i, value = "graphic title", location = ph_location_type(type="body")), silent = TRUE) expect_s3_class(x, "rpptx") }) unlink("*.pptx") unlink("*.emf")