Commit 9de8ad7f authored by Natalia Tepluhina's avatar Natalia Tepluhina

Merge branch '210340-standalone-vulnerability-filters' into 'master'

Add filters to the first class project security dashboard

See merge request gitlab-org/gitlab!28228
parents 80d68a7b d884f2bf
<script> <script>
import SecurityDashboardLayout from 'ee/security_dashboard/components/security_dashboard_layout.vue'; import SecurityDashboardLayout from 'ee/security_dashboard/components/security_dashboard_layout.vue';
import VulnerabilitiesCountList from 'ee/security_dashboard/components/vulnerability_count_list.vue'; import VulnerabilitiesCountList from 'ee/security_dashboard/components/vulnerability_count_list.vue';
import Filters from 'ee/security_dashboard/components/first_class_vulnerability_filters.vue';
import ProjectVulnerabilitiesApp from 'ee/vulnerabilities/components/project_vulnerabilities_app.vue'; import ProjectVulnerabilitiesApp from 'ee/vulnerabilities/components/project_vulnerabilities_app.vue';
export default { export default {
...@@ -8,6 +9,7 @@ export default { ...@@ -8,6 +9,7 @@ export default {
SecurityDashboardLayout, SecurityDashboardLayout,
ProjectVulnerabilitiesApp, ProjectVulnerabilitiesApp,
VulnerabilitiesCountList, VulnerabilitiesCountList,
Filters,
}, },
props: { props: {
dashboardDocumentation: { dashboardDocumentation: {
...@@ -23,6 +25,16 @@ export default { ...@@ -23,6 +25,16 @@ export default {
required: true, required: true,
}, },
}, },
data() {
return {
filters: {},
};
},
methods: {
handleFilterChange(filters) {
this.filters = filters;
},
},
}; };
</script> </script>
...@@ -30,11 +42,13 @@ export default { ...@@ -30,11 +42,13 @@ export default {
<security-dashboard-layout> <security-dashboard-layout>
<template #header> <template #header>
<vulnerabilities-count-list :project-full-path="projectFullPath" /> <vulnerabilities-count-list :project-full-path="projectFullPath" />
<filters @filterChange="handleFilterChange" />
</template> </template>
<project-vulnerabilities-app <project-vulnerabilities-app
:dashboard-documentation="dashboardDocumentation" :dashboard-documentation="dashboardDocumentation"
:empty-state-svg-path="emptyStateSvgPath" :empty-state-svg-path="emptyStateSvgPath"
:project-full-path="projectFullPath" :project-full-path="projectFullPath"
:filters="filters"
/> />
</security-dashboard-layout> </security-dashboard-layout>
</template> </template>
<script>
import { initFirstClassVulnerabilityFilters } from 'ee/security_dashboard/constants';
import { ALL } from 'ee/security_dashboard/store/modules/filters/constants';
import { setFilter } from 'ee/security_dashboard/store/modules/filters/utils';
import DashboardFilter from 'ee/security_dashboard/components/filter.vue';
export default {
components: {
DashboardFilter,
},
data() {
return {
filters: initFirstClassVulnerabilityFilters(),
};
},
methods: {
setFilter(options) {
const selectedFilters = {};
this.filters = setFilter(this.filters, options);
this.filters.forEach(({ id, selection }) => {
if (!selection.has(ALL)) {
selectedFilters[id] = Array.from(selection);
}
});
this.$emit('filterChange', selectedFilters);
},
},
};
</script>
<template>
<div class="dashboard-filters border-bottom bg-gray-light">
<div class="row mx-0 p-2">
<dashboard-filter
v-for="filter in filters"
:key="filter.id"
class="col-sm-6 col-md-4 col-lg-2 p-2"
:filter="filter"
@setFilter="setFilter"
/>
</div>
</div>
</template>
import { s__ } from '~/locale';
import { ALL, BASE_FILTERS } from 'ee/security_dashboard/store/modules/filters/constants';
import { REPORT_TYPES, SEVERITY_LEVELS } from 'ee/security_dashboard/store/constants';
import { VULNERABILITY_STATES } from 'ee/vulnerabilities/constants';
const parseOptions = obj =>
Object.entries(obj).map(([id, name]) => ({ id: id.toUpperCase(), name }));
export const initFirstClassVulnerabilityFilters = () => [
{
name: s__('SecurityDashboard|Status'),
id: 'state',
options: [
{ id: ALL, name: s__('VulnerabilityStatusTypes|All') },
...parseOptions(VULNERABILITY_STATES),
],
selection: new Set([ALL]),
},
{
name: s__('SecurityDashboard|Severity'),
id: 'severity',
options: [BASE_FILTERS.severity, ...parseOptions(SEVERITY_LEVELS)],
selection: new Set([ALL]),
},
{
name: s__('SecurityDashboard|Report type'),
id: 'reportType',
options: [BASE_FILTERS.report_type, ...parseOptions(REPORT_TYPES)],
selection: new Set([ALL]),
},
];
export default () => ({});
...@@ -2,7 +2,7 @@ import Vue from 'vue'; ...@@ -2,7 +2,7 @@ import Vue from 'vue';
import VueApollo from 'vue-apollo'; import VueApollo from 'vue-apollo';
import createDefaultClient from '~/lib/graphql'; import createDefaultClient from '~/lib/graphql';
import { DASHBOARD_TYPES } from 'ee/security_dashboard/store/constants'; import { DASHBOARD_TYPES } from 'ee/security_dashboard/store/constants';
import FirstClassProjectDashboard from './components/first_class_project_dashboard.vue'; import FirstClassProjectSecurityDashboard from './components/first_class_project_security_dashboard.vue';
const isRequired = message => { const isRequired = message => {
throw new Error(message); throw new Error(message);
...@@ -28,7 +28,7 @@ export default ( ...@@ -28,7 +28,7 @@ export default (
// We'll add more of these for group and instance once we have the components // We'll add more of these for group and instance once we have the components
if (dashboardType === DASHBOARD_TYPES.PROJECT) { if (dashboardType === DASHBOARD_TYPES.PROJECT) {
element = FirstClassProjectDashboard; element = FirstClassProjectSecurityDashboard;
props.projectFullPath = el.dataset.projectFullPath; props.projectFullPath = el.dataset.projectFullPath;
} }
......
...@@ -7,8 +7,6 @@ export const SEVERITY_LEVELS = { ...@@ -7,8 +7,6 @@ export const SEVERITY_LEVELS = {
low: s__('severity|Low'), low: s__('severity|Low'),
unknown: s__('severity|Unknown'), unknown: s__('severity|Unknown'),
info: s__('severity|Info'), info: s__('severity|Info'),
undefined: s__('severity|Undefined'),
none: s__('severity|None'),
}; };
export const REPORT_TYPES = { export const REPORT_TYPES = {
......
import * as types from './mutation_types'; import * as types from './mutation_types';
import { ALL } from './constants'; import { ALL } from './constants';
import { isBaseFilterOption } from './utils'; import { setFilter } from './utils';
export default { export default {
[types.SET_ALL_FILTERS](state, payload = {}) { [types.SET_ALL_FILTERS](state, payload = {}) {
...@@ -22,29 +22,7 @@ export default { ...@@ -22,29 +22,7 @@ export default {
state.hideDismissed = payload.scope !== 'all'; state.hideDismissed = payload.scope !== 'all';
}, },
[types.SET_FILTER](state, payload) { [types.SET_FILTER](state, payload) {
const { filterId, optionId } = payload; state.filters = setFilter(state.filters, payload);
const activeFilter = state.filters.find(filter => filter.id === filterId);
if (activeFilter) {
let selection = new Set(activeFilter.selection);
if (isBaseFilterOption(optionId)) {
selection = new Set([ALL]);
} else {
selection.delete(ALL);
if (selection.has(optionId)) {
selection.delete(optionId);
} else {
selection.add(optionId);
}
}
// This prevents us from selecting nothing at all
if (selection.size === 0) {
selection.add(ALL);
}
activeFilter.selection = selection;
}
}, },
[types.SET_FILTER_OPTIONS](state, payload) { [types.SET_FILTER_OPTIONS](state, payload) {
const { filterId, options } = payload; const { filterId, options } = payload;
......
import { s__ } from '~/locale';
import { BASE_FILTERS } from './constants'; import { BASE_FILTERS } from './constants';
import { SEVERITY_LEVELS, REPORT_TYPES } from '../../constants'; import { SEVERITY_LEVELS, REPORT_TYPES } from '../../constants';
import { s__ } from '~/locale';
const optionsObjectToArray = obj => Object.entries(obj).map(([id, name]) => ({ id, name })); const optionsObjectToArray = obj => Object.entries(obj).map(([id, name]) => ({ id, name }));
const severityLevelsWithoutNone = { ...SEVERITY_LEVELS };
delete severityLevelsWithoutNone.none;
export default () => ({ export default () => ({
filters: [ filters: [
{ {
name: s__('SecurityDashboard|Severity'), name: s__('SecurityDashboard|Severity'),
id: 'severity', id: 'severity',
options: [BASE_FILTERS.severity, ...optionsObjectToArray(severityLevelsWithoutNone)], options: [BASE_FILTERS.severity, ...optionsObjectToArray(SEVERITY_LEVELS)],
hidden: false, hidden: false,
selection: new Set([BASE_FILTERS.severity.id]), selection: new Set([BASE_FILTERS.severity.id]),
}, },
......
...@@ -11,3 +11,39 @@ export const isBaseFilterOption = id => id === ALL; ...@@ -11,3 +11,39 @@ export const isBaseFilterOption = id => id === ALL;
*/ */
export const hasValidSelection = ({ selection, options }) => export const hasValidSelection = ({ selection, options }) =>
isSubset(selection, new Set(options.map(({ id }) => id))); isSubset(selection, new Set(options.map(({ id }) => id)));
/**
* Takes a filter array and a selected payload.
* It then either adds or removes that option from the appropriate selected filter.
* With a few extra exceptions around the `ALL` special case.
* @param {Array} filters the filters to mutate
* @param {Object} payload
* @param {String} payload.optionId the ID of the option that was just selected
* @param {String} payload.filterId the ID of the filter that the selected option belongs to
* @returns {Array} the mutated filters array
*/
export const setFilter = (filters, { optionId, filterId }) =>
filters.map(filter => {
if (filter.id === filterId) {
const { selection } = filter;
if (optionId === ALL) {
selection.clear();
} else if (selection.has(optionId)) {
selection.delete(optionId);
} else {
selection.delete(ALL);
selection.add(optionId);
}
if (selection.size === 0) {
selection.add(ALL);
}
return {
...filter,
selection,
};
}
return filter;
});
...@@ -9,7 +9,7 @@ import UsersCache from '~/lib/utils/users_cache'; ...@@ -9,7 +9,7 @@ import UsersCache from '~/lib/utils/users_cache';
import ResolutionAlert from './resolution_alert.vue'; import ResolutionAlert from './resolution_alert.vue';
import VulnerabilityStateDropdown from './vulnerability_state_dropdown.vue'; import VulnerabilityStateDropdown from './vulnerability_state_dropdown.vue';
import StatusDescription from './status_description.vue'; import StatusDescription from './status_description.vue';
import { VULNERABILITY_STATES } from '../constants'; import { VULNERABILITY_STATE_OBJECTS } from '../constants';
export default { export default {
name: 'VulnerabilityManagementApp', name: 'VulnerabilityManagementApp',
...@@ -53,7 +53,7 @@ export default { ...@@ -53,7 +53,7 @@ export default {
computed: { computed: {
statusBoxStyle() { statusBoxStyle() {
// Get the badge variant based on the vulnerability state, defaulting to 'expired'. // Get the badge variant based on the vulnerability state, defaulting to 'expired'.
return VULNERABILITY_STATES[this.vulnerability.state]?.statusBoxStyle || 'expired'; return VULNERABILITY_STATE_OBJECTS[this.vulnerability.state]?.statusBoxStyle || 'expired';
}, },
showResolutionAlert() { showResolutionAlert() {
return ( return (
......
...@@ -27,6 +27,11 @@ export default { ...@@ -27,6 +27,11 @@ export default {
type: String, type: String,
required: true, required: true,
}, },
filters: {
type: Object,
required: false,
default: () => ({}),
},
}, },
data() { data() {
return { return {
...@@ -42,6 +47,7 @@ export default { ...@@ -42,6 +47,7 @@ export default {
return { return {
fullPath: this.projectFullPath, fullPath: this.projectFullPath,
first: VULNERABILITIES_PER_PAGE, first: VULNERABILITIES_PER_PAGE,
...this.filters,
}; };
}, },
update: ({ project }) => project.vulnerabilities.nodes, update: ({ project }) => project.vulnerabilities.nodes,
......
<script> <script>
import { GlDropdown, GlIcon, GlDeprecatedButton } from '@gitlab/ui'; import { GlDropdown, GlIcon, GlDeprecatedButton } from '@gitlab/ui';
import { VULNERABILITY_STATES } from '../constants'; import { VULNERABILITY_STATE_OBJECTS } from '../constants';
export default { export default {
states: Object.values(VULNERABILITY_STATES), states: Object.values(VULNERABILITY_STATE_OBJECTS),
components: { GlDropdown, GlIcon, GlDeprecatedButton }, components: { GlDropdown, GlIcon, GlDeprecatedButton },
props: { props: {
...@@ -16,13 +16,13 @@ export default { ...@@ -16,13 +16,13 @@ export default {
data() { data() {
return { return {
// Vulnerability state that's picked in the dropdown. Defaults to the passed-in state. // Vulnerability state that's picked in the dropdown. Defaults to the passed-in state.
selected: VULNERABILITY_STATES[this.initialState], selected: VULNERABILITY_STATE_OBJECTS[this.initialState],
}; };
}, },
computed: { computed: {
initialStateItem() { initialStateItem() {
return VULNERABILITY_STATES[this.initialState]; return VULNERABILITY_STATE_OBJECTS[this.initialState];
}, },
}, },
......
import { s__ } from '~/locale'; import { s__ } from '~/locale';
export const VULNERABILITY_STATES = { export const VULNERABILITY_STATE_OBJECTS = {
dismissed: { dismissed: {
action: 'dismiss', action: 'dismiss',
statusBoxStyle: 'upcoming', statusBoxStyle: 'upcoming',
...@@ -21,4 +21,11 @@ export const VULNERABILITY_STATES = { ...@@ -21,4 +21,11 @@ export const VULNERABILITY_STATES = {
}, },
}; };
export const VULNERABILITY_STATES = {
detected: s__('VulnerabilityStatusTypes|Detected'),
confirmed: s__('VulnerabilityStatusTypes|Confirmed'),
dismissed: s__('VulnerabilityStatusTypes|Dismissed'),
resolved: s__('VulnerabilityStatusTypes|Resolved'),
};
export const VULNERABILITIES_PER_PAGE = 20; export const VULNERABILITIES_PER_PAGE = 20;
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql" #import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
#import "./vulnerability.fragment.graphql" #import "./vulnerability.fragment.graphql"
query project($fullPath: ID!, $after: String, $first: Int) { query project(
$fullPath: ID!
$after: String
$first: Int
$severity: [VulnerabilitySeverity!]
$reportType: [VulnerabilityReportType!]
$state: [VulnerabilityState!]
) {
project(fullPath: $fullPath) { project(fullPath: $fullPath) {
vulnerabilities(after:$after, first:$first){ vulnerabilities(
after:$after
first:$first
severity: $severity
reportType: $reportType
state: $state
){
nodes{ nodes{
...Vulnerability ...Vulnerability
} }
......
import { shallowMount } from '@vue/test-utils';
import FirstClassProjectSecurityDashboard from 'ee/security_dashboard/components/first_class_project_security_dashboard.vue';
import Filters from 'ee/security_dashboard/components/first_class_vulnerability_filters.vue';
import SecurityDashboardLayout from 'ee/security_dashboard/components/security_dashboard_layout.vue';
import ProjectVulnerabilitiesApp from 'ee/vulnerabilities/components/project_vulnerabilities_app.vue';
const drilledProps = {
dashboardDocumentation: '/help/docs',
emptyStateSvgPath: '/svgs/empty/svg',
projectFullPath: '/group/project',
};
const filters = { foo: 'bar' };
describe('First class Project Security Dashboard component', () => {
let wrapper;
const findFilters = () => wrapper.find(Filters);
const findVulnerabilities = () => wrapper.find(ProjectVulnerabilitiesApp);
const createComponent = options => {
wrapper = shallowMount(FirstClassProjectSecurityDashboard, {
propsData: drilledProps,
stubs: { SecurityDashboardLayout },
...options,
});
};
afterEach(() => {
wrapper.destroy();
});
describe('on render', () => {
beforeEach(() => {
createComponent();
});
it('should render the vulnerabilities', () => {
expect(findVulnerabilities().exists()).toBe(true);
});
it.each(Object.entries(drilledProps))(
'should pass down the %s prop to the vulnerabilities',
(key, value) => {
expect(findVulnerabilities().props(key)).toBe(value);
},
);
it('should render the filters component', () => {
expect(findFilters().exists()).toBe(true);
});
});
describe('with filter data', () => {
beforeEach(() => {
createComponent({
data() {
return { filters };
},
});
});
it('should pass the filter data down to the vulnerabilities', () => {
expect(findVulnerabilities().props().filters).toEqual(filters);
});
});
});
import { shallowMount } from '@vue/test-utils';
import { initFirstClassVulnerabilityFilters } from 'ee/security_dashboard/constants';
import Filters from 'ee/security_dashboard/components/first_class_vulnerability_filters.vue';
import Filter from 'ee/security_dashboard/components/filter.vue';
describe('First class vulnerability filters component', () => {
let wrapper;
let filters;
const findFilters = () => wrapper.findAll(Filter);
const findFirstFilter = () => findFilters().at(0);
const createComponent = () => {
wrapper = shallowMount(Filters);
};
afterEach(() => {
wrapper.destroy();
});
describe('on render', () => {
beforeEach(() => {
createComponent();
filters = initFirstClassVulnerabilityFilters();
});
it('should render the filters', () => {
expect(findFilters().length).toBe(filters.length);
});
it('should pass down the filter information to the first filter', () => {
expect(findFirstFilter().props().filter).toEqual(filters[0]);
});
it('should call the setFilter mutation when setting a filter', () => {
const stub = jest.fn();
const options = { foo: 'bar' };
wrapper.setMethods({ setFilter: stub });
findFirstFilter().vm.$emit('setFilter', options);
expect(stub).toHaveBeenCalledWith(options);
});
describe('when setFilter is called', () => {
let filterId;
let optionId;
beforeEach(() => {
filterId = filters[0].id;
optionId = filters[0].options[1].id;
wrapper.vm.setFilter({ filterId, optionId });
});
it('should set the filters locally', () => {
const expectedFilters = initFirstClassVulnerabilityFilters();
expectedFilters[0].selection = new Set([optionId]);
expect(wrapper.vm.filters).toEqual(expectedFilters);
});
it('should emit selected filters when a filter is set', () => {
expect(wrapper.emitted().filterChange).toBeTruthy();
expect(wrapper.emitted().filterChange[0]).toEqual([{ [filterId]: [optionId] }]);
});
});
});
});
import { hasValidSelection } from 'ee/security_dashboard/store/modules/filters/utils'; import { ALL } from 'ee/security_dashboard/store/modules/filters/constants';
import { hasValidSelection, setFilter } from 'ee/security_dashboard/store/modules/filters/utils';
describe('filters module utils', () => { describe('filters module utils', () => {
describe('hasValidSelection', () => { describe('hasValidSelection', () => {
...@@ -26,4 +27,111 @@ describe('filters module utils', () => { ...@@ -26,4 +27,111 @@ describe('filters module utils', () => {
}); });
}); });
}); });
describe('setFilter', () => {
const filterId = 'foo';
const option1 = 'bar';
const option2 = 'baz';
const initFilters = (initiallySelected = [ALL]) => [
{ id: filterId, selection: new Set(initiallySelected) },
];
let filters;
let filter;
describe('when ALL is initially selected', () => {
beforeEach(() => {
filters = initFilters();
});
describe('when a valid filter is passed', () => {
beforeEach(() => {
[filter] = setFilter(filters, { filterId, optionId: option1 });
});
it('should select the passed option', () => {
expect(filter.selection.has(option1)).toBe(true);
});
it('should remove the `ALL` option', () => {
expect(filter.selection.has(ALL)).toBe(false);
});
});
describe('when an invalid filter is passed ', () => {
beforeEach(() => {
[filter] = setFilter(filters, { filterId: 'baz', optionId: option1 });
});
it('should not select the passed option', () => {
expect(filter.selection.has(option1)).toBe(false);
});
it('should not remove the `ALL` option', () => {
expect(filter.selection.has(ALL)).toBe(true);
});
});
});
describe('when an option is initially selected', () => {
beforeEach(() => {
filters = initFilters([option1]);
});
describe('when the selected option is passed', () => {
beforeEach(() => {
[filter] = setFilter(filters, { filterId, optionId: option1 });
});
it('should remove the passed option', () => {
expect(filter.selection.has(option1)).toBe(false);
});
it('should select the `ALL` option', () => {
expect(filter.selection.has(ALL)).toBe(true);
});
});
describe('when another option is passed ', () => {
beforeEach(() => {
[filter] = setFilter(filters, { filterId, optionId: option2 });
});
it('should not remove the initially selected option', () => {
expect(filter.selection.has(option1)).toBe(true);
});
it('should add the passed selected option', () => {
expect(filter.selection.has(option2)).toBe(true);
});
it('should not select the `ALL` option', () => {
expect(filter.selection.has(ALL)).toBe(false);
});
});
});
describe('when two options are initially selected', () => {
beforeEach(() => {
filters = initFilters([option1, option2]);
});
describe('when a selected option is passed', () => {
beforeEach(() => {
[filter] = setFilter(filters, { filterId, optionId: option1 });
});
it('should remove the passed option', () => {
expect(filter.selection.has(option1)).toBe(false);
});
it('should not remove the other option', () => {
expect(filter.selection.has(option2)).toBe(true);
});
it('should not select the `ALL` option', () => {
expect(filter.selection.has(ALL)).toBe(false);
});
});
});
});
}); });
...@@ -10,9 +10,9 @@ import App from 'ee/vulnerabilities/components/app.vue'; ...@@ -10,9 +10,9 @@ import App from 'ee/vulnerabilities/components/app.vue';
import StatusDescription from 'ee/vulnerabilities/components/status_description.vue'; import StatusDescription from 'ee/vulnerabilities/components/status_description.vue';
import ResolutionAlert from 'ee/vulnerabilities/components/resolution_alert.vue'; import ResolutionAlert from 'ee/vulnerabilities/components/resolution_alert.vue';
import VulnerabilityStateDropdown from 'ee/vulnerabilities/components/vulnerability_state_dropdown.vue'; import VulnerabilityStateDropdown from 'ee/vulnerabilities/components/vulnerability_state_dropdown.vue';
import { VULNERABILITY_STATES } from 'ee/vulnerabilities/constants'; import { VULNERABILITY_STATE_OBJECTS } from 'ee/vulnerabilities/constants';
const vulnerabilityStateEntries = Object.entries(VULNERABILITY_STATES); const vulnerabilityStateEntries = Object.entries(VULNERABILITY_STATE_OBJECTS);
const mockAxios = new MockAdapter(axios); const mockAxios = new MockAdapter(axios);
jest.mock('~/flash'); jest.mock('~/flash');
......
...@@ -5,9 +5,9 @@ import UsersMockHelper from 'helpers/user_mock_data_helper'; ...@@ -5,9 +5,9 @@ import UsersMockHelper from 'helpers/user_mock_data_helper';
import TimeAgoTooltip from '~/vue_shared/components/time_ago_tooltip.vue'; import TimeAgoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue'; import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
import StatusText from 'ee/vulnerabilities/components/status_description.vue'; import StatusText from 'ee/vulnerabilities/components/status_description.vue';
import { VULNERABILITY_STATES } from 'ee/vulnerabilities/constants'; import { VULNERABILITY_STATE_OBJECTS } from 'ee/vulnerabilities/constants';
const NON_DETECTED_STATES = Object.keys(VULNERABILITY_STATES); const NON_DETECTED_STATES = Object.keys(VULNERABILITY_STATE_OBJECTS);
const ALL_STATES = ['detected', ...NON_DETECTED_STATES]; const ALL_STATES = ['detected', ...NON_DETECTED_STATES];
describe('Vulnerability status description component', () => { describe('Vulnerability status description component', () => {
......
import { shallowMount } from '@vue/test-utils'; import { shallowMount } from '@vue/test-utils';
import VulnerabilityStateDropdown from 'ee/vulnerabilities/components/vulnerability_state_dropdown.vue'; import VulnerabilityStateDropdown from 'ee/vulnerabilities/components/vulnerability_state_dropdown.vue';
import { VULNERABILITY_STATES } from 'ee/vulnerabilities/constants'; import { VULNERABILITY_STATE_OBJECTS } from 'ee/vulnerabilities/constants';
const vulnerabilityStateEntries = Object.entries(VULNERABILITY_STATES); const vulnerabilityStateEntries = Object.entries(VULNERABILITY_STATE_OBJECTS);
describe('Vulnerability state dropdown component', () => { describe('Vulnerability state dropdown component', () => {
let wrapper; let wrapper;
......
...@@ -17829,6 +17829,9 @@ msgstr "" ...@@ -17829,6 +17829,9 @@ msgstr ""
msgid "SecurityDashboard|Severity" msgid "SecurityDashboard|Severity"
msgstr "" msgstr ""
msgid "SecurityDashboard|Status"
msgstr ""
msgid "SecurityDashboard|The security dashboard displays the latest security findings for projects you wish to monitor. Select \"Edit dashboard\" to add and remove projects." msgid "SecurityDashboard|The security dashboard displays the latest security findings for projects you wish to monitor. Select \"Edit dashboard\" to add and remove projects."
msgstr "" msgstr ""
...@@ -22684,6 +22687,21 @@ msgstr "" ...@@ -22684,6 +22687,21 @@ msgstr ""
msgid "VulnerabilityManagement|Will not fix or a false-positive" msgid "VulnerabilityManagement|Will not fix or a false-positive"
msgstr "" msgstr ""
msgid "VulnerabilityStatusTypes|All"
msgstr ""
msgid "VulnerabilityStatusTypes|Confirmed"
msgstr ""
msgid "VulnerabilityStatusTypes|Detected"
msgstr ""
msgid "VulnerabilityStatusTypes|Dismissed"
msgstr ""
msgid "VulnerabilityStatusTypes|Resolved"
msgstr ""
msgid "Vulnerability|Class" msgid "Vulnerability|Class"
msgstr "" msgstr ""
...@@ -24787,9 +24805,6 @@ msgstr "" ...@@ -24787,9 +24805,6 @@ msgstr ""
msgid "severity|None" msgid "severity|None"
msgstr "" msgstr ""
msgid "severity|Undefined"
msgstr ""
msgid "severity|Unknown" msgid "severity|Unknown"
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment