summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/count_spec.rb
blob: d6668cee23e8661386a15bf3fc02e99c8c868733 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
require 'spec_helper'

describe Gitlab::Database::Count do
  before do
    create_list(:project, 3)
    create(:identity)
  end

  let(:models) { [Project, Identity] }

  context '.approximate_counts' do
    context 'selecting strategies' do
      let(:strategies) { [double('s1', :enabled? => true), double('s2', :enabled? => false)] }

      it 'uses only enabled strategies' do
        expect(strategies[0]).to receive(:new).and_return(double('strategy1', count: {}))
        expect(strategies[1]).not_to receive(:new)

        described_class.approximate_counts(models, strategies: strategies)
      end
    end

    context 'fallbacks' do
      subject { described_class.approximate_counts(models, strategies: strategies) }

      let(:strategies) do
        [
          double('s1', :enabled? => true, new: first_strategy),
          double('s2', :enabled? => true, new: second_strategy)
        ]
      end

      let(:first_strategy) { double('first strategy', count: {}) }
      let(:second_strategy) { double('second strategy', count: {}) }

      it 'gets results from first strategy' do
        expect(strategies[0]).to receive(:new).with(models).and_return(first_strategy)
        expect(first_strategy).to receive(:count)

        subject
      end

      it 'gets more results from second strategy if some counts are missing' do
        expect(first_strategy).to receive(:count).and_return({ Project => 3 })
        expect(strategies[1]).to receive(:new).with([Identity]).and_return(second_strategy)
        expect(second_strategy).to receive(:count).and_return({ Identity => 1 })

        expect(subject).to eq({ Project => 3, Identity => 1 })
      end

      it 'does not get more results as soon as all counts are present' do
        expect(first_strategy).to receive(:count).and_return({ Project => 3, Identity => 1 })
        expect(strategies[1]).not_to receive(:new)

        subject
      end
    end
  end

  describe Gitlab::Database::Count::ExactCountStrategy do
    subject { described_class.new(models).count }

    describe '#count' do
      it 'counts all models' do
        models.each { |model| expect(model).to receive(:count).and_call_original }

        expect(subject).to eq({ Project => 3, Identity => 1 })
      end
    end

    describe '.enabled?' do
      it 'is enabled for PostgreSQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(true)

        expect(described_class.enabled?).to be_truthy
      end

      it 'is enabled for MySQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(false)

        expect(described_class.enabled?).to be_truthy
      end
    end
  end

  describe Gitlab::Database::Count::ReltuplesCountStrategy do
    subject { described_class.new(models).count }

    describe '#count' do
      context 'when reltuples is up to date' do
        before do
          ActiveRecord::Base.connection.execute('ANALYZE projects')
          ActiveRecord::Base.connection.execute('ANALYZE identities')
        end

        it 'uses statistics to do the count' do
          models.each { |model| expect(model).not_to receive(:count) }

          expect(subject).to eq({ Project => 3, Identity => 1 })
        end
      end

      context 'insufficient permissions' do
        it 'returns an empty hash' do
          allow(ActiveRecord::Base).to receive(:transaction).and_raise(PG::InsufficientPrivilege)

          expect(subject).to eq({})
        end
      end
    end

    describe '.enabled?' do
      it 'is enabled for PostgreSQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(true)

        expect(described_class.enabled?).to be_truthy
      end

      it 'is disabled for MySQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(false)

        expect(described_class.enabled?).to be_falsey
      end
    end
  end

  describe Gitlab::Database::Count::TablesampleCountStrategy do
    subject { strategy.count }
    let(:strategy) { described_class.new(models) }

    describe '#count' do
      let(:estimates) { { Project => threshold + 1, Identity => threshold - 1 } }
      let(:threshold) { Gitlab::Database::Count::TablesampleCountStrategy::EXACT_COUNT_THRESHOLD }

      before do
        allow(strategy).to receive(:size_estimates).with(check_statistics: false).and_return(estimates)
      end

      context 'for tables with an estimated small size' do
        it 'performs an exact count' do
          expect(Identity).to receive(:count).and_call_original

          expect(subject).to include({ Identity => 1 })
        end
      end

      context 'for tables with an estimated large size' do
        it 'performs a tablesample count' do
          expect(Project).not_to receive(:count)

          result = subject
          expect(result[Project]).to eq(3)
        end
      end

      context 'insufficient permissions' do
        it 'returns an empty hash' do
          allow(strategy).to receive(:size_estimates).and_raise(PG::InsufficientPrivilege)

          expect(subject).to eq({})
        end
      end
    end

    describe '.enabled?' do
      it 'is enabled for PostgreSQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(true)

        expect(described_class.enabled?).to be_truthy
      end

      it 'is disabled for MySQL' do
        allow(Gitlab::Database).to receive(:postgresql?).and_return(false)

        expect(described_class.enabled?).to be_falsey
      end
    end
  end
end