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/finders/security/security_jobs_finder_spec.rb')
-rw-r--r--spec/finders/security/security_jobs_finder_spec.rb47
1 files changed, 47 insertions, 0 deletions
diff --git a/spec/finders/security/security_jobs_finder_spec.rb b/spec/finders/security/security_jobs_finder_spec.rb
new file mode 100644
index 00000000000..fa8253b96b5
--- /dev/null
+++ b/spec/finders/security/security_jobs_finder_spec.rb
@@ -0,0 +1,47 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Security::SecurityJobsFinder do
+ it_behaves_like ::Security::JobsFinder, described_class.allowed_job_types
+
+ describe "#execute" do
+ let(:pipeline) { create(:ci_pipeline) }
+ let(:finder) { described_class.new(pipeline: pipeline) }
+
+ subject { finder.execute }
+
+ context 'with specific secure job types' do
+ let!(:sast_build) { create(:ci_build, :sast, pipeline: pipeline) }
+ let!(:container_scanning_build) { create(:ci_build, :container_scanning, pipeline: pipeline) }
+ let!(:dast_build) { create(:ci_build, :dast, pipeline: pipeline) }
+ let!(:secret_detection_build) { create(:ci_build, :secret_detection, pipeline: pipeline) }
+
+ let(:finder) { described_class.new(pipeline: pipeline, job_types: [:sast, :container_scanning, :secret_detection]) }
+
+ it 'returns only those requested' do
+ is_expected.to include(sast_build)
+ is_expected.to include(container_scanning_build)
+ is_expected.to include(secret_detection_build)
+
+ is_expected.not_to include(dast_build)
+ end
+ end
+
+ context 'with combination of security jobs and license management jobs' do
+ let!(:sast_build) { create(:ci_build, :sast, pipeline: pipeline) }
+ let!(:container_scanning_build) { create(:ci_build, :container_scanning, pipeline: pipeline) }
+ let!(:dast_build) { create(:ci_build, :dast, pipeline: pipeline) }
+ let!(:secret_detection_build) { create(:ci_build, :secret_detection, pipeline: pipeline) }
+ let!(:license_management_build) { create(:ci_build, :license_management, pipeline: pipeline) }
+
+ it 'returns only the security jobs' do
+ is_expected.to include(sast_build)
+ is_expected.to include(container_scanning_build)
+ is_expected.to include(dast_build)
+ is_expected.to include(secret_detection_build)
+ is_expected.not_to include(license_management_build)
+ end
+ end
+ end
+end