Sha256: b63181cfbb0fb9f91f78f837dfd0d37e9b7816721f9493d39287f8f3f40a111c

Contents?: true

Size: 1.69 KB

Versions: 20

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks for a specified error in checking raised errors.
      #
      # Enforces one of an Exception type, a string, or a regular
      # expression to match against the exception message as a parameter
      # to `raise_error`
      #
      # @example
      #   # bad
      #   expect {
      #     raise StandardError.new('error')
      #   }.to raise_error
      #
      #   # good
      #   expect {
      #     raise StandardError.new('error')
      #   }.to raise_error(StandardError)
      #
      #   expect {
      #     raise StandardError.new('error')
      #   }.to raise_error('error')
      #
      #   expect {
      #     raise StandardError.new('error')
      #   }.to raise_error(/err/)
      #
      #   expect { do_something }.not_to raise_error
      #
      class UnspecifiedException < Base
        MSG = 'Specify the exception being captured'
        RESTRICT_ON_SEND = %i[to].freeze

        # @!method empty_raise_error_or_exception(node)
        def_node_matcher :empty_raise_error_or_exception, <<-PATTERN
          (send
            (block
                (send nil? :expect) ...)
            :to
            (send nil? {:raise_error :raise_exception})
          )
        PATTERN

        def on_send(node)
          return unless empty_exception_matcher?(node)

          add_offense(node.children.last)
        end

        private

        def empty_exception_matcher?(node)
          empty_raise_error_or_exception(node) && !block_with_args?(node.parent)
        end

        def block_with_args?(node)
          return unless node&.block_type?

          node.arguments?
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.25.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.24.1 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.24.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.23.2 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.23.1 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.23.0 lib/rubocop/cop/rspec/unspecified_exception.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/unspecified_exception.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/unspecified_exception.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/unspecified_exception.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.22.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.21.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.20.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.19.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.18.1 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.18.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.17.1 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.17.0 lib/rubocop/cop/rspec/unspecified_exception.rb
rubocop-rspec-2.16.0 lib/rubocop/cop/rspec/unspecified_exception.rb