2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe CreateEvidenceWorker do
|
2020-06-23 00:09:42 +05:30
|
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:release) { create(:release, project: project) }
|
|
|
|
let(:pipeline) { create(:ci_empty_pipeline, sha: release.sha, project: project) }
|
2019-12-21 20:55:43 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
# support old scheduled workers without pipeline
|
2020-04-22 19:07:51 +05:30
|
|
|
it 'creates a new Evidence record' do
|
2020-06-23 00:09:42 +05:30
|
|
|
expect_next_instance_of(::Releases::CreateEvidenceService, release, pipeline: nil) do |service|
|
|
|
|
expect(service).to receive(:execute).and_call_original
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
expect { described_class.new.perform(release.id) }.to change(Releases::Evidence, :count).by(1)
|
2019-12-21 20:55:43 +05:30
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
it 'creates a new Evidence record with pipeline' do
|
|
|
|
expect_next_instance_of(::Releases::CreateEvidenceService, release, pipeline: pipeline) do |service|
|
|
|
|
expect(service).to receive(:execute).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
expect { described_class.new.perform(release.id, pipeline.id) }.to change(Releases::Evidence, :count).by(1)
|
|
|
|
end
|
2019-12-21 20:55:43 +05:30
|
|
|
end
|