tests/testthat/test-phonex.R

context("phonex")

##  Test the Phonex algorithm
test_that("Test that Phonex works", {
    skip_on_cran()

    test <- read.csv("phonex.csv", comment.char = "#", stringsAsFactors = FALSE, colClasses = rep("character", 2), encoding = "UTF-8")

    ## Test for cases where clean = TRUE
    for(i in 1:nrow(test)) {
        if(is.na(test$value[i])) {
            expect_warning(testValue <- phonex(test$word[i]))
            expect_true(is.na(testValue))
        } else
            expect_true(phonex(test$word[i]) == test$value[i])
    }

    ## Test for cases where clean = FALSE, which should not
    ## return NA, so we are going to assume that's an error
    for(i in 1:nrow(test)) {
        if(is.na(test$value[i]))
            expect_false(is.na(phonex(test$word[i], clean = FALSE)))
        else
            expect_true(phonex(test$word[i], clean = FALSE) == test$value[i])
    }

})

test_that("The Phonex algorithm implementation can handle NAs", {
    skip_on_cran()

    test_data <- phonex(NA_character_)
    expect_true(is.na(test_data))
})

test_that("The Phonex algorithm implementation can handle NULLs", {
    skip_on_cran()

    test_data <- phonex(NULL)
    expect_true(is.na(test_data))
})
howardjp/phonics documentation built on Sept. 28, 2021, 7:22 p.m.