if(FALSE) {
library( "RUnit" )
library( "ENCODExplorer" )
}
md5sum_test_file = "b58b4847e8d71d95471c4c017b4a5dc7"
load(file = system.file("extdata/test_rest_query_file.rda", package = "ENCODExplorer")) #query_file
# check when arguments are missing
test.mandatory_args_missing <- function() {
obs = tryCatch(downloadEncode(),error=function(e) e, warning=conditionMessage)
exp = "You have to provide both results set and its origin to use the downloadEncode function"
msg = "the function should return a NULL value if the result set and its origin are missing"
checkIdentical(obs, exp, msg)
}
test.mandatory_origin_missing <- function() {
obs = tryCatch(downloadEncode(resultSet = query_file),error=function(e) e, warning=conditionMessage)
exp = "You have to provide both results set and its origin to use the downloadEncode function"
msg = "the function should return a NULL value if the result set origin is missing"
checkIdentical(obs, exp, msg)
}
test.mandatory_results_missing <- function() {
obs = tryCatch(downloadEncode(resultOrigin = "searchEncode"),error=function(e) e, warning=conditionMessage)
exp = "You have to provide both results set and its origin to use the downloadEncode function"
msg = "the function should return a NULL value if the result set is missing"
checkIdentical(obs, exp, msg)
}
#check when arguments are incorrect
test.argument_consistency_ori <- function() {
obs = tryCatch(downloadEncode(resultSet = query_file, resultOrigin = "web"),error=function(e) e, warning=conditionMessage)
exp = "You have to provide a valid results set origin to use the downloadEncode function : searchEncode or queryEncode"
msg = "the function should return a NULL value if the result set origin is different from searchEncode or queryEncode"
checkIdentical(obs, exp, msg)
}
test.argument_consistency_dir <- function() {
obs = tryCatch(downloadEncode(resultSet = query_file, resultOrigin = "queryEncode",
dir = "/aabbbccc"),error=function(e) e, warning=conditionMessage)
exp = "Can't write in /aabbbccc"
msg = "the function should return a NULL value if the result set origin is different from searchEncode or queryEncode"
checkIdentical(obs, exp, msg)
}
# check download file
test.download_small_file <- function() {
downloadEncode(resultSet = query_file, resultOrigin = "queryEncode", format = "bed", dir = system.file("extdata/", package = "ENCODExplorer"))
checkTrue(file.exists(system.file("extdata/ENCFF001VCK.bed.gz", package = "ENCODExplorer")),
msg = "the file ENCFF001VCK.bed.gz is missing")
file.remove(system.file("extdata/ENCFF001VCK.bed.gz", package = "ENCODExplorer"))
}
test.md5sum <- function() {
downloadEncode(resultSet = query_file, resultOrigin = "queryEncode", format = "bed", dir = system.file("extdata/", package = "ENCODExplorer"))
checkEquals(as.character(tools::md5sum(system.file("extdata/ENCFF001VCK.bed.gz", package = "ENCODExplorer"))),
md5sum_test_file)
file.remove(system.file("extdata/ENCFF001VCK.bed.gz", package = "ENCODExplorer"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.