Class: Cucumber::StepMatch
Overview
:nodoc:
Instance Attribute Summary collapse
-
#step_arguments ⇒ Object
readonly
Returns the value of attribute step_arguments.
-
#step_definition ⇒ Object
readonly
Returns the value of attribute step_definition.
Instance Method Summary collapse
- #args ⇒ Object
- #backtrace_line ⇒ Object
- #file_colon_line ⇒ Object
-
#format_args(format = lambda{|a| a}, &proc) ⇒ Object
Formats the matched arguments of the associated Step.
-
#initialize(step_definition, name_to_match, name_to_report, step_arguments) ⇒ StepMatch
constructor
Creates a new StepMatch.
-
#inspect ⇒ Object
:nodoc:.
- #invoke(multiline_arg) ⇒ Object
- #name ⇒ Object
- #replace_arguments(string, step_arguments, format, &proc) ⇒ Object
- #text_length ⇒ Object
Constructor Details
#initialize(step_definition, name_to_match, name_to_report, step_arguments) ⇒ StepMatch
Creates a new StepMatch. The name_to_report
argument is what’s reported, unless it’s is, in which case name_to_report
is used instead.
8 9 10 11 12 |
# File 'lib/cucumber/step_match.rb', line 8 def initialize(step_definition, name_to_match, name_to_report, step_arguments) raise "name_to_match can't be nil" if name_to_match.nil? raise "step_arguments can't be nil (but it can be an empty array)" if step_arguments.nil? @step_definition, @name_to_match, @name_to_report, @step_arguments = step_definition, name_to_match, name_to_report, step_arguments end |
Instance Attribute Details
#step_arguments ⇒ Object (readonly)
Returns the value of attribute step_arguments.
3 4 5 |
# File 'lib/cucumber/step_match.rb', line 3 def step_arguments @step_arguments end |
#step_definition ⇒ Object (readonly)
Returns the value of attribute step_definition.
3 4 5 |
# File 'lib/cucumber/step_match.rb', line 3 def step_definition @step_definition end |
Instance Method Details
#args ⇒ Object
14 15 16 |
# File 'lib/cucumber/step_match.rb', line 14 def args @step_arguments.map{|g| g.val} end |
#backtrace_line ⇒ Object
51 52 53 |
# File 'lib/cucumber/step_match.rb', line 51 def backtrace_line "#{file_colon_line}:in `#{@step_definition.regexp_source}'" end |
#file_colon_line ⇒ Object
47 48 49 |
# File 'lib/cucumber/step_match.rb', line 47 def file_colon_line @step_definition.file_colon_line end |
#format_args(format = lambda{|a| a}, &proc) ⇒ Object
Formats the matched arguments of the associated Step. This method is usually called from visitors, which render output.
The format
can either be a String or a Proc.
If it is a String it should be a format string according to Kernel#sprinf
, for example:
'<span class="param">%s</span></tt>'
If it is a Proc, it should take one argument and return the formatted argument, for example:
lambda { |param| "[#{param}]" }
43 44 45 |
# File 'lib/cucumber/step_match.rb', line 43 def format_args(format = lambda{|a| a}, &proc) @name_to_report || replace_arguments(@name_to_match, @step_arguments, format, &proc) end |
#inspect ⇒ Object
:nodoc:
80 81 82 |
# File 'lib/cucumber/step_match.rb', line 80 def inspect #:nodoc: sprintf("#<%s:0x%x>", self.class, self.object_id) end |
#invoke(multiline_arg) ⇒ Object
22 23 24 25 26 |
# File 'lib/cucumber/step_match.rb', line 22 def invoke(multiline_arg) all_args = args all_args << multiline_arg.to_step_definition_arg if multiline_arg @step_definition.invoke(all_args) end |
#name ⇒ Object
18 19 20 |
# File 'lib/cucumber/step_match.rb', line 18 def name @name_to_report end |
#replace_arguments(string, step_arguments, format, &proc) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/cucumber/step_match.rb', line 59 def replace_arguments(string, step_arguments, format, &proc) s = string.dup offset = past_offset = 0 step_arguments.each do |step_argument| next if step_argument.offset.nil? || step_argument.offset < past_offset replacement = if block_given? proc.call(step_argument.val) elsif Proc === format format.call(step_argument.val) else format % step_argument.val end s[step_argument.offset + offset, step_argument.val.length] = replacement offset += replacement.unpack('U*').length - step_argument.val.unpack('U*').length past_offset = step_argument.offset + step_argument.val.length end s end |
#text_length ⇒ Object
55 56 57 |
# File 'lib/cucumber/step_match.rb', line 55 def text_length @step_definition.regexp_source.unpack('U*').length end |