query test progress

This commit is contained in:
2026-03-10 18:25:29 -04:00
parent bb263190f6
commit 1c08a8f2b8
20 changed files with 1949 additions and 225 deletions

View File

@ -2,20 +2,21 @@ use ::jspg::*;
use pgrx::JsonB;
use serde_json::json;
pub mod database;
#[test]
fn test_library_api() {
// 1. Initially, schemas are not cached.
assert!(!json_schema_cached("test_schema"));
// Expected uninitialized drop format: errors + null response
let uninitialized_drop = validate_json_schema("test_schema", JsonB(json!({})));
let uninitialized_drop = jspg_validate("test_schema", JsonB(json!({})));
assert_eq!(
uninitialized_drop.0,
json!({
"type": "drop",
"errors": [{
"code": "VALIDATOR_NOT_INITIALIZED",
"message": "JSON Schemas have not been cached yet. Run cache_json_schemas()",
"message": "The JSPG database has not been cached yet. Run jspg_setup()",
"details": { "path": "" }
}]
})
@ -25,6 +26,7 @@ fn test_library_api() {
let db_json = json!({
"puncs": [],
"enums": [],
"relations": [],
"types": [{
"schemas": [{
"$id": "test_schema",
@ -37,7 +39,7 @@ fn test_library_api() {
}]
});
let cache_drop = jspg_cache_database(JsonB(db_json));
let cache_drop = jspg_setup(JsonB(db_json));
assert_eq!(
cache_drop.0,
json!({
@ -46,20 +48,8 @@ fn test_library_api() {
})
);
// 3. Check schemas are cached
assert!(json_schema_cached("test_schema"));
let show_drop = show_json_schemas();
assert_eq!(
show_drop.0,
json!({
"type": "drop",
"response": ["test_schema"]
})
);
// 4. Validate Happy Path
let happy_drop = validate_json_schema("test_schema", JsonB(json!({"name": "Neo"})));
let happy_drop = jspg_validate("test_schema", JsonB(json!({"name": "Neo"})));
assert_eq!(
happy_drop.0,
json!({
@ -69,7 +59,7 @@ fn test_library_api() {
);
// 5. Validate Unhappy Path
let unhappy_drop = validate_json_schema("test_schema", JsonB(json!({"wrong": "data"})));
let unhappy_drop = jspg_validate("test_schema", JsonB(json!({"wrong": "data"})));
assert_eq!(
unhappy_drop.0,
json!({
@ -90,7 +80,7 @@ fn test_library_api() {
);
// 6. Clear Schemas
let clear_drop = clear_json_schemas();
let clear_drop = jspg_teardown();
assert_eq!(
clear_drop.0,
json!({
@ -98,5 +88,4 @@ fn test_library_api() {
"response": "success"
})
);
assert!(!json_schema_cached("test_schema"));
}