Nothing
## Copyright(c) 2017-2026 R. Mark Sharp
## This file is part of nprcgenekeepr
#' E2E Tests for Age-Sex Pyramid Module
library(testthat)
test_that("E2E: Age-Sex Pyramid tab is accessible", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_access")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "Pyramid|Age|Sex"),
info = "Should be on Age-Sex Pyramid tab"
)
})
test_that("E2E: Pyramid has age unit selector", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_age_unit")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "Years|Months|unit"),
info = "Should have age unit selector"
)
})
test_that("E2E: Pyramid has bin size control", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_bin_size")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "bin|size|interval"),
info = "Should have bin size control"
)
})
test_that("E2E: Pyramid has color scheme option", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_color")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "color|viridis|scheme|palette"),
info = "Should have color scheme option"
)
})
test_that("E2E: Pyramid has download button", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_download")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "download|export|save"),
info = "Should have download functionality"
)
})
test_that("E2E: Pyramid has plot height control", {
skip_if_not_installed("shinytest2")
skip_if_not_installed("chromote")
skip_on_cran()
app_dir <- create_test_app()
app <- create_app_driver(app_dir, "e2e_pyramid_height")
on.exit(app$stop(), add = TRUE)
success <- navigate_to_tab(app, "Age-Sex Pyramid", "Pyramid")
if (!success) skip("Could not navigate to Pyramid tab")
expect_true(
assert_active_pane(app, "Age-Sex Pyramid", "height|size|dimension"),
info = "Should have plot height control"
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.