tests/testthat/test-efa_bartlett.R

bart_cor <- efa_bartlett(test_models$baseline$cormat, N = 500)
bart_raw <- efa_bartlett(GRiPS_raw)

set.seed(500)
bart_rand <- efa_bartlett(matrix(rnorm(100), ncol = 4))

test_that("output class and dimensions are correct", {
  expect_identical(class(bart_cor), c("efa_bartlett", "BARTLETT"))
  expect_output(str(bart_cor), "List of 4")
  expect_identical(class(bart_raw), c("efa_bartlett", "BARTLETT"))
  expect_output(str(bart_raw), "List of 4")
})


test_that("p-values and df are correct", {
  expect_lt(bart_cor$p_value, 0.0001)
  expect_lt(bart_raw$p_value, 0.0001)
  expect_gt(bart_rand$p_value, 0.05)

  expect_equal(bart_cor$df, 153)
  expect_equal(bart_raw$df, 28)
  expect_equal(bart_rand$df, 6)
})

test_that("chi-square statistic matches psych", {
  skip_on_cran()
  skip_if_not_installed("psych")

  # correlation-matrix branch (also pinned to the known value so a wrong Bartlett
  # correction is caught even without psych)
  expect_equal(bart_cor$chisq,
               psych::cortest.bartlett(test_models$baseline$cormat, n = 500)$chisq,
               tolerance = 1e-4)
  expect_equal(bart_cor$chisq, 2173.283, tolerance = 1e-3)

  # raw-data branch (N recovered from the data)
  expect_equal(bart_raw$chisq,
               psych::cortest.bartlett(stats::cor(GRiPS_raw),
                                       n = nrow(GRiPS_raw))$chisq,
               tolerance = 1e-4)

  # non-significant random branch
  set.seed(500)
  rand_mat <- matrix(rnorm(100), ncol = 4)
  expect_equal(bart_rand$chisq,
               psych::cortest.bartlett(stats::cor(rand_mat),
                                       n = nrow(rand_mat))$chisq,
               tolerance = 1e-4)
})

test_that("settings are returned correctly", {
  expect_named(bart_cor$settings, c("N", "use", "cor_method"))
  expect_named(bart_raw$settings, c("N", "use", "cor_method"))
  expect_named(bart_rand$settings, c("N", "use", "cor_method"))

  expect_equal(bart_cor$settings$N, 500)
  expect_equal(bart_raw$settings$N, 810)
  expect_equal(bart_rand$settings$N, 25)

  expect_equal(bart_cor$settings$use, "pairwise.complete.obs")
  expect_equal(bart_raw$settings$use, "pairwise.complete.obs")
  expect_equal(bart_rand$settings$use, "pairwise.complete.obs")

  expect_equal(bart_cor$settings$cor_method, "pearson")
  expect_equal(bart_raw$settings$cor_method, "pearson")
  expect_equal(bart_rand$settings$cor_method, "pearson")
})

test_that("the chi-square is NA when N is too small for the Bartlett correction", {
  # the documented guard: the multiplier N - 1 - (2p + 5)/6 turns non-positive at
  # N = 5 for these p = 18 variables, so no statistic is reported. N relative to p is the
  # only actionable fact behind that NA, so it is reported rather than left silent.
  expect_warning(bart_small <- efa_bartlett(test_models$baseline$cormat, N = 5),
                 class = "efa_bartlett_n_too_small")
  expect_true(is.na(bart_small$chisq))
  expect_true(is.na(bart_small$p_value))

  # An N that keeps the multiplier positive must not warn.
  expect_no_warning(efa_bartlett(test_models$baseline$cormat, N = 500),
                    class = "efa_bartlett_n_too_small")
})

test_that("errors are thrown correctly", {
  expect_error(efa_bartlett(1:5), class = "efa_input_not_matrix")
  expect_error(efa_bartlett(test_models$baseline$cormat), class = "efa_n_required")
  expect_message(efa_bartlett(GRiPS_raw), class = "efa_cor_from_data")
  expect_warning(efa_bartlett(GRiPS_raw, N = 20), class = "efa_n_from_data")
  expect_error(efa_bartlett(sing_raw), class = "efa_cor_singular")
  expect_error(efa_bartlett(sing_cor, N = sing_N), class = "efa_cor_singular")
  expect_warning(efa_bartlett(cor_nposdef, N = 10), class = "efa_cor_smoothed")
})

test_that("a near-singular but positive-definite matrix still yields a statistic", {
  # det() underflows to 0 for a large, highly correlated (but positive-definite)
  # matrix; the null-model chi-square must be recovered from the log-determinant
  # rather than turning into NA and silently NA-ing Bartlett's test or crashing
  # the CFI/TLI block of the model fit indices.
  R <- matrix(0.999, 110, 110)
  diag(R) <- 1
  expect_gt(min(eigen(R, symmetric = TRUE, only.values = TRUE)$values), 0)
  expect_equal(det(R), 0)  # documents why a naive determinant fails here

  bart <- efa_bartlett(R, N = 500)
  expect_true(is.finite(bart$chisq))
  expect_true(is.finite(bart$p_value))

  # the same matrix must not crash the model fit indices (CFI/TLI use the null)
  expect_no_error(
    suppressWarnings(suppressMessages(EFA(R, n_factors = 1, N = 500, method = "ML"))))
})

test_that("print output is stable", {
  local_reproducible_output()

  # significant
  expect_snapshot(print(bart_cor), transform = scrub_num)

  # not significant
  expect_snapshot(print(bart_rand), transform = scrub_num)

  # test did not render a result
  bart_na <- structure(list(chisq = NA_real_, df = NA_integer_, p_value = NA_real_,
                            settings = list()), class = c("efa_bartlett", "BARTLETT"))
  expect_snapshot(print(bart_na), transform = scrub_num)

  # missing components (NULL) must not error and must still print a stable line
  bart_null <- structure(list(chisq = NULL, df = NULL, p_value = NULL,
                              settings = list()), class = c("efa_bartlett", "BARTLETT"))
  expect_snapshot(print(bart_null), transform = scrub_num)
})

rm(bart_cor, bart_raw, bart_rand)

Try the EFAtools package in your browser

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

EFAtools documentation built on Aug. 21, 2026, 5:16 p.m.