summaryrefslogtreecommitdiff
path: root/spec/rubocop
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-05 15:08:23 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-05 15:08:23 +0000
commit86e1f47cd19e7c164fb0b2c24e28a63ea27ae5ff (patch)
tree016d11e5f9df14b69e28475641160c8a843cbc34 /spec/rubocop
parent38b39c50473ba58a80ddad5c22c96ccd5128ddfb (diff)
downloadgitlab-ce-86e1f47cd19e7c164fb0b2c24e28a63ea27ae5ff.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/rubocop')
-rw-r--r--spec/rubocop/cop/gitlab/bulk_insert_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/rubocop/cop/gitlab/bulk_insert_spec.rb b/spec/rubocop/cop/gitlab/bulk_insert_spec.rb
new file mode 100644
index 00000000000..937c709218f
--- /dev/null
+++ b/spec/rubocop/cop/gitlab/bulk_insert_spec.rb
@@ -0,0 +1,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