summaryrefslogtreecommitdiff
path: root/rubocop/cop/database/establish_connection.rb
blob: 20454887ce2d8238cb77d30167c0aab5b7183e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module RuboCop
  module Cop
    module Database
      class EstablishConnection < RuboCop::Cop::Cop
        MSG = "Don't establish new database connections, as this slows down " \
          'tests and may result in new connections using an incorrect configuration'

        def_node_matcher :establish_connection?, <<~PATTERN
          (send (const ...) :establish_connection ...)
        PATTERN

        def on_send(node)
          add_offense(node, location: :expression) if establish_connection?(node)
        end
      end
    end
  end
end