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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-25 01:16:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-25 01:16:59 +0300
commitae5079ea12a3ffc8d8b89db738a63fd2978b8e69 (patch)
tree4ff7b12519c4388f0a4c5d74c6ebe4a1e4ffdd6e /spec/uploaders
parentbe59e761f2082afdcb4dd1f012bdc98643160f61 (diff)
Add latest changes from gitlab-org/gitlab@16-2-stable-ee
Diffstat (limited to 'spec/uploaders')
-rw-r--r--spec/uploaders/object_storage_spec.rb18
1 files changed, 15 insertions, 3 deletions
diff --git a/spec/uploaders/object_storage_spec.rb b/spec/uploaders/object_storage_spec.rb
index a748c544bfd..8c33224968d 100644
--- a/spec/uploaders/object_storage_spec.rb
+++ b/spec/uploaders/object_storage_spec.rb
@@ -1097,19 +1097,31 @@ RSpec.describe ObjectStorage, :clean_gitlab_redis_shared_state, feature_category
let(:fog_config) do
Gitlab.config.uploads.object_store.tap do |config|
config[:remote_directory] = 'main-bucket'
- config[:bucket_prefix] = 'uploads'
+ config[:bucket_prefix] = 'my/uploads'
end
end
let(:bucket) { 'main-bucket' }
- let(:fog_file_path) { "uploads/#{final_path}" }
+ let(:fog_file_path) { "my/uploads/#{final_path}" }
it 'stores the file final path in the db without the prefix' do
expect { subject }.not_to raise_error
- expect(uploader.store_path).to eq("uploads/#{final_path}")
+ expect(uploader.store_path).to eq("my/uploads/#{final_path}")
expect(object.file_final_path).to eq(final_path)
end
+
+ context 'and file is stored' do
+ subject do
+ uploader.store!(uploaded_file)
+ end
+
+ it 'completes the matching pending upload entry' do
+ expect { subject }
+ .to change { ObjectStorage::PendingDirectUpload.exists?(uploader_class.storage_location_identifier, final_path) }
+ .to(false)
+ end
+ end
end
context 'when file is stored' do