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/gitlab/cleanup/remote_uploads_spec.rb')
-rw-r--r--spec/lib/gitlab/cleanup/remote_uploads_spec.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/lib/gitlab/cleanup/remote_uploads_spec.rb b/spec/lib/gitlab/cleanup/remote_uploads_spec.rb
index c59b7f004dd..fddc62a5705 100644
--- a/spec/lib/gitlab/cleanup/remote_uploads_spec.rb
+++ b/spec/lib/gitlab/cleanup/remote_uploads_spec.rb
@@ -72,4 +72,30 @@ RSpec.describe Gitlab::Cleanup::RemoteUploads do
subject
end
end
+
+ context 'when a bucket prefix is configured' do
+ let(:bucket_prefix) { 'test-prefix' }
+ let(:credentials) do
+ {
+ provider: "AWS",
+ aws_access_key_id: "AWS_ACCESS_KEY_ID",
+ aws_secret_access_key: "AWS_SECRET_ACCESS_KEY",
+ region: "eu-central-1"
+ }
+ end
+
+ let(:config) { { connection: credentials, bucket_prefix: bucket_prefix, remote_directory: 'uploads' } }
+
+ subject { described_class.new.run!(dry_run: false) }
+
+ before do
+ stub_uploads_object_storage(FileUploader, config: config)
+ end
+
+ it 'does not connect to any storage' do
+ expect(::Fog::Storage).not_to receive(:new)
+
+ expect { subject }.to raise_error(/prefixes are not supported/)
+ end
+ end
end