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/workers/packages/debian/generate_distribution_worker_spec.rb')
-rw-r--r--spec/workers/packages/debian/generate_distribution_worker_spec.rb62
1 files changed, 62 insertions, 0 deletions
diff --git a/spec/workers/packages/debian/generate_distribution_worker_spec.rb b/spec/workers/packages/debian/generate_distribution_worker_spec.rb
new file mode 100644
index 00000000000..a8751ccceae
--- /dev/null
+++ b/spec/workers/packages/debian/generate_distribution_worker_spec.rb
@@ -0,0 +1,62 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Packages::Debian::GenerateDistributionWorker, type: :worker do
+ describe '#perform' do
+ let(:container_type) { distribution.container_type }
+ let(:distribution_id) { distribution.id }
+
+ subject { described_class.new.perform(container_type, distribution_id) }
+
+ include_context 'with published Debian package'
+
+ [:project, :group].each do |container_type|
+ context "for #{container_type}" do
+ include_context 'with Debian distribution', container_type
+
+ context 'with mocked service' do
+ it 'calls GenerateDistributionService' do
+ expect(Gitlab::ErrorTracking).not_to receive(:log_exception)
+ expect_next_instance_of(::Packages::Debian::GenerateDistributionService) do |service|
+ expect(service).to receive(:execute)
+ .with(no_args)
+ end
+
+ subject
+ end
+ end
+
+ context 'with non existing distribution id' do
+ let(:distribution_id) { non_existing_record_id }
+
+ it 'returns early without error' do
+ expect(Gitlab::ErrorTracking).not_to receive(:log_exception)
+ expect(::Packages::Debian::GenerateDistributionService).not_to receive(:new)
+
+ subject
+ end
+ end
+
+ context 'with nil distribution id' do
+ let(:distribution_id) { nil }
+
+ it 'returns early without error' do
+ expect(Gitlab::ErrorTracking).not_to receive(:log_exception)
+ expect(::Packages::Debian::GenerateDistributionService).not_to receive(:new)
+
+ subject
+ end
+ end
+
+ context 'with valid parameters' do
+ it_behaves_like 'an idempotent worker' do
+ let(:job_args) { [container_type, distribution_id] }
+
+ it_behaves_like 'Generate Debian Distribution and component files'
+ end
+ end
+ end
+ end
+ end
+end