From 78719aaa32e73afb089fd3fe0941ee52bba51754 Mon Sep 17 00:00:00 2001
From: Gabriel Mazetto <gabriel@gitlab.com>
Date: Mon, 15 Jul 2024 14:04:50 +0200
Subject: [PATCH] Add tests for env

---
 .../gitlab/backup/cli/source_context_spec.rb  | 20 +++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gems/gitlab-backup-cli/spec/gitlab/backup/cli/source_context_spec.rb b/gems/gitlab-backup-cli/spec/gitlab/backup/cli/source_context_spec.rb
index 431b7d3606e84..930698336e1ef 100644
--- a/gems/gitlab-backup-cli/spec/gitlab/backup/cli/source_context_spec.rb
+++ b/gems/gitlab-backup-cli/spec/gitlab/backup/cli/source_context_spec.rb
@@ -277,6 +277,26 @@
     end
   end
 
+  describe '#env' do
+    it 'returns content from RAILS_ENV when its defined' do
+      stub_const('ENV', { 'RAILS_ENV' => 'railstest', 'RACK_ENV' => 'racktest' })
+
+      expect(context.env).to eq('railstest')
+    end
+
+    it 'returns content from RACK_ENV when its the next one defined' do
+      stub_const('ENV', { 'RACK_ENV' => 'racktest' })
+
+      expect(context.env).to eq('racktest')
+    end
+
+    it 'returns the default value when no other ENV is defined' do
+      stub_const('ENV', {})
+
+      expect(context.env).to eq('development')
+    end
+  end
+
   describe '#gitlab_shared_path' do
     context 'with shared path not configured in gitlab.yml' do
       it 'raises an error' do
-- 
GitLab