AMR/tests/testthat/test-join_microorganisms.R

62 lines
2.9 KiB
R
Raw Normal View History

# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Analysis #
# #
2019-01-02 23:24:07 +01:00
# SOURCE #
# https://gitlab.com/msberends/AMR #
# #
# 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) #
# #
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-07-23 14:14:03 +02:00
context("join_microorganisms.R")
2018-03-27 17:43:42 +02:00
test_that("joins work", {
unjoined <- example_isolates
inner <- example_isolates %>% inner_join_microorganisms()
left <- example_isolates %>% left_join_microorganisms()
semi <- example_isolates %>% semi_join_microorganisms()
anti <- example_isolates %>% anti_join_microorganisms()
suppressWarnings(right <- example_isolates %>% right_join_microorganisms())
suppressWarnings(full <- example_isolates %>% 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
})