tests/testthat/test_convert_SG2MG.R

## load data
data(ExampleData.BINfileData, envir = environment())
test_file_MG <- test_file_SG <- CWOSL.SAR.Data
test_file_SG@METADATA$GRAIN <- 1

test_that("input validation", {
  testthat::skip_on_cran()

  expect_error(convert_SG2MG(data.frame()),
               "'object' should be of class 'character' or 'Risoe.BINfileData'")
  expect_error(convert_SG2MG(character(0)),
               "'object' cannot be an empty character")
  expect_error(convert_SG2MG(c("error1", "error2")),
               "'object' should have length 1")
  expect_error(convert_SG2MG("error"),
               "File '.*error' does not exist") # windows CI needs the regexp
})

test_that("test functionality", {
  testthat::skip_on_cran()

  ## test pass through for pure multiple grain data
  expect_equal(convert_SG2MG(test_file_MG),
               test_file_MG)

  ## test write option
  tmp <- tempfile(fileext = ".bin")
  new <- gsub(".bin", "_SG.bin", tmp)
  SW({
  write_file_test <- write_R2BIN(
      read_BIN2R(file = test_path("_data/BINfile_V4.bin")),
      file = tmp)

  expect_s4_class(convert_SG2MG(tmp, write_file = TRUE, txtProgressBar = FALSE),
                  "Risoe.BINfileData")
  expect_true(file.exists(new))
  })

  unlink(c(tmp, new))
})

test_that("snapshot tests", {
  testthat::skip_on_cran()

  small <- subset(test_file_SG, RUN == 1)
  expect_snapshot_Risoe(convert_SG2MG(small))
})

test_that("regression tests", {
  testthat::skip_on_cran()

  ## issue 1415
  small <- subset(test_file_SG, POSITION == 1)
  expect_silent(convert_SG2MG(small))
})

Try the Luminescence package in your browser

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

Luminescence documentation built on Sept. 18, 2026, 9:07 a.m.