summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/gitlab/bulk_insert_spec.rb
blob: 937c709218f5693b7cadac568412550b88980aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../../rubocop/cop/gitlab/bulk_insert'

describe RuboCop::Cop::Gitlab::BulkInsert do
  include CopHelper

  subject(:cop) { described_class.new }

  it 'flags the use of Gitlab::Database.bulk_insert' do
    expect_offense(<<~SOURCE)
    Gitlab::Database.bulk_insert('merge_request_diff_files', rows)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, instead of using `Gitlab::Database.bulk_insert`. See https://docs.gitlab.com/ee/development/insert_into_tables_in_batches.html
    SOURCE
  end
end