benhamill-gherkin 2.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitattributes +2 -0
- data/.gitignore +11 -0
- data/.mailmap +2 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/Gemfile +7 -0
- data/History.txt +363 -0
- data/LICENSE +20 -0
- data/README.rdoc +149 -0
- data/Rakefile +19 -0
- data/VERSION +1 -0
- data/build_native_gems.sh +8 -0
- data/cucumber.yml +3 -0
- data/features/escaped_pipes.feature +8 -0
- data/features/feature_parser.feature +237 -0
- data/features/json_formatter.feature +377 -0
- data/features/json_parser.feature +318 -0
- data/features/native_lexer.feature +19 -0
- data/features/parser_with_native_lexer.feature +205 -0
- data/features/pretty_formatter.feature +15 -0
- data/features/step_definitions/eyeball_steps.rb +3 -0
- data/features/step_definitions/gherkin_steps.rb +29 -0
- data/features/step_definitions/json_formatter_steps.rb +28 -0
- data/features/step_definitions/json_parser_steps.rb +20 -0
- data/features/step_definitions/pretty_formatter_steps.rb +84 -0
- data/features/steps_parser.feature +46 -0
- data/features/support/env.rb +38 -0
- data/gherkin.gemspec +61 -0
- data/ikvm/.gitignore +3 -0
- data/java/.gitignore +5 -0
- data/java/src/main/java/gherkin/lexer/i18n/.gitignore +1 -0
- data/java/src/main/resources/gherkin/.gitignore +1 -0
- data/js/lib/gherkin/lexer/i18n/ar.js +1094 -0
- data/js/lib/gherkin/lexer/i18n/bg.js +1308 -0
- data/js/lib/gherkin/lexer/i18n/ca.js +1236 -0
- data/js/lib/gherkin/lexer/i18n/cs.js +1090 -0
- data/js/lib/gherkin/lexer/i18n/cy_gb.js +958 -0
- data/js/lib/gherkin/lexer/i18n/da.js +974 -0
- data/js/lib/gherkin/lexer/i18n/de.js +1082 -0
- data/js/lib/gherkin/lexer/i18n/en.js +965 -0
- data/js/lib/gherkin/lexer/i18n/en_au.js +902 -0
- data/js/lib/gherkin/lexer/i18n/en_lol.js +859 -0
- data/js/lib/gherkin/lexer/i18n/en_pirate.js +1136 -0
- data/js/lib/gherkin/lexer/i18n/en_scouse.js +1289 -0
- data/js/lib/gherkin/lexer/i18n/en_tx.js +942 -0
- data/js/lib/gherkin/lexer/i18n/eo.js +916 -0
- data/js/lib/gherkin/lexer/i18n/es.js +1049 -0
- data/js/lib/gherkin/lexer/i18n/et.js +915 -0
- data/js/lib/gherkin/lexer/i18n/fi.js +894 -0
- data/js/lib/gherkin/lexer/i18n/fr.js +1116 -0
- data/js/lib/gherkin/lexer/i18n/he.js +1044 -0
- data/js/lib/gherkin/lexer/i18n/hr.js +994 -0
- data/js/lib/gherkin/lexer/i18n/hu.js +1043 -0
- data/js/lib/gherkin/lexer/i18n/id.js +884 -0
- data/js/lib/gherkin/lexer/i18n/it.js +1007 -0
- data/js/lib/gherkin/lexer/i18n/ja.js +1344 -0
- data/js/lib/gherkin/lexer/i18n/ko.js +1028 -0
- data/js/lib/gherkin/lexer/i18n/lt.js +972 -0
- data/js/lib/gherkin/lexer/i18n/lu.js +1057 -0
- data/js/lib/gherkin/lexer/i18n/lv.js +1092 -0
- data/js/lib/gherkin/lexer/i18n/nl.js +1036 -0
- data/js/lib/gherkin/lexer/i18n/no.js +986 -0
- data/js/lib/gherkin/lexer/i18n/pl.js +1140 -0
- data/js/lib/gherkin/lexer/i18n/pt.js +1000 -0
- data/js/lib/gherkin/lexer/i18n/ro.js +1089 -0
- data/js/lib/gherkin/lexer/i18n/ru.js +1560 -0
- data/js/lib/gherkin/lexer/i18n/sk.js +972 -0
- data/js/lib/gherkin/lexer/i18n/sr_cyrl.js +1728 -0
- data/js/lib/gherkin/lexer/i18n/sr_latn.js +1220 -0
- data/js/lib/gherkin/lexer/i18n/sv.js +997 -0
- data/js/lib/gherkin/lexer/i18n/tr.js +1014 -0
- data/js/lib/gherkin/lexer/i18n/uk.js +1572 -0
- data/js/lib/gherkin/lexer/i18n/uz.js +1302 -0
- data/js/lib/gherkin/lexer/i18n/vi.js +1124 -0
- data/js/lib/gherkin/lexer/i18n/zh_cn.js +902 -0
- data/js/lib/gherkin/lexer/i18n/zh_tw.js +940 -0
- data/lib/.gitignore +4 -0
- data/lib/gherkin.rb +2 -0
- data/lib/gherkin/c_lexer.rb +17 -0
- data/lib/gherkin/formatter/ansi_escapes.rb +95 -0
- data/lib/gherkin/formatter/argument.rb +16 -0
- data/lib/gherkin/formatter/escaping.rb +15 -0
- data/lib/gherkin/formatter/filter_formatter.rb +136 -0
- data/lib/gherkin/formatter/hashable.rb +19 -0
- data/lib/gherkin/formatter/json_formatter.rb +102 -0
- data/lib/gherkin/formatter/line_filter.rb +26 -0
- data/lib/gherkin/formatter/model.rb +236 -0
- data/lib/gherkin/formatter/pretty_formatter.rb +243 -0
- data/lib/gherkin/formatter/regexp_filter.rb +21 -0
- data/lib/gherkin/formatter/step_printer.rb +17 -0
- data/lib/gherkin/formatter/tag_count_formatter.rb +47 -0
- data/lib/gherkin/formatter/tag_filter.rb +19 -0
- data/lib/gherkin/i18n.rb +175 -0
- data/lib/gherkin/i18n.yml +588 -0
- data/lib/gherkin/json_parser.rb +137 -0
- data/lib/gherkin/lexer/i18n_lexer.rb +47 -0
- data/lib/gherkin/listener/event.rb +45 -0
- data/lib/gherkin/listener/formatter_listener.rb +113 -0
- data/lib/gherkin/native.rb +7 -0
- data/lib/gherkin/native/ikvm.rb +55 -0
- data/lib/gherkin/native/java.rb +55 -0
- data/lib/gherkin/native/null.rb +9 -0
- data/lib/gherkin/parser/meta.txt +5 -0
- data/lib/gherkin/parser/parser.rb +164 -0
- data/lib/gherkin/parser/root.txt +11 -0
- data/lib/gherkin/parser/steps.txt +4 -0
- data/lib/gherkin/rb_lexer.rb +8 -0
- data/lib/gherkin/rb_lexer/.gitignore +1 -0
- data/lib/gherkin/rb_lexer/README.rdoc +8 -0
- data/lib/gherkin/rubify.rb +24 -0
- data/lib/gherkin/tag_expression.rb +62 -0
- data/lib/gherkin/version.rb +3 -0
- data/ragel/i18n/.gitignore +1 -0
- data/ragel/lexer.c.rl.erb +439 -0
- data/ragel/lexer.java.rl.erb +208 -0
- data/ragel/lexer.rb.rl.erb +167 -0
- data/ragel/lexer_common.rl.erb +50 -0
- data/spec/gherkin/c_lexer_spec.rb +21 -0
- data/spec/gherkin/fixtures/1.feature +8 -0
- data/spec/gherkin/fixtures/comments_in_table.feature +9 -0
- data/spec/gherkin/fixtures/complex.feature +45 -0
- data/spec/gherkin/fixtures/complex.json +143 -0
- data/spec/gherkin/fixtures/complex_for_filtering.feature +60 -0
- data/spec/gherkin/fixtures/complex_with_tags.feature +61 -0
- data/spec/gherkin/fixtures/dos_line_endings.feature +45 -0
- data/spec/gherkin/fixtures/hantu_pisang.feature +35 -0
- data/spec/gherkin/fixtures/i18n_fr.feature +14 -0
- data/spec/gherkin/fixtures/i18n_no.feature +7 -0
- data/spec/gherkin/fixtures/i18n_zh-CN.feature +9 -0
- data/spec/gherkin/fixtures/scenario_outline_with_tags.feature +13 -0
- data/spec/gherkin/fixtures/scenario_without_steps.feature +5 -0
- data/spec/gherkin/fixtures/simple_with_comments.feature +7 -0
- data/spec/gherkin/fixtures/simple_with_tags.feature +11 -0
- data/spec/gherkin/fixtures/with_bom.feature +3 -0
- data/spec/gherkin/formatter/ansi_escapes_spec.rb +19 -0
- data/spec/gherkin/formatter/filter_formatter_spec.rb +165 -0
- data/spec/gherkin/formatter/model_spec.rb +28 -0
- data/spec/gherkin/formatter/pretty_formatter_spec.rb +158 -0
- data/spec/gherkin/formatter/spaces.feature +9 -0
- data/spec/gherkin/formatter/step_printer_spec.rb +55 -0
- data/spec/gherkin/formatter/tabs.feature +9 -0
- data/spec/gherkin/formatter/tag_count_formatter_spec.rb +30 -0
- data/spec/gherkin/i18n_spec.rb +152 -0
- data/spec/gherkin/java_lexer_spec.rb +20 -0
- data/spec/gherkin/java_libs.rb +20 -0
- data/spec/gherkin/json_parser_spec.rb +113 -0
- data/spec/gherkin/lexer/i18n_lexer_spec.rb +43 -0
- data/spec/gherkin/output_stream_string_io.rb +20 -0
- data/spec/gherkin/parser/parser_spec.rb +16 -0
- data/spec/gherkin/rb_lexer_spec.rb +19 -0
- data/spec/gherkin/sexp_recorder.rb +56 -0
- data/spec/gherkin/shared/lexer_group.rb +593 -0
- data/spec/gherkin/shared/py_string_group.rb +153 -0
- data/spec/gherkin/shared/row_group.rb +125 -0
- data/spec/gherkin/shared/tags_group.rb +54 -0
- data/spec/gherkin/tag_expression_spec.rb +137 -0
- data/spec/spec_helper.rb +69 -0
- data/tasks/bench.rake +184 -0
- data/tasks/bench/feature_builder.rb +49 -0
- data/tasks/bench/generated/.gitignore +1 -0
- data/tasks/bench/null_listener.rb +4 -0
- data/tasks/compile.rake +102 -0
- data/tasks/cucumber.rake +20 -0
- data/tasks/gems.rake +35 -0
- data/tasks/ikvm.rake +79 -0
- data/tasks/ragel_task.rb +70 -0
- data/tasks/rdoc.rake +9 -0
- data/tasks/release.rake +30 -0
- data/tasks/rspec.rake +8 -0
- metadata +609 -0
@@ -0,0 +1,153 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
module Gherkin
|
5
|
+
module Lexer
|
6
|
+
shared_examples_for "a Gherkin lexer lexing py_strings" do
|
7
|
+
def scan(gherkin)
|
8
|
+
@lexer.scan(gherkin)
|
9
|
+
end
|
10
|
+
|
11
|
+
def ps(content)
|
12
|
+
'"""%s"""' % ("\n" + content + "\n")
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should provide the amount of indentation of the triple quotes to the listener" do
|
16
|
+
str = <<EOS
|
17
|
+
Feature: some feature
|
18
|
+
Scenario: some scenario
|
19
|
+
Given foo
|
20
|
+
"""
|
21
|
+
Hello
|
22
|
+
Goodbye
|
23
|
+
"""
|
24
|
+
Then bar
|
25
|
+
EOS
|
26
|
+
@listener.should_receive(:py_string).with(" Hello\nGoodbye", 4)
|
27
|
+
scan(str)
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should parse a simple py_string" do
|
31
|
+
@listener.should_receive(:py_string).with("I am a py_string", 1)
|
32
|
+
scan ps("I am a py_string")
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should parse an empty py_string" do
|
36
|
+
@listener.should_receive(:py_string).with("", 4)
|
37
|
+
scan("Feature: Hi\nScenario: Hi\nGiven a step\n\"\"\"\n\"\"\"")
|
38
|
+
end
|
39
|
+
|
40
|
+
it "should treat a string containing only newlines as only newlines" do
|
41
|
+
py_string = <<EOS
|
42
|
+
"""
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
"""
|
47
|
+
EOS
|
48
|
+
@listener.should_receive(:py_string).with("\n\n", 1)
|
49
|
+
scan(py_string)
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should parse content separated by two newlines" do
|
53
|
+
scan ps("A\n\nB")
|
54
|
+
@listener.to_sexp.should == [
|
55
|
+
[:py_string, "A\n\nB", 1],
|
56
|
+
[:eof]
|
57
|
+
]
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should parse a multiline string" do
|
61
|
+
@listener.should_receive(:py_string).with("A\nB\nC\nD", 1)
|
62
|
+
scan ps("A\nB\nC\nD")
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should ignore unescaped quotes inside the string delimeters" do
|
66
|
+
@listener.should_receive(:py_string).with("What does \"this\" mean?", 1)
|
67
|
+
scan ps('What does "this" mean?')
|
68
|
+
end
|
69
|
+
|
70
|
+
it "should preserve whitespace within the triple quotes" do
|
71
|
+
str = <<EOS
|
72
|
+
"""
|
73
|
+
Line one
|
74
|
+
Line two
|
75
|
+
"""
|
76
|
+
EOS
|
77
|
+
@listener.should_receive(:py_string).with(" Line one\nLine two", 1)
|
78
|
+
scan(str)
|
79
|
+
end
|
80
|
+
|
81
|
+
it "should preserve tabs within the content" do
|
82
|
+
@listener.should_receive(:py_string).with("I have\tsome tabs\nInside\t\tthe content", 1)
|
83
|
+
scan ps("I have\tsome tabs\nInside\t\tthe content")
|
84
|
+
end
|
85
|
+
|
86
|
+
it "should handle complex py_strings" do
|
87
|
+
py_string = <<EOS
|
88
|
+
# Feature comment
|
89
|
+
@one
|
90
|
+
Feature: Sample
|
91
|
+
|
92
|
+
@two @three
|
93
|
+
Scenario: Missing
|
94
|
+
Given missing
|
95
|
+
|
96
|
+
1 scenario (1 passed)
|
97
|
+
1 step (1 passed)
|
98
|
+
|
99
|
+
EOS
|
100
|
+
|
101
|
+
@listener.should_receive(:py_string).with(py_string, 1)
|
102
|
+
scan ps(py_string)
|
103
|
+
end
|
104
|
+
|
105
|
+
it "should allow whitespace after the closing py_string delimiter" do
|
106
|
+
str = <<EOS
|
107
|
+
"""
|
108
|
+
Line one
|
109
|
+
"""
|
110
|
+
EOS
|
111
|
+
@listener.should_receive(:py_string).with(" Line one", 1)
|
112
|
+
scan(str)
|
113
|
+
end
|
114
|
+
|
115
|
+
it "should preserve the last newline(s) at the end of a py_string" do
|
116
|
+
str = <<EOS
|
117
|
+
"""
|
118
|
+
PyString text
|
119
|
+
|
120
|
+
|
121
|
+
"""
|
122
|
+
EOS
|
123
|
+
@listener.should_receive(:py_string).with("PyString text\n\n",1)
|
124
|
+
scan(str)
|
125
|
+
end
|
126
|
+
|
127
|
+
it "should preserve CRLFs within py_strings" do
|
128
|
+
@listener.should_receive(:py_string).with("Line one\r\nLine two\r\n", 1)
|
129
|
+
scan("\"\"\"\r\nLine one\r\nLine two\r\n\r\n\"\"\"")
|
130
|
+
end
|
131
|
+
|
132
|
+
it "should unescape escaped triple quotes" do
|
133
|
+
str = <<EOS
|
134
|
+
"""
|
135
|
+
\\"\\"\\"
|
136
|
+
"""
|
137
|
+
EOS
|
138
|
+
@listener.should_receive(:py_string).with('"""', 1)
|
139
|
+
scan(str)
|
140
|
+
end
|
141
|
+
|
142
|
+
it "should not unescape escaped single quotes" do
|
143
|
+
str = <<EOS
|
144
|
+
"""
|
145
|
+
\\" \\"\\"
|
146
|
+
"""
|
147
|
+
EOS
|
148
|
+
@listener.should_receive(:py_string).with('\" \"\"', 1)
|
149
|
+
scan(str)
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
module Gherkin
|
5
|
+
module Lexer
|
6
|
+
shared_examples_for "a Gherkin lexer lexing rows" do
|
7
|
+
def scan(gherkin)
|
8
|
+
@lexer.scan(gherkin)
|
9
|
+
end
|
10
|
+
|
11
|
+
rows = {
|
12
|
+
"|a|b|\n" => %w{a b},
|
13
|
+
"|a|b|c|\n" => %w{a b c},
|
14
|
+
}
|
15
|
+
|
16
|
+
rows.each do |text, expected|
|
17
|
+
it "should parse #{text}" do
|
18
|
+
@listener.should_receive(:row).with(r(expected), 1)
|
19
|
+
scan(text.dup)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should parse a row with many cells" do
|
24
|
+
@listener.should_receive(:row).with(r(%w{a b c d e f g h i j k l m n o p}), 1)
|
25
|
+
scan("|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|\n")
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should parse multicharacter cell content" do
|
29
|
+
@listener.should_receive(:row).with(r(%w{foo bar}), 1)
|
30
|
+
scan("| foo | bar |\n")
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should escape backslashed pipes" do
|
34
|
+
@listener.should_receive(:row).with(r(['|', 'the', '\a', '\\', '|\\|']), 1)
|
35
|
+
scan('| \| | the | \a | \\ | \|\\\| |' + "\n")
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should parse cells with newlines" do
|
39
|
+
@listener.should_receive(:row).with(r(["\n"]), 1)
|
40
|
+
scan("|\\n|" + "\n")
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should parse cells with spaces within the content" do
|
44
|
+
@listener.should_receive(:row).with(r(["Dill pickle", "Valencia orange"]), 1)
|
45
|
+
scan("| Dill pickle | Valencia orange |\n")
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should allow utf-8" do
|
49
|
+
scan(" | ůﻚ | 2 | \n")
|
50
|
+
@listener.to_sexp.should == [
|
51
|
+
[:row, ["ůﻚ", "2"], 1],
|
52
|
+
[:eof]
|
53
|
+
]
|
54
|
+
end
|
55
|
+
|
56
|
+
it "should allow utf-8 using should_receive" do
|
57
|
+
@listener.should_receive(:row).with(r(['繁體中文 而且','並且','繁體中文 而且','並且']), 1)
|
58
|
+
scan("| 繁體中文 而且|並且| 繁體中文 而且|並且|\n")
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should parse a 2x2 table" do
|
62
|
+
@listener.should_receive(:row).with(r(%w{1 2}), 1)
|
63
|
+
@listener.should_receive(:row).with(r(%w{3 4}), 2)
|
64
|
+
scan("| 1 | 2 |\n| 3 | 4 |\n")
|
65
|
+
end
|
66
|
+
|
67
|
+
it "should parse a 2x2 table with empty cells" do
|
68
|
+
@listener.should_receive(:row).with(r(['1', '']), 1)
|
69
|
+
@listener.should_receive(:row).with(r(['', '4']), 2)
|
70
|
+
scan("| 1 | |\n|| 4 |\n")
|
71
|
+
end
|
72
|
+
|
73
|
+
it "should parse a row with empty cells" do
|
74
|
+
@listener.should_receive(:row).with(r(['1', '']), 1).twice
|
75
|
+
scan("| 1 | |\n")
|
76
|
+
scan("|1||\n")
|
77
|
+
end
|
78
|
+
|
79
|
+
it "should parse a 1x2 table that does not end in a newline" do
|
80
|
+
@listener.should_receive(:row).with(r(%w{1 2}), 1)
|
81
|
+
scan("| 1 | 2 |")
|
82
|
+
end
|
83
|
+
|
84
|
+
it "should parse a row without spaces and with a newline" do
|
85
|
+
@listener.should_receive(:row).with(r(%w{1 2}), 1)
|
86
|
+
scan("|1|2|\n")
|
87
|
+
end
|
88
|
+
|
89
|
+
it "should parse a row with whitespace after the rows" do
|
90
|
+
@listener.should_receive(:row).with(r(%w{1 2}), 1)
|
91
|
+
scan("| 1 | 2 | \n ")
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should parse a row with lots of whitespace" do
|
95
|
+
@listener.should_receive(:row).with(r(["abc", "123"]), 1)
|
96
|
+
scan(" \t| \t abc\t| \t123\t \t\t| \t\t \t \t\n ")
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should parse a table with a commented-out row" do
|
100
|
+
@listener.should_receive(:row).with(r(["abc"]), 1)
|
101
|
+
@listener.should_receive(:comment).with("#|123|", 2)
|
102
|
+
@listener.should_receive(:row).with(r(["def"]), 3)
|
103
|
+
scan("|abc|\n#|123|\n|def|\n")
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should raise LexingError for rows that aren't closed" do
|
107
|
+
lambda {
|
108
|
+
scan("|| oh hello \n")
|
109
|
+
}.should raise_error(/Lexing error on line 1: '\|\| oh hello/)
|
110
|
+
end
|
111
|
+
|
112
|
+
it "should raise LexingError for rows that are followed by a comment" do
|
113
|
+
lambda {
|
114
|
+
scan("|hi| # oh hello \n")
|
115
|
+
}.should raise_error(/Lexing error on line 1: '\|hi\| # oh hello/)
|
116
|
+
end
|
117
|
+
|
118
|
+
it "should raise LexingError for rows that aren't closed" do
|
119
|
+
lambda {
|
120
|
+
scan("|| oh hello \n |Shoudn't Get|Here|")
|
121
|
+
}.should raise_error(/Lexing error on line 1: '\|\| oh hello/)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
module Gherkin
|
5
|
+
module Lexer
|
6
|
+
shared_examples_for "a Gherkin lexer lexing tags" do
|
7
|
+
def scan(gherkin)
|
8
|
+
@lexer.scan(gherkin)
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should lex a single tag" do
|
12
|
+
@listener.should_receive(:tag).with("@dog", 1)
|
13
|
+
scan("@dog\n")
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should lex multiple tags" do
|
17
|
+
@listener.should_receive(:tag).twice
|
18
|
+
scan("@dog @cat\n")
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should lex UTF-8 tags" do
|
22
|
+
@listener.should_receive(:tag).with("@シナリオテンプレート", 1)
|
23
|
+
scan("@シナリオテンプレート\n")
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should lex mixed tags" do
|
27
|
+
@listener.should_receive(:tag).with("@wip", 1).ordered
|
28
|
+
@listener.should_receive(:tag).with("@Значения", 1).ordered
|
29
|
+
scan("@wip @Значения\n")
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should lex wacky identifiers" do
|
33
|
+
@listener.should_receive(:tag).exactly(4).times
|
34
|
+
scan("@BJ-x98.77 @BJ-z12.33 @O_o" "@#not_a_comment\n")
|
35
|
+
end
|
36
|
+
|
37
|
+
# TODO: Ask on ML for opinions about this one
|
38
|
+
it "should lex tags without spaces between them?" do
|
39
|
+
@listener.should_receive(:tag).twice
|
40
|
+
scan("@one@two\n")
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should not lex tags beginning with two @@ signs" do
|
44
|
+
@listener.should_not_receive(:tag)
|
45
|
+
lambda { scan("@@test\n") }.should raise_error(/Lexing error on line 1/)
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should not lex a lone @ sign" do
|
49
|
+
@listener.should_not_receive(:tag)
|
50
|
+
lambda { scan("@\n") }.should raise_error(/Lexing error on line 1/)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'gherkin/tag_expression'
|
3
|
+
|
4
|
+
module Gherkin
|
5
|
+
describe TagExpression do
|
6
|
+
context "no tags" do
|
7
|
+
before(:each) do
|
8
|
+
@e = Gherkin::TagExpression.new([])
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should match @foo" do
|
12
|
+
@e.eval(['@foo']).should == true
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should match empty tags" do
|
16
|
+
@e.eval([]).should == true
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context "@foo" do
|
21
|
+
before(:each) do
|
22
|
+
@e = Gherkin::TagExpression.new(['@foo'])
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should match @foo" do
|
26
|
+
@e.eval(['@foo']).should == true
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should not match @bar" do
|
30
|
+
@e.eval(['@bar']).should == false
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should not match no tags" do
|
34
|
+
@e.eval([]).should == false
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
context "!@foo" do
|
39
|
+
before(:each) do
|
40
|
+
@e = Gherkin::TagExpression.new(['~@foo'])
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should match @bar" do
|
44
|
+
@e.eval(['@bar']).should == true
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should not match @foo" do
|
48
|
+
@e.eval(['@foo']).should == false
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "@foo || @bar" do
|
53
|
+
before(:each) do
|
54
|
+
@e = Gherkin::TagExpression.new(['@foo,@bar'])
|
55
|
+
end
|
56
|
+
|
57
|
+
it "should match @foo" do
|
58
|
+
@e.eval(['@foo']).should == true
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should match @bar" do
|
62
|
+
@e.eval(['@bar']).should == true
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should not match @zap" do
|
66
|
+
@e.eval(['@zap']).should == false
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
context "(@foo || @bar) && !@zap" do
|
71
|
+
before(:each) do
|
72
|
+
@e = Gherkin::TagExpression.new(['@foo,@bar', '~@zap'])
|
73
|
+
end
|
74
|
+
|
75
|
+
it "should match @foo" do
|
76
|
+
@e.eval(['@foo']).should == true
|
77
|
+
end
|
78
|
+
|
79
|
+
it "should not match @foo @zap" do
|
80
|
+
@e.eval(['@foo', '@zap']).should == false
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
context "(@foo:3 || !@bar:4) && @zap:5" do
|
85
|
+
before(:each) do
|
86
|
+
@e = Gherkin::TagExpression.new(['@foo:3,~@bar','@zap:5'])
|
87
|
+
end
|
88
|
+
|
89
|
+
it "should count tags for positive tags" do
|
90
|
+
rubify_hash(@e.limits).should == {'@foo' => 3, '@zap' => 5}
|
91
|
+
end
|
92
|
+
|
93
|
+
it "should match @foo @zap" do
|
94
|
+
@e.eval(['@foo', '@zap']).should == true
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
context "Parsing '@foo:3,~@bar', '@zap:5'" do
|
99
|
+
before(:each) do
|
100
|
+
@e = Gherkin::TagExpression.new([' @foo:3 , ~@bar ', ' @zap:5 '])
|
101
|
+
end
|
102
|
+
|
103
|
+
unless defined?(JRUBY_VERSION)
|
104
|
+
it "should split and trim (ruby implementation detail)" do
|
105
|
+
@e.__send__(:ruby_expression).should == "(!vars['@bar']||vars['@foo'])&&(vars['@zap'])"
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
it "should have limits" do
|
110
|
+
rubify_hash(@e.limits).should == {"@zap"=>5, "@foo"=>3}
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
context "Tag limits" do
|
115
|
+
it "should be counted for negative tags" do
|
116
|
+
@e = Gherkin::TagExpression.new(['~@todo:3'])
|
117
|
+
rubify_hash(@e.limits).should == {"@todo"=>3}
|
118
|
+
end
|
119
|
+
|
120
|
+
it "should be counted for positive tags" do
|
121
|
+
@e = Gherkin::TagExpression.new(['@todo:3'])
|
122
|
+
rubify_hash(@e.limits).should == {"@todo"=>3}
|
123
|
+
end
|
124
|
+
|
125
|
+
it "should raise an error for inconsistent limits" do
|
126
|
+
lambda do
|
127
|
+
@e = Gherkin::TagExpression.new(['@todo:3', '~@todo:4'])
|
128
|
+
end.should raise_error(/Inconsistent tag limits for @todo: 3 and 4/)
|
129
|
+
end
|
130
|
+
|
131
|
+
it "should allow duplicate consistent limits" do
|
132
|
+
@e = Gherkin::TagExpression.new(['@todo:3', '~@todo:3'])
|
133
|
+
rubify_hash(@e.limits).should == {"@todo"=>3}
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|