Skip to content

Commit

Permalink
Add a template unit test for job single, taken from https://github.co…
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Eagles and lcolladotor committed Sep 28, 2023
1 parent 1c11bf6 commit 0127a5b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/testthat/test-example_test.R

This file was deleted.

31 changes: 31 additions & 0 deletions tests/testthat/test-job_single.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Choose a script name
job_name <- paste0("job_single_test_", Sys.Date())


run_test <- function(delete = TRUE, ...) {
## Delete it in case it exists
if (delete) unlink(file.path(tempdir(), paste0(job_name, ".sh")))

## Create an array job on the temporary directory
with_wd(tempdir(), {
## Create an array job script to use for this example
job_single(
name = job_name,
...
)
})
}

test_that("job_single", {
expect_error(run_test(email = "hello"), "'email' should be one of")
expect_error(run_test(logdir = "/logs"), "relative path")
expect_error(run_test(cores = 0.5), "should be at least 1")
expect_equal(grep("pe local", run_test(cores = 1)), integer(0))
expect_equal(grepl("#\\$ -pe local 10", run_test(cores = 10)), TRUE)
expect_equal(grep("shared", run_test(queue = "shared")), integer(0))
expect_equal(grepl(
"#\\$ -l bluejay,",
run_test(queue = " bluejay ", create_shell = TRUE)
), TRUE)
expect_error(run_test(FALSE, create_shell = TRUE), "already exists!")
})

0 comments on commit 0127a5b

Please sign in to comment.