Sha256: edd0f0a55bb287ea09d70268ba838ab03c5a2eb616ba983d739e229636cd4598

Contents?: true

Size: 1.59 KB

Versions: 6

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks for `expect(...)` calls containing literal values.
      #
      # @example
      #   # bad
      #   expect(5).to eq(price)
      #   expect(/foo/).to eq(pattern)
      #   expect("John").to eq(name)
      #
      #   # good
      #   expect(price).to eq(5)
      #   expect(pattern).to eq(/foo/)
      #   expect(name).to eq("John")
      #
      class ExpectActual < Cop
        MSG = 'Provide the actual you are testing to `expect(...)`.'

        SIMPLE_LITERALS = %i[
          true
          false
          nil
          int
          float
          str
          sym
          complex
          rational
          regopt
        ].freeze

        COMPLEX_LITERALS = %i[
          array
          hash
          pair
          irange
          erange
          regexp
        ].freeze

        def_node_matcher :expect_literal, '(send _ :expect $#literal?)'

        def on_send(node)
          expect_literal(node) do |argument|
            add_offense(argument)
          end
        end

        private

        # This is not implement using a NodePattern because it seems
        # to not be able to match against an explicit (nil) sexp
        def literal?(node)
          node && (simple_literal?(node) || complex_literal?(node))
        end

        def simple_literal?(node)
          SIMPLE_LITERALS.include?(node.type)
        end

        def complex_literal?(node)
          COMPLEX_LITERALS.include?(node.type) &&
            node.each_child_node.all?(&method(:literal?))
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-rspec-1.37.1 lib/rubocop/cop/rspec/expect_actual.rb
rubocop-rspec-1.37.0 lib/rubocop/cop/rspec/expect_actual.rb
rubocop-rspec-1.36.0 lib/rubocop/cop/rspec/expect_actual.rb
rubocop-rspec-1.35.0 lib/rubocop/cop/rspec/expect_actual.rb
rubocop-rspec-1.34.1 lib/rubocop/cop/rspec/expect_actual.rb
rubocop-rspec-1.34.0 lib/rubocop/cop/rspec/expect_actual.rb