Welcome to mirror list, hosted at ThFree Co, Russian Federation.

distinct_count_by_large_foreign_key_spec.rb « usage_data « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4d113a9bccdbad4c6b85c2e5060e6fc5d587753 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

require 'rubocop_spec_helper'

require_relative '../../../../rubocop/cop/usage_data/distinct_count_by_large_foreign_key'

RSpec.describe RuboCop::Cop::UsageData::DistinctCountByLargeForeignKey do
  let(:allowed_foreign_keys) { [:author_id, :user_id, :'merge_requests.target_project_id'] }
  let(:msg) { 'Avoid doing `distinct_count` on foreign keys for large tables having above 100 million rows.' }
  let(:config) do
    RuboCop::Config.new('UsageData/DistinctCountByLargeForeignKey' => {
                          'AllowedForeignKeys' => allowed_foreign_keys
                        })
  end

  context 'when counting by disallowed key' do
    it 'registers an offense' do
      expect_offense(<<~CODE)
        distinct_count(Issue, :creator_id)
        ^^^^^^^^^^^^^^ #{msg}
      CODE
    end

    it 'does not register an offense when batch is false' do
      expect_no_offenses('distinct_count(Issue, :creator_id, batch: false)')
    end

    it 'registers an offense when batch is true' do
      expect_offense(<<~CODE)
        distinct_count(Issue, :creator_id, batch: true)
        ^^^^^^^^^^^^^^ #{msg}
      CODE
    end
  end

  context 'when calling by allowed key' do
    it 'does not register an offense with symbol' do
      expect_no_offenses('distinct_count(Issue, :author_id)')
    end

    it 'does not register an offense with string' do
      expect_no_offenses("distinct_count(Issue, 'merge_requests.target_project_id')")
    end
  end
end