Sha256: 8b6e20065d13a066429d05a876d25ed90069fad42bf8630020d8f89cdc1ea7d0

Contents?: true

Size: 1.75 KB

Versions: 6

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Check that implicit block expectation syntax is not used.
      #
      # Prefer using explicit block expectations.
      #
      # @example
      #   # bad
      #   subject { -> { do_something } }
      #   it { is_expected.to change(something).to(new_value) }
      #
      #   # good
      #   it 'changes something to a new value' do
      #     expect { do_something }.to change(something).to(new_value)
      #   end
      class ImplicitBlockExpectation < Base
        MSG = 'Avoid implicit block expectations.'

        def_node_matcher :lambda?, <<-PATTERN
          {
            (send (const nil? :Proc) :new)
            (send nil? {:proc :lambda})
          }
        PATTERN

        def_node_matcher :lambda_subject?, '(block #lambda? ...)'

        def_node_matcher :implicit_expect, <<-PATTERN
          $(send nil? {:is_expected :should :should_not} ...)
        PATTERN

        def on_send(node)
          implicit_expect(node) do |implicit_expect|
            subject = nearest_subject(implicit_expect)
            add_offense(implicit_expect) if lambda_subject?(subject&.body)
          end
        end

        private

        def nearest_subject(node)
          node
            .each_ancestor(:block)
            .lazy
            .select { |block_node| multi_statement_example_group?(block_node) }
            .map { |block_node| find_subject(block_node) }
            .find(&:itself)
        end

        def multi_statement_example_group?(node)
          example_group_with_body?(node) && node.body.begin_type?
        end

        def find_subject(block_node)
          block_node.body.child_nodes.find { |send_node| subject?(send_node) }
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-rspec-2.1.0 lib/rubocop/cop/rspec/implicit_block_expectation.rb
rubocop-rspec-2.0.1 lib/rubocop/cop/rspec/implicit_block_expectation.rb
rubocop-rspec-2.0.0 lib/rubocop/cop/rspec/implicit_block_expectation.rb
rubocop-rspec-2.0.0.pre lib/rubocop/cop/rspec/implicit_block_expectation.rb
rubocop-rspec-1.44.1 lib/rubocop/cop/rspec/implicit_block_expectation.rb
rubocop-rspec-1.44.0 lib/rubocop/cop/rspec/implicit_block_expectation.rb