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>2020-03-05 06:07:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-05 06:07:52 +0300
commita0c1ba61c8e8c9195e3ad4deefc5c4cb5c6a1501 (patch)
tree0731210fac047fdfb04a8e907701e0efab8c897e /spec/support
parent77237c5a6b9044f58beabc54d3589e5fa09cbfba (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/shared_examples/models/concerns/blob_replicator_strategy_shared_examples.rb77
1 files changed, 77 insertions, 0 deletions
diff --git a/spec/support/shared_examples/models/concerns/blob_replicator_strategy_shared_examples.rb b/spec/support/shared_examples/models/concerns/blob_replicator_strategy_shared_examples.rb
new file mode 100644
index 00000000000..ebe464735c5
--- /dev/null
+++ b/spec/support/shared_examples/models/concerns/blob_replicator_strategy_shared_examples.rb
@@ -0,0 +1,77 @@
+# frozen_string_literal: true
+
+# Include these shared examples in specs of Replicators that include
+# BlobReplicatorStrategy.
+#
+# A let variable called model_record should be defined in the spec. It should be
+# a valid, unpersisted instance of the model class.
+#
+RSpec.shared_examples 'a blob replicator' do
+ include EE::GeoHelpers
+
+ let_it_be(:primary) { create(:geo_node, :primary) }
+ let_it_be(:secondary) { create(:geo_node) }
+
+ subject(:replicator) { model_record.replicator }
+
+ before do
+ stub_current_geo_node(primary)
+ end
+
+ describe '#handle_after_create_commit' do
+ it 'creates a Geo::Event' do
+ expect do
+ replicator.handle_after_create_commit
+ end.to change { ::Geo::Event.count }.by(1)
+
+ expect(::Geo::Event.last.attributes).to include(
+ "replicable_name" => replicator.replicable_name, "event_name" => "created", "payload" => { "model_record_id" => replicator.model_record.id })
+ end
+ end
+
+ describe '#consume_created_event' do
+ it 'invokes Geo::BlobDownloadService' do
+ service = double(:service)
+
+ expect(service).to receive(:execute)
+ expect(::Geo::BlobDownloadService).to receive(:new).with(replicator: replicator).and_return(service)
+
+ replicator.consume_created_event
+ end
+ end
+
+ describe '#carrierwave_uploader' do
+ it 'is implemented' do
+ expect do
+ replicator.carrierwave_uploader
+ end.not_to raise_error
+ end
+ end
+
+ describe '#model' do
+ let(:invoke_model) { replicator.send(:model) }
+
+ it 'is implemented' do
+ expect do
+ invoke_model
+ end.not_to raise_error
+ end
+
+ it 'is a Class' do
+ expect(invoke_model).to be_a(Class)
+ end
+
+ # For convenience (and reliability), instead of asking developers to include shared examples on each model spec as well
+ context 'replicable model' do
+ it 'defines #replicator' do
+ expect(model_record).to respond_to(:replicator)
+ end
+
+ it 'invokes replicator.handle_after_create_commit on create' do
+ expect(replicator).to receive(:handle_after_create_commit)
+
+ model_record.save!
+ end
+ end
+ end
+end