Skip to content
代码片段 群组 项目
未验证 提交 1cd35af9 编辑于 作者: Kassio Borges's avatar Kassio Borges 提交者: GitLab
浏览文件

Merge branch 'ogonzalez-resolve-vulnerabilities-01ea0401' into 'master'

Return ids of created vulnerabilities with SBOM scanning

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/179115



Merged-by: default avatarKassio Borges <kborges@gitlab.com>
Approved-by: default avatarOrin Naaman <onaaman@gitlab.com>
Approved-by: default avatarKassio Borges <kborges@gitlab.com>
Co-authored-by: default avatarOlivier Gonzalez <ogonzalez@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -55,6 +55,8 @@ def create_vulnerabilities(findings) ...@@ -55,6 +55,8 @@ def create_vulnerabilities(findings)
else else
log_error(response.payload[:error], project_ids_with_upsert: project_ids_with_upsert) log_error(response.payload[:error], project_ids_with_upsert: project_ids_with_upsert)
end end
response.payload[:vulnerability_ids] || []
end end
def log_success(project_ids_with_upsert:) def log_success(project_ids_with_upsert:)
......
...@@ -152,14 +152,19 @@ ...@@ -152,14 +152,19 @@
let(:finding_map) { create(:vs_finding_map, pipeline: pipeline) } let(:finding_map) { create(:vs_finding_map, pipeline: pipeline) }
it 'creates new vulnerabilities' do it 'creates new vulnerabilities and returns their id' do
expect(Gitlab::AppJsonLogger).to receive(:debug) expect(Gitlab::AppJsonLogger).to receive(:debug)
.with( .with(
message: "Successfully created vulnerabilities on advisory ingestion", message: "Successfully created vulnerabilities on advisory ingestion",
project_ids_with_upsert: [pipeline.project.id]) project_ids_with_upsert: [pipeline.project.id])
.once .once
expect { create_vulnerabilities }.to change { Vulnerability.count }.by(1) expect do
created_ids = create_vulnerabilities
expect(created_ids).to be_an(Array)
.and all(be_a(Integer))
.and be_present
end.to change { Vulnerability.count }.by(1)
end end
context 'when exception is raised' do context 'when exception is raised' do
...@@ -175,7 +180,10 @@ ...@@ -175,7 +180,10 @@
project_ids_with_upsert: []) project_ids_with_upsert: [])
.once .once
expect { create_vulnerabilities }.not_to change { Vulnerability.count } expect do
created_ids = create_vulnerabilities
expect(created_ids).to eq([])
end.not_to change { Vulnerability.count }
end end
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册