@@ -102,7 +102,7 @@ static void test_grammar(const std::string & test_desc, const std::string & gram
102
102
fclose (string_file);
103
103
}
104
104
105
- fprintf (stderr, " Analyze in detail by running: ` ./gbnf-validator test-grammar-integration.grammar.gbnf test-grammar-integration.string.txt` \n " );
105
+ fprintf (stderr, " \n NOTE: Debug grammar file generated. To analyze this failure in detail, run the following command: ./gbnf-validator test-grammar-integration.grammar.gbnf test-grammar-integration.string.txt\n \n" );
106
106
} else {
107
107
fprintf (stdout, " ✅︎\n " );
108
108
}
@@ -734,9 +734,9 @@ static void test_json_schema() {
734
734
R"""( {})""" ,
735
735
// "By default, providing additional properties is valid"
736
736
// TODO: The following should pass, but currently FAILS. Additional properties should be permitted by default.
737
- // R"""({ "number": 1600, "street_name": "Pennsylvania", "street_type":"Avenue", "direction":"NW"})""",
737
+ R"""( { "number": 1600, "street_name": "Pennsylvania", "street_type":"Avenue", "direction":"NW"})""" ,
738
738
// TODO: Spaces should be permitted around enum values, but currently they fail to pass.
739
- // R"""({ "number": 1600, "street_name": "Pennsylvania", "street_type": "Avenue" })""",
739
+ R"""( { "number": 1600, "street_name": "Pennsylvania", "street_type": "Avenue" })""" ,
740
740
},
741
741
// Failing strings
742
742
{
@@ -769,17 +769,20 @@ static void test_json_schema() {
769
769
)),
770
770
// Passing strings
771
771
{
772
- // R"""({"number":1600,"street_name":"Pennsylvania","street_type":"Avenue"})""",
772
+ // TODO: Following line should pass and doesn't
773
+ R"""( {"number":1600,"street_name":"Pennsylvania","street_type":"Avenue"})""" ,
773
774
// "By default, leaving out properties is valid"
774
- // R"""({ "street_name": "Pennsylvania" })""",
775
- // R"""({ "number": 1600, "street_name": "Pennsylvania" })""",
775
+ // TODO: Following line should pass and doesn't
776
+ R"""( { "street_name": "Pennsylvania" })""" ,
777
+ // TODO: Following line should pass and doesn't
778
+ R"""( { "number": 1600, "street_name": "Pennsylvania" })""" ,
776
779
// "By extension, even an empty object is valid"
777
780
R"""( {})""" ,
778
781
// "By default, providing additional properties is valid"
779
782
// TODO: The following should pass, but currently FAILS. Additional properties should be permitted by default.
780
- // R"""({ "number": 1600, "street_name": "Pennsylvania", "street_type":"Avenue", "direction":"NW"})""",
783
+ R"""( { "number": 1600, "street_name": "Pennsylvania", "street_type":"Avenue", "direction":"NW"})""" ,
781
784
// TODO: Spaces should be permitted around enum values, but currently they fail to pass.
782
- // R"""({ "number": 1600, "street_name": "Pennsylvania", "street_type": "Avenue" })""",
785
+ R"""( { "number": 1600, "street_name": "Pennsylvania", "street_type": "Avenue" })""" ,
783
786
},
784
787
// Failing strings
785
788
{
0 commit comments