Sha256: a973393c93ff0980fcef3fe3c26f9e44d9a456505be2c8c7338bb2212ec15d0d

Contents?: true

Size: 1.46 KB

Versions: 38

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks where `contain_exactly` is used.
      #
      # This cop checks for the following:
      # - Prefer `match_array` when matching array values.
      # - Prefer `be_empty` when using `contain_exactly` with no arguments.
      #
      # @example
      #   # bad
      #   it { is_expected.to contain_exactly(*array1, *array2) }
      #
      #   # good
      #   it { is_expected.to match_array(array1 + array2) }
      #
      #   # good
      #   it { is_expected.to contain_exactly(content, *array) }
      #
      class ContainExactly < Base
        extend AutoCorrector

        MSG = 'Prefer `match_array` when matching array values.'
        RESTRICT_ON_SEND = %i[contain_exactly].freeze

        def on_send(node)
          return if node.arguments.empty?

          check_populated_collection(node)
        end

        private

        def check_populated_collection(node)
          return unless node.each_child_node.all?(&:splat_type?)

          add_offense(node) do |corrector|
            autocorrect_for_populated_array(node, corrector)
          end
        end

        def autocorrect_for_populated_array(node, corrector)
          arrays = node.arguments.map do |splat_node|
            splat_node.children.first
          end
          corrector.replace(
            node,
            "match_array(#{arrays.map(&:source).join(' + ')})"
          )
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 7 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.3/lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.3.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.2.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.1.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.5 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.4 lib/rubocop/cop/rspec/contain_exactly.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.3 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.2 lib/rubocop/cop/rspec/contain_exactly.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.1 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-3.0.0.pre lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/contain_exactly.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/contain_exactly.rb