summaryrefslogtreecommitdiff
path: root/spec/lib/backup/database_backup_error_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/backup/database_backup_error_spec.rb')
-rw-r--r--spec/lib/backup/database_backup_error_spec.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/spec/lib/backup/database_backup_error_spec.rb b/spec/lib/backup/database_backup_error_spec.rb
new file mode 100644
index 00000000000..ef627900050
--- /dev/null
+++ b/spec/lib/backup/database_backup_error_spec.rb
@@ -0,0 +1,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