Nothing
test_that("Type checker functions throw proper errors", {
expect_error(set_source_system(1, "sys", "ver"), "Input must be a datasetjson object")
expect_error(set_originator(1, "orig"), "Input must be a datasetjson object")
expect_error(set_file_oid(1, "path"), "Input must be a datasetjson object")
expect_error(set_study_oid(1, "study"), "Input must be a datasetjson")
expect_error(set_metadata_version(1, "study"), "Input must be a datasetjson")
expect_error(set_metadata_ref(1, "ref"), "Input must be a datasetjson")
})
test_that("URL checker regex works as expected", {
url_list <- c(
"https://github.com/cdisc-org/DataExchange-DatasetJson/raw/master/examples/sdtm/ti.json", # true
"http://github.com/cdisc-org/DataExchange-DatasetJson/raw/master/examples/sdtm/ti.json", # true
test_path("testdata", "ta.json"), # false
normalizePath(test_path("testdata", "ta.json")), # false
paste0("file://", normalizePath(test_path("testdata", "ta.json"))), # true
paste0("ftp://", normalizePath(test_path("testdata", "ta.json"))), # true
paste0("ftps://", normalizePath(test_path("testdata", "ta.json"))), # true
paste0("sftp://", normalizePath(test_path("testdata", "ta.json"))) # true
)
bool_check <- c(TRUE, TRUE, FALSE, FALSE, TRUE, TRUE, TRUE, TRUE)
expect_equal(path_is_url(url_list), bool_check)
})
test_that("Date, datetime and time conversions work as expected", {
df <- data.frame(
date = c("2020-01-01", "2020-01-02", NA),
datetime = c("2020-01-01T12:00:00", "2020-01-01T12:00:01", NA),
time = c("12:00:00", "12:00:01", NA)
)
df_converted <- date_time_conversions(df,
c("date", "datetime", "time"),
c("integer", "integer", "integer"))
expect_equal(df_converted$date, as.Date(c("2020-01-01", "2020-01-02", NA)))
expect_equal(df_converted$datetime, as.POSIXct(c("2020-01-01 12:00:00",
"2020-01-01 12:00:01",
NA), tz = "UTC"))
expect_equal(df_converted$time, as_hms(c("12:00:00", "12:00:01", NA)))
})
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.