Nothing
if (!identical(Sys.getenv("NOT_CRAN"), "true")) return()
test_that("chroma_connect works", {
client <- chroma_connect()
expect_s3_class(client, "chroma_client")
expect_type(client$base_url, "character")
expect_s3_class(client$req, "httr2_request")
# Test custom host and port
client2 <- chroma_connect(
host = "http://localhost",
port = 8001L,
verify = FALSE
)
expect_equal(client2$base_url, "http://localhost:8001/api/v2")
# Test connection error
expect_error(
chroma_connect(port = 9999L),
"Could not connect to ChromaDB at http://localhost:9999/api/v2"
)
})
test_that("version works", {
client <- chroma_connect()
version_info <- version(client)
expect_type(version_info, "character")
expect_match(version_info, "^[0-9]+\\.[0-9]+\\.[0-9]+$")
})
test_that("pre_flight_checks works", {
client <- chroma_connect()
info <- pre_flight_checks(client)
expect_type(info, "list")
expect_true("max_batch_size" %in% names(info))
})
test_that("heartbeat works", {
client <- chroma_connect()
heartbeat_info <- heartbeat(client)
expect_type(heartbeat_info, "double")
expect_gte(heartbeat_info, 0)
})
test_that("get_auth_identity works", {
client <- chroma_connect()
identity <- get_auth_identity(client)
expect_type(identity, "list")
})
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.