Sha256: 7b5ba381eef194524f53e87e736ac4a2d63973af53d6cfc25ea31bf9403233f0

Contents?: true

Size: 1.48 KB

Versions: 7

Compression:

Stored size: 1.48 KB

Contents

module Cucumber
  module Formatter
    # The formatter used for <tt>--format rerun</tt>
    #
    # This formatter keeps track of all failing features and print out their location.
    # Example:
    #
    #   features/foo.feature:34 features/bar.feature:11:76:81
    #
    # This formatter is used by AutoTest - it will use the output to decide what
    # to run the next time, simply passing the output string on the command line.
    #
    class Rerun
      include Io

      def initialize(step_mother, path_or_io, options)
        @io = ensure_io(path_or_io, "rerun")
        @options = options
        @file_names = []
        @file_colon_lines = Hash.new{|h,k| h[k] = []}
      end

      # features() is never executed at all... ?
      def after_features(features)
        files = @file_names.uniq.map do |file|
          lines = @file_colon_lines[file]
          "#{file}:#{lines.join(':')}"
        end
        @io.puts files.join(' ')
        
        # Flusing output to rerun tempfile here...
        @io.flush
        @io.close
      end

      # feature_element() is never executed at all, either... ?
      def after_feature_element(feature_element)
        if feature_element.failed?
          file, line = *feature_element.file_colon_line.split(':')
          @file_colon_lines[file] << line
          @file_names << file
        end
      end

      def step_name(keyword, step_match, status, source_indent, background)
        @rerun = true if [:failed].index(status)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
cucumber-0.5.3 lib/cucumber/formatter/rerun.rb
cucumber-0.5.2 lib/cucumber/formatter/rerun.rb
cucumber-0.5.1 lib/cucumber/formatter/rerun.rb
cucumber-0.5.0 lib/cucumber/formatter/rerun.rb
cucumber-0.4.5.rc2 lib/cucumber/formatter/rerun.rb
kbaum-cucumber-0.4.5.pre lib/cucumber/formatter/rerun.rb
cucumber-0.4.5.rc1 lib/cucumber/formatter/rerun.rb