test_that("test that adding dependencies to yaml works", {
if (!requireNamespace("gert", quietly = TRUE)) {
stop("please install 'gert' package for these tests to work")
}
library(ymlthis)
old_wd <- getwd()
on.exit(setwd(old_wd))
test_repo <- tempfile("test_protocol")
dir.create(test_repo)
setwd(test_repo)
repo <- gert::git_init()
gert::git_config_set(name = "user.name", value = "someone")
gert::git_config_set(name = "user.email", value = "someone@example.org")
# create a protocol
version_number <- "2021.01"
create_sfp(
title = "Test 1", subtitle = "subtitle", short_title = "water 1",
authors = "me", orcids = "0000-0001-2345-6789",
reviewers = "someone else", file_manager = "who?",
version_number = version_number, theme = "water", lang = "en"
)
# add a projectspecific parameter to index yaml
index_yml <- rmarkdown::yaml_front_matter(
file.path("source", "sfp", "1_water", "sfp_101_en_water_1", "index.Rmd"))
unlink("css", recursive = TRUE)
index_yml <- ymlthis::as_yml(index_yml)
index_yml <- ymlthis::yml_params(index_yml, protocolspecific = "defaultvalue")
template_rmd <-
file.path("source", "sfp", "1_water", "sfp_101_en_water_1",
"template.Rmd")
file.copy(
from = file.path("source", "sfp", "1_water", "sfp_101_en_water_1",
"index.Rmd"),
to = template_rmd)
unlink(file.path("source", "sfp", "1_water", "sfp_101_en_water_1",
"index.Rmd"))
ymlthis::use_index_rmd(
.yml = index_yml,
path = file.path("source", "sfp", "1_water", "sfp_101_en_water_1"),
template = template_rmd,
include_body = TRUE,
include_yaml = FALSE,
quiet = TRUE,
open_doc = FALSE)
unlink(template_rmd)
# add dependencies
add_dependencies(
code_mainprotocol = "sfp-101-en",
protocol_code = c("sfp-123-en", "spp-124-en"),
version_number = c("2020.01", "2020.02"),
params = list(NA, list(width = 8, height = 8))
)
main <- file.path(protocolhelper:::get_path_to_protocol("sfp-101-en"),
"index.Rmd")
index_yml <- rmarkdown::yaml_front_matter(main)
unlink("css", recursive = TRUE)
index_yml <- ymlthis::as_yml(index_yml)
testthat::expect_equal(
index_yml$params,
list(protocolspecific = "defaultvalue",
dependencies =
list(value =
list(
list(protocol_code = "sfp-123-en",
version_number = "2020.01",
params = NA,
appendix = FALSE),
list(protocol_code = "spp-124-en",
version_number = "2020.02",
params = list(width = 8, height = 8),
appendix = TRUE)
)
)
)
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.