aslakhellesoy-cucumber 0.1.16.4 → 0.1.16.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +75 -1
- data/Manifest.txt +58 -65
- data/examples/cs/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/Rakefile +3 -3
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -6
- data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/de/features/addition.feature +6 -6
- data/examples/i18n/de/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/en/features/addition.feature +6 -6
- data/examples/i18n/en/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/es/features/step_definitons/calculador_steps.rb +1 -1
- data/examples/i18n/et/features/liitmine.feature +7 -6
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +1 -1
- data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +1 -1
- data/examples/i18n/fi/features/yhteenlasku.feature +2 -2
- data/examples/i18n/fr/features/addition.feature +2 -2
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +1 -1
- data/examples/i18n/id/features/addition.feature +6 -6
- data/examples/i18n/id/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +1 -1
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +2 -3
- data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/lt/features/addition.feature +7 -6
- data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +7 -7
- data/examples/i18n/no/features/summering.feature +1 -0
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +1 -1
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/jbehave/README.textile +17 -0
- data/examples/jbehave/features/support/env.rb +7 -0
- data/examples/jbehave/features/trading.feature +24 -0
- data/examples/jbehave/pom.xml +48 -0
- data/examples/self_test/README.textile +4 -1
- data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
- data/examples/self_test/features/lots_of_undefined.feature +8 -0
- data/examples/self_test/features/outline_sample.feature +8 -5
- data/examples/self_test/features/sample.feature +5 -3
- data/examples/self_test/features/step_definitions/sample_steps.rb +15 -3
- data/features/cucumber_cli.feature +199 -97
- data/features/cucumber_cli_outlines.feature +46 -38
- data/features/report_called_undefined_steps.feature +31 -0
- data/features/step_definitions/cucumber_steps.rb +7 -3
- data/features/step_definitions/extra_steps.rb +1 -1
- data/features/support/env.rb +1 -1
- data/gem_tasks/features.rake +1 -1
- data/gem_tasks/flog.rake +1 -1
- data/lib/autotest/cucumber_mixin.rb +16 -23
- data/lib/cucumber/ast/comment.rb +26 -0
- data/lib/cucumber/ast/examples.rb +22 -0
- data/lib/cucumber/ast/feature.rb +60 -0
- data/lib/cucumber/ast/features.rb +39 -0
- data/lib/cucumber/ast/filter.rb +22 -0
- data/lib/cucumber/ast/outline_table.rb +49 -0
- data/lib/cucumber/ast/py_string.rb +52 -0
- data/lib/cucumber/ast/scenario.rb +91 -0
- data/lib/cucumber/ast/scenario_outline.rb +83 -0
- data/lib/cucumber/ast/step.rb +130 -0
- data/lib/cucumber/ast/table.rb +214 -0
- data/lib/cucumber/ast/tags.rb +33 -0
- data/lib/cucumber/ast/visitor.rb +93 -0
- data/lib/cucumber/ast.rb +27 -0
- data/lib/cucumber/broadcaster.rb +1 -6
- data/lib/cucumber/cli.rb +178 -128
- data/lib/cucumber/core_ext/exception.rb +41 -8
- data/lib/cucumber/core_ext/instance_exec.rb +54 -0
- data/lib/cucumber/core_ext/proc.rb +29 -65
- data/lib/cucumber/core_ext/string.rb +19 -0
- data/lib/cucumber/{formatters → formatter}/ansicolor.rb +11 -10
- data/lib/cucumber/formatter/console.rb +116 -0
- data/lib/cucumber/formatter/pretty.rb +158 -0
- data/lib/cucumber/formatter/profile.rb +77 -0
- data/lib/cucumber/formatter/progress.rb +68 -0
- data/lib/cucumber/formatter.rb +1 -0
- data/lib/cucumber/formatters/autotest_formatter.rb +0 -2
- data/lib/cucumber/formatters/html_formatter.rb +4 -3
- data/lib/cucumber/formatters/pretty_formatter.rb +1 -1
- data/lib/cucumber/formatters/unicode.rb +3 -3
- data/lib/cucumber/jbehave.rb +104 -0
- data/lib/cucumber/languages.yml +100 -73
- data/lib/cucumber/parser/basic.rb +0 -0
- data/lib/cucumber/parser/feature.rb +1694 -0
- data/lib/cucumber/parser/feature.tt +206 -0
- data/lib/cucumber/parser/file_parser.rb +50 -0
- data/lib/cucumber/parser/i18n.tt +26 -0
- data/lib/cucumber/parser/treetop_ext.rb +9 -0
- data/lib/cucumber/parser.rb +27 -0
- data/lib/cucumber/platform.rb +3 -17
- data/lib/cucumber/step_definition.rb +83 -0
- data/lib/cucumber/step_mother.rb +128 -72
- data/lib/cucumber/version.rb +1 -1
- data/lib/cucumber.rb +56 -9
- data/spec/cucumber/ast/feature_factory.rb +54 -0
- data/spec/cucumber/ast/feature_spec.rb +60 -0
- data/spec/cucumber/ast/py_string_spec.rb +40 -0
- data/spec/cucumber/ast/scenario_outline_spec.rb +64 -0
- data/spec/cucumber/ast/scenario_spec.rb +82 -0
- data/spec/cucumber/ast/step_spec.rb +45 -0
- data/spec/cucumber/ast/table_spec.rb +81 -0
- data/spec/cucumber/broadcaster_spec.rb +4 -17
- data/spec/cucumber/cli_spec.rb +43 -148
- data/spec/cucumber/core_ext/proc_spec.rb +27 -35
- data/spec/cucumber/core_ext/string_spec.rb +8 -0
- data/spec/cucumber/{formatters → formatter}/ansicolor_spec.rb +2 -2
- data/spec/cucumber/formatter/html/cucumber.css +37 -0
- data/spec/cucumber/formatter/html/cucumber.js +11 -0
- data/spec/cucumber/formatter/html/index.html +45 -0
- data/spec/cucumber/formatter/html/jquery-1.3.min.js +19 -0
- data/spec/cucumber/formatter/html/jquery.uitableedit.js +100 -0
- data/spec/cucumber/formatters/autotest_formatter_spec.rb +1 -0
- data/spec/cucumber/formatters/profile_formatter_spec.rb +17 -16
- data/spec/cucumber/parser/feature_parser_spec.rb +247 -0
- data/spec/cucumber/parser/table_parser_spec.rb +48 -0
- data/spec/cucumber/step_definition_spec.rb +62 -0
- data/spec/cucumber/step_mom_spec.rb +49 -0
- data/spec/cucumber/treetop_parser/empty_feature.feature +1 -1
- data/spec/cucumber/treetop_parser/spaces.feature +3 -1
- data/spec/cucumber/treetop_parser/with_comments.feature +1 -1
- data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
- data/spec/cucumber/world/pending_spec.rb +13 -12
- data/spec/spec_helper.rb +1 -1
- metadata +59 -67
- data/examples/calculator_ruby_features/Rakefile +0 -6
- data/examples/calculator_ruby_features/features/addition.rb +0 -39
- data/examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb +0 -43
- data/gem_tasks/treetop.rake +0 -41
- data/lib/cucumber/executor.rb +0 -205
- data/lib/cucumber/formatters/profile_formatter.rb +0 -92
- data/lib/cucumber/formatters/progress_formatter.rb +0 -61
- data/lib/cucumber/formatters.rb +0 -1
- data/lib/cucumber/model/table.rb +0 -32
- data/lib/cucumber/model.rb +0 -1
- data/lib/cucumber/step_methods.rb +0 -49
- data/lib/cucumber/tree/feature.rb +0 -105
- data/lib/cucumber/tree/features.rb +0 -21
- data/lib/cucumber/tree/given_scenario.rb +0 -13
- data/lib/cucumber/tree/scenario.rb +0 -240
- data/lib/cucumber/tree/step.rb +0 -173
- data/lib/cucumber/tree/table.rb +0 -26
- data/lib/cucumber/tree/top_down_visitor.rb +0 -23
- data/lib/cucumber/tree.rb +0 -16
- data/lib/cucumber/treetop_parser/feature.treetop.erb +0 -254
- data/lib/cucumber/treetop_parser/feature_ar.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_cy.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_da.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_de.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-lol.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-tx.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_es.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_et.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_fr.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_id.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_it.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ja.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ko.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_lt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_nl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_no.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_parser.rb +0 -36
- data/lib/cucumber/treetop_parser/feature_pl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_pt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro2.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ru.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_se.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_zh-CN.rb +0 -1951
- data/lib/cucumber/world/pending.rb +0 -22
- data/lib/cucumber/world.rb +0 -1
- data/setup.rb +0 -1585
- data/spec/cucumber/executor_spec.rb +0 -382
- data/spec/cucumber/formatters/html_formatter_spec.rb +0 -104
- data/spec/cucumber/formatters/pretty_formatter_spec.rb +0 -410
- data/spec/cucumber/formatters/progress_formatter_spec.rb +0 -81
- data/spec/cucumber/model/table_spec.rb +0 -32
- data/spec/cucumber/step_mother_spec.rb +0 -74
- data/spec/cucumber/tree/feature_spec.rb +0 -122
- data/spec/cucumber/tree/row_scenario_outline_spec.rb +0 -73
- data/spec/cucumber/tree/row_scenario_spec.rb +0 -55
- data/spec/cucumber/tree/row_step_outline_spec.rb +0 -38
- data/spec/cucumber/tree/scenario_outline_spec.rb +0 -50
- data/spec/cucumber/tree/scenario_spec.rb +0 -134
- data/spec/cucumber/tree/step_outline_spec.rb +0 -17
- data/spec/cucumber/tree/step_spec.rb +0 -59
- data/spec/cucumber/treetop_parser/feature_parser_spec.rb +0 -120
@@ -1,240 +0,0 @@
|
|
1
|
-
module Cucumber
|
2
|
-
module Tree
|
3
|
-
class BaseScenario
|
4
|
-
attr_reader :feature
|
5
|
-
|
6
|
-
def file
|
7
|
-
@feature.file
|
8
|
-
end
|
9
|
-
|
10
|
-
def accept(visitor)
|
11
|
-
steps.each do |step|
|
12
|
-
if step.outline? && !step.row?
|
13
|
-
visitor.visit_step_outline(step)
|
14
|
-
elsif step.row?
|
15
|
-
visitor.visit_row_step(step)
|
16
|
-
else
|
17
|
-
visitor.visit_regular_step(step)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def at_line?(l)
|
23
|
-
(line..last_line).include?(l)
|
24
|
-
end
|
25
|
-
|
26
|
-
def last_line
|
27
|
-
@last_line ||= @feature.last_line(self)
|
28
|
-
end
|
29
|
-
|
30
|
-
def previous_step(step)
|
31
|
-
i = steps.index(step)
|
32
|
-
raise "Couldn't find #{step} among #{steps}" if i.nil?
|
33
|
-
steps[i-1]
|
34
|
-
end
|
35
|
-
|
36
|
-
def pending?
|
37
|
-
steps.empty?
|
38
|
-
end
|
39
|
-
|
40
|
-
def outline?
|
41
|
-
false
|
42
|
-
end
|
43
|
-
|
44
|
-
end
|
45
|
-
|
46
|
-
class Scenario < BaseScenario
|
47
|
-
MIN_PADDING = 2
|
48
|
-
INDENT = 2
|
49
|
-
|
50
|
-
# If a table follows, the header will be stored here. Weird, but convenient.
|
51
|
-
attr_reader :table_header
|
52
|
-
attr_accessor :table_column_widths
|
53
|
-
attr_reader :name, :line
|
54
|
-
|
55
|
-
def initialize(feature, name, line, &proc)
|
56
|
-
require 'cucumber/core_ext/string'
|
57
|
-
@feature, @name, @line = feature, name, line
|
58
|
-
@steps_and_given_scenarios = []
|
59
|
-
instance_eval(&proc) if block_given?
|
60
|
-
end
|
61
|
-
|
62
|
-
def table_header= header
|
63
|
-
@table_header = header
|
64
|
-
update_table_column_widths header
|
65
|
-
end
|
66
|
-
|
67
|
-
def steps
|
68
|
-
@steps ||= @steps_and_given_scenarios.map{|step| step.steps}.flatten
|
69
|
-
end
|
70
|
-
|
71
|
-
def given_scenario_steps(name)
|
72
|
-
sibling_named(name).steps
|
73
|
-
end
|
74
|
-
|
75
|
-
def sibling_named(name)
|
76
|
-
@feature.scenario_named(name)
|
77
|
-
end
|
78
|
-
|
79
|
-
def length
|
80
|
-
@length ||= Cucumber.language['scenario'].jlength + 2 + (@name.nil? ? 0 : @name.jlength)
|
81
|
-
end
|
82
|
-
|
83
|
-
def max_line_length
|
84
|
-
[length, max_step_length].max
|
85
|
-
end
|
86
|
-
|
87
|
-
def padding_length
|
88
|
-
padding = (max_line_length - length) + MIN_PADDING
|
89
|
-
padding += INDENT if length != max_line_length
|
90
|
-
padding
|
91
|
-
end
|
92
|
-
|
93
|
-
def step_padding_length(step)
|
94
|
-
padding = (max_line_length - step.length) + MIN_PADDING
|
95
|
-
padding -= INDENT if length == max_line_length
|
96
|
-
padding
|
97
|
-
end
|
98
|
-
|
99
|
-
def max_step_length
|
100
|
-
@max_step_length ||= (steps.map{|step| step.length}.max || 0)
|
101
|
-
end
|
102
|
-
|
103
|
-
def update_table_column_widths values
|
104
|
-
@table_column_widths ||= [0] * values.size
|
105
|
-
@table_column_widths = @table_column_widths.zip(values).map {|max, value| [max, value.size].max}
|
106
|
-
end
|
107
|
-
|
108
|
-
def row?
|
109
|
-
false
|
110
|
-
end
|
111
|
-
|
112
|
-
def create_step(keyword, name, line)
|
113
|
-
step = Step.new(self, keyword, name, line)
|
114
|
-
@steps_and_given_scenarios << step
|
115
|
-
step
|
116
|
-
end
|
117
|
-
|
118
|
-
def create_given_scenario(name, line)
|
119
|
-
given_scenario = GivenScenario.new(self, name, line)
|
120
|
-
@steps_and_given_scenarios << given_scenario
|
121
|
-
given_scenario
|
122
|
-
end
|
123
|
-
|
124
|
-
def Given(name)
|
125
|
-
create_step('Given', name, *caller[0].split(':')[1].to_i)
|
126
|
-
end
|
127
|
-
|
128
|
-
def When(name)
|
129
|
-
create_step('When', name, *caller[0].split(':')[1].to_i)
|
130
|
-
end
|
131
|
-
|
132
|
-
def Then(name)
|
133
|
-
create_step('Then', name, *caller[0].split(':')[1].to_i)
|
134
|
-
end
|
135
|
-
|
136
|
-
def And(name)
|
137
|
-
create_step('And', name, *caller[0].split(':')[1].to_i)
|
138
|
-
end
|
139
|
-
|
140
|
-
end
|
141
|
-
|
142
|
-
class ScenarioOutline < Scenario
|
143
|
-
def outline?
|
144
|
-
true
|
145
|
-
end
|
146
|
-
|
147
|
-
def length
|
148
|
-
@length ||= Cucumber.language['scenario_outline'].jlength + 2 + (@name.nil? ? 0 : @name.jlength)
|
149
|
-
end
|
150
|
-
|
151
|
-
def create_step(keyword, name, line)
|
152
|
-
step = StepOutline.new(self, keyword, name, line)
|
153
|
-
@steps_and_given_scenarios << step
|
154
|
-
step
|
155
|
-
end
|
156
|
-
end
|
157
|
-
|
158
|
-
class RowScenario < BaseScenario
|
159
|
-
attr_reader :line
|
160
|
-
|
161
|
-
def initialize(feature, template_scenario, values, line)
|
162
|
-
@feature, @template_scenario, @values, @line = feature, template_scenario, values, line
|
163
|
-
template_scenario.update_table_column_widths values
|
164
|
-
end
|
165
|
-
|
166
|
-
def row?
|
167
|
-
true
|
168
|
-
end
|
169
|
-
|
170
|
-
def name
|
171
|
-
@template_scenario.name
|
172
|
-
end
|
173
|
-
|
174
|
-
#We can only cache steps once the template scenarios steps have been bound in order to know what arity the steps have
|
175
|
-
def steps
|
176
|
-
if template_steps_bound?
|
177
|
-
@unbound_steps = nil
|
178
|
-
@bound_steps ||= build_steps
|
179
|
-
else
|
180
|
-
@unbound_steps ||= build_steps
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
private
|
185
|
-
def build_steps
|
186
|
-
@template_scenario.steps.map do |template_step|
|
187
|
-
args = []
|
188
|
-
template_step.arity.times do
|
189
|
-
args << @values.shift
|
190
|
-
end
|
191
|
-
RowStep.new(self, template_step, args)
|
192
|
-
end
|
193
|
-
end
|
194
|
-
|
195
|
-
def template_steps_bound?
|
196
|
-
@template_steps_bound ||= @template_scenario.steps.inject(0) { |arity_sum, step| arity_sum + step.arity } != 0
|
197
|
-
end
|
198
|
-
|
199
|
-
end
|
200
|
-
|
201
|
-
class RowScenarioOutline < RowScenario
|
202
|
-
def outline?
|
203
|
-
true
|
204
|
-
end
|
205
|
-
|
206
|
-
def steps
|
207
|
-
@processed_placeholders = []
|
208
|
-
@steps ||= @template_scenario.steps.map do |template_step|
|
209
|
-
build_row_step_outline(template_step)
|
210
|
-
end
|
211
|
-
end
|
212
|
-
|
213
|
-
private
|
214
|
-
|
215
|
-
def build_row_step_outline(template_step)
|
216
|
-
step_name = template_step.name
|
217
|
-
placeholder_values = []
|
218
|
-
|
219
|
-
@template_scenario.table_header.each_with_index do |column_name, column_number|
|
220
|
-
|
221
|
-
if step_name =~ placeholder_regexp(column_name)
|
222
|
-
step_name = step_name.gsub(placeholder_regexp(column_name), @values[column_number])
|
223
|
-
|
224
|
-
unless @processed_placeholders.include?(column_name)
|
225
|
-
placeholder_values << @values[column_number]
|
226
|
-
@processed_placeholders << column_name
|
227
|
-
end
|
228
|
-
end
|
229
|
-
|
230
|
-
end
|
231
|
-
RowStepOutline.new(self, template_step, step_name, placeholder_values, @line)
|
232
|
-
end
|
233
|
-
|
234
|
-
def placeholder_regexp(string)
|
235
|
-
/#{Regexp.escape("<#{string}>")}/
|
236
|
-
end
|
237
|
-
end
|
238
|
-
|
239
|
-
end
|
240
|
-
end
|
data/lib/cucumber/tree/step.rb
DELETED
@@ -1,173 +0,0 @@
|
|
1
|
-
module Cucumber
|
2
|
-
module Tree
|
3
|
-
class BaseStep
|
4
|
-
attr_reader :scenario
|
5
|
-
attr_accessor :error
|
6
|
-
|
7
|
-
def self.new_id!
|
8
|
-
@next_id ||= -1
|
9
|
-
@next_id += 1
|
10
|
-
end
|
11
|
-
|
12
|
-
attr_reader :error
|
13
|
-
|
14
|
-
def file
|
15
|
-
@scenario.file
|
16
|
-
end
|
17
|
-
|
18
|
-
def steps
|
19
|
-
self
|
20
|
-
end
|
21
|
-
|
22
|
-
def length
|
23
|
-
keyword.jlength + 1 + name.jlength
|
24
|
-
end
|
25
|
-
|
26
|
-
if defined?(JRUBY_VERSION)
|
27
|
-
PENDING_ADJUSTMENT = 2
|
28
|
-
REGULAR_ADJUSTMENT = 1
|
29
|
-
else
|
30
|
-
PENDING_ADJUSTMENT = 3
|
31
|
-
REGULAR_ADJUSTMENT = 2
|
32
|
-
end
|
33
|
-
|
34
|
-
def execute_in(world, regexp, args, proc)
|
35
|
-
strip_pos = nil
|
36
|
-
begin
|
37
|
-
proc.call_in(world, *args)
|
38
|
-
rescue ArityMismatchError => e
|
39
|
-
e.backtrace[0] = proc.to_backtrace_line
|
40
|
-
strip_pos = e.backtrace.index("#{__FILE__}:#{__LINE__ - 3}:in `execute_in'")
|
41
|
-
format_error(strip_pos, proc, e)
|
42
|
-
rescue => e
|
43
|
-
method_line = "#{__FILE__}:#{__LINE__ - 6}:in `execute_in'"
|
44
|
-
|
45
|
-
# IronRuby returns nil for backtrace...
|
46
|
-
if e.backtrace.nil?
|
47
|
-
def e.backtrace
|
48
|
-
@cucumber_backtrace ||= []
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
method_line_pos = e.backtrace.index(method_line)
|
53
|
-
if method_line_pos
|
54
|
-
strip_pos = method_line_pos - (Pending === e ? PENDING_ADJUSTMENT : REGULAR_ADJUSTMENT)
|
55
|
-
else
|
56
|
-
# This happens with rails, because they screw up the backtrace
|
57
|
-
# before we get here (injecting erb stacktrace and such)
|
58
|
-
end
|
59
|
-
format_error(strip_pos, proc, e)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
def format_error(strip_pos, proc, e)
|
64
|
-
@error = e
|
65
|
-
# Remove lines underneath the plain text step
|
66
|
-
e.backtrace[strip_pos..-1] = nil unless strip_pos.nil?
|
67
|
-
e.backtrace.compact!
|
68
|
-
# Replace the step line with something more readable
|
69
|
-
e.backtrace.replace(e.backtrace.map{|l| l.gsub(/`#{proc.meth}'/, "`#{keyword} #{proc.name}'")})
|
70
|
-
if row?
|
71
|
-
e.backtrace << "#{file}:#{line}:in `#{proc.name}'"
|
72
|
-
else
|
73
|
-
e.backtrace << "#{file}:#{line}:in `#{keyword} #{name}'"
|
74
|
-
end
|
75
|
-
raise e
|
76
|
-
end
|
77
|
-
|
78
|
-
def id
|
79
|
-
@id ||= self.class.new_id!
|
80
|
-
end
|
81
|
-
|
82
|
-
def actual_keyword
|
83
|
-
keyword == Cucumber.language['and'] ? previous_step.actual_keyword : keyword
|
84
|
-
end
|
85
|
-
|
86
|
-
def previous_step
|
87
|
-
@scenario.previous_step(self)
|
88
|
-
end
|
89
|
-
|
90
|
-
def padding_length
|
91
|
-
@scenario.step_padding_length(self)
|
92
|
-
end
|
93
|
-
|
94
|
-
def forced_to_pending?
|
95
|
-
@error.kind_of?(ForcedPending)
|
96
|
-
end
|
97
|
-
|
98
|
-
def outline?
|
99
|
-
false
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
class Step < BaseStep
|
104
|
-
attr_reader :keyword, :name, :line
|
105
|
-
attr_accessor :arity, :extra_args
|
106
|
-
|
107
|
-
def row?
|
108
|
-
false
|
109
|
-
end
|
110
|
-
|
111
|
-
def initialize(scenario, keyword, name, line)
|
112
|
-
@scenario, @keyword, @name, @line = scenario, keyword, name, line
|
113
|
-
@extra_args ||= []
|
114
|
-
@arity = 0
|
115
|
-
end
|
116
|
-
|
117
|
-
def regexp_args_proc(step_mother)
|
118
|
-
regexp, args, proc = step_mother.regexp_args_proc(name)
|
119
|
-
@arity = args.length
|
120
|
-
[regexp, (args + extra_args), proc]
|
121
|
-
end
|
122
|
-
|
123
|
-
def format(regexp, format=nil, &proc)
|
124
|
-
regexp.nil? ? name : name.gzub(regexp, format, &proc)
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
class StepOutline < Step
|
129
|
-
def outline?
|
130
|
-
true
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
class RowStep < BaseStep
|
135
|
-
attr_reader :keyword
|
136
|
-
|
137
|
-
def initialize(scenario, step, args)
|
138
|
-
@scenario, @step, @args = scenario, step, args
|
139
|
-
end
|
140
|
-
|
141
|
-
def regexp_args_proc(step_mother)
|
142
|
-
regexp, _, proc = @step.regexp_args_proc(step_mother)
|
143
|
-
[regexp, @args, proc]
|
144
|
-
end
|
145
|
-
|
146
|
-
def row?
|
147
|
-
true
|
148
|
-
end
|
149
|
-
|
150
|
-
def line
|
151
|
-
@scenario.line
|
152
|
-
end
|
153
|
-
end
|
154
|
-
|
155
|
-
class RowStepOutline < Step
|
156
|
-
attr_reader :visible_args
|
157
|
-
|
158
|
-
def initialize(scenario, step, name, visible_args, line)
|
159
|
-
@visible_args = visible_args
|
160
|
-
@extra_args = step.extra_args
|
161
|
-
super(scenario, keyword, name, line)
|
162
|
-
end
|
163
|
-
|
164
|
-
def row?
|
165
|
-
true
|
166
|
-
end
|
167
|
-
|
168
|
-
def outline?
|
169
|
-
true
|
170
|
-
end
|
171
|
-
end
|
172
|
-
end
|
173
|
-
end
|
data/lib/cucumber/tree/table.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
module Cucumber
|
2
|
-
module Tree
|
3
|
-
class Table
|
4
|
-
def initialize(rows)
|
5
|
-
@rows = rows
|
6
|
-
end
|
7
|
-
|
8
|
-
def |(cell)
|
9
|
-
@row ||= []
|
10
|
-
if cell == self
|
11
|
-
line = *caller[0].split(':')[1].to_i
|
12
|
-
@row.instance_eval %{
|
13
|
-
def line
|
14
|
-
#{line}
|
15
|
-
end
|
16
|
-
}
|
17
|
-
@rows << @row
|
18
|
-
@row = nil
|
19
|
-
else
|
20
|
-
@row << cell.to_s
|
21
|
-
end
|
22
|
-
self
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
module Cucumber
|
2
|
-
module Tree
|
3
|
-
class TopDownVisitor
|
4
|
-
def visit_features(features)
|
5
|
-
features.accept(self)
|
6
|
-
end
|
7
|
-
|
8
|
-
def visit_feature(feature)
|
9
|
-
feature.accept(self)
|
10
|
-
end
|
11
|
-
|
12
|
-
def visit_header(header)
|
13
|
-
end
|
14
|
-
|
15
|
-
def visit_scenario(scenario)
|
16
|
-
scenario.accept(self)
|
17
|
-
end
|
18
|
-
|
19
|
-
def visit_step(step)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
data/lib/cucumber/tree.rb
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
%w{features feature scenario step given_scenario table top_down_visitor}.each{|f| require "cucumber/tree/#{f}"}
|
2
|
-
|
3
|
-
module Cucumber
|
4
|
-
module Tree
|
5
|
-
def Feature(header, &proc)
|
6
|
-
feature = Feature.new("Feature: " + header, &proc)
|
7
|
-
feature.file, _, _ = *caller[0].split(':')
|
8
|
-
features << feature
|
9
|
-
feature
|
10
|
-
end
|
11
|
-
|
12
|
-
def features #:nodoc:
|
13
|
-
@features ||= Tree::Features.new
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|