#------------------------------------------------------------------------------- # 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 . #------------------------------------------------------------------------------- # # Set up # context("ds.dmtC2S::discctrl::setup") connect.studies.dataset.cnsim(list("GENDER", "PM_BMI_CATEGORICAL")) test_that("setup", { ds_expect_variables(c("D")) }) # # Tests # context("ds.dmtC2S::discctrl") test_that("simple dmtC2S", { a <- data.frame(c(1, 2)) b <- data.frame(c(2, 3)) cdf <- data.frame(a, b) expect_error(ds.dmtC2S(dfdata = cdf), "There are some DataSHIELD errors, list them with datashield.errors()", fixed = TRUE) res_errors <- DSI::datashield.errors() expect_length(res_errors, 3) expect_length(res_errors$sim1, 1) expect_equal(res_errors$sim1, "Command 'dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \n \"numeric,numeric\", FALSE)' failed on 'sim1': Error while evaluating 'is.null(base::assign('dmt.copied.C2S', value={dsBase::dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \"numeric,numeric\", FALSE)}))' -> Error in checkPermissivePrivacyControlLevel() : \n BLOCKED: The server is running in 'non-permissive' mode which has caused this method to be blocked\n", fixed = TRUE) expect_length(res_errors$sim2, 1) expect_equal(res_errors$sim2, "Command 'dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \n \"numeric,numeric\", FALSE)' failed on 'sim2': Error while evaluating 'is.null(base::assign('dmt.copied.C2S', value={dsBase::dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \"numeric,numeric\", FALSE)}))' -> Error in checkPermissivePrivacyControlLevel() : \n BLOCKED: The server is running in 'non-permissive' mode which has caused this method to be blocked\n", fixed = TRUE) expect_length(res_errors$sim3, 1) expect_equal(res_errors$sim3, "Command 'dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \n \"numeric,numeric\", FALSE)' failed on 'sim3': Error while evaluating 'is.null(base::assign('dmt.copied.C2S', value={dsBase::dmtC2SDS(\"1,2,2,3\", \"DF\", \"clientside.dmt\", \"2\", \"2\", \"c.1..2.,c.2..3.\", \"numeric,numeric\", FALSE)}))' -> Error in checkPermissivePrivacyControlLevel() : \n BLOCKED: The server is running in 'non-permissive' mode which has caused this method to be blocked\n", fixed = TRUE) }) # # Done # context("ds.dmtC2S::discctrl::shutdown") test_that("shutdown", { ds_expect_variables(c("D")) }) disconnect.studies.dataset.cnsim() context("ds.dmtC2S::discctrl::done")