Skip to content
代码片段 群组 项目
提交 6a58a97d 编辑于 作者: Fernando Cardenas's avatar Fernando Cardenas
浏览文件

Hide CVS enable/disable functionality behind feature flag

* Added new global_dependency_scanning_on_advisory_ingestion flag

Changelog: changed
上级 55819cf2
No related branches found
No related tags found
无相关合并请求
......@@ -41,6 +41,12 @@ export default {
shouldShowAlert() {
return this.errorMessage && !this.isAlertDismissed;
},
hasCvsSection() {
return (
this.glFeatures.dependencyScanningOnAdvisoryIngestion &&
!this.glFeatures.globalDependencyScanningOnAdvisoryIngestion
);
},
},
methods: {
reportError(error) {
......@@ -80,7 +86,7 @@ export default {
</script>
<template>
<div v-if="glFeatures.dependencyScanningOnAdvisoryIngestion">
<div v-if="hasCvsSection">
<h4 class="gl-font-base gl-m-0 gl-mt-6">
{{ $options.i18n.title }}
<gl-badge
......
......@@ -15,6 +15,7 @@ module ConfigurationController
before_action only: [:show] do
push_frontend_feature_flag(:security_auto_fix, project)
push_frontend_feature_flag(:dependency_scanning_on_advisory_ingestion, project)
push_frontend_feature_flag(:global_dependency_scanning_on_advisory_ingestion, project)
end
before_action only: [:auto_fix] do
......
......@@ -46,6 +46,7 @@ describe('ContinuousVulnerabilityScan', () => {
provide: {
glFeatures: {
dependencyScanningOnAdvisoryIngestion: true,
globalDependencyScanningOnAdvisoryIngestion: false,
},
...defaultProvide,
},
......@@ -105,20 +106,27 @@ describe('ContinuousVulnerabilityScan', () => {
});
describe('when feature flag is disabled', () => {
beforeEach(() => {
createComponent({
provide: {
glFeatures: {
dependencyScanningOnAdvisoryIngestion: false,
it.each`
dependencyScanningOnAdvisoryIngestion | globalDependencyScanningOnAdvisoryIngestion
${false} | ${false}
${true} | ${true}
${false} | ${true}
`(
'when dependencyScanningOnAdvisoryIngestion: `$dependencyScanningOnAdvisoryIngestion` and globalDependencyScanningOnAdvisoryIngestion: `$globalDependencyScanningOnAdvisoryIngestion` should not render toggle and badge',
({ dependencyScanningOnAdvisoryIngestion, globalDependencyScanningOnAdvisoryIngestion }) => {
createComponent({
provide: {
glFeatures: {
dependencyScanningOnAdvisoryIngestion,
globalDependencyScanningOnAdvisoryIngestion,
},
...defaultProvide,
},
...defaultProvide,
},
});
});
});
it('should not render toggle and badge', () => {
expect(findToggle().exists()).toBe(false);
expect(findBadge().exists()).toBe(false);
});
expect(findToggle().exists()).toBe(false);
expect(findBadge().exists()).toBe(false);
},
);
});
});
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册