2018-03-27 17:43:42 +02:00
|
|
|
context("atc.R")
|
|
|
|
|
|
|
|
test_that("atc_property works", {
|
2018-08-23 00:40:36 +02:00
|
|
|
skip_on_cran() # relies on internet connection of server, don't test
|
2018-08-14 12:00:01 +02:00
|
|
|
skip_on_appveyor() # security error on AppVeyor
|
2018-08-14 08:57:17 +02:00
|
|
|
|
2018-07-28 09:34:03 +02:00
|
|
|
if (!is.null(curl::nslookup("www.whocc.no", error = FALSE))) {
|
|
|
|
expect_equal(tolower(atc_property("J01CA04", property = "Name")), "amoxicillin")
|
|
|
|
expect_equal(atc_property("J01CA04", property = "unit"), "g")
|
|
|
|
expect_equal(atc_property("J01CA04", property = "DDD"),
|
|
|
|
atc_ddd("J01CA04"))
|
2018-06-19 15:20:14 +02:00
|
|
|
|
2018-07-28 09:34:03 +02:00
|
|
|
expect_identical(atc_property("J01CA04", property = "Groups"),
|
|
|
|
atc_groups("J01CA04"))
|
2018-06-19 15:20:14 +02:00
|
|
|
|
2018-07-28 09:34:03 +02:00
|
|
|
expect_warning(atc_property("ABCDEFG", property = "DDD"))
|
2018-06-19 15:20:14 +02:00
|
|
|
|
2018-07-28 09:34:03 +02:00
|
|
|
expect_error(atc_property("J01CA04", property = c(1:5)))
|
|
|
|
expect_error(atc_property("J01CA04", property = "test"))
|
|
|
|
expect_error(atc_property("J01CA04", property = "test", administration = c(1:5)))
|
|
|
|
}
|
2018-03-27 17:43:42 +02:00
|
|
|
})
|
|
|
|
|
2018-04-30 16:24:11 +02:00
|
|
|
test_that("guess_atc works", {
|
2018-08-25 22:01:14 +02:00
|
|
|
expect_equal(as.character(guess_atc(c("J01FA01",
|
2018-04-30 16:24:11 +02:00
|
|
|
"Erythromycin",
|
|
|
|
"eryt",
|
|
|
|
"ERYT",
|
|
|
|
"ERY",
|
|
|
|
"Erythrocin",
|
|
|
|
"Eryzole",
|
2018-08-25 22:01:14 +02:00
|
|
|
"Pediamycin"))),
|
2018-04-30 16:24:11 +02:00
|
|
|
rep("J01FA01", 8))
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
expect_identical(class(as.atc("amox")), "atc")
|
2018-08-29 16:25:57 +02:00
|
|
|
expect_identical(class(pull(antibiotics, atc)), "atc")
|
2018-08-29 12:27:37 +02:00
|
|
|
expect_identical(ab_trivial_nl("Cefmenoxim"), "Cefmenoxim")
|
|
|
|
|
|
|
|
expect_warning(as.atc("Z00ZZ00")) # not yet available in data set
|
2018-08-29 16:25:57 +02:00
|
|
|
expect_warning(as.atc("UNKNOWN"))
|
|
|
|
|
|
|
|
expect_output(print(as.atc("amox")))
|
2018-08-29 12:27:37 +02:00
|
|
|
|
2018-08-28 13:51:13 +02:00
|
|
|
# first 5 chars of official name
|
|
|
|
expect_equal(as.character(as.atc(c("nitro", "cipro"))),
|
|
|
|
c("J01XE01", "J01MA02"))
|
2018-08-25 22:01:14 +02:00
|
|
|
|
|
|
|
})
|