Sha256: fc6b9948942fdb6c44986389fb1077dfb8d371956be13dadca931aa2262fcde4

Contents?: true

Size: 1.74 KB

Versions: 8

Compression:

Stored size: 1.74 KB

Contents

module Cucumber
  module Ast
    # Represents an inline argument in a step. Example:
    #
    #   Given the message
    #     """
    #     I like
    #     Cucumber sandwich
    #     """
    #
    # The text between the pair of <tt>"""</tt> is stored inside a DocString,
    # which is yielded to the StepDefinition block as the last argument.
    #
    # The StepDefinition can then access the String via the #to_s method. In the
    # example above, that would return: <tt>"I like\nCucumber sandwich"</tt>
    #
    # Note how the indentation from the source is stripped away.
    #
    class DocString #:nodoc:
      class Builder
        attr_reader :string

        def initialize
          @string = ''
        end

        def doc_string(string, line_number)
          @string = string
        end

        def eof
        end
      end

      attr_accessor :file

      def self.default_arg_name
        "string"
      end

      def self.parse(text)
        builder = Builder.new
        lexer = Gherkin::I18nLexer.new(builder)
        lexer.scan(text)
        new(builder.string)
      end

      def initialize(string)
        @string = string
      end

      def to_step_definition_arg
        @string
      end

      def accept(visitor)
        return if Cucumber.wants_to_quit
        visitor.visit_doc_string(@string)
      end
      
      def arguments_replaced(arguments) #:nodoc:
        string = @string
        arguments.each do |name, value|
          value ||= ''
          string = string.gsub(name, value)
        end
        DocString.new(string)
      end

      def has_text?(text)
        @string.index(text)
      end

      # For testing only
      def to_sexp #:nodoc:
        [:doc_string, to_step_definition_arg]
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
casecumber-1.0.2.1 lib/cucumber/ast/doc_string.rb
js-log-cucumber-1.0.2 lib/cucumber/ast/doc_string.rb
cucumber-1.0.2 lib/cucumber/ast/doc_string.rb
cucumber-1.0.1 lib/cucumber/ast/doc_string.rb
cucumber-1.0.0 lib/cucumber/ast/doc_string.rb
cucumber-0.10.7 lib/cucumber/ast/doc_string.rb
cucumber-0.10.6 lib/cucumber/ast/doc_string.rb
cucumber-0.10.5 lib/cucumber/ast/doc_string.rb