| #include "tests.h" |
|
|
| #include "json-schema-to-grammar.h" |
|
|
| #include <regex> |
|
|
| static std::string trim_leading_space(const std::string & s) { |
| static const std::regex leading_ws_re = std::regex(R"((^|\n)\s+)"); |
| return std::regex_replace(s, leading_ws_re, "$1"); |
| } |
|
|
| static void assert_gbnf_equal(testing & t, const std::string & expected, const std::string & actual) { |
| t.assert_equal("gbnf are equal", trim_leading_space(expected), trim_leading_space(actual)); |
| } |
|
|
| void test_gbnf_generation(testing &t) { |
| t.test("literal grammar generation", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("char class grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.chars("[a-z]", 1, 1); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= [a-z] |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("sequence grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello") + p.literal(" ") + p.literal("world"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello" " " "world" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("choice grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("cat") | p.literal("dog"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "cat" | "dog" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("one_or_more grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.one_or_more(p.literal("a")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a"+ |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("zero_or_more grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.zero_or_more(p.literal("a")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a"* |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("optional grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello") + p.optional(p.literal(" world")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello" " world"? |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("until grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.until("</tag>"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= until-0 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| until-0 ::= | [<] until-0-01 | [^<] until-0 |
| until-0-01 ::= | [<] until-0-01 | [/] until-0-02 | [^/<] until-0 |
| until-0-02 ::= | [<] until-0-01 | [t] until-0-03 | [^<t] until-0 |
| until-0-03 ::= | [<] until-0-01 | [a] until-0-04 | [^<a] until-0 |
| until-0-04 ::= | [<] until-0-01 | [g] until-0-05 | [^<g] until-0 |
| until-0-05 ::= | [<] until-0-01 | [^<>] until-0 |
| )""", gbnf); |
| }); |
|
|
| t.test("until grammar overlapping delimiter", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.until("\n</parameter>\n"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= until-0 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| until-0 ::= | [\n] until-0-01 | [^\n] until-0 |
| until-0-01 ::= | [\n] until-0-01 | [<] until-0-02 | [^\n<] until-0 |
| until-0-02 ::= | [\n] until-0-01 | [/] until-0-03 | [^\n/] until-0 |
| until-0-03 ::= | [\n] until-0-01 | [p] until-0-04 | [^\np] until-0 |
| until-0-04 ::= | [\n] until-0-01 | [a] until-0-05 | [^\na] until-0 |
| until-0-05 ::= | [\n] until-0-01 | [r] until-0-06 | [^\nr] until-0 |
| until-0-06 ::= | [\n] until-0-01 | [a] until-0-07 | [^\na] until-0 |
| until-0-07 ::= | [\n] until-0-01 | [m] until-0-08 | [^\nm] until-0 |
| until-0-08 ::= | [\n] until-0-01 | [e] until-0-09 | [^\ne] until-0 |
| until-0-09 ::= | [\n] until-0-01 | [t] until-0-10 | [^\nt] until-0 |
| until-0-10 ::= | [\n] until-0-01 | [e] until-0-11 | [^\ne] until-0 |
| until-0-11 ::= | [\n] until-0-01 | [r] until-0-12 | [^\nr] until-0 |
| until-0-12 ::= | [\n] until-0-01 | [>] until-0-13 | [^\n>] until-0 |
| until-0-13 ::= | [^\n] until-0 |
| )""", gbnf); |
| }); |
|
|
| |
| |
| t.test("until grammar unicode delimiter", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.until("<|DSML|"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= until-0 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| until-0 ::= | [<] until-0-01 | [^<] until-0 |
| until-0-01 ::= | [<] until-0-01 | [\uFF5C] until-0-02 | [^<\uFF5C] until-0 |
| until-0-02 ::= | [<] until-0-01 | [D] until-0-03 | [^<D] until-0 |
| until-0-03 ::= | [<] until-0-01 | [S] until-0-04 | [^<S] until-0 |
| until-0-04 ::= | [<] until-0-01 | [M] until-0-05 | [^<M] until-0 |
| until-0-05 ::= | [<] until-0-01 | [L] until-0-06 | [^<L] until-0 |
| until-0-06 ::= | [<] until-0-01 | [^<\uFF5C] until-0 |
| )""", gbnf); |
| }); |
|
|
| t.test("until grammar multiple delimiters", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.until_one_of({"ab", "cd", "ef"}); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= until-0 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| until-0 ::= | [a] until-0-01 | [c] until-0-03 | [e] until-0-05 | [^ace] until-0 |
| until-0-01 ::= | [a] until-0-01 | [c] until-0-03 | [e] until-0-05 | [^abce] until-0 |
| until-0-03 ::= | [a] until-0-01 | [c] until-0-03 | [e] until-0-05 | [^acde] until-0 |
| until-0-05 ::= | [a] until-0-01 | [c] until-0-03 | [e] until-0-05 | [^acef] until-0 |
| )""", gbnf); |
| }); |
|
|
| t.test("ac grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.ac(p.until("</tag>") + p.literal("</tag>"), "</tag>"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| ac-3 ::= [<] ac-3-01 | [^<] ac-3 |
| ac-3-01 ::= [<] ac-3-01 | [/] ac-3-02 | [^/<] ac-3 |
| ac-3-02 ::= [<] ac-3-01 | [t] ac-3-03 | [^<t] ac-3 |
| ac-3-03 ::= [<] ac-3-01 | [a] ac-3-04 | [^<a] ac-3 |
| ac-3-04 ::= [<] ac-3-01 | [g] ac-3-05 | [^<g] ac-3 |
| ac-3-05 ::= [>] | [<] ac-3-01 | [^<>] ac-3 |
| root ::= ac-3 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("ac grammar terminates at first delimiter", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.ac(p.until("\n</parameter>\n") + p.literal("\n</parameter>\n"), "\n</parameter>\n"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| ac-3 ::= [\n] ac-3-01 | [^\n] ac-3 |
| ac-3-01 ::= [\n] ac-3-01 | [<] ac-3-02 | [^\n<] ac-3 |
| ac-3-02 ::= [\n] ac-3-01 | [/] ac-3-03 | [^\n/] ac-3 |
| ac-3-03 ::= [\n] ac-3-01 | [p] ac-3-04 | [^\np] ac-3 |
| ac-3-04 ::= [\n] ac-3-01 | [a] ac-3-05 | [^\na] ac-3 |
| ac-3-05 ::= [\n] ac-3-01 | [r] ac-3-06 | [^\nr] ac-3 |
| ac-3-06 ::= [\n] ac-3-01 | [a] ac-3-07 | [^\na] ac-3 |
| ac-3-07 ::= [\n] ac-3-01 | [m] ac-3-08 | [^\nm] ac-3 |
| ac-3-08 ::= [\n] ac-3-01 | [e] ac-3-09 | [^\ne] ac-3 |
| ac-3-09 ::= [\n] ac-3-01 | [t] ac-3-10 | [^\nt] ac-3 |
| ac-3-10 ::= [\n] ac-3-01 | [e] ac-3-11 | [^\ne] ac-3 |
| ac-3-11 ::= [\n] ac-3-01 | [r] ac-3-12 | [^\nr] ac-3 |
| ac-3-12 ::= [\n] ac-3-01 | [>] ac-3-13 | [^\n>] ac-3 |
| ac-3-13 ::= [\n] | [^\n] ac-3 |
| root ::= ac-3 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("ac grammar multiple delimiters", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.ac(p.eps(), std::vector<std::string>{"ab", "cd", "ef"}); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| ac-1 ::= [a] ac-1-01 | [c] ac-1-03 | [e] ac-1-05 | [^ace] ac-1 |
| ac-1-01 ::= [b] | [a] ac-1-01 | [c] ac-1-03 | [e] ac-1-05 | [^abce] ac-1 |
| ac-1-03 ::= [d] | [a] ac-1-01 | [c] ac-1-03 | [e] ac-1-05 | [^acde] ac-1 |
| ac-1-05 ::= [f] | [a] ac-1-01 | [c] ac-1-03 | [e] ac-1-05 | [^acef] ac-1 |
| root ::= ac-1 |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("complex expressions with parentheses", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.one_or_more(p.literal("a") | p.literal("b")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= ("a" | "b")+ |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("rule references", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| auto digit = p.rule("digit", p.chars("[0-9]", 1, 1)); |
| return p.one_or_more(digit); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| digit ::= [0-9] |
| root ::= digit+ |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("escaping in literals", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello\nworld\n!"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello\nworld\n!" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("operator<< (whitespace insertion)", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello") << p.literal("world"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello" space "world" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("emit only reachable rules", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| p.rule("orphan", p.literal("orphan")); |
| return p.literal("hello") + p.rule("child", p.literal(" world")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| child ::= " world" |
| root ::= "hello" child |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("tagged choice inside sequence gets parenthesized", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("a") + p.tag("t", p.literal("b") | p.literal("c")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a" ("b" | "c") |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("tagged sequence inside choice gets parenthesized", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.tag("t", p.literal("a") + p.literal("b")) | p.literal("c"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a" "b" | "c" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("atomic choice inside repetition gets parenthesized", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.one_or_more(p.atomic(p.literal("a") | p.literal("b"))); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= ("a" | "b")+ |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("silent parser emits nothing in gbnf", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("hello") + p.gbnf(p.literal("world"), ""); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "hello" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("silent choice inside sequence emits nothing", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("a") + p.gbnf(p.literal("b") | p.literal("c"), "") + p.literal("d"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a" "d" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("silent wrapped in tag emits nothing", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("a") + p.tag("t", p.gbnf(p.literal("b"), "")); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("gbnf parser emits custom grammar", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("a") + p.gbnf(p.literal("b"), "[a-z]+"); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "a" [a-z]+ |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("nested transparent wrappers get parenthesized", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| return p.literal("x") + p.tag("outer", p.atomic(p.literal("a") | p.literal("b"))); |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= "x" ("a" | "b") |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
| }); |
|
|
| t.test("emit only trigger rules (and references)", [](testing &t) { |
| auto parser = build_peg_parser([](common_peg_parser_builder & p) { |
| auto rule1 = p.rule("rule-1", p.literal("a") + p.ref("rule-2")); |
| p.rule("rule-2", p.literal("b") + p.ref("rule-3"), true); |
| p.rule("rule-3", p.literal("c") + p.ref("rule-4")); |
| p.rule("rule-4", p.literal("d"), true); |
| return rule1; |
| }); |
|
|
| auto gbnf = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= rule-1 |
| rule-1 ::= "a" rule-2 |
| rule-2 ::= "b" rule-3 |
| rule-3 ::= "c" rule-4 |
| rule-4 ::= "d" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf); |
|
|
| auto gbnf_lazy = build_grammar([&](const common_grammar_builder & builder) { |
| parser.build_grammar(builder, true); |
| }); |
|
|
| assert_gbnf_equal(t, R"""( |
| root ::= rule-2 | rule-4 |
| rule-2 ::= "b" rule-3 |
| rule-3 ::= "c" rule-4 |
| rule-4 ::= "d" |
| space ::= | " " | "\n"{1,2} [ \t]{0,20} |
| )""", gbnf_lazy); |
| }); |
| } |
|
|