summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/postgres_index_bloat_estimate_spec.rb
blob: da4422bd442d9052f94ffb7a2644c8a4e74c844f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::PostgresIndexBloatEstimate do
  before do
    ActiveRecord::Base.connection.execute(<<~SQL)
      ANALYZE schema_migrations
    SQL
  end

  subject { described_class.find(identifier) }

  let(:identifier) { 'public.schema_migrations_pkey' }

  describe '#bloat_size' do
    it 'returns the bloat size in bytes' do
      # We cannot reach much more about the bloat size estimate here
      expect(subject.bloat_size).to be >= 0
    end
  end

  describe '#bloat_size_bytes' do
    it 'is an alias of #bloat_size' do
      expect(subject.bloat_size_bytes).to eq(subject.bloat_size)
    end
  end

  describe '#index' do
    it 'belongs to a PostgresIndex' do
      expect(subject.index.identifier).to eq(identifier)
    end
  end
end