Sha256: 7c9858817ef4dd66da617c05c997c1409e0687babbda9dc656dd0f4bf146ef0f

Contents?: true

Size: 803 Bytes

Versions: 8

Compression:

Stored size: 803 Bytes

Contents

# frozen_string_literal: true

require 'cucumber/formatter/errors'

module Cucumber
  module Formatter
    module Query
      class PickleStepByTestStep
        def initialize(config)
          @pickle_id_step_by_test_step_id = {}
          config.on_event :test_step_created, &method(:on_test_step_created)
        end

        def pickle_step_id(test_step)
          return @pickle_id_step_by_test_step_id[test_step.id] if @pickle_id_step_by_test_step_id.key?(test_step.id)

          raise TestStepUnknownError, "No pickle step found for #{test_step.id} }. Known: #{@pickle_id_step_by_test_step_id.keys}"
        end

        private

        def on_test_step_created(event)
          @pickle_id_step_by_test_step_id[event.test_step.id] = event.pickle_step.id
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

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