Nothing
library("testthat")
library("mockthat")
# Tests for Loading parameters via configuration file ---------------------
test_that("Test 1: Loading default parameters configuration", {
default_file <- .get_helper_filepath("parameters")
expect_true(file.exists(default_file))
expect_no_condition(load_parameters(filepath = default_file), message = "Default configuration exists and loaded")
})
test_that("Test 2: Loading custom parameters configuration", {
custom_file <- .get_helper_filepath("parameters")
expect_true(file.exists(custom_file))
expect_no_condition(load_parameters(filepath = custom_file), message = "Loaded custom parameters - parameters.yaml")
})
test_that("Test 3: Loading invalid parameters configuration", {
wrong_path <- "some random path that does not exist"
expect_false(file.exists(wrong_path))
expect_error(LoadParameters(filepath = wrong_path),
message = "Failed to load parameters configuration from provided path")
})
test_that("Test 4: Test with default parameters", {
param_file <- get_parameters()
expect_true(file.exists(param_file))
file.remove(param_file)
})
test_that("Test 5: Test to fetch currently used parameters.yaml", {
param_file <- get_parameters(out_path = tempdir())
expect_true(file.exists(param_file))
})
test_that("Test 6: Test to set new parameters.yaml in R user's directory", {
new_param_file <- "params.yaml"
dest_pfp <- file.path(tools::R_user_dir("geohabnet", which = "config"), "parameters.yaml")
expect_no_condition(set_parameters(new_param_file))
expect_true(file.exists(dest_pfp))
file.remove(dest_pfp)
})
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.