summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/finders/security/jobs_finder_shared_examples.rb
blob: 117b35201f6629be51deb41178fdfc94992a2db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# frozen_string_literal: true

RSpec.shared_examples ::Security::JobsFinder do |default_job_types|
  let(:pipeline) { create(:ci_pipeline) }

  describe '#new' do
    it "does not get initialized for unsupported job types" do
      expect { described_class.new(pipeline: pipeline, job_types: [:abcd]) }.to raise_error(
        ArgumentError,
        "job_types must be from the following: #{default_job_types}"
      )
    end
  end

  describe '#execute' do
    let(:finder) { described_class.new(pipeline: pipeline) }

    subject { finder.execute }

    shared_examples 'JobsFinder core functionality' do
      context 'when the pipeline has no jobs' do
        it { is_expected.to be_empty }
      end

      context 'when the pipeline has no Secure jobs' do
        before do
          create(:ci_build, pipeline: pipeline)
        end

        it { is_expected.to be_empty }
      end

      context 'when the pipeline only has jobs without report artifacts' do
        before do
          create(:ci_build, pipeline: pipeline, options: { artifacts: { file: 'test.file' } })
        end

        it { is_expected.to be_empty }
      end

      context 'when the pipeline only has jobs with reports unrelated to Secure products' do
        before do
          create(:ci_build, pipeline: pipeline, options: { artifacts: { reports: { file: 'test.file' } } })
        end

        it { is_expected.to be_empty }
      end

      context 'when the pipeline only has jobs with reports with paths similar but not identical to Secure reports' do
        before do
          create(:ci_build, pipeline: pipeline, options: { artifacts: { reports: { file: 'report:sast:result.file' } } })
        end

        it { is_expected.to be_empty }
      end

      context 'when there is more than one pipeline' do
        let(:job_type) { default_job_types.first }
        let!(:build) { create(:ci_build, job_type, pipeline: pipeline) }

        before do
          create(:ci_build, job_type, pipeline: create(:ci_pipeline))
        end

        it 'returns jobs associated with provided pipeline' do
          is_expected.to eq([build])
        end
      end
    end

    it_behaves_like 'JobsFinder core functionality'
  end
end