inst/tinytest/more_test_ctrdata_mongo_remote_ro.R

## RH 2019-09-28

#### SETUP ####
if (!at_home()) exit_file("Reason: not at_home")
source("setup_ctrdata.R")

if (!checkInternet())      exit_file("Reason: no internet connectivity")
if (!checkMongoRemoteRo()) exit_file("Reason: no remote ro MongoDB")

# create database object
dbc <- nodbi::src_mongo(
  db = mongoRemoteRoDb,
  collection = mongoRemoteRoCollection,
  url = mongoRemoteRoUrl)

# database has been pre-loaded
# and can only be accessed as
# read-only, static collection

#### CTGOV and EUCTR ####

# test
expect_message(
  suppressWarnings(
    tmpf <- dbFindFields(
      namepart = "date",
      con = dbc)),
  "Finding fields|Using cache")

# test
tmp <- suppressMessages(
  dbGetFieldsIntoDf(
    fields = c(tmpf, "record_last_import", "study_design_info.intervention_model"),
    con = dbc))

# tests
expect_equal(dim(tmp)[2], 15)

# test
expect_true(
  class(tmp[["record_last_import"]]) %in%
    c("Date", "POSIXct", "POSIXt"))

# test
expect_true(
  "character" %in%
    class(tmp[["study_design_info.intervention_model"]]))


#### close ####
try({
  dbc$con$disconnect()
},
silent = TRUE)
rfhb/ctrdata documentation built on May 15, 2024, 3:35 a.m.