Sha256: 9d65c54a6ef793bb9db829c45aeae172aa1014ae5da8c61a51c6e5f823dfd3f4

Contents?: true

Size: 1.3 KB

Versions: 22

Compression:

Stored size: 1.3 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 < Ast::Visitor
      def initialize(step_mother, io, options)
        super(step_mother)
        @io = io
        @options = options
        @file_names = []
        @file_colon_lines = Hash.new{|h,k| h[k] = []}
      end

      def visit_features(features)
        super
        files = @file_names.uniq.map do |file|
          lines = @file_colon_lines[file]
          "#{file}:#{lines.join(':')}"
        end
        @io.puts files.join(' ')
      end

      def visit_feature_element(feature_element)
        @rerun = false
        super
        if @rerun
          file, line = *feature_element.file_colon_line.split(':')
          @file_colon_lines[file] << line
          @file_names << file
        end
      end

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

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
aslakhellesoy-cucumber-0.3.100 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.101.2 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.101 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.102.1 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.102.2 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.102 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.97 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.98 lib/cucumber/formatter/rerun.rb
aslakhellesoy-cucumber-0.3.99 lib/cucumber/formatter/rerun.rb
dwaite-cucumber-0.3.101 lib/cucumber/formatter/rerun.rb
engineyard-cucumber-0.3.101 lib/cucumber/formatter/rerun.rb
kosmas58-cucumber-0.3.100 lib/cucumber/formatter/rerun.rb
kosmas58-cucumber-0.3.102 lib/cucumber/formatter/rerun.rb
kosmas58-cucumber-0.3.97 lib/cucumber/formatter/rerun.rb
kosmas58-cucumber-0.3.98 lib/cucumber/formatter/rerun.rb
kosmas58-cucumber-0.3.99 lib/cucumber/formatter/rerun.rb
cucumber-0.3.102 lib/cucumber/formatter/rerun.rb
cucumber-0.3.101 lib/cucumber/formatter/rerun.rb
cucumber-0.3.100 lib/cucumber/formatter/rerun.rb
cucumber-0.3.99 lib/cucumber/formatter/rerun.rb