2024-04-06 14:31:33 +00:00
# ifdef NDEBUG
# undef NDEBUG
# endif
# define LLAMA_API_INTERNAL
# include "ggml.h"
# include "llama.h"
# include "grammar-parser.h"
2024-06-22 03:18:36 +00:00
# include "json-schema-to-grammar.h"
2024-04-06 14:31:33 +00:00
# include "unicode.h"
# include <cassert>
# include <string>
2024-04-29 18:40:14 +00:00
# include <vector>
2024-04-06 14:31:33 +00:00
2024-06-22 03:18:36 +00:00
using json = nlohmann : : ordered_json ;
2024-04-29 18:40:14 +00:00
static llama_grammar * build_grammar ( const std : : string & grammar_str ) {
auto parsed_grammar = grammar_parser : : parse ( grammar_str . c_str ( ) ) ;
2024-04-06 14:31:33 +00:00
// Ensure we parsed correctly
assert ( ! parsed_grammar . rules . empty ( ) ) ;
// Ensure we have a root node
assert ( ! ( parsed_grammar . symbol_ids . find ( " root " ) = = parsed_grammar . symbol_ids . end ( ) ) ) ;
std : : vector < const llama_grammar_element * > grammar_rules ( parsed_grammar . c_rules ( ) ) ;
llama_grammar * grammar = llama_grammar_init (
grammar_rules . data ( ) , grammar_rules . size ( ) , parsed_grammar . symbol_ids . at ( " root " ) ) ;
2024-04-29 18:40:14 +00:00
return grammar ;
}
2024-04-06 14:31:33 +00:00
2024-05-14 05:25:56 +00:00
static bool test_build_grammar_fails ( const std : : string & grammar_str ) {
fprintf ( stderr , " ⚫ Testing failure for grammar: %s \n " , grammar_str . c_str ( ) ) ;
bool grammar_fails = false ;
2024-06-25 19:07:28 +00:00
llama_grammar * grammar = build_grammar ( grammar_str ) ;
if ( grammar ! = nullptr ) {
2024-05-14 05:25:56 +00:00
fprintf ( stderr , " ❌ Expected build failure, but succeeded \n " ) ;
2024-06-25 19:07:28 +00:00
} else {
2024-05-14 05:25:56 +00:00
grammar_fails = true ;
fprintf ( stdout , " ✅︎ \n " ) ;
}
return grammar_fails ;
}
2024-07-23 10:10:17 +00:00
static bool match_string ( const std : : string & input , llama_grammar * grammar ) {
2024-04-06 14:31:33 +00:00
auto decoded = decode_utf8 ( input , { } ) ;
const auto & code_points = decoded . first ;
2024-07-23 10:10:17 +00:00
const llama_grammar_rules & rules = llama_grammar_get_rules ( grammar ) ;
llama_grammar_stacks & cur_stacks = llama_grammar_get_stacks ( grammar ) ;
2024-04-06 14:31:33 +00:00
for ( auto it = code_points . begin ( ) , end = code_points . end ( ) - 1 ; it ! = end ; + + it ) {
2024-07-23 10:10:17 +00:00
const llama_grammar_stacks prev_stacks = llama_grammar_get_stacks ( grammar ) ; // copy
llama_grammar_accept ( rules , prev_stacks , * it , cur_stacks ) ;
if ( cur_stacks . empty ( ) ) {
2024-04-29 18:40:14 +00:00
// no stacks means that the grammar failed to match at this point
return false ;
}
2024-04-06 14:31:33 +00:00
}
2024-07-23 10:10:17 +00:00
for ( const auto & stack : cur_stacks ) {
2024-04-06 14:31:33 +00:00
if ( stack . empty ( ) ) {
2024-04-29 18:40:14 +00:00
// An empty stack means that the grammar has been completed
return true ;
2024-04-06 14:31:33 +00:00
}
}
2024-04-29 18:40:14 +00:00
return false ;
2024-04-06 14:31:33 +00:00
}
2024-06-22 03:18:36 +00:00
static void test ( const std : : string & test_desc , const std : : string & grammar_str , const std : : vector < std : : string > & passing_strings , const std : : vector < std : : string > & failing_strings ) {
fprintf ( stderr , " ⚫ Testing %s \n %s \n " , test_desc . c_str ( ) , grammar_str . c_str ( ) ) ;
2024-04-29 18:40:14 +00:00
fflush ( stderr ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
auto grammar = build_grammar ( grammar_str ) ;
2024-04-06 14:31:33 +00:00
// Save the original grammar stacks so that we can reset after every new string we want to test
2024-07-23 10:10:17 +00:00
const llama_grammar_stacks original_stacks = llama_grammar_get_stacks ( grammar ) ;
llama_grammar_stacks & cur_stacks = llama_grammar_get_stacks ( grammar ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " 🔵 Valid strings: \n " ) ;
2024-04-06 14:31:33 +00:00
// Passing strings
2024-04-29 18:40:14 +00:00
for ( const auto & test_string : passing_strings ) {
fprintf ( stderr , " \" %s \" " , test_string . c_str ( ) ) ;
fflush ( stderr ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
bool matched = match_string ( test_string , grammar ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
if ( ! matched ) {
fprintf ( stderr , " ❌ (failed to match) \n " ) ;
2024-06-22 03:18:36 +00:00
// DEBUG: Write strings to files so that we can analyze more easily with gbnf-validator program to see exactly where things failed.
// DEBUG: Write the grammar_str to test-grammar-integration.grammar.gbnf
FILE * grammar_file = fopen ( " test-grammar-integration.grammar.gbnf " , " w " ) ;
if ( grammar_file ) {
fprintf ( grammar_file , " %s " , grammar_str . c_str ( ) ) ;
fclose ( grammar_file ) ;
}
// DEBUG: Write the test string to test-grammar-integration.string.txt
FILE * string_file = fopen ( " test-grammar-integration.string.txt " , " w " ) ;
if ( string_file ) {
fprintf ( string_file , " %s " , test_string . c_str ( ) ) ;
fclose ( string_file ) ;
}
fprintf ( stderr , " \n NOTE: Debug grammar file generated. To analyze this failure in detail, run the following command: ./llama-gbnf-validator test-grammar-integration.grammar.gbnf test-grammar-integration.string.txt \n \n " ) ;
2024-04-29 18:40:14 +00:00
} else {
fprintf ( stdout , " ✅︎ \n " ) ;
2024-04-06 14:31:33 +00:00
}
2024-04-29 18:40:14 +00:00
assert ( matched ) ;
2024-04-06 14:31:33 +00:00
// Reset the grammar stacks
2024-07-23 10:10:17 +00:00
cur_stacks = original_stacks ;
2024-04-06 14:31:33 +00:00
}
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " 🟠 Invalid strings: \n " ) ;
2024-04-06 14:31:33 +00:00
// Failing strings
2024-04-29 18:40:14 +00:00
for ( const auto & test_string : failing_strings ) {
fprintf ( stderr , " \" %s \" " , test_string . c_str ( ) ) ;
fflush ( stderr ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
bool matched = match_string ( test_string , grammar ) ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
if ( matched ) {
fprintf ( stderr , " ❌ (incorrectly matched) \n " ) ;
} else {
fprintf ( stdout , " ✅︎ \n " ) ;
2024-04-06 14:31:33 +00:00
}
2024-04-29 18:40:14 +00:00
assert ( ! matched ) ;
2024-04-06 14:31:33 +00:00
// Reset the grammar stacks
2024-07-23 10:10:17 +00:00
cur_stacks = original_stacks ;
2024-04-06 14:31:33 +00:00
}
// Clean up allocated memory
llama_grammar_free ( grammar ) ;
}
2024-06-22 03:18:36 +00:00
static void test_grammar ( const std : : string & test_desc , const std : : string & grammar_str , const std : : vector < std : : string > & passing_strings , const std : : vector < std : : string > & failing_strings ) {
test ( test_desc + " . Grammar: " + grammar_str , grammar_str , passing_strings , failing_strings ) ;
}
static void test_schema ( const std : : string & test_desc , const std : : string & schema_str , const std : : vector < std : : string > & passing_strings , const std : : vector < std : : string > & failing_strings ) {
test ( test_desc + " . Schema: " + schema_str , json_schema_to_grammar ( json : : parse ( schema_str ) ) , passing_strings , failing_strings ) ;
}
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
static void test_simple_grammar ( ) {
2024-06-25 19:06:20 +00:00
test_schema (
" min 0 " ,
R " " " ({
" type " : " integer " ,
" minimum " : 0
} ) " " " ,
// Passing strings
{
" 0 " ,
" 10 " ,
" 12 " ,
" 10000 " ,
} ,
// Failing strings
{
" -1 " ,
" -10 " ,
" -10000 " ,
" -100000000000000000000000000000000 " ,
" 100000000000000000000000000000000 " ,
" 00 " ,
" 01 " ,
" -0 " ,
}
) ;
test_schema (
" min 2 " ,
// Schema
R " " " ({
" type " : " integer " ,
" minimum " : 2
} ) " " " ,
// Passing strings
{
" 2 " ,
" 3 " ,
" 4 " ,
" 10 " ,
" 20 " ,
" 1234567890000000 " ,
} ,
// Failing strings
{
" 0 " ,
" 1 " ,
" -1 " ,
" -100 " ,
" 0 " ,
" 1 " ,
" 01 " ,
" 02 " ,
" 12345678900000000 " ,
}
) ;
test_schema (
" min 456 " ,
R " " " ({
" type " : " integer " ,
" minimum " : 456
} ) " " " ,
// Passing strings
{
" 456 " ,
" 4560 " ,
" 457 " ,
" 460 " ,
" 500 " ,
} ,
// Failing strings
{
" 455 " ,
" 356 " ,
" 50 " ,
" 050 " ,
" -1 " ,
" -456 " ,
}
) ;
test_schema (
" min -123 " ,
R " " " ({
" type " : " integer " ,
" minimum " : - 123
} ) " " " ,
// Passing strings
{
" -123 " ,
" -122 " ,
" -11 " ,
" -1 " ,
" 0 " ,
" 1 " ,
" 123 " ,
" 1234 " ,
" 2345 " ,
} ,
// Failing strings
{
" -1234 " ,
" -124 " ,
}
) ;
test_schema (
" max 9999 " ,
// Schema
R " " " ({
" type " : " integer " ,
" maximum " : 9999
} ) " " " ,
// Passing strings
{
" -99999 " ,
" 0 " ,
" 9999 " ,
} ,
// Failing strings
{
" 10000 " ,
" 99991 " ,
}
) ;
test_schema (
" max -9999 " ,
// Schema
R " " " ({
" type " : " integer " ,
" maximum " : - 9999
} ) " " " ,
// Passing strings
{
" -10000 " ,
" -9999 " ,
} ,
// Failing strings
{
" -9998 " ,
" 0 " ,
" 9999 " ,
}
) ;
test_schema (
" min 5 max 30 " ,
// Schema
R " " " ({
" type " : " integer " ,
" minimum " : 5 ,
" maximum " : 30
} ) " " " ,
// Passing strings
{
" 5 " ,
" 10 " ,
" 30 " ,
} ,
// Failing strings
{
" 05 " ,
" 4 " ,
" -1 " ,
" 31 " ,
" 123 " ,
" 0123 " ,
}
) ;
test_schema (
" min -1 max 1 " ,
R " " " ({
" type " : " integer " ,
" minimum " : - 1 ,
" maximum " : 1
} ) " " " ,
// Passing strings
{
" -1 " ,
" 0 " ,
" 1 " ,
} ,
// Failing strings
{
" -11 " ,
" -10 " ,
" -2 " ,
" 2 " ,
" 10 " ,
" 11 " ,
}
) ;
test_schema (
" min -123 max 42 " ,
R " " " ({
" type " : " integer " ,
" minimum " : - 123 ,
" maximum " : 42
} ) " " " ,
// Passing strings
{
" -123 " ,
" -122 " ,
" -13 " ,
" -11 " ,
" -2 " ,
" -1 " ,
" 0 " ,
" 1 " ,
" 5 " ,
" 10 " ,
" 39 " ,
" 40 " ,
" 42 " ,
} ,
// Failing strings
{
" -0123 " ,
" -124 " ,
" -1123 " ,
" -200 " ,
" 43 " ,
" 123 " ,
" 0123 " ,
}
) ;
test_schema (
" exclusive min / max " ,
// Schema
R " " " ({
" type " : " integer " ,
" exclusiveMinimum " : 0 ,
" exclusiveMaximum " : 10000
} ) " " " ,
// Passing strings
{
" 1 " ,
" 9999 " ,
} ,
// Failing strings
{
" 0 " ,
" 01 " ,
" 10000 " ,
" 99999 " ,
}
) ;
2024-04-29 18:40:14 +00:00
// Test case for a simple grammar
test_grammar (
" simple grammar " ,
R " " " (
root : : = expr
expr : : = term ( " + " term ) *
term : : = number
number : : = [ 0 - 9 ] + ) " " " ,
// Passing strings
{
" 42 " ,
" 1+2+3+4+5 " ,
" 123+456 " ,
} ,
// Failing strings
{
" + " ,
" / 3 " ,
" 1+2+3+4+5+ " ,
" 12a45 " ,
}
) ;
}
static void test_complex_grammar ( ) {
// Test case for a more complex grammar, with both failure strings and success strings
test_grammar (
" medium complexity grammar " ,
// Grammar
R " " " (
root : : = expression
expression : : = term ws ( ( " + " | " - " ) ws term ) *
term : : = factor ws ( ( " * " | " / " ) ws factor ) *
factor : : = number | variable | " ( " expression " ) " | function - call
number : : = [ 0 - 9 ] +
variable : : = [ a - zA - Z_ ] [ a - zA - Z0 - 9 _ ] *
function - call : : = variable ws " ( " ( expression ( " , " ws expression ) * ) ? " ) "
ws : : = [ \ t \ n \ r ] ? ) " " " ,
// Passing strings
{
" 42 " ,
" 1*2*3*4*5 " ,
" x " ,
" x+10 " ,
" x1+y2 " ,
" (a+b)*(c-d) " ,
" func() " ,
" func(x,y+2) " ,
" a*(b+c)-d/e " ,
" f(g(x),h(y,z)) " ,
" x + 10 " ,
" x1 + y2 " ,
" (a + b) * (c - d) " ,
" func() " ,
" func(x, y + 2) " ,
" a * (b + c) - d / e " ,
" f(g(x), h(y, z)) " ,
" 123+456 " ,
" 123*456*789-123/456+789*123 " ,
" 123+456*789-123/456+789*123-456/789+123*456-789/123+456*789-123/456+789*123-456 "
} ,
// Failing strings
{
" + " ,
" / 3x " ,
" x + + y " ,
" a * / b " ,
" func(,) " ,
" func(x y) " ,
" (a + b " ,
" x + y) " ,
" a + b * (c - d " ,
" 42 + " ,
" x + " ,
" x + 10 + " ,
" (a + b) * (c - d " ,
" func( " ,
" func(x, y + 2 " ,
" a * (b + c) - d / " ,
" f(g(x), h(y, z) " ,
" 123+456*789-123/456+789*123-456/789+123*456-789/123+456*789-123/456+789*123-456/ " ,
}
) ;
}
2024-06-06 13:08:52 +00:00
static void test_special_chars ( ) {
// A collection of tests to exercise special characters such as "."
test_grammar (
" special characters " ,
// Grammar
R " " " (
root : : = . . . " abc " . . .
) " " " ,
// Passing strings
{
" abcabcabc " ,
" aaaabcccc " ,
// NOTE: Also ensures that multi-byte characters still count as a single character
" 🔵🟠✅abc❌🟠🔵 "
} ,
// Failing strings
{
" aaabcccc " ,
" aaaaabcccc " ,
" aaaabccc " ,
" aaaabccccc " ,
2024-08-20 09:09:55 +00:00
" 🔵🟠✅❌abc❌✅🟠🔵 " ,
2024-06-06 13:08:52 +00:00
" 🔵🟠abc🟠🔵 "
}
) ;
}
2024-04-29 18:40:14 +00:00
static void test_quantifiers ( ) {
// A collection of tests to exercise * + and ? quantifiers
test_grammar (
" * quantifier " ,
// Grammar
R " " " (root ::= " a " *) " " " ,
// Passing strings
{
" " ,
" a " ,
" aaaaa " ,
" aaaaaaaaaaaaaaaaaa " ,
" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "
} ,
// Failing strings
{
" b " ,
" ab " ,
" aab " ,
" ba " ,
" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab "
}
) ;
test_grammar (
" + quantifier " ,
// Grammar
R " " " (root ::= " a " +) " " " ,
// Passing strings
{
" a " ,
" aaaaa " ,
" aaaaaaaaaaaaaaaaaa " ,
" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "
} ,
// Failing strings
{
" " ,
" b " ,
" ab " ,
" aab " ,
" ba " ,
" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab "
}
) ;
test_grammar (
" ? quantifier " ,
// Grammar
R " " " (root ::= " a " ?) " " " ,
// Passing strings
{
" " ,
" a "
} ,
// Failing strings
{
" b " ,
" ab " ,
" aa " ,
" ba " ,
}
) ;
test_grammar (
" mixed quantifiers " ,
// Grammar
R " " " (
root : : = cons + vowel * cons ? ( vowel cons ) *
vowel : : = [ aeiouy ]
cons : : = [ bcdfghjklmnpqrstvwxyz ]
) " " " ,
// Passing strings
{
" yes " ,
" no " ,
" noyes " ,
" crwth " ,
" four " ,
" bryyyy " ,
} ,
// Failing strings
{
" yess " ,
" yesno " ,
" forty " ,
" catyyy " ,
}
) ;
2024-06-06 09:07:06 +00:00
test_grammar (
" simple exact repetition " ,
// Grammar
R " " " (
root : : = [ ab ] { 4 }
) " " " ,
// Passing strings
{
" aaaa " ,
" bbbb " ,
" abab " ,
} ,
// Failing strings
{
" a " ,
" b " ,
" aaaaa " ,
}
) ;
test_grammar (
" simple min repetition " ,
// Grammar
R " " " (
root : : = [ ab ] { 4 , }
) " " " ,
// Passing strings
{
" aaaa " ,
" aaaaab " ,
" bbbb " ,
" ababab " ,
} ,
// Failing strings
{
" " ,
" aba " ,
}
) ;
test_grammar (
" simple max repetition " ,
// Grammar
R " " " (
root : : = [ ab ] { 0 , 4 }
) " " " ,
// Passing strings
{
" " ,
" a " ,
" aa " ,
" aaa " ,
" aaab " ,
} ,
// Failing strings
{
" aaaaa " ,
}
) ;
test_grammar (
" min / max repetition " ,
// Grammar
R " " " (
root : : = ( " 0x " [ A - F0 - 9 ] { 2 } " " ? ) { 3 , 5 }
) " " " ,
// Passing strings
{
" 0xFF 0x12 0xAB " ,
" 0xFF 0x12 0xAB 0x00 0x00 " ,
} ,
// Failing strings
{
" " ,
" 0xFF " ,
" 0xFF 0x12 " ,
" 0xFF 0x12 0xAB 0x00 0x00 0x00 " ,
}
) ;
2024-04-29 18:40:14 +00:00
}
2024-04-06 14:31:33 +00:00
static void test_failure_missing_root ( ) {
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " ⚫ Testing missing root node: \n " ) ;
2024-04-06 14:31:33 +00:00
// Test case for a grammar that is missing a root rule
2024-06-22 03:18:36 +00:00
const std : : string grammar_str = R " " " (
rot : : = expr
expr : : = term ( " + " term ) *
term : : = number
number : : = [ 0 - 9 ] + ) " " " ;
2024-04-06 14:31:33 +00:00
grammar_parser : : parse_state parsed_grammar = grammar_parser : : parse ( grammar_str . c_str ( ) ) ;
// Ensure we parsed correctly
assert ( ! parsed_grammar . rules . empty ( ) ) ;
// Ensure we do NOT have a root node
assert ( parsed_grammar . symbol_ids . find ( " root " ) = = parsed_grammar . symbol_ids . end ( ) ) ;
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " ✅︎ Passed \n " ) ;
2024-04-06 14:31:33 +00:00
}
static void test_failure_missing_reference ( ) {
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " ⚫ Testing missing reference node: \n " ) ;
2024-04-06 14:31:33 +00:00
// Test case for a grammar that is missing a referenced rule
2024-04-29 18:40:14 +00:00
const std : : string grammar_str =
2024-06-22 03:18:36 +00:00
R " " " (root ::= expr
expr : : = term ( " + " term ) *
term : : = numero
number : : = [ 0 - 9 ] + ) " " " ;
2024-04-06 14:31:33 +00:00
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " Expected error: " ) ;
2024-04-06 14:31:33 +00:00
grammar_parser : : parse_state parsed_grammar = grammar_parser : : parse ( grammar_str . c_str ( ) ) ;
// Ensure we did NOT parsed correctly
assert ( parsed_grammar . rules . empty ( ) ) ;
2024-04-29 18:40:14 +00:00
fprintf ( stderr , " End of expected error. \n " ) ;
fprintf ( stderr , " ✅︎ Passed \n " ) ;
2024-04-06 14:31:33 +00:00
}
2024-05-14 05:25:56 +00:00
static void test_failure_left_recursion ( ) {
fprintf ( stderr , " ⚫ Testing left recursion detection: \n " ) ;
// Test simple left recursion detection
const std : : string simple_str = R " " " (root ::= " a " | root " a " ) " " " ;
assert ( test_build_grammar_fails ( simple_str ) ) ;
// Test more complicated left recursion detection
const std : : string medium_str = R " " " (
2024-06-22 03:18:36 +00:00
root : : = asdf
asdf : : = " a " | asdf " a "
) " " " ;
2024-05-14 05:25:56 +00:00
assert ( test_build_grammar_fails ( medium_str ) ) ;
// Test even more complicated left recursion detection
const std : : string hard_str = R " " " (
2024-06-22 03:18:36 +00:00
root : : = asdf
asdf : : = " a " | foo " b "
foo : : = " c " | asdf " d " | " e " ) " " " ;
2024-05-14 05:25:56 +00:00
assert ( test_build_grammar_fails ( hard_str ) ) ;
// Test yet even more complicated left recursion detection
const std : : string hardest_str = R " " " (
2024-06-22 03:18:36 +00:00
root : : = asdf
asdf : : = " a " | foo " b "
foo : : = " c " | empty asdf " d " | " e "
empty : : = " blah " | ) " " " ;
2024-05-14 05:25:56 +00:00
assert ( test_build_grammar_fails ( hardest_str ) ) ;
fprintf ( stderr , " ✅︎ Passed \n " ) ;
}
2024-06-22 03:18:36 +00:00
static void test_json_schema ( ) {
// Note that this is similar to the regular grammar tests,
// but we convert each json schema to a grammar before parsing.
// Otherwise, this test structure is the same.
test_schema (
" empty schema (object) " ,
// Schema
R " " " (
{ }
) " " " ,
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ({}) " " " ,
2024-06-22 03:18:36 +00:00
R " " " ({ " foo " : " bar " }) " " " ,
} ,
// Failing strings
{
" " ,
" [] " ,
" null " ,
2024-06-26 00:45:58 +00:00
R " " " ( " " ) " " " ,
2024-06-22 03:18:36 +00:00
" true " ,
}
) ;
test_schema (
" exotic formats (list) " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" items " : [
{ " format " : " date " } ,
{ " format " : " uuid " } ,
{ " format " : " time " } ,
{ " format " : " date-time " }
]
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
// "{}", // NOTE: This string passes for this schema on https://www.jsonschemavalidator.net/ -- should it?
// "[]", // NOTE: This string passes for this schema on https://www.jsonschemavalidator.net/ -- should it?
R " " " ([ " 2012 - 04 - 23 " , " 12345678 - 1234 - 1234 - 1234 - 1234567890 ab " , " 18 : 25 : 43.511 Z " , " 2012 - 04 - 23 T18 : 25 : 43.511 Z " ]) " " " ,
//R"""(["2012-04-23","12345678-1234-1234-1234-1234567890ab"])""", // NOTE: This string passes for this schema on https://www.jsonschemavalidator.net/ -- should it?
//R"""({"foo": "bar"})""", // NOTE: This string passes for this schema on https://www.jsonschemavalidator.net/ -- should it?
} ,
// Failing strings
{
R " " " ([ " foo " , " bar " ]) " " " ,
R " " " ([ " 12345678 - 1234 - 1234 - 1234 - 1234567890 ab " ]) " " " ,
}
) ;
test_schema (
" string " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " string "
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
R " " " ( " bar " ) " " " ,
R " " " ( " " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ({}) " " " ,
R " " " ( " foo " : " bar " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" string w/ min length 1 " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " string " ,
" minLength " : 1
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
R " " " ( " bar " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " " ) " " " ,
R " " " ({}) " " " ,
R " " " ( " foo " : " bar " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" string w/ min length 3 " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" type " : " string " ,
" minLength " : 3
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
R " " " ( " bar " ) " " " ,
R " " " ( " foobar " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " " ) " " " ,
R " " " ( " f " ) " " " ,
R " " " ( " fo " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" string w/ max length " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " string " ,
" maxLength " : 3
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
R " " " ( " bar " ) " " " ,
R " " " ( " " ) " " " ,
R " " " ( " f " ) " " " ,
R " " " ( " fo " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foobar " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" string w/ min & max length " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " string " ,
" minLength " : 1 ,
" maxLength " : 4
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
R " " " ( " bar " ) " " " ,
R " " " ( " f " ) " " " ,
R " " " ( " barf " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " " ) " " " ,
R " " " ( " barfo " ) " " " ,
R " " " ( " foobar " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" boolean " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " boolean "
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
" true " ,
" false " ,
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " " ) " " " ,
R " " " ( " true " ) " " " ,
R " " " (True) " " " ,
R " " " (FALSE) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" integer " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" type " : " integer "
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " (0) " " " ,
R " " " (12345) " " " ,
R " " " (1234567890123456) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " () " " " ,
R " " " (01) " " " ,
R " " " (007) " " " ,
R " " " (12345678901234567 ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" string const " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" const " : " foo "
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " foo " ) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " (foo) " " " ,
R " " " ( " bar " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" non-string const " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" const " : true
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " (true) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " () " " " ,
R " " " (foo) " " " ,
R " " " ( " true " ) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
test_schema (
" non-string const " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" enum " : [ " red " , " amber " , " green " , null , 42 , [ " foo " ] ]
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ( " red " ) " " " ,
R " " " (null) " " " ,
R " " " (42) " " " ,
R " " " ([ " foo " ]) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " () " " " ,
R " " " (420) " " " ,
R " " " (true) " " " ,
R " " " (foo) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
2024-06-28 08:26:45 +00:00
test_schema (
" simple pattern " ,
// Schema
R " " " ({
" pattern " : " ^[a-zA-Z0-9_-]*$ "
} ) " " " ,
// Passing strings
{
R " " " ( " " ) " " " ,
R " " " ( " He_llo - 12 " ) " " " ,
} ,
// Failing strings
{
R " " " ( " ! " ) " " " ,
R " " " ( " Hello World " ) " " " ,
}
) ;
test_schema (
" pattern with escapes " ,
// Schema
R " " " ({
" pattern " : " ^a \\ ^ \\ $ \\ . \\ [ \\ ] \\ ( \\ ) \\ | \\ { \\ } \\ * \\ + \\ ?b$ "
} ) " " " ,
// Passing strings
{
R " " " ( " a ^ $ . [ ] ( ) | { } * + ? b " ) " " " ,
} ,
// Failing strings
{
R " " " ( " ab " ) " " " ,
}
) ;
2024-06-26 00:46:35 +00:00
test_schema (
" " ,
// Schema
R " " " (
{
" type " : [ " array " , " null " ] ,
" items " : { " type " : " string " }
}
) " " " ,
// Passing strings
{
" null " ,
" [] " ,
" [ \" 123 \" ] " ,
" [ \" foo \" , \" bar \" ] " ,
} ,
// Failing strings
{
" " ,
" [123] " ,
" \" foo \" " ,
" [ \" foo \" , 42] " ,
}
) ;
2024-06-22 03:18:36 +00:00
test_schema (
" min+max items " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" items " : {
" type " : [ " number " , " integer " ]
} ,
" minItems " : 3 ,
" maxItems " : 5
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
2024-06-26 00:45:58 +00:00
R " " " ([1, 2, 3]) " " " ,
R " " " ([1, 2, 3, 4]) " " " ,
R " " " ([1, 2, 3, 4, 5]) " " " ,
2024-06-22 03:18:36 +00:00
} ,
// Failing strings
{
2024-06-26 00:45:58 +00:00
R " " " ([1, 2]) " " " ,
R " " " ([1, 2, 3, 4, 5, 6]) " " " ,
R " " " (1) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
// Properties (from: https://json-schema.org/understanding-json-schema/reference/object#properties)
test_schema (
" object properties " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" type " : " object " ,
" properties " : {
" number " : { " type " : " number " } ,
" street_name " : { " type " : " string " } ,
" street_type " : { " enum " : [ " Street " , " Avenue " , " Boulevard " ] }
}
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
// "By default, leaving out properties is valid"
R " " " ({ " street_name " : " Pennsylvania " }) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " }) " " " ,
// "By extension, even an empty object is valid"
R " " " ({}) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
} ,
// Failing strings
{
// Change datatype from number to string
R " " " ({ " number " : " 1600 " , " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
// Reorder properties
R " " " ({ " street_name " : " Pennsylvania " , " number " : 1600 }) " " " ,
// Reorder properties
R " " " ({ " number " : " 1600 " , " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
2024-06-28 08:26:45 +00:00
// "Additional properties default to false for generation, even though the spec says true.
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " , " direction " : " NW " }) " " " ,
2024-06-22 03:18:36 +00:00
}
) ;
2024-06-26 00:45:58 +00:00
test_schema (
" additional properties can't override other properties " ,
R " " " ({
" properties " : {
" a " : { " type " : " integer " } ,
" b " : { " type " : " integer " }
} ,
" additionalProperties " : true
} ) " " " ,
// Passing strings
{
R " " " ({ " a " : 42}) " " " ,
R " " " ({ " c " : " " }) " " " ,
R " " " ({ " a " : 42, " c " : " " }) " " " ,
R " " " ({ " a_ " : " " }) " " " ,
} ,
// Failing strings
{
R " " " () " " " ,
R " " " ({ " a " : " " }) " " " ,
R " " " ({ " a " : " " , " b " : " " }) " " " ,
}
) ;
2024-06-22 03:18:36 +00:00
// Properties (from: https://json-schema.org/understanding-json-schema/reference/object#properties)
test_schema (
" object properties, additionalProperties: true " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" type " : " object " ,
" properties " : {
" number " : { " type " : " number " } ,
" street_name " : { " type " : " string " } ,
" street_type " : { " enum " : [ " Street " , " Avenue " , " Boulevard " ] }
} ,
" additionalProperties " : true
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
// "By extension, even an empty object is valid"
R " " " ({}) " " " ,
R " " " ({ " number " :1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
// "By default, leaving out properties is valid"
R " " " ({ " street_name " : " Pennsylvania " }) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " }) " " " ,
// "By default, providing additional properties is valid"
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " , " direction " : " NW " }) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
} ,
// Failing strings
{
// Change datatype from number to string
R " " " ({ " number " : " 1600 " , " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
// Reorder properties
R " " " ({ " street_name " : " Pennsylvania " , " number " : 1600, " street_type " : " Avenue " }) " " " ,
}
) ;
// Additional properties: false
test_schema (
" required + optional props each in original order " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" type " : " object " ,
" properties " : {
" number " : { " type " : " number " } ,
" street_name " : { " type " : " string " } ,
" street_type " : { " enum " : [ " Street " , " Avenue " , " Boulevard " ] }
} ,
" additionalProperties " : false
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
R " " " ({ " street_name " : " Pennsylvania " }) " " " ,
R " " " ({ " number " : 1600, " street_type " : " Avenue " }) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " }) " " " ,
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
2024-06-26 00:45:58 +00:00
// Spaces are permitted around enum values
2024-06-22 03:18:36 +00:00
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " }) " " " ,
} ,
// Failing strings
{
// Reorder properties
R " " " ({ " street_type " : " Avenue " , " number " : 1600 }) " " " ,
// Add "direction"
R " " " ({ " number " : 1600, " street_name " : " Pennsylvania " , " street_type " : " Avenue " , " direction " : " NW " }) " " " ,
}
) ;
test_schema (
" required + optional props each in original order " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
" properties " : {
" b " : { " type " : " string " } ,
" a " : { " type " : " string " } ,
" d " : { " type " : " string " } ,
" c " : { " type " : " string " }
} ,
" required " : [ " a " , " b " ] ,
" additionalProperties " : false
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
R " " " ({ " b " : " foo " , " a " : " bar " }) " " " ,
R " " " ({ " b " : " foo " , " a " : " bar " , " d " : " qux " }) " " " ,
R " " " ({ " b " : " foo " , " a " : " bar " , " d " : " qux " , " c " : " baz " }) " " " ,
} ,
// Failing strings
{
R " " " ({ " a " : " foo " , " b " : " bar " }) " " " ,
R " " " ({ " b " : " bar " }) " " " ,
R " " " ({ " a " : " foo " , " c " : " baz " }) " " " ,
R " " " ({ " a " : " foo " , " b " : " bar " , " c " : " baz " , " d " : " qux " }) " " " ,
}
) ;
// NOTE: Example from https://json-schema.org/learn/getting-started-step-by-step#define-required-properties
test_schema (
" required props " ,
// Schema
2024-06-26 00:45:58 +00:00
R " " " ({
2024-06-22 03:18:36 +00:00
" $schema " : " https://json-schema.org/draft/2020-12/schema " ,
" $id " : " https://example.com/product.schema.json " ,
" title " : " Product " ,
" description " : " A product from Acme's catalog " ,
" type " : " object " ,
" properties " : {
" productId " : {
" description " : " The unique identifier for a product " ,
" type " : " integer "
} ,
" productName " : {
" description " : " Name of the product " ,
" type " : " string "
} ,
" price " : {
" description " : " The price of the product " ,
" type " : " number " ,
" exclusiveMinimum " : 0
} ,
" tags " : {
" description " : " Tags for the product " ,
" type " : " array " ,
" items " : {
" type " : " string "
} ,
" minItems " : 1 ,
" uniqueItems " : true
} ,
" dimensions " : {
" type " : " object " ,
" properties " : {
" length " : {
" type " : " number "
} ,
" width " : {
" type " : " number "
} ,
" height " : {
" type " : " number "
}
} ,
" required " : [ " length " , " width " , " height " ]
}
} ,
" required " : [ " productId " , " productName " , " price " ]
2024-06-26 00:45:58 +00:00
} ) " " " ,
2024-06-22 03:18:36 +00:00
// Passing strings
{
R " " " ({ " productId " : 1, " productName " : " A green door " , " price " : 12.50}) " " " ,
R " " " ({ " productId " : 1, " productName " : " A green door " , " price " : 12.50, " tags " : [ " home " , " green " ]}) " " " ,
R " " " ({ " productId " : 1, " productName " : " A green door " , " price " : 12.50, " tags " : [ " home " , " green " ], " dimensions " : { " length " : 785, " width " : 250.5, " height " : -0.359}}) " " " ,
} ,
// Failing strings
{
R " " " ({}) " " " , // Missing all required properties
R " " " ({ " productName " : " A green door " , " price " : 12.50, " productId " : 1}) " " " , // Out of order properties
// TODO: The following line should fail, but currently it passes. `exclusiveMinimum` is not supported, as it would likely be too difficult to implement.
// Perhaps special checks for minimum and maximum values of 0 could be added (since that's relatively easy to do with grammars), but anything else would likely be too complex.
// R"""({"productId": 1, "productName": "A green door", "price": -12.50})""",
R " " " ({ " productId " : 1, " productName " : " A green door " }) " " " , // Missing required property (price)
R " " " ({ " productName " : " A green door " , " price " : 12.50}) " " " , // Missing required property (productId)
R " " " ({ " productId " : 1, " productName " : " A green door " , " price " : 12.50, " tags " : []}) " " " , // tags is empty, but minItems is 1
R " " " ({ " productId " : 1, " productName " : " A green door " , " price " : 12.50, " dimensions " : { " length " : 785, " width " : 250.5, " height " : -0.359}, " tags " : [ " home " , " green " ]}) " " " , // Tags and dimensions are out of order
// TODO: The following line should fail, but currently it passes. `uniqueItems` is not supported, as it would likely be too difficult to implement.
// R"""({"productId": 1, "productName": "A green door", "price": 12.50, "tags": ["home", "green", "home"]})""",
}
) ;
}
2024-04-06 14:31:33 +00:00
int main ( ) {
2024-04-29 18:40:14 +00:00
fprintf ( stdout , " Running grammar integration tests... \n " ) ;
2024-04-06 14:31:33 +00:00
test_simple_grammar ( ) ;
test_complex_grammar ( ) ;
2024-06-06 13:08:52 +00:00
test_special_chars ( ) ;
2024-04-29 18:40:14 +00:00
test_quantifiers ( ) ;
2024-04-06 14:31:33 +00:00
test_failure_missing_root ( ) ;
test_failure_missing_reference ( ) ;
2024-05-14 05:25:56 +00:00
test_failure_left_recursion ( ) ;
2024-06-22 03:18:36 +00:00
test_json_schema ( ) ;
2024-04-29 18:40:14 +00:00
fprintf ( stdout , " All tests passed. \n " ) ;
2024-04-06 14:31:33 +00:00
return 0 ;
}