File: large_table_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (85 lines) | stat: -rw-r--r-- 2,352 bytes parent folder | download
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
80
81
82
83
84
85
# 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 'in an usage data file' do
    before do
      allow(cop).to receive(:in_usage_data_file?).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

  context 'when outside of an usage data file' do
    it 'does not register an offense' do
      expect_no_offenses('Issue.active.count')
    end
  end
end