Sha256: c6ef84a34bfc97fda82b4895a8dc416b6645d86661258477b0efeb51c6782778

Contents?: true

Size: 1.6 KB

Versions: 4

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module Cucumber
  module CucumberExpressions
    class ParameterTypeMatcher
      attr_reader :parameter_type

      def initialize(parameter_type, regexp, text, match_position = 0)
        @parameter_type, @regexp, @text = parameter_type, regexp, text
        @match = @regexp.match(@text, match_position)
      end

      def advance_to(new_match_position)
        (new_match_position...@text.length).each do |advanced_position|
          matcher = self.class.new(parameter_type, @regexp, @text, advanced_position)
          return matcher if matcher.find && matcher.full_word?
        end

        self.class.new(parameter_type, @regexp, @text, @text.length)
      end

      def find
        !@match.nil? && !group.empty?
      end

      def full_word?
        space_before_match_or_sentence_start? && space_after_match_or_sentence_end?
      end

      def start
        @match.begin(0)
      end

      def group
        @match.captures[0]
      end

      def <=>(other)
        pos_comparison = start <=> other.start
        return pos_comparison if pos_comparison != 0

        length_comparison = other.group.length <=> group.length
        return length_comparison if length_comparison != 0

        0
      end

      private

      def space_before_match_or_sentence_start?
        match_begin = @match.begin(0)
        match_begin == 0 || @text[match_begin - 1].match(/\p{Z}|\p{P}|\p{S}/)
      end

      def space_after_match_or_sentence_end?
        match_end = @match.end(0)
        match_end == @text.length || @text[match_end].match(/\p{Z}|\p{P}|\p{S}/)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumber-cucumber-expressions-18.0.1 lib/cucumber/cucumber_expressions/parameter_type_matcher.rb
cucumber-cucumber-expressions-18.0.0 lib/cucumber/cucumber_expressions/parameter_type_matcher.rb
cucumber-cucumber-expressions-17.1.0 lib/cucumber/cucumber_expressions/parameter_type_matcher.rb
cucumber-cucumber-expressions-17.0.2 lib/cucumber/cucumber_expressions/parameter_type_matcher.rb