Sha256: 3b8371a0044042b7779fd01b233a857d7e07df7db4429ac606f218b77ec41af7

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

require 'cucumber/step_match'
require 'cucumber/core_ext/string'
require 'cucumber/core_ext/proc'

module Cucumber
  # A Step Definition holds a Regexp and a Proc, and is created
  # by calling <tt>Given</tt>, <tt>When</tt> or <tt>Then</tt>
  # in the <tt>step_definitions</tt> ruby files - for example:
  #
  #   Given /I have (\d+) cucumbers in my belly/ do
  #     # some code here
  #   end
  #
  class RbStepDefinition
    include LanguageSupport::StepDefinitionMethods

    class MissingProc < StandardError
      def message
        "Step definitions must always have a proc"
      end
    end

    attr_reader :proc

    def initialize(rb_language, pattern, &proc)
      raise MissingProc if proc.nil?
      if String === pattern
        p = pattern.gsub(/\$\w+/, '(.*)') # Replace $var with (.*)
        pattern = Regexp.new("^#{p}$") 
      end
      @rb_language, @regexp, @proc = rb_language, pattern, proc
    end

    def regexp
      @regexp
    end

    def invoke(args)
      args = args.map{|arg| Ast::PyString === arg ? arg.to_s : arg}
      begin
        @rb_language.current_world.cucumber_instance_exec(true, regexp.inspect, *args, &@proc)
      rescue Cucumber::ArityMismatchError => e
        e.backtrace.unshift(self.backtrace_line)
        raise e
      end
    end

    def file_colon_line
      @proc.file_colon_line
    end
    
    def file
      @file ||= file_colon_line.split(':')[0]
    end
  end
end

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
aslakhellesoy-cucumber-0.3.96 lib/cucumber/rb_support/rb_step_definition.rb
kosmas58-cucumber-0.3.96 lib/cucumber/rb_support/rb_step_definition.rb
cucumber-0.3.96 lib/cucumber/rb_support/rb_step_definition.rb