tests/testthat/test-fit_rsp_step.R

# Local data pre-processing
adrs_local <- tern_ex_adrs %>%
  dplyr::filter(
    PARAMCD == "BESRSPI",
    ARM %in% c("B: Placebo", "A: Drug X")
  ) %>%
  dplyr::mutate(
    # Reorder levels of ARM to have Placebo as reference arm for Odds Ratio calculations.
    ARM = droplevels(forcats::fct_relevel(ARM, "B: Placebo")),
    RSP = dplyr::case_when(AVALC %in% c("PR", "CR") ~ 1, TRUE ~ 0),
    SEX = factor(SEX)
  )

testthat::test_that("fit_rsp_step works as expected with default options", {
  data <- adrs_local
  variables <- list(
    arm = "ARM",
    biomarker = "BMRKR1",
    covariates = "AGE",
    response = "RSP"
  )
  suppressWarnings(testthat::expect_warning(result <- fit_rsp_step(
    variables = variables,
    data = data
  )))
  testthat::expect_s3_class(result, c("matrix", "step"))

  res <- testthat::expect_silent(ncol(result))
  testthat::expect_snapshot(res)

  res <- testthat::expect_silent(colnames(result))
  testthat::expect_snapshot(res)
})

testthat::test_that("fit_rsp_step works as expected with global model fit", {
  data <- adrs_local
  variables <- list(
    arm = "ARM",
    biomarker = "BMRKR1",
    covariates = "AGE",
    response = "RSP"
  )
  suppressWarnings(testthat::expect_warning(result <- fit_rsp_step(
    variables = variables,
    data = data,
    control = c(
      control_logistic(conf_level = 0.8),
      control_step(
        biomarker = data$BMRKR1,
        use_percentile = FALSE,
        num_points = 3L
      )
    )
  )))
  testthat::expect_s3_class(result, c("matrix", "step"))

  res <- testthat::expect_silent(ncol(result))
  testthat::expect_snapshot(res)

  res <- testthat::expect_silent(colnames(result))
  testthat::expect_snapshot(res)
})

testthat::test_that("fit_rsp_step works as expected with strata", {
  data <- adrs_local
  variables <- list(
    arm = "ARM",
    biomarker = "BMRKR1",
    covariates = "AGE",
    response = "RSP",
    strata = c("STRATA1", "STRATA2")
  )
  # https://github.com/therneau/survival/issues/240
  withr::with_options(
    opts_partial_match_old,
    result <- testthat::expect_silent(fit_rsp_step(
      variables = variables,
      data = data,
      control = c(control_logistic(), control_step(bandwidth = 0.9, num_points = 2L))
    ))
  )
  testthat::expect_s3_class(result, c("matrix", "step"))

  res <- testthat::expect_silent(ncol(result))
  testthat::expect_snapshot(res)

  res <- testthat::expect_silent(colnames(result))
  testthat::expect_snapshot(res)
})

testthat::test_that("fit_rsp_step works as expected with null bandwidth", {
  data <- adrs_local
  variables <- list(
    arm = "ARM",
    biomarker = "BMRKR1",
    covariates = "AGE",
    response = "RSP"
  )
  result <- testthat::expect_silent(fit_rsp_step(
    variables = variables,
    data = data,
    control = c(control_logistic(), control_step(bandwidth = NULL))
  ))
  testthat::expect_s3_class(result, c("matrix", "step"))
  testthat::expect_identical(ncol(result), 11L)
  testthat::expect_identical(
    colnames(result),
    c(
      "Percentile Center", "Percentile Lower", "Percentile Upper",
      "Interval Center", "Interval Lower", "Interval Upper", "n",
      "logor", "se", "ci_lower", "ci_upper"
    )
  )
})

Try the tern package in your browser

Any scripts or data that you put into this service are public.

tern documentation built on June 22, 2024, 10:25 a.m.