Skip to content
代码片段 群组 项目
未验证 提交 6b69befb 编辑于 作者: Charlie Kroon's avatar Charlie Kroon 提交者: GitLab
浏览文件

Add Link to the Commit Sha where vulnerability was resolved to Vulnerability Footer

上级 b0c381a8
No related branches found
No related tags found
无相关合并请求
...@@ -98,18 +98,34 @@ export default { ...@@ -98,18 +98,34 @@ export default {
issueLinksEndpoint() { issueLinksEndpoint() {
return Api.buildUrl(Api.vulnerabilityIssueLinksPath).replace(':id', this.vulnerability.id); return Api.buildUrl(Api.vulnerabilityIssueLinksPath).replace(':id', this.vulnerability.id);
}, },
isRepresentationInfoAvailable() {
return (
this.glFeatures.vulnerabilityRepresentationInformation &&
this.vulnerability.resolvedOnDefaultBranch &&
this.vulnerability.representationInformation?.resolvedInCommitShaLink
);
},
vulnerabilityDetectionData() { vulnerabilityDetectionData() {
const { pipeline, scanner, detectedAt } = this.vulnerability; const { pipeline, scanner, detectedAt, representationInformation, resolvedOnDefaultBranch } =
this.vulnerability;
// manually submitted vulnerabilities have no associated pipeline, in that case we don't display the detection data if (!this.isRepresentationInfoAvailable && !pipeline) {
return pipeline return null;
? { }
state: 'detected',
pipeline, return {
scanner, state: 'detected',
detectedAt, pipeline,
} scanner,
: null; ...(this.isRepresentationInfoAvailable
? {
representationInformation,
resolvedOnDefaultBranch,
}
: {
detectedAt,
}),
};
}, },
mergeRequest() { mergeRequest() {
return this.vulnerability.mergeRequestLinks.at(-1); return this.vulnerability.mergeRequestLinks.at(-1);
......
...@@ -38,6 +38,11 @@ describe('Vulnerability Footer', () => { ...@@ -38,6 +38,11 @@ describe('Vulnerability Footer', () => {
relatedIssuesHelpPath: 'help/path', relatedIssuesHelpPath: 'help/path',
pipeline: {}, pipeline: {},
mergeRequestLinks: [], mergeRequestLinks: [],
representationInformation: {
resolvedInCommitShaLink: 'https://gitlab.com/gitlab-org/gitlab/-/commit/0123456789',
resolvedInCommitSha: '0123456789',
},
resolvedOnDefaultBranch: false,
}; };
let discussion1; let discussion1;
...@@ -61,9 +66,17 @@ describe('Vulnerability Footer', () => { ...@@ -61,9 +66,17 @@ describe('Vulnerability Footer', () => {
}, },
}); });
const createWrapper = ({ properties, queryHandler, mountOptions } = {}) => { const createWrapper = ({
properties,
queryHandler,
mountOptions,
vulnerabilityRepresentationFlag = true,
} = {}) => {
wrapper = shallowMountExtended(VulnerabilityFooter, { wrapper = shallowMountExtended(VulnerabilityFooter, {
propsData: { vulnerability: { ...vulnerability, ...properties } }, propsData: { vulnerability: { ...vulnerability, ...properties } },
provide: {
glFeatures: { vulnerabilityRepresentationInformation: vulnerabilityRepresentationFlag },
},
apolloProvider: createMockApollo([[vulnerabilityDiscussionsQuery, queryHandler]]), apolloProvider: createMockApollo([[vulnerabilityDiscussionsQuery, queryHandler]]),
...mountOptions, ...mountOptions,
}); });
...@@ -348,11 +361,81 @@ describe('Vulnerability Footer', () => { ...@@ -348,11 +361,81 @@ describe('Vulnerability Footer', () => {
}, },
); );
it('does not show the detection note when the vulnerability has no pipeline (e.g.: was manually created)', () => { describe('when the pipeline is null (vulnerability has been created manually)', () => {
createWrapper({ properties: { pipeline: null } }); it('should not show the status description by default', () => {
createWrapper({ properties: { pipeline: null } });
expect(statusDescription().exists()).toBe(false);
});
it('should not show the status description when the vulnerability is resolved on the default branch and there is no representation information', () => {
createWrapper({
properties: {
pipeline: null,
resolvedOnDefaultBranch: true,
representationInformation: null,
},
});
expect(statusDescription().exists()).toBe(false);
});
expect(detectionNote().exists()).toBe(false); it('should show the status description when the vulnerability is resolved on the default branch and there is respresentation information', () => {
createWrapper({
properties: {
pipeline: null,
resolvedOnDefaultBranch: true,
representationInformation: vulnerability.representationInformation,
},
});
expect(statusDescription().exists()).toBe(true);
});
}); });
describe('when the vulnerability is resolved on the default branch and there is representation information', () => {
it('should pass the correct props to the detection note', () => {
createWrapper({
properties: {
resolvedOnDefaultBranch: true,
representationInformation: vulnerability.representationInformation,
},
});
expect(statusDescription().props('vulnerability')).toMatchObject({
resolvedOnDefaultBranch: true,
representationInformation: vulnerability.representationInformation,
});
});
});
it.each`
representationInformation | resolvedOnDefaultBranch | vulnerabilityRepresentationFlag | shouldIncludeRepresentationInfo
${vulnerability.representationInformation} | ${true} | ${true} | ${true}
${vulnerability.representationInformation} | ${false} | ${true} | ${false}
${null} | ${true} | ${true} | ${false}
${null} | ${false} | ${true} | ${false}
${vulnerability.representationInformation} | ${true} | ${false} | ${false}
${vulnerability.representationInformation} | ${false} | ${false} | ${false}
${null} | ${true} | ${false} | ${false}
`(
'shows representation information: "$shouldIncludeRepresentationInfo" when feature flag is "$vulnerabilityRepresentationFlag", resolvedOnDefaultBranch is "$resolvedOnDefaultBranch" and representationInformation is "$representationInformation"',
({
resolvedOnDefaultBranch,
vulnerabilityRepresentationFlag,
representationInformation,
shouldIncludeRepresentationInfo,
}) => {
createWrapper({
properties: {
resolvedOnDefaultBranch,
representationInformation,
},
vulnerabilityRepresentationFlag,
});
expect(Boolean(statusDescription().props('vulnerability').representationInformation)).toBe(
shouldIncludeRepresentationInfo,
);
},
);
}); });
describe('generic report', () => { describe('generic report', () => {
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册