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/services/projects/update_remote_mirror_service_spec.rb')
-rw-r--r--spec/services/projects/update_remote_mirror_service_spec.rb21
1 files changed, 18 insertions, 3 deletions
diff --git a/spec/services/projects/update_remote_mirror_service_spec.rb b/spec/services/projects/update_remote_mirror_service_spec.rb
index 96dbfe8e0b7..feb70ddaa46 100644
--- a/spec/services/projects/update_remote_mirror_service_spec.rb
+++ b/spec/services/projects/update_remote_mirror_service_spec.rb
@@ -13,21 +13,36 @@ RSpec.describe Projects::UpdateRemoteMirrorService do
describe '#execute' do
let(:retries) { 0 }
+ let(:inmemory) { true }
subject(:execute!) { service.execute(remote_mirror, retries) }
before do
+ stub_feature_flags(update_remote_mirror_inmemory: inmemory)
project.repository.add_branch(project.owner, 'existing-branch', 'master')
allow(remote_mirror)
.to receive(:update_repository)
+ .with(inmemory_remote: inmemory)
.and_return(double(divergent_refs: []))
end
- it 'ensures the remote exists' do
- expect(remote_mirror).to receive(:ensure_remote!)
+ context 'with in-memory remote disabled' do
+ let(:inmemory) { false }
- execute!
+ it 'ensures the remote exists' do
+ expect(remote_mirror).to receive(:ensure_remote!)
+
+ execute!
+ end
+ end
+
+ context 'with in-memory remote enabled' do
+ it 'does not ensure the remote exists' do
+ expect(remote_mirror).not_to receive(:ensure_remote!)
+
+ execute!
+ end
end
it 'does not fetch the remote repository' do