summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/database/establish_connection_spec.rb
blob: a3c27d33cb0e34203a61037ed56a2d6c7b82c88f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

require 'spec_helper'
require_relative '../../../../rubocop/cop/database/establish_connection'

RSpec.describe RuboCop::Cop::Database::EstablishConnection do
  subject(:cop) { described_class.new }

  it 'flags the use of ActiveRecord::Base.establish_connection' do
    expect_offense(<<~CODE)
      ActiveRecord::Base.establish_connection
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Don't establish new database [...]
    CODE
  end

  it 'flags the use of ActiveRecord::Base.establish_connection with arguments' do
    expect_offense(<<~CODE)
      ActiveRecord::Base.establish_connection(:foo)
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Don't establish new database [...]
    CODE
  end

  it 'flags the use of SomeModel.establish_connection' do
    expect_offense(<<~CODE)
      SomeModel.establish_connection
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Don't establish new database [...]
    CODE
  end
end