Sha256: 6e40cc9b4bf7598d1cf80138bc945db5fefdeaa634e1ce6eab4cfe76704248aa

Contents?: true

Size: 1.08 KB

Versions: 8

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require 'cucumber/formatter/console'

module Cucumber
  module Formatter
    class ConsoleCounts
      include Console

      def initialize(config)
        @summary = Core::Report::Summary.new(config.event_bus)
      end

      def to_s
        [
          [scenario_count, status_counts(@summary.test_cases)].compact.join(' '),
          [step_count, status_counts(@summary.test_steps)].compact.join(' ')
        ].join("\n")
      end

      private

      def scenario_count
        count = @summary.test_cases.total
        "#{count} scenario" + (count == 1 ? '' : 's')
      end

      def step_count
        count = @summary.test_steps.total
        "#{count} step" + (count == 1 ? '' : 's')
      end

      def status_counts(summary)
        counts = Core::Test::Result::TYPES.map { |status| [status, summary.total(status)] }
        counts = counts.select { |_status, count| count.positive? }
        counts = counts.map { |status, count| format_string("#{count} #{status}", status) }
        "(#{counts.join(', ')})" if counts.any?
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
cucumber-9.2.1 lib/cucumber/formatter/console_counts.rb
cucumber-9.2.0 lib/cucumber/formatter/console_counts.rb
cucumber-9.1.2 lib/cucumber/formatter/console_counts.rb
cucumber-9.1.1 lib/cucumber/formatter/console_counts.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/cucumber-9.1.0/lib/cucumber/formatter/console_counts.rb
cucumber-9.1.0 lib/cucumber/formatter/console_counts.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/cucumber-9.0.2/lib/cucumber/formatter/console_counts.rb
cucumber-9.0.2 lib/cucumber/formatter/console_counts.rb