Class: Cucumber::Ast::StepInvocation
- Defined in:
- lib/cucumber/ast/step_invocation.rb
Instance Attribute Summary collapse
-
#background ⇒ Object
writeonly
Sets the attribute background.
-
#exception ⇒ Object
Returns the value of attribute exception.
-
#matched_cells ⇒ Object
readonly
Returns the value of attribute matched_cells.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#reported_exception ⇒ Object
readonly
Returns the value of attribute reported_exception.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#step_collection ⇒ Object
writeonly
Sets the attribute step_collection.
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #actual_keyword ⇒ Object
- #background? ⇒ Boolean
- #backtrace_line ⇒ Object
- #dom_id ⇒ Object
- #failed(options, e, clear_backtrace) ⇒ Object
- #file_colon_line ⇒ Object
- #find_step_match!(step_mother) ⇒ Object
-
#initialize(step, name, multiline_arg, matched_cells) ⇒ StepInvocation
constructor
A new instance of StepInvocation.
- #invoke(step_mother, options) ⇒ Object
- #keyword ⇒ Object
- #language ⇒ Object
- #multiline_arg ⇒ Object
- #previous ⇒ Object
- #skip_invoke! ⇒ Object
- #source_indent ⇒ Object
- #status!(status) ⇒ Object
- #text_length ⇒ Object
- #to_sexp ⇒ Object
- #visit_step_result(visitor) ⇒ Object
Constructor Details
#initialize(step, name, multiline_arg, matched_cells) ⇒ StepInvocation
Returns a new instance of StepInvocation.
8 9 10 11 |
# File 'lib/cucumber/ast/step_invocation.rb', line 8 def initialize(step, name, multiline_arg, matched_cells) @step, @name, @multiline_arg, @matched_cells = step, name, multiline_arg, matched_cells status!(:skipped) end |
Instance Attribute Details
#background=(value) ⇒ Object (writeonly)
Sets the attribute background
4 5 6 |
# File 'lib/cucumber/ast/step_invocation.rb', line 4 def background=(value) @background = value end |
#exception ⇒ Object
Returns the value of attribute exception.
6 7 8 |
# File 'lib/cucumber/ast/step_invocation.rb', line 6 def exception @exception end |
#matched_cells ⇒ Object (readonly)
Returns the value of attribute matched_cells.
5 6 7 |
# File 'lib/cucumber/ast/step_invocation.rb', line 5 def matched_cells @matched_cells end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/cucumber/ast/step_invocation.rb', line 5 def name @name end |
#reported_exception ⇒ Object (readonly)
Returns the value of attribute reported_exception.
5 6 7 |
# File 'lib/cucumber/ast/step_invocation.rb', line 5 def reported_exception @reported_exception end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
5 6 7 |
# File 'lib/cucumber/ast/step_invocation.rb', line 5 def status @status end |
#step_collection=(value) ⇒ Object (writeonly)
Sets the attribute step_collection
4 5 6 |
# File 'lib/cucumber/ast/step_invocation.rb', line 4 def step_collection=(value) @step_collection = value end |
Instance Method Details
#accept(visitor) ⇒ Object
21 22 23 24 |
# File 'lib/cucumber/ast/step_invocation.rb', line 21 def accept(visitor) invoke(visitor.step_mother, visitor.) visit_step_result(visitor) end |
#actual_keyword ⇒ Object
90 91 92 93 94 95 96 97 |
# File 'lib/cucumber/ast/step_invocation.rb', line 90 def actual_keyword repeat_keywords = [language.but_keywords, language.and_keywords].flatten if repeat_keywords.index(@step.keyword) && previous previous.actual_keyword else keyword end end |
#background? ⇒ Boolean
13 14 15 |
# File 'lib/cucumber/ast/step_invocation.rb', line 13 def background? @background end |
#backtrace_line ⇒ Object
123 124 125 |
# File 'lib/cucumber/ast/step_invocation.rb', line 123 def backtrace_line @step.backtrace_line end |
#dom_id ⇒ Object
119 120 121 |
# File 'lib/cucumber/ast/step_invocation.rb', line 119 def dom_id @step.dom_id end |
#failed(options, e, clear_backtrace) ⇒ Object
68 69 70 71 72 73 74 75 76 77 |
# File 'lib/cucumber/ast/step_invocation.rb', line 68 def failed(, e, clear_backtrace) e.set_backtrace([]) if clear_backtrace e.backtrace << @step.backtrace_line unless @step.backtrace_line.nil? @exception = e if([:strict] || !(Undefined === e) || e.nested?) @reported_exception = e else @reported_exception = nil end end |
#file_colon_line ⇒ Object
115 116 117 |
# File 'lib/cucumber/ast/step_invocation.rb', line 115 def file_colon_line @step.file_colon_line end |
#find_step_match!(step_mother) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/cucumber/ast/step_invocation.rb', line 52 def find_step_match!(step_mother) return if @step_match begin @step_match = step_mother.step_match(@name) rescue Undefined => e failed(step_mother., e, true) status!(:undefined) @step_match = NoStepMatch.new(@step, @name) rescue Ambiguous => e failed(step_mother., e, false) status!(:failed) @step_match = NoStepMatch.new(@step, @name) end step_mother.step_visited(self) end |
#invoke(step_mother, options) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/cucumber/ast/step_invocation.rb', line 30 def invoke(step_mother, ) find_step_match!(step_mother) unless @skip_invoke || [:dry_run] || @exception || @step_collection.exception @skip_invoke = true begin step_mother.current_world.__cucumber_current_step = self if step_mother.current_world # Nil in Pure Java @step_match.invoke(step_mother.current_world, @multiline_arg) step_mother.after_step status!(:passed) rescue Pending => e failed(, e, false) status!(:pending) rescue Undefined => e failed(, e, false) status!(:undefined) rescue Exception => e failed(, e, false) status!(:failed) end end end |
#keyword ⇒ Object
107 108 109 |
# File 'lib/cucumber/ast/step_invocation.rb', line 107 def keyword @step.keyword end |
#language ⇒ Object
127 128 129 |
# File 'lib/cucumber/ast/step_invocation.rb', line 127 def language @step.language end |
#multiline_arg ⇒ Object
111 112 113 |
# File 'lib/cucumber/ast/step_invocation.rb', line 111 def multiline_arg @step.multiline_arg end |
#previous ⇒ Object
86 87 88 |
# File 'lib/cucumber/ast/step_invocation.rb', line 86 def previous @step_collection.previous_step(self) end |
#skip_invoke! ⇒ Object
17 18 19 |
# File 'lib/cucumber/ast/step_invocation.rb', line 17 def skip_invoke! @skip_invoke = true end |
#source_indent ⇒ Object
99 100 101 |
# File 'lib/cucumber/ast/step_invocation.rb', line 99 def source_indent @step.feature_element.source_indent(text_length) end |
#status!(status) ⇒ Object
79 80 81 82 83 84 |
# File 'lib/cucumber/ast/step_invocation.rb', line 79 def status!(status) @status = status @matched_cells.each do |cell| cell.status = status end end |
#text_length ⇒ Object
103 104 105 |
# File 'lib/cucumber/ast/step_invocation.rb', line 103 def text_length @step.text_length(@name) end |
#to_sexp ⇒ Object
131 132 133 |
# File 'lib/cucumber/ast/step_invocation.rb', line 131 def to_sexp [:step_invocation, @step.line, @step.keyword, @name, (@multiline_arg.nil? ? nil : @multiline_arg.to_sexp)].compact end |
#visit_step_result(visitor) ⇒ Object
26 27 28 |
# File 'lib/cucumber/ast/step_invocation.rb', line 26 def visit_step_result(visitor) visitor.visit_step_result(keyword, @step_match, @multiline_arg, @status, @reported_exception, source_indent, @background) end |