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 #
|
2020-01-05 17:22:09 +01:00
|
|
|
# (c) 2018-2020 Berends MS, Luz CF et al. #
|
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. #
|
|
|
|
# #
|
2020-01-05 17:22:09 +01:00
|
|
|
# We created this package for both routine data analysis and academic #
|
|
|
|
# research and it 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
|
|
|
|
expect_identical(nrow(microorganisms), length(unique(microorganisms$mo)))
|
2019-06-11 14:18:25 +02:00
|
|
|
expect_identical(class(microorganisms$mo), "mo")
|
2019-10-06 21:07:38 +02:00
|
|
|
expect_identical(nrow(antibiotics), length(unique(antibiotics$ab)))
|
|
|
|
expect_identical(class(antibiotics$ab), "ab")
|
|
|
|
|
2019-05-28 16:50:40 +02:00
|
|
|
# check cross table reference
|
|
|
|
expect_true(all(microorganisms.codes$mo %in% microorganisms$mo))
|
2019-09-20 12:33:05 +02:00
|
|
|
expect_true(all(example_isolates$mo %in% microorganisms$mo))
|
|
|
|
expect_true(all(microorganisms.translation$mo_new %in% microorganisms$mo))
|
|
|
|
expect_true(all(rsi_translation$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"]
|
2019-10-11 17:21:02 +02:00
|
|
|
for (i in seq_len(length(datasets))) {
|
2019-04-05 18:47:39 +02:00
|
|
|
dataset <- get(datasets[i], envir = asNamespace("AMR"))
|
2019-10-23 14:48:25 +02:00
|
|
|
expect_identical(dataset_UTF8_to_ASCII(dataset), dataset, label = datasets[i])
|
2019-04-05 18:47:39 +02:00
|
|
|
}
|
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-12-21 10:56:06 +01:00
|
|
|
expect_true(all(c("mo", "fullname",
|
|
|
|
"kingdom", "phylum", "class", "order", "family", "genus", "species", "subspecies",
|
|
|
|
"rank", "col_id", "species_id", "source", "ref", "prevalence",
|
|
|
|
"kingdom_index", "fullname_lower", "g_species") %in% colnames(DT)))
|
|
|
|
|
|
|
|
oldDT <- make_oldDT()
|
|
|
|
expect_true(all(c("col_id", "col_id_new", "fullname", "ref", "prevalence",
|
|
|
|
"fullname_lower", "g_species") %in% colnames(oldDT)))
|
|
|
|
|
2019-02-22 00:19:37 +01:00
|
|
|
old <- make_trans_tbl()
|
|
|
|
expect_gt(length(old), 0)
|
2019-12-21 10:56:06 +01:00
|
|
|
|
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
|
|
|
})
|