Skip to content

Commit bd3ebb6

Browse files
committed
Uncommenting formerly commented tests so that they fail for others who are attempting to reproduce the bugs.
1 parent 8831e6c commit bd3ebb6

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

tests/test-grammar-integration.cpp

+11-8
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static void test_grammar(const std::string & test_desc, const std::string & gram
102102
fclose(string_file);
103103
}
104104

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");
106106
} else {
107107
fprintf(stdout, "✅︎\n");
108108
}
@@ -734,9 +734,9 @@ static void test_json_schema() {
734734
R"""({})""",
735735
// "By default, providing additional properties is valid"
736736
// 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"})""",
738738
// 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" })""",
740740
},
741741
// Failing strings
742742
{
@@ -769,17 +769,20 @@ static void test_json_schema() {
769769
)),
770770
// Passing strings
771771
{
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"})""",
773774
// "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" })""",
776779
// "By extension, even an empty object is valid"
777780
R"""({})""",
778781
// "By default, providing additional properties is valid"
779782
// 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"})""",
781784
// 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" })""",
783786
},
784787
// Failing strings
785788
{

0 commit comments

Comments
 (0)