Expand the callout boxes below to review what we’ve covered in the last five chapters:
In the Documentation chapter we covered:
An introduction to the roxygen2
(5.1 roxygen2 intro ) package, and
Some tips for documenting app-package functions (5.2 Documenting app functions )
The applications in Chapter 5 (Documentation) can be accessed with the launch()
or get()
functions from the shinypak
R package :
# install.packages('pak')
pak:: pak ('mjfrigaard/shinypak' )
library (shinypak)
Chapter 1 applications:
list_apps (regex = '^05' )
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 05_roxygen2 2024-09-03 22:06:19
In Dependencies , we walked through:
How to give users of our app-package access to it’s functions (i.e., exports (6.1 Exports )), and
What to do with the functions we use from other packages in the R/
folder (i.e., imports (6.2 Imports ))
The applications in Chapter 6 (Dependencies) can be accessed with the launch()
or get()
functions from the shinypak
R package :
# install.packages('pak')
pak:: pak ('mjfrigaard/shinypak' )
library (shinypak)
Chapter 6 applications:
list_apps (regex = '^06' )
## # A tibble: 2 × 2
## branch last_updated
## <chr> <dttm>
## 1 06.1_pkg-exports 2024-09-03 22:10:17
## 2 06.2_pkg-imports 2024-09-04 21:31:54
Data covered the three common locations for data in R packages:
data/
(7.1 data/ ),
data-raw/
(7.3 data-raw/ ), and
inst/extdata/
(7.4 inst/extdata/ )
The applications in Chapter 7 (Data) can be accessed with the launch()
or get()
functions from the shinypak
R package :
# install.packages('pak')
pak:: pak ('mjfrigaard/shinypak' )
library (shinypak)
Chapter 7 applications:
list_apps (regex = '^07' )
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 07_data 2024-09-03 22:14:49
Launch described the differences between
shinyApp()
(8.2.1 shinyApp() ),
runApp()
(8.2.3 runApp() ), and
shinyAppDir()
(8.2.2 shinyAppDir() )
This chapter also provided some options to include in app.R
(8.4 The app.R file ) and the standalone app function (8.3.4 Updates to launch_app() ).
The applications in Chapter 8 (Launch) can be accessed with the launch()
or get()
functions from the shinypak
R package :
# install.packages('pak')
pak:: pak ('mjfrigaard/shinypak' )
library (shinypak)
Chapter 8 applications:
list_apps (regex = '^08' )
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 08_launch-app 2024-09-03 22:18:59
External files covered how to include external files and/or resources in your app (i.e., those previously stored in www/
):
Combining system.file()
(9.1.2 system.file() ) and addResourcePath()
(9.1.3 addResourcePath() ), and
The various uses of the inst/
folder (9 External files )
Alternative images and layout options (9.1.2 system.file() )
Development versions of your application using alternative data and modules (9.3 inst/dev )
A production version of your application (9.4 inst/prod )
The applications in Chapter 9 (External files) can be accessed with the launch()
or get()
functions from the shinypak
R package :
# install.packages('pak')
pak:: pak ('mjfrigaard/shinypak' )
library (shinypak)
Chapter 9 applications:
list_apps (regex = '^09' )
## # A tibble: 4 × 2
## branch last_updated
## <chr> <dttm>
## 1 09.1_inst-www 2024-09-03 22:21:24
## 2 09.2_inst-bslib 2024-09-03 22:23:29
## 3 09.3_inst-dev 2024-09-03 22:25:42
## 4 09.4_inst-prod 2024-09-03 22:27:58
Testing your app
We’re now ready to test the code and features in our app-package. The next section covers the following topics:
Test suite
Test suite starts by showing how to create the testthat
infrastructure then, dives into creating test files, the mechanics unit tests and expectations, and running tests during development
This chapter also introduces keyboard shortcuts for testing and testthat
’s behavior-driven development functions:
Specifications
Specifications discusses how to collect and organize information to write tests for your application:
This chapter also gives examples of behavior-driven development tests features and how to track specifications and tests together:
Testing modules
Shiny’s testServer()
function can be useful for performing integration tests with module server functions. Testing modules gives examples of using testServer()
to verify module communication (i.e., passing data between modules):
System tests
The final chapter in this section covers setting up and running system (or end-to-end tests with shinytest2
):
Please open an issue on GitHub