summaryrefslogtreecommitdiff
path: root/spec/lib/backup/database_backup_error_spec.rb
blob: ef6279000504458b0d1b924bb22dea86d1a67fb5 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Backup::DatabaseBackupError do
  let(:config) do
    {
      host: 'localhost',
      port: 5432,
      database: 'gitlabhq_test'
    }
  end

  let(:db_file_name) { File.join(Gitlab.config.backup.path, 'db', 'database.sql.gz') }

  subject { described_class.new(config, db_file_name) }

  it { is_expected.to respond_to :config }
  it { is_expected.to respond_to :db_file_name }

  it 'expects exception message to include database file' do
    expect(subject.message).to include("#{db_file_name}")
  end

  it 'expects exception message to include database paths being back-up' do
    expect(subject.message).to include("#{config[:host]}")
    expect(subject.message).to include("#{config[:port]}")
    expect(subject.message).to include("#{config[:database]}")
  end
end