tests/testthat/test-helperfunctions.R

# Copyright 2021 Observational Health Data Sciences and Informatics
#
# This file is part of PatientLevelPrediction
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

library("testthat")
context("HelperFunctions")

test_that("is_installed", {
  testthat::expect_equal(PatientLevelPrediction:::is_installed('FeatureExtraction'), T)
  testthat::expect_equal(PatientLevelPrediction:::is_installed('MadeUp4u834t3f'), F)
})

test_that("ensure_installed", {
  testthat::expect_equal(PatientLevelPrediction:::ensure_installed('FeatureExtraction'), NULL)
})

# how to test checkPlpInstallation?


test_that("createTempModelLoc", {
  testthat::expect_equal(class(PatientLevelPrediction:::createTempModelLoc()), "character")
})

list1 <- list(a=1:2, b=5:6)
list2 <- list(c=1:5)
test_that("listAppend", {
  testthat::expect_equal(length(listAppend(list1, list2)), 3)
})

# how to test configurePython?

test_that("setPythonEnvironment", {
  testthat::expect_error(setPythonEnvironment(envname='madeup34343'))
  testthat::expect_equal(class(setPythonEnvironment(envname='madeup34343', envtype = 'conda')), "character")
})

test_that("Borrowed cut2", {
   x <- c(1, rep(2, 2), rep(4, 4), rep(5, 5), rep(6, 6)) 
   groups <- PatientLevelPrediction:::cut2(x, g = 3)
   expect_true(
     all(levels(groups) == c("[1,5)", "5", "6"))
   )
})

# getOs test?
OHDSI/PatientLevelPrediction documentation built on April 27, 2024, 8:11 p.m.