AMR/tests/testthat/test-join_microorganisms.R

59 lines
2.7 KiB
R
Raw Normal View History

# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Analysis #
# #
# AUTHORS #
# Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
# #
# LICENCE #
# This package is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License version 2.0, #
# as published by the Free Software Foundation. #
# #
# This R package is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License version 2.0 for more details. #
# ==================================================================== #
2018-07-23 14:14:03 +02:00
context("join_microorganisms.R")
2018-03-27 17:43:42 +02:00
test_that("joins work", {
unjoined <- septic_patients
inner <- septic_patients %>% inner_join_microorganisms()
left <- septic_patients %>% left_join_microorganisms()
2018-04-03 11:08:31 +02:00
semi <- septic_patients %>% semi_join_microorganisms()
anti <- septic_patients %>% anti_join_microorganisms()
2018-03-27 17:43:42 +02:00
suppressWarnings(right <- septic_patients %>% right_join_microorganisms())
suppressWarnings(full <- septic_patients %>% full_join_microorganisms())
2018-04-03 11:08:31 +02:00
2018-03-27 17:43:42 +02:00
expect_true(ncol(unjoined) < ncol(inner))
expect_true(nrow(unjoined) == nrow(inner))
2018-04-03 11:08:31 +02:00
2018-03-27 17:43:42 +02:00
expect_true(ncol(unjoined) < ncol(left))
expect_true(nrow(unjoined) == nrow(left))
2018-04-03 11:08:31 +02:00
expect_true(ncol(semi) == ncol(semi))
expect_true(nrow(semi) == nrow(semi))
expect_true(nrow(anti) == 0)
2018-03-27 17:43:42 +02:00
expect_true(nrow(unjoined) < nrow(right))
expect_true(nrow(unjoined) < nrow(full))
2018-04-03 11:08:31 +02:00
2018-08-24 14:18:38 +02:00
2018-09-24 23:33:29 +02:00
expect_equal(nrow(inner_join_microorganisms("B_ESCHR_COL")), 1)
expect_equal(nrow(inner_join_microorganisms("B_ESCHR_COL", by = c("mo" = "mo"))), 1)
2018-08-31 13:36:19 +02:00
expect_warning(inner_join_microorganisms("Escherichia", by = c("mo" = "genus")))
2018-08-24 14:18:38 +02:00
2018-09-24 23:33:29 +02:00
expect_equal(nrow(left_join_microorganisms("B_ESCHR_COL")), 1)
2018-08-31 13:36:19 +02:00
expect_warning(left_join_microorganisms("Escherichia", by = c("mo" = "genus")))
2018-08-24 14:18:38 +02:00
2018-09-24 23:33:29 +02:00
expect_equal(nrow(semi_join_microorganisms("B_ESCHR_COL")), 1)
expect_equal(nrow(anti_join_microorganisms("B_ESCHR_COL")), 0)
2018-06-20 14:47:37 +02:00
2018-09-24 23:33:29 +02:00
expect_warning(right_join_microorganisms("B_ESCHR_COL"))
expect_warning(full_join_microorganisms("B_ESCHR_COL"))
2018-08-24 14:18:38 +02:00
2018-03-27 17:43:42 +02:00
})