2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
2020-10-08 11:16:03 +02:00
|
|
|
# Antimicrobial Resistance (AMR) Analysis for R #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# SOURCE #
|
2020-07-08 14:48:06 +02:00
|
|
|
# https://github.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. #
|
2020-10-08 11:16:03 +02:00
|
|
|
# Developed at the University of Groningen, the Netherlands, in #
|
|
|
|
# collaboration with non-profit organisations Certe Medical #
|
|
|
|
# Diagnostics & Advice, and University Medical Center Groningen. #
|
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. #
|
2020-10-08 11:16:03 +02:00
|
|
|
# #
|
|
|
|
# Visit our website for the full manual and a complete tutorial about #
|
|
|
|
# how to conduct AMR analysis: https://msberends.github.io/AMR/ #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2019-05-10 16:44:59 +02:00
|
|
|
context("ab_property.R")
|
2018-03-27 17:43:42 +02:00
|
|
|
|
2019-05-10 16:44:59 +02:00
|
|
|
test_that("ab_property works", {
|
2020-07-30 15:15:52 +02:00
|
|
|
skip_on_cran()
|
|
|
|
|
2020-09-03 12:31:48 +02:00
|
|
|
expect_identical(ab_name("AMX", language = NULL), "Amoxicillin")
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_identical(as.character(ab_atc("AMX")), "J01CA04")
|
|
|
|
expect_identical(ab_cid("AMX"), as.integer(33613))
|
2018-08-29 12:27:37 +02:00
|
|
|
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_equal(class(ab_tradenames("AMX")), "character")
|
|
|
|
expect_equal(class(ab_tradenames(c("AMX", "AMX"))), "list")
|
2018-08-29 16:25:57 +02:00
|
|
|
|
2020-09-03 12:31:48 +02:00
|
|
|
expect_identical(ab_group("AMX", language = NULL), "Beta-lactams/penicillins")
|
|
|
|
expect_identical(ab_atc_group1("AMX", language = NULL), "Beta-lactam antibacterials, penicillins")
|
|
|
|
expect_identical(ab_atc_group2("AMX", language = NULL), "Penicillins with extended spectrum")
|
2018-08-29 12:27:37 +02:00
|
|
|
|
2020-09-03 12:31:48 +02:00
|
|
|
expect_identical(ab_name("Fluclox", language = NULL), "Flucloxacillin")
|
|
|
|
expect_identical(ab_name("fluklox", language = NULL), "Flucloxacillin")
|
|
|
|
expect_identical(ab_name("floxapen", language = NULL), "Flucloxacillin")
|
|
|
|
expect_identical(ab_name(21319, language = NULL), "Flucloxacillin")
|
|
|
|
expect_identical(ab_name("J01CF05", language = NULL), "Flucloxacillin")
|
2018-08-25 22:01:14 +02:00
|
|
|
|
2020-09-18 16:05:53 +02:00
|
|
|
expect_identical(ab_ddd("AMX", "oral"), 1.5)
|
2019-10-11 17:21:02 +02:00
|
|
|
expect_identical(ab_ddd("AMX", "oral", units = TRUE), "g")
|
2020-09-24 00:50:23 +02:00
|
|
|
expect_identical(ab_ddd("AMX", "iv"), 3)
|
2019-10-11 17:21:02 +02:00
|
|
|
expect_identical(ab_ddd("AMX", "iv", units = TRUE), "g")
|
2019-01-29 00:06:50 +01:00
|
|
|
|
2020-09-03 12:31:48 +02:00
|
|
|
expect_identical(ab_name(x = c("AMC", "PLB"), language = NULL), c("Amoxicillin/clavulanic acid", "Polymyxin B"))
|
|
|
|
expect_identical(ab_name(x = c("AMC", "PLB"), tolower = TRUE, language = NULL),
|
2019-05-10 16:44:59 +02:00
|
|
|
c("amoxicillin/clavulanic acid", "polymyxin B"))
|
|
|
|
|
2019-05-16 21:20:00 +02:00
|
|
|
expect_equal(class(ab_info("AMX")), "list")
|
|
|
|
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_error(ab_property("amox", "invalid property"))
|
|
|
|
expect_error(ab_name("amox", language = "INVALID"))
|
|
|
|
expect_output(print(ab_name("amox", language = NULL)))
|
2020-01-26 20:20:00 +01:00
|
|
|
|
|
|
|
expect_equal(ab_name("21066-6", language = NULL), "Ampicillin")
|
|
|
|
expect_equal(ab_loinc("ampicillin"),
|
|
|
|
c("21066-6", "3355-5", "33562-0", "33919-2", "43883-8", "43884-6", "87604-5"))
|
2020-05-22 20:15:19 +02:00
|
|
|
|
|
|
|
expect_true(ab_url("AMX") %like% "whocc.no")
|
|
|
|
expect_warning(ab_url("ASP"))
|
2018-08-25 22:01:14 +02:00
|
|
|
})
|