cucumber-cucumber-expressions 10.3.0 → 11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/.rsync +1 -0
  3. data/VERSION +1 -1
  4. data/cucumber-cucumber-expressions.gemspec +1 -1
  5. data/examples.txt +5 -1
  6. data/lib/cucumber/cucumber_expressions/ast.rb +201 -0
  7. data/lib/cucumber/cucumber_expressions/cucumber_expression.rb +80 -76
  8. data/lib/cucumber/cucumber_expressions/cucumber_expression_generator.rb +4 -8
  9. data/lib/cucumber/cucumber_expressions/cucumber_expression_parser.rb +219 -0
  10. data/lib/cucumber/cucumber_expressions/cucumber_expression_tokenizer.rb +95 -0
  11. data/lib/cucumber/cucumber_expressions/errors.rb +175 -4
  12. data/lib/cucumber/cucumber_expressions/parameter_type.rb +12 -7
  13. data/spec/cucumber/cucumber_expressions/cucumber_expression_parser_spec.rb +24 -0
  14. data/spec/cucumber/cucumber_expressions/cucumber_expression_spec.rb +62 -140
  15. data/spec/cucumber/cucumber_expressions/cucumber_expression_tokenizer_spec.rb +24 -0
  16. data/spec/cucumber/cucumber_expressions/custom_parameter_type_spec.rb +1 -1
  17. data/spec/cucumber/cucumber_expressions/expression_examples_spec.rb +1 -1
  18. data/spec/cucumber/cucumber_expressions/expression_factory_spec.rb +0 -4
  19. data/testdata/ast/alternation-followed-by-optional.yaml +17 -0
  20. data/testdata/ast/alternation-phrase.yaml +16 -0
  21. data/testdata/ast/alternation-with-parameter.yaml +27 -0
  22. data/testdata/ast/alternation-with-unused-end-optional.yaml +15 -0
  23. data/testdata/ast/alternation-with-unused-start-optional.yaml +8 -0
  24. data/testdata/ast/alternation-with-white-space.yaml +12 -0
  25. data/testdata/ast/alternation.yaml +12 -0
  26. data/testdata/ast/anonymous-parameter.yaml +5 -0
  27. data/testdata/ast/closing-brace.yaml +5 -0
  28. data/testdata/ast/closing-parenthesis.yaml +5 -0
  29. data/testdata/ast/empty-alternation.yaml +8 -0
  30. data/testdata/ast/empty-alternations.yaml +9 -0
  31. data/testdata/ast/empty-string.yaml +3 -0
  32. data/testdata/ast/escaped-alternation.yaml +5 -0
  33. data/testdata/ast/escaped-backslash.yaml +5 -0
  34. data/testdata/ast/escaped-opening-parenthesis.yaml +5 -0
  35. data/testdata/ast/escaped-optional-followed-by-optional.yaml +15 -0
  36. data/testdata/ast/escaped-optional-phrase.yaml +10 -0
  37. data/testdata/ast/escaped-optional.yaml +7 -0
  38. data/testdata/ast/opening-brace.yaml +8 -0
  39. data/testdata/ast/opening-parenthesis.yaml +8 -0
  40. data/testdata/ast/optional-containing-nested-optional.yaml +15 -0
  41. data/testdata/ast/optional-phrase.yaml +12 -0
  42. data/testdata/ast/optional.yaml +7 -0
  43. data/testdata/ast/parameter.yaml +7 -0
  44. data/testdata/ast/phrase.yaml +9 -0
  45. data/testdata/ast/unfinished-parameter.yaml +8 -0
  46. data/testdata/expression/allows-escaped-optional-parameter-types.yaml +4 -0
  47. data/testdata/expression/allows-parameter-type-in-alternation-1.yaml +4 -0
  48. data/testdata/expression/allows-parameter-type-in-alternation-2.yaml +4 -0
  49. data/testdata/expression/does-allow-parameter-adjacent-to-alternation.yaml +5 -0
  50. data/testdata/expression/does-not-allow-alternation-in-optional.yaml +9 -0
  51. data/testdata/expression/does-not-allow-alternation-with-empty-alternative-by-adjacent-left-parameter.yaml +10 -0
  52. data/testdata/expression/does-not-allow-alternation-with-empty-alternative-by-adjacent-optional.yaml +9 -0
  53. data/testdata/expression/does-not-allow-alternation-with-empty-alternative-by-adjacent-right-parameter.yaml +9 -0
  54. data/testdata/expression/does-not-allow-alternation-with-empty-alternative.yaml +9 -0
  55. data/testdata/expression/does-not-allow-empty-optional.yaml +9 -0
  56. data/testdata/expression/does-not-allow-nested-optional.yaml +8 -0
  57. data/testdata/expression/does-not-allow-optional-parameter-types.yaml +9 -0
  58. data/testdata/expression/does-not-allow-parameter-name-with-reserved-characters.yaml +10 -0
  59. data/testdata/expression/does-not-allow-unfinished-parenthesis-1.yaml +8 -0
  60. data/testdata/expression/does-not-allow-unfinished-parenthesis-2.yaml +8 -0
  61. data/testdata/expression/does-not-allow-unfinished-parenthesis-3.yaml +8 -0
  62. data/testdata/expression/does-not-match-misquoted-string.yaml +4 -0
  63. data/testdata/expression/doesnt-match-float-as-int.yaml +5 -0
  64. data/testdata/expression/matches-alternation.yaml +4 -0
  65. data/testdata/expression/matches-anonymous-parameter-type.yaml +5 -0
  66. data/testdata/expression/matches-double-quoted-empty-string-as-empty-string-along-with-other-strings.yaml +4 -0
  67. data/testdata/expression/matches-double-quoted-empty-string-as-empty-string.yaml +4 -0
  68. data/testdata/expression/matches-double-quoted-string-with-escaped-double-quote.yaml +4 -0
  69. data/testdata/expression/matches-double-quoted-string-with-single-quotes.yaml +4 -0
  70. data/testdata/expression/matches-double-quoted-string.yaml +4 -0
  71. data/testdata/expression/matches-doubly-escaped-parenthesis.yaml +4 -0
  72. data/testdata/expression/matches-doubly-escaped-slash-1.yaml +4 -0
  73. data/testdata/expression/matches-doubly-escaped-slash-2.yaml +4 -0
  74. data/testdata/expression/matches-escaped-parenthesis-1.yaml +4 -0
  75. data/testdata/expression/matches-escaped-parenthesis-2.yaml +4 -0
  76. data/testdata/expression/matches-escaped-parenthesis-3.yaml +4 -0
  77. data/testdata/expression/matches-escaped-slash.yaml +4 -0
  78. data/testdata/expression/matches-float-1.yaml +5 -0
  79. data/testdata/expression/matches-float-2.yaml +5 -0
  80. data/testdata/expression/matches-int.yaml +5 -0
  81. data/testdata/expression/matches-multiple-double-quoted-strings.yaml +4 -0
  82. data/testdata/expression/matches-multiple-single-quoted-strings.yaml +4 -0
  83. data/testdata/expression/matches-optional-before-alternation-1.yaml +4 -0
  84. data/testdata/expression/matches-optional-before-alternation-2.yaml +4 -0
  85. data/testdata/expression/matches-optional-before-alternation-with-regex-characters-1.yaml +4 -0
  86. data/testdata/expression/matches-optional-before-alternation-with-regex-characters-2.yaml +4 -0
  87. data/testdata/expression/matches-optional-in-alternation-1.yaml +5 -0
  88. data/testdata/expression/matches-optional-in-alternation-2.yaml +5 -0
  89. data/testdata/expression/matches-optional-in-alternation-3.yaml +5 -0
  90. data/testdata/expression/matches-single-quoted-empty-string-as-empty-string-along-with-other-strings.yaml +4 -0
  91. data/testdata/expression/matches-single-quoted-empty-string-as-empty-string.yaml +4 -0
  92. data/testdata/expression/matches-single-quoted-string-with-double-quotes.yaml +4 -0
  93. data/testdata/expression/matches-single-quoted-string-with-escaped-single-quote.yaml +4 -0
  94. data/testdata/expression/matches-single-quoted-string.yaml +4 -0
  95. data/testdata/expression/matches-word.yaml +4 -0
  96. data/testdata/expression/throws-unknown-parameter-type.yaml +10 -0
  97. data/testdata/regex/alternation-with-optional.yaml +2 -0
  98. data/testdata/regex/alternation.yaml +2 -0
  99. data/testdata/regex/empty.yaml +2 -0
  100. data/testdata/regex/escape-regex-characters.yaml +2 -0
  101. data/testdata/regex/optional.yaml +2 -0
  102. data/testdata/regex/parameter.yaml +2 -0
  103. data/testdata/regex/text.yaml +2 -0
  104. data/testdata/regex/unicode.yaml +2 -0
  105. data/testdata/tokens/alternation-phrase.yaml +13 -0
  106. data/testdata/tokens/alternation.yaml +9 -0
  107. data/testdata/tokens/empty-string.yaml +6 -0
  108. data/testdata/tokens/escape-non-reserved-character.yaml +8 -0
  109. data/testdata/tokens/escaped-alternation.yaml +9 -0
  110. data/testdata/tokens/escaped-char-has-start-index-of-text-token.yaml +9 -0
  111. data/testdata/tokens/escaped-end-of-line.yaml +8 -0
  112. data/testdata/tokens/escaped-optional.yaml +7 -0
  113. data/testdata/tokens/escaped-parameter.yaml +7 -0
  114. data/testdata/tokens/escaped-space.yaml +7 -0
  115. data/testdata/tokens/optional-phrase.yaml +13 -0
  116. data/testdata/tokens/optional.yaml +9 -0
  117. data/testdata/tokens/parameter-phrase.yaml +13 -0
  118. data/testdata/tokens/parameter.yaml +9 -0
  119. data/testdata/tokens/phrase.yaml +11 -0
  120. metadata +115 -9
  121. data/spec/cucumber/cucumber_expressions/cucumber_expression_regexp_spec.rb +0 -57
@@ -0,0 +1,15 @@
1
+ expression: three )blind\ mice/rats
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 23, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
5
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
6
+ {"type": "ALTERNATION_NODE", "start": 6, "end": 23, "nodes": [
7
+ {"type": "ALTERNATIVE_NODE", "start": 6, "end": 18, "nodes": [
8
+ {"type": "TEXT_NODE", "start": 6, "end": 7, "token": ")"},
9
+ {"type": "TEXT_NODE", "start": 7, "end": 18, "token": "blind mice"}
10
+ ]},
11
+ {"type": "ALTERNATIVE_NODE", "start": 19, "end": 23, "nodes": [
12
+ {"type": "TEXT_NODE", "start": 19, "end": 23, "token": "rats"}
13
+ ]}
14
+ ]}
15
+ ]}
@@ -0,0 +1,8 @@
1
+ expression: three blind\ mice/rats(
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 23:
4
+
5
+ three blind\ mice/rats(
6
+ ^
7
+ The '(' does not have a matching ')'.
8
+ If you did not intend to use optional text you can use '\(' to escape the optional text
@@ -0,0 +1,12 @@
1
+ expression: '\ three\ hungry/blind\ mice\ '
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 29, "nodes": [
4
+ {"type": "ALTERNATION_NODE", "start": 0, "end": 29, "nodes": [
5
+ {"type": "ALTERNATIVE_NODE", "start": 0, "end": 15, "nodes": [
6
+ {"type": "TEXT_NODE", "start": 0, "end": 15, "token": " three hungry"}
7
+ ]},
8
+ {"type": "ALTERNATIVE_NODE", "start": 16, "end": 29, "nodes": [
9
+ {"type": "TEXT_NODE", "start": 16, "end": 29, "token": "blind mice "}
10
+ ]}
11
+ ]}
12
+ ]}
@@ -0,0 +1,12 @@
1
+ expression: mice/rats
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 9, "nodes": [
4
+ {"type": "ALTERNATION_NODE", "start": 0, "end": 9, "nodes": [
5
+ {"type": "ALTERNATIVE_NODE", "start": 0, "end": 4, "nodes": [
6
+ {"type": "TEXT_NODE", "start": 0, "end": 4, "token": "mice"}
7
+ ]},
8
+ {"type": "ALTERNATIVE_NODE", "start": 5, "end": 9, "nodes": [
9
+ {"type": "TEXT_NODE", "start": 5, "end": 9, "token": "rats"}
10
+ ]}
11
+ ]}
12
+ ]}
@@ -0,0 +1,5 @@
1
+ expression: "{}"
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 2, "nodes": [
4
+ {"type": "PARAMETER_NODE", "start": 0, "end": 2, "nodes": []}
5
+ ]}
@@ -0,0 +1,5 @@
1
+ expression: "}"
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 1, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 1, "token": "}"}
5
+ ]}
@@ -0,0 +1,5 @@
1
+ expression: )
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 1, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 1, "token": ")"}
5
+ ]}
@@ -0,0 +1,8 @@
1
+ expression: /
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 1, "nodes": [
4
+ {"type": "ALTERNATION_NODE", "start": 0, "end": 1, "nodes": [
5
+ {"type": "ALTERNATIVE_NODE", "start": 0, "end": 0, "nodes": []},
6
+ {"type": "ALTERNATIVE_NODE", "start": 1, "end": 1, "nodes": []}
7
+ ]}
8
+ ]}
@@ -0,0 +1,9 @@
1
+ expression: '//'
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 2, "nodes": [
4
+ {"type": "ALTERNATION_NODE", "start": 0, "end": 2, "nodes": [
5
+ {"type": "ALTERNATIVE_NODE", "start": 0, "end": 0, "nodes": []},
6
+ {"type": "ALTERNATIVE_NODE", "start": 1, "end": 1, "nodes": []},
7
+ {"type": "ALTERNATIVE_NODE", "start": 2, "end": 2, "nodes": []}
8
+ ]}
9
+ ]}
@@ -0,0 +1,3 @@
1
+ expression: ""
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 0, "nodes": []}
@@ -0,0 +1,5 @@
1
+ expression: 'mice\/rats'
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 10, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 10, "token": "mice/rats"}
5
+ ]}
@@ -0,0 +1,5 @@
1
+ expression: '\\'
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 2, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 2, "token": "\\"}
5
+ ]}
@@ -0,0 +1,5 @@
1
+ expression: '\('
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 2, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 2, "token": "("}
5
+ ]}
@@ -0,0 +1,15 @@
1
+ expression: three \((very) blind) mice
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 26, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
5
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
6
+ {"type": "TEXT_NODE", "start": 6, "end": 8, "token": "("},
7
+ {"type": "OPTIONAL_NODE", "start": 8, "end": 14, "nodes": [
8
+ {"type": "TEXT_NODE", "start": 9, "end": 13, "token": "very"}
9
+ ]},
10
+ {"type": "TEXT_NODE", "start": 14, "end": 15, "token": " "},
11
+ {"type": "TEXT_NODE", "start": 15, "end": 20, "token": "blind"},
12
+ {"type": "TEXT_NODE", "start": 20, "end": 21, "token": ")"},
13
+ {"type": "TEXT_NODE", "start": 21, "end": 22, "token": " "},
14
+ {"type": "TEXT_NODE", "start": 22, "end": 26, "token": "mice"}
15
+ ]}
@@ -0,0 +1,10 @@
1
+ expression: three \(blind) mice
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 19, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
5
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
6
+ {"type": "TEXT_NODE", "start": 6, "end": 13, "token": "(blind"},
7
+ {"type": "TEXT_NODE", "start": 13, "end": 14, "token": ")"},
8
+ {"type": "TEXT_NODE", "start": 14, "end": 15, "token": " "},
9
+ {"type": "TEXT_NODE", "start": 15, "end": 19, "token": "mice"}
10
+ ]}
@@ -0,0 +1,7 @@
1
+ expression: '\(blind)'
2
+
3
+ expected: |-
4
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 8, "nodes": [
5
+ {"type": "TEXT_NODE", "start": 0, "end": 7, "token": "(blind"},
6
+ {"type": "TEXT_NODE", "start": 7, "end": 8, "token": ")"}
7
+ ]}
@@ -0,0 +1,8 @@
1
+ expression: '{'
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 1:
4
+
5
+ {
6
+ ^
7
+ The '{' does not have a matching '}'.
8
+ If you did not intend to use a parameter you can use '\{' to escape the a parameter
@@ -0,0 +1,8 @@
1
+ expression: (
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 1:
4
+
5
+ (
6
+ ^
7
+ The '(' does not have a matching ')'.
8
+ If you did not intend to use optional text you can use '\(' to escape the optional text
@@ -0,0 +1,15 @@
1
+ expression: three ((very) blind) mice
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 25, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
5
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
6
+ {"type": "OPTIONAL_NODE", "start": 6, "end": 20, "nodes": [
7
+ {"type": "OPTIONAL_NODE", "start": 7, "end": 13, "nodes": [
8
+ {"type": "TEXT_NODE", "start": 8, "end": 12, "token": "very"}
9
+ ]},
10
+ {"type": "TEXT_NODE", "start": 13, "end": 14, "token": " "},
11
+ {"type": "TEXT_NODE", "start": 14, "end": 19, "token": "blind"}
12
+ ]},
13
+ {"type": "TEXT_NODE", "start": 20, "end": 21, "token": " "},
14
+ {"type": "TEXT_NODE", "start": 21, "end": 25, "token": "mice"}
15
+ ]}
@@ -0,0 +1,12 @@
1
+ expression: three (blind) mice
2
+
3
+ expected: |-
4
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 18, "nodes": [
5
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
6
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
7
+ {"type": "OPTIONAL_NODE", "start": 6, "end": 13, "nodes": [
8
+ {"type": "TEXT_NODE", "start": 7, "end": 12, "token": "blind"}
9
+ ]},
10
+ {"type": "TEXT_NODE", "start": 13, "end": 14, "token": " "},
11
+ {"type": "TEXT_NODE", "start": 14, "end": 18, "token": "mice"}
12
+ ]}
@@ -0,0 +1,7 @@
1
+ expression: (blind)
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 7, "nodes": [
4
+ {"type": "OPTIONAL_NODE", "start": 0, "end": 7, "nodes": [
5
+ {"type": "TEXT_NODE", "start": 1, "end": 6, "token": "blind"}
6
+ ]}
7
+ ]}
@@ -0,0 +1,7 @@
1
+ expression: "{string}"
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 8, "nodes": [
4
+ {"type": "PARAMETER_NODE", "start": 0, "end": 8, "nodes": [
5
+ {"type": "TEXT_NODE", "start": 1, "end": 7, "token": "string"}
6
+ ]}
7
+ ]}
@@ -0,0 +1,9 @@
1
+ expression: three blind mice
2
+ expected: |-
3
+ {"type": "EXPRESSION_NODE", "start": 0, "end": 16, "nodes": [
4
+ {"type": "TEXT_NODE", "start": 0, "end": 5, "token": "three"},
5
+ {"type": "TEXT_NODE", "start": 5, "end": 6, "token": " "},
6
+ {"type": "TEXT_NODE", "start": 6, "end": 11, "token": "blind"},
7
+ {"type": "TEXT_NODE", "start": 11, "end": 12, "token": " "},
8
+ {"type": "TEXT_NODE", "start": 12, "end": 16, "token": "mice"}
9
+ ]}
@@ -0,0 +1,8 @@
1
+ expression: "{string"
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 1:
4
+
5
+ {string
6
+ ^
7
+ The '{' does not have a matching '}'.
8
+ If you did not intend to use a parameter you can use '\{' to escape the a parameter
@@ -0,0 +1,4 @@
1
+ expression: \({int})
2
+ text: (3)
3
+ expected: |-
4
+ [3]
@@ -0,0 +1,4 @@
1
+ expression: a/i{int}n/y
2
+ text: i18n
3
+ expected: |-
4
+ [18]
@@ -0,0 +1,4 @@
1
+ expression: a/i{int}n/y
2
+ text: a11y
3
+ expected: |-
4
+ [11]
@@ -0,0 +1,5 @@
1
+ expression: |-
2
+ {int}st/nd/rd/th
3
+ text: 3rd
4
+ expected: |-
5
+ [3]
@@ -0,0 +1,9 @@
1
+ expression: three( brown/black) mice
2
+ text: three brown/black mice
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 13:
5
+
6
+ three( brown/black) mice
7
+ ^
8
+ An alternation can not be used inside an optional.
9
+ You can use '\/' to escape the the '/'
@@ -0,0 +1,10 @@
1
+ expression: |-
2
+ {int}/x
3
+ text: '3'
4
+ exception: |-
5
+ This Cucumber Expression has a problem at column 6:
6
+
7
+ {int}/x
8
+ ^
9
+ Alternative may not be empty.
10
+ If you did not mean to use an alternative you can use '\/' to escape the the '/'
@@ -0,0 +1,9 @@
1
+ expression: three (brown)/black mice
2
+ text: three brown mice
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 7:
5
+
6
+ three (brown)/black mice
7
+ ^-----^
8
+ An alternative may not exclusively contain optionals.
9
+ If you did not mean to use an optional you can use '\(' to escape the the '('
@@ -0,0 +1,9 @@
1
+ expression: x/{int}
2
+ text: '3'
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 3:
5
+
6
+ x/{int}
7
+ ^
8
+ Alternative may not be empty.
9
+ If you did not mean to use an alternative you can use '\/' to escape the the '/'
@@ -0,0 +1,9 @@
1
+ expression: three brown//black mice
2
+ text: three brown mice
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 13:
5
+
6
+ three brown//black mice
7
+ ^
8
+ Alternative may not be empty.
9
+ If you did not mean to use an alternative you can use '\/' to escape the the '/'
@@ -0,0 +1,9 @@
1
+ expression: three () mice
2
+ text: three brown mice
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 7:
5
+
6
+ three () mice
7
+ ^^
8
+ An optional must contain some text.
9
+ If you did not mean to use an optional you can use '\(' to escape the the '('
@@ -0,0 +1,8 @@
1
+ expression: "(a(b))"
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 3:
4
+
5
+ (a(b))
6
+ ^-^
7
+ An optional may not contain an other optional.
8
+ If you did not mean to use an optional type you can use '\(' to escape the the '('. For more complicated expressions consider using a regular expression instead.
@@ -0,0 +1,9 @@
1
+ expression: ({int})
2
+ text: '3'
3
+ exception: |-
4
+ This Cucumber Expression has a problem at column 2:
5
+
6
+ ({int})
7
+ ^---^
8
+ An optional may not contain a parameter type.
9
+ If you did not mean to use an parameter type you can use '\{' to escape the the '{'
@@ -0,0 +1,10 @@
1
+ expression: |-
2
+ {(string)}
3
+ text: something
4
+ exception: |-
5
+ This Cucumber Expression has a problem at column 2:
6
+
7
+ {(string)}
8
+ ^
9
+ Parameter names may not contain '{', '}', '(', ')', '\' or '/'.
10
+ Did you mean to use a regular expression?
@@ -0,0 +1,8 @@
1
+ expression: three (exceptionally\) {string\} mice
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 24:
4
+
5
+ three (exceptionally\) {string\} mice
6
+ ^
7
+ The '{' does not have a matching '}'.
8
+ If you did not intend to use a parameter you can use '\{' to escape the a parameter
@@ -0,0 +1,8 @@
1
+ expression: three (exceptionally\) {string} mice
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 7:
4
+
5
+ three (exceptionally\) {string} mice
6
+ ^
7
+ The '(' does not have a matching ')'.
8
+ If you did not intend to use optional text you can use '\(' to escape the optional text
@@ -0,0 +1,8 @@
1
+ expression: three ((exceptionally\) strong) mice
2
+ exception: |-
3
+ This Cucumber Expression has a problem at column 7:
4
+
5
+ three ((exceptionally\) strong) mice
6
+ ^
7
+ The '(' does not have a matching ')'.
8
+ If you did not intend to use optional text you can use '\(' to escape the optional text
@@ -0,0 +1,4 @@
1
+ expression: three {string} mice
2
+ text: three "blind' mice
3
+ expected: |-
4
+ null
@@ -0,0 +1,5 @@
1
+ expression: |-
2
+ {int}
3
+ text: '1.22'
4
+ expected: |-
5
+ null
@@ -0,0 +1,4 @@
1
+ expression: mice/rats and rats\/mice
2
+ text: rats and rats/mice
3
+ expected: |-
4
+ []
@@ -0,0 +1,5 @@
1
+ expression: |-
2
+ {}
3
+ text: '0.22'
4
+ expected: |-
5
+ ["0.22"]
@@ -0,0 +1,4 @@
1
+ expression: three {string} and {string} mice
2
+ text: three "" and "handsome" mice
3
+ expected: |-
4
+ ["","handsome"]
@@ -0,0 +1,4 @@
1
+ expression: three {string} mice
2
+ text: three "" mice
3
+ expected: |-
4
+ [""]
@@ -0,0 +1,4 @@
1
+ expression: three {string} mice
2
+ text: three "bl\"nd" mice
3
+ expected: |-
4
+ ["bl\"nd"]
@@ -0,0 +1,4 @@
1
+ expression: three {string} mice
2
+ text: three "'blind'" mice
3
+ expected: |-
4
+ ["'blind'"]