diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-05-24 09:10:31 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-05-24 09:10:31 +0000 |
commit | 0a35aa97051a1255e0bd8f12f30afd25ead228ff (patch) | |
tree | 90bdfdd0d28f19d844c11c92945ab67346866045 /spec/workers | |
parent | f6df57b3011cb21c504878daf5d7b6678e07078a (diff) | |
download | gitlab-ce-0a35aa97051a1255e0bd8f12f30afd25ead228ff.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/packages/debian/generate_distribution_worker_spec.rb | 62 |
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 |