Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/backup/database_spec.rb')
-rw-r--r--spec/lib/backup/database_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/lib/backup/database_spec.rb b/spec/lib/backup/database_spec.rb
index dd8a4a14531..61e6c59a1a5 100644
--- a/spec/lib/backup/database_spec.rb
+++ b/spec/lib/backup/database_spec.rb
@@ -22,7 +22,7 @@ RSpec.describe Backup::Database, feature_category: :backup_restore do
end
end
- before(:all) do
+ before(:all) do # rubocop:disable RSpec/BeforeAll
Rake::Task.define_task(:environment)
Rake.application.rake_require 'active_record/railties/databases'
Rake.application.rake_require 'tasks/gitlab/backup'
@@ -272,14 +272,13 @@ RSpec.describe Backup::Database, feature_category: :backup_restore do
end
context 'with PostgreSQL settings defined in the environment' do
- let(:cmd) { %W[#{Gem.ruby} -e] + ["$stderr.puts ENV.to_h.select { |k, _| k.start_with?('PG') }"] }
let(:config) { YAML.load_file(File.join(Rails.root, 'config', 'database.yml'))['test'] }
before do
- stub_const 'ENV', ENV.to_h.merge({
+ stub_env(ENV.to_h.merge({
'GITLAB_BACKUP_PGHOST' => 'test.example.com',
'PGPASSWORD' => 'donotchange'
- })
+ }))
end
it 'overrides default config values' do
@@ -289,12 +288,13 @@ RSpec.describe Backup::Database, feature_category: :backup_restore do
expect(Rake::Task['gitlab:db:drop_tables:main']).to receive(:invoke)
end
+ expect(ENV).to receive(:[]=).with('PGHOST', 'test.example.com')
+ expect(ENV).not_to receive(:[]=).with('PGPASSWORD', anything)
+
subject.restore(backup_dir)
- expect(output).to include(%("PGHOST"=>"test.example.com"))
- expect(output).to include(%("PGPASSWORD"=>"donotchange"))
- expect(output).to include(%("PGPORT"=>"#{config['port']}")) if config['port']
- expect(output).to include(%("PGUSER"=>"#{config['username']}")) if config['username']
+ expect(ENV['PGPORT']).to eq(config['port']) if config['port']
+ expect(ENV['PGUSER']).to eq(config['username']) if config['username']
end
end