summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/usage_data/large_table_spec.rb
blob: fa94f878cea6c6c8c9abbbf4e504a27aa530a8f0 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true

require 'rubocop_spec_helper'

require_relative '../../../../rubocop/cop/usage_data/large_table'

RSpec.describe RuboCop::Cop::UsageData::LargeTable do
  let(:large_tables) { %i[Rails Time] }
  let(:count_methods) { %i[count distinct_count] }
  let(:allowed_methods) { %i[minimum maximum] }
  let(:msg) { 'Use one of the count, distinct_count methods for counting on' }

  let(:config) do
    RuboCop::Config.new('UsageData/LargeTable' => {
                          'NonRelatedClasses' => large_tables,
                          'CountMethods' => count_methods,
                          'AllowedMethods' => allowed_methods
                        })
  end

  context 'when in usage_data files' do
    before do
      allow(cop).to receive(:usage_data_files?).and_return(true)
    end

    context 'with large tables' do
      context 'when calling Issue.count' do
        it 'registers an offense' do
          expect_offense(<<~CODE)
            Issue.count
            ^^^^^^^^^^^ #{msg} Issue
          CODE
        end
      end

      context 'when calling Issue.active.count' do
        it 'registers an offense' do
          expect_offense(<<~CODE)
            Issue.active.count
            ^^^^^^^^^^^^ #{msg} Issue
          CODE
        end
      end

      context 'when calling count(Issue)' do
        it 'does not register an offense' do
          expect_no_offenses('count(Issue)')
        end
      end

      context 'when calling count(Ci::Build.active)' do
        it 'does not register an offense' do
          expect_no_offenses('count(Ci::Build.active)')
        end
      end

      context 'when calling Ci::Build.active.count' do
        it 'registers an offense' do
          expect_offense(<<~CODE)
            Ci::Build.active.count
            ^^^^^^^^^^^^^^^^ #{msg} Ci::Build
          CODE
        end
      end

      context 'when using allowed methods' do
        it 'does not register an offense' do
          expect_no_offenses('Issue.minimum')
        end
      end
    end

    context 'with non related class' do
      it 'does not register an offense' do
        expect_no_offenses('Rails.count')
      end
    end
  end
end