summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/count/exact_count_strategy_spec.rb
blob: 0c1be4b4610cb012b3510d0fec7f66ba4b0827ec (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
require 'spec_helper'

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

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

  subject { described_class.new(models).count }

  describe '#count' do
    it 'counts all models' do
      expect(models).to all(receive(:count).and_call_original)

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

    it 'returns default value if count times out' do
      allow(models.first).to receive(:count).and_raise(ActiveRecord::StatementInvalid.new(''))

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