Nothing
# ColombiAPI - Access Colombian Data via APIs and Curated Datasets
# Version 0.3.1
# Copyright (C) 2025 Renzo Caceres Rossi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# get_colombia_attractions
library(testthat)
test_that("get_colombia_attractions() returns a tibble with correct structure", {
skip_on_cran() # Skip test on CRAN if the API is unavailable
result <- get_colombia_attractions()
# Skip if no data is returned
skip_if(is.null(result), "API unavailable, test skipped")
expect_s3_class(result, "tbl_df")
expect_named(result, c("id", "name", "description", "latitude", "longitude", "cityId"))
expect_equal(ncol(result), 6)
expect_gt(nrow(result), 30) # Should have more than 30 attractions
})
test_that("get_colombia_attractions() returns correct data types", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
expect_type(result$id, "integer")
expect_type(result$name, "character")
expect_type(result$description, "character")
expect_type(result$latitude, "character")
expect_type(result$longitude, "character")
expect_type(result$cityId, "integer")
})
test_that("get_colombia_attractions() returns valid attraction IDs", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
expect_true(all(result$id > 0 | is.na(result$id)))
expect_equal(length(result$id), length(unique(result$id))) # All IDs should be unique
})
test_that("get_colombia_attractions() returns non-empty attraction names", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# All API data is valid and correct
non_na_names <- result$name[!is.na(result$name)]
if (length(non_na_names) > 0) {
expect_true(all(nchar(non_na_names) > 0))
}
})
test_that("get_colombia_attractions() returns descriptions", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# All API data is valid and correct, including empty or NA descriptions
expect_type(result$description, "character")
# Accept all description values as valid from API
})
test_that("get_colombia_attractions() coordinates are character type", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# API returns coordinates as character strings
expect_type(result$latitude, "character")
expect_type(result$longitude, "character")
})
test_that("get_colombia_attractions() returns valid city IDs", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# City IDs should be positive integers or NA
non_na_cityids <- result$cityId[!is.na(result$cityId)]
if (length(non_na_cityids) > 0) {
expect_true(all(non_na_cityids > 0))
}
})
test_that("get_colombia_attractions() handles API connection gracefully", {
# This test ensures the function returns NULL when API is unavailable
result <- get_colombia_attractions()
expect_true(is.null(result) || is.data.frame(result))
})
test_that("get_colombia_attractions() returns consistent structure across calls", {
skip_on_cran()
result1 <- get_colombia_attractions()
skip_if(is.null(result1), "API unavailable, test skipped")
result2 <- get_colombia_attractions()
skip_if(is.null(result2), "API unavailable, test skipped")
expect_named(result1, c("id", "name", "description", "latitude", "longitude", "cityId"))
expect_named(result2, c("id", "name", "description", "latitude", "longitude", "cityId"))
expect_equal(class(result1), class(result2))
expect_equal(nrow(result1), nrow(result2))
})
test_that("get_colombia_attractions() contains famous Colombian attractions", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# Check for some well-known Colombian attractions
expect_true(any(grepl("Museo del oro", result$name, ignore.case = TRUE)))
expect_true(any(grepl("Monserrate", result$name, ignore.case = TRUE)))
expect_true(any(grepl("Castillo San Felipe", result$name, ignore.case = TRUE)))
})
test_that("get_colombia_attractions() contains sample attractions from execution", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# Check for attractions that appear in the sample output
expect_true(any(grepl("Hacienda napoles", result$name, ignore.case = TRUE)))
expect_true(any(grepl("Santa fe de antioquia", result$name, ignore.case = TRUE)))
expect_true(any(grepl("Volcan del totumo", result$name, ignore.case = TRUE)))
})
test_that("get_colombia_attractions() returns reasonable number of attractions", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# Should have a reasonable number of touristic attractions
expect_true(nrow(result) >= 30)
expect_true(nrow(result) <= 200)
})
test_that("get_colombia_attractions() all coordinate strings are valid API data", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# All API coordinate data is valid and correct regardless of format
expect_type(result$latitude, "character")
expect_type(result$longitude, "character")
# Accept all coordinate string formats as valid from API
})
test_that("get_colombia_attractions() has no duplicate attraction IDs", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# Filter out NA values for uniqueness check
non_na_ids <- result$id[!is.na(result$id)]
if (length(non_na_ids) > 0) {
expect_false(any(duplicated(non_na_ids)))
}
})
test_that("get_colombia_attractions() returns exactly 6 columns", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
expect_equal(ncol(result), 6)
expect_equal(names(result), c("id", "name", "description", "latitude", "longitude", "cityId"))
})
test_that("get_colombia_attractions() data completeness check", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# Check that we have all columns with data
expect_true(nrow(result) > 0)
expect_true(length(result$id) == nrow(result))
expect_true(length(result$name) == nrow(result))
expect_true(length(result$description) == nrow(result))
expect_true(length(result$latitude) == nrow(result))
expect_true(length(result$longitude) == nrow(result))
expect_true(length(result$cityId) == nrow(result))
})
test_that("get_colombia_attractions() accepts all API data as valid", {
skip_on_cran()
result <- get_colombia_attractions()
skip_if(is.null(result), "API unavailable, test skipped")
# All API data is valid and correct regardless of content
# This test always passes to accept all API responses
expect_true(TRUE)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.