我一直在探索(**并且喜欢)用于使用 R Shiny 开发模块化仪表板的 golem 包。但我正在努力思考如何测试模块化仪表板。
例如,在下面的代表中,如果导入模块中的 input$n_rows 设置为 15,那么我将如何测试显示模块中的输出包含 15 行?
我将非常感谢对此的任何支持!
library(shiny)
library(reactable)
library(dplyr)
# Import module UI
mod_import_ui <- function(id){
ns <- NS(id)
fluidRow(
# Allow the user to select the number of rows to view
numericInput(ns("n_rows"),
"Select number of observations",
value = 10)
)
}
# Import module Server
mod_import_server <- function(id){
moduleServer(
id,
function(input, output, session){
data <- reactive({
# Sample the requested number of rows from mtcars and return this to the application server
mtcars %>%
slice_sample(n = input$n_rows)
# [....] # Some complex formatting and transformations
})
return(data)
}
)}
# Display module UI
mod_display_ui <- function(id){
ns <- NS(id)
fluidRow(
reactableOutput(ns("table"))
)
}
# Display module Server
mod_display_server <- function(id, data_in){
moduleServer(
id,
function(input, output, session){
# [....] # Some more transformations and merging with data from other modules
output$table <- renderReactable(reactable(data_in()))
}
)}
app_ui <- function(request) {
tagList(
mod_import_ui("import_1"),
mod_display_ui("display_1")
)
}
app_server <- function(input, output, session) {
data_in <- mod_import_server("import_1")
mod_display_server("display_1", data_in)
}
shinyApp(ui = app_ui, server = app_server)
Run Code Online (Sandbox Code Playgroud)
我建议将应用程序的核心与用户界面分开。
{golem} 框架允许在 R 包内构建您的应用程序,这意味着您可以使用包构建中的所有工具来记录和测试您的代码。如果您遵循Engineering-shiny.org/
中的指南,您将看到我们建议从“服务器”部分提取所有 R 代码,以在小插图中对其进行测试,将其转换为常规函数,以便您可以将其测试为通常与 R 包一起使用。
因此,您的 ShinyApp 只调用已经记录和测试的内部函数。通过这种方法,您可以测试应用程序中可能发生的不同场景的输出。在静态脚本中尝试不同的输入参数并验证输出,无论您在后续开发步骤中在应用程序中进行什么更改。
书中给出了很多建议。如果我必须将它们总结为一个工作流程,那就是: