2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
|
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# SOURCE #
|
|
|
|
# https://gitlab.com/msberends/AMR #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
|
|
|
# LICENCE #
|
2019-01-02 23:24:07 +01:00
|
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# This R package is free software; you can freely use and distribute #
|
|
|
|
# it for both personal and commercial purposes under the terms of the #
|
|
|
|
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
|
|
|
|
# the Free Software Foundation. #
|
|
|
|
# #
|
|
|
|
# This R package was created for academic research and was publicly #
|
|
|
|
# released in the hope that it will be useful, but it comes WITHOUT #
|
|
|
|
# ANY WARRANTY OR LIABILITY. #
|
2019-04-05 18:47:39 +02:00
|
|
|
# Visit our website for more info: https://msberends.gitlab.io/AMR. #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-09-08 16:06:47 +02:00
|
|
|
context("data.R")
|
|
|
|
|
|
|
|
test_that("data sets are valid", {
|
|
|
|
# IDs should always be unique
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_identical(nrow(antibiotics), length(unique(antibiotics$ab)))
|
2019-06-11 14:18:25 +02:00
|
|
|
expect_identical(class(antibiotics$ab), "ab")
|
2018-09-08 16:06:47 +02:00
|
|
|
expect_identical(nrow(microorganisms), length(unique(microorganisms$mo)))
|
2019-06-11 14:18:25 +02:00
|
|
|
expect_identical(class(microorganisms$mo), "mo")
|
2018-10-09 13:53:33 +02:00
|
|
|
|
2019-05-28 16:50:40 +02:00
|
|
|
# check cross table reference
|
|
|
|
expect_true(all(microorganisms.codes$mo %in% microorganisms$mo))
|
2019-09-12 15:08:53 +02:00
|
|
|
expect_false(any(is.na(microorganisms.codes$code)))
|
|
|
|
expect_false(any(is.na(microorganisms.codes$mo)))
|
2019-05-28 16:50:40 +02:00
|
|
|
|
2019-06-11 14:18:25 +02:00
|
|
|
# antibiotic names must always be coercible to their original AB code
|
|
|
|
expect_identical(antibiotics$ab, as.ab(antibiotics$name))
|
|
|
|
|
|
|
|
# there should be no diacritics (i.e. non ASCII) characters in the datasets (CRAN policy)
|
2019-04-05 18:47:39 +02:00
|
|
|
datasets <- data(package = "AMR", envir = asNamespace("AMR"))$results[, "Item"]
|
|
|
|
for (i in 1:length(datasets)) {
|
|
|
|
dataset <- get(datasets[i], envir = asNamespace("AMR"))
|
|
|
|
expect_identical(dataset_UTF8_to_ASCII(dataset), dataset)
|
|
|
|
}
|
2018-09-08 16:06:47 +02:00
|
|
|
})
|
2019-02-21 18:55:52 +01:00
|
|
|
|
2019-02-21 23:32:30 +01:00
|
|
|
test_that("creation of data sets is valid", {
|
|
|
|
DT <- make_DT()
|
|
|
|
expect_lt(nrow(DT[prevalence == 1]), nrow(DT[prevalence == 2]))
|
|
|
|
expect_lt(nrow(DT[prevalence == 2]), nrow(DT[prevalence == 3]))
|
2019-02-22 00:19:37 +01:00
|
|
|
old <- make_trans_tbl()
|
|
|
|
expect_gt(length(old), 0)
|
2019-02-21 23:32:30 +01:00
|
|
|
})
|
2019-02-27 11:36:12 +01:00
|
|
|
|
|
|
|
test_that("CoL version info works", {
|
2019-03-26 14:42:56 +01:00
|
|
|
expect_identical(class(catalogue_of_life_version()),
|
|
|
|
c("catalogue_of_life_version", "list"))
|
2019-05-13 14:56:23 +02:00
|
|
|
|
|
|
|
expect_output(print(catalogue_of_life_version()))
|
2019-02-27 11:36:12 +01:00
|
|
|
})
|