tests/testthat/test-smk-ds.testObjExists-discordant.R

#-------------------------------------------------------------------------------
# Copyright (c) 2019-2022 University of Newcastle upon Tyne. All rights reserved.
#
# This program and the accompanying materials
# are made available under the terms of the GNU Public License v3.0.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#-------------------------------------------------------------------------------

#
# Set up
#

context("ds.testObjExists::smk::setup")

connect.discordant.dataset.simple(list("A", "B", "C"))

test_that("setup", {
    ds_expect_variables(c("D"))
})

#
# Tests
#

context("ds.testObjExists::smk::discordant")
test_that("simple testObjExists, discordant", {
    res <- ds.testObjExists('D')

    expect_length(res, 1)
    expect_equal(res$return.message, "A valid copy of data object <D> exists in all specified data sources")
})

test_that("data.frame testObjExists, discordant", {
    res <- ds.testObjExists("D$A")

    expect_length(res, 2)
    expect_length(res$return.info, 3)
    expect_length(res$return.info$discordant1, 2)
    expect_false(res$return.info$discordant1$test.obj.exists)
    expect_true(is.null(res$return.info$discordant1$test.obj.class))
    expect_length(res$return.info$discordant2, 2)
    expect_false(res$return.info$discordant2$test.obj.exists)
    expect_true(is.null(res$return.info$discordant2$test.obj.class))
    expect_length(res$return.info$discordant3, 2)
    expect_false(res$return.info$discordant3$test.obj.exists)
    expect_true(is.null(res$return.info$discordant3$test.obj.class))
    expect_length(res$return.info, 3)
    expect_length(res$return.info, 3)
    expect_length(res$return.message, 2)
    expect_length(res$return.message[[1]], 1)
    expect_equal(res$return.message[[1]], "Error: A valid data object <D$A> does NOT exist in ALL specified data sources")
    expect_length(res$return.message[[2]], 1)
    expect_equal(res$return.message[[2]], "It is either ABSENT and/or has no valid content/class, for details see return.info above")
})

#
# Done
#

context("ds.testObjExists::smk::shutdown")

test_that("shutdown", {
    ds_expect_variables(c("D"))
})

disconnect.discordant.dataset.simple()

context("ds.testObjExists::smk::done")
datashield/dsBaseClient documentation built on May 16, 2023, 10:19 p.m.