Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b6a51e4c
Commit
b6a51e4c
authored
Jun 08, 2021
by
Daniel Tian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide scanner filter vendor header when there's only the GitLab vendor
Changelog: changed EE: true
parent
c013d656
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
54 deletions
+79
-54
ee/app/assets/javascripts/security_dashboard/components/filters/scanner_filter.vue
.../security_dashboard/components/filters/scanner_filter.vue
+5
-1
ee/spec/frontend/security_dashboard/components/filters/scanner_filter_spec.js
...urity_dashboard/components/filters/scanner_filter_spec.js
+74
-53
No files found.
ee/app/assets/javascripts/security_dashboard/components/filters/scanner_filter.vue
View file @
b6a51e4c
...
...
@@ -82,6 +82,9 @@ export default {
return
{
scannerId
:
ids
};
},
hasCustomVendor
()
{
return
Object
.
keys
(
this
.
groups
).
length
>
1
;
},
},
methods
:
{
toggleGroup
(
groupName
)
{
...
...
@@ -112,9 +115,10 @@ export default {
/>
<template
v-for=
"[groupName, groupOptions] in Object.entries(groups)"
>
<gl-dropdown-divider
:key=
"`$
{groupName}:divider`" />
<gl-dropdown-divider
v-if=
"hasCustomVendor"
:key=
"`$
{groupName}:divider`" />
<gl-dropdown-item
v-if=
"hasCustomVendor"
:key=
"`$
{groupName}:header`"
:data-testid="`${groupName}Header`"
@click.native.capture.stop="toggleGroup(groupName)"
...
...
ee/spec/frontend/security_dashboard/components/filters/scanner_filter_spec.js
View file @
b6a51e4c
import
{
GlDropdownItem
}
from
'
@gitlab/ui
'
;
import
{
GlDropdownItem
,
GlDropdownDivider
}
from
'
@gitlab/ui
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
sampleSize
,
cloneDeep
}
from
'
lodash
'
;
import
VueRouter
from
'
vue-router
'
;
...
...
@@ -17,7 +17,7 @@ const createScannerConfig = (vendor, reportType, id) => ({
id
,
});
const
s
canners
=
[
const
defaultS
canners
=
[
createScannerConfig
(
DEFAULT_SCANNER
,
'
DEPENDENCY_SCANNING
'
,
1
),
createScannerConfig
(
DEFAULT_SCANNER
,
'
DEPENDENCY_SCANNING
'
,
2
),
createScannerConfig
(
DEFAULT_SCANNER
,
'
SAST
'
,
3
),
...
...
@@ -26,6 +26,10 @@ const scanners = [
createScannerConfig
(
DEFAULT_SCANNER
,
'
CONTAINER_SCANNING
'
,
6
),
createScannerConfig
(
DEFAULT_SCANNER
,
'
DAST
'
,
7
),
createScannerConfig
(
DEFAULT_SCANNER
,
'
DAST
'
,
8
),
];
const
customScanners
=
[
...
defaultScanners
,
createScannerConfig
(
'
Custom
'
,
'
SAST
'
,
9
),
createScannerConfig
(
'
Custom
'
,
'
SAST
'
,
10
),
createScannerConfig
(
'
Custom
'
,
'
DAST
'
,
11
),
...
...
@@ -35,7 +39,7 @@ describe('Scanner Filter component', () => {
let
wrapper
;
let
filter
;
const
createWrapper
=
()
=>
{
const
createWrapper
=
(
{
scanners
=
customScanners
}
=
{}
)
=>
{
filter
=
cloneDeep
(
scannerFilter
);
wrapper
=
shallowMount
(
ScannerFilter
,
{
...
...
@@ -46,6 +50,9 @@ describe('Scanner Filter component', () => {
});
};
const
getTestIds
=
(
selector
)
=>
wrapper
.
findAll
(
selector
).
wrappers
.
map
((
x
)
=>
x
.
attributes
(
'
data-testid
'
));
afterEach
(()
=>
{
wrapper
.
destroy
();
// Clear out the querystring if one exists, it persists between tests.
...
...
@@ -54,67 +61,81 @@ describe('Scanner Filter component', () => {
}
});
it
(
'
shows the correct dropdown items
'
,
()
=>
{
createWrapper
();
const
getTestIds
=
(
selector
)
=>
wrapper
.
findAll
(
selector
).
wrappers
.
map
((
x
)
=>
x
.
attributes
(
'
data-testid
'
));
describe
(
'
default scanners only
'
,
()
=>
{
it
(
'
shows the dropdown items with no headers or dividers
'
,
()
=>
{
createWrapper
({
scanners
:
defaultScanners
});
const
options
=
getTestIds
(
FilterItem
);
const
expectedOptions
=
[
'
all
'
,
...
filter
.
options
.
map
((
x
)
=>
x
.
id
)];
const
options
=
getTestIds
(
FilterItem
);
const
expectedOptions
=
[
'
all
'
,
...
filter
.
options
.
map
((
x
)
=>
x
.
id
),
'
Custom.SAST
'
,
'
Custom.DAST
'
,
];
expect
(
options
).
toEqual
(
expectedOptions
);
expect
(
wrapper
.
find
(
GlDropdownDivider
).
exists
()).
toBe
(
false
);
expect
(
wrapper
.
find
(
GlDropdownItem
).
exists
()).
toBe
(
false
);
});
});
const
headers
=
getTestIds
(
GlDropdownItem
);
const
expectedHeaders
=
[
'
GitLabHeader
'
,
'
CustomHeader
'
];
describe
(
'
default and custom scanners
'
,
()
=>
{
it
(
'
shows the correct dropdown items
'
,
()
=>
{
createWrapper
();
expect
(
options
).
toEqual
(
expectedOptions
);
expect
(
headers
).
toEqual
(
expectedHeaders
);
});
const
options
=
getTestIds
(
FilterItem
);
const
expectedOptions
=
[
'
all
'
,
...
filter
.
options
.
map
((
x
)
=>
x
.
id
),
'
Custom.SAST
'
,
'
Custom.DAST
'
,
];
it
(
'
toggles selection of all items in a group when the group header is clicked
'
,
async
()
=>
{
createWrapper
();
const
expectSelectedItems
=
(
items
)
=>
{
const
checkedItems
=
wrapper
.
findAll
(
FilterItem
)
.
wrappers
.
filter
((
x
)
=>
x
.
props
(
'
isChecked
'
))
.
map
((
x
)
=>
x
.
attributes
(
'
data-testid
'
));
const
expectedItems
=
items
.
map
((
x
)
=>
x
.
id
);
const
headers
=
getTestIds
(
GlDropdownItem
);
const
expectedHeaders
=
[
'
GitLabHeader
'
,
'
CustomHeader
'
];
expect
(
checkedItems
.
sort
()).
toEqual
(
expectedItems
.
sort
());
};
expect
(
options
).
toEqual
(
expectedOptions
);
expect
(
headers
).
toEqual
(
expectedHeaders
);
});
const
clickAndCheck
=
async
(
expectedOptions
)
=>
{
await
wrapper
.
find
(
'
[data-testid="GitLabHeader"]
'
).
trigger
(
'
click
'
);
it
(
'
toggles selection of all items in a group when the group header is clicked
'
,
async
()
=>
{
createWrapper
();
const
expectSelectedItems
=
(
items
)
=>
{
const
checkedItems
=
wrapper
.
findAll
(
FilterItem
)
.
wrappers
.
filter
((
x
)
=>
x
.
props
(
'
isChecked
'
))
.
map
((
x
)
=>
x
.
attributes
(
'
data-testid
'
));
const
expectedItems
=
items
.
map
((
x
)
=>
x
.
id
);
expectSelectedItems
(
expectedOptions
);
};
expect
(
checkedItems
.
sort
()).
toEqual
(
expectedItems
.
sort
()
);
};
const
selectedOptions
=
sampleSize
(
filter
.
options
,
3
);
// Randomly select some options.
await
wrapper
.
setData
({
selectedOptions
}
);
const
clickAndCheck
=
async
(
expectedOptions
)
=>
{
await
wrapper
.
find
(
'
[data-testid="GitLabHeader"]
'
).
trigger
(
'
click
'
);
expectSelectedItems
(
selectedOptions
);
expectSelectedItems
(
expectedOptions
);
};
await
clickAndCheck
(
filter
.
options
);
// First click selects all.
await
clickAndCheck
([
filter
.
allOption
]);
// Second check unselects all.
await
clickAndCheck
(
filter
.
options
);
// Third click selects all again.
});
const
selectedOptions
=
sampleSize
(
filter
.
options
,
3
);
// Randomly select some options.
await
wrapper
.
setData
({
selectedOptions
});
expectSelectedItems
(
selectedOptions
);
await
clickAndCheck
(
filter
.
options
);
// First click selects all.
await
clickAndCheck
([
filter
.
allOption
]);
// Second check unselects all.
await
clickAndCheck
(
filter
.
options
);
// Third click selects all again.
});
it
(
'
emits filter-changed event with expected data for selected options
'
,
async
()
=>
{
const
ids
=
[
'
GitLab.SAST
'
,
'
Custom.SAST
'
,
'
GitLab.API_FUZZING
'
,
'
GitLab.COVERAGE_FUZZING
'
];
router
.
replace
({
query
:
{
[
scannerFilter
.
id
]:
ids
}
});
const
selectedScanners
=
scanners
.
filter
((
x
)
=>
ids
.
includes
(
`
${
x
.
vendor
}
.
${
x
.
report_type
}
`
));
createWrapper
();
await
wrapper
.
vm
.
$nextTick
();
expect
(
wrapper
.
emitted
(
'
filter-changed
'
)[
0
][
0
]).
toEqual
({
scannerId
:
expect
.
arrayContaining
([
...
selectedScanners
.
map
((
x
)
=>
`
${
SCANNER_ID_PREFIX
}${
x
.
id
}
`
),
`
${
SCANNER_ID_PREFIX
}
COVERAGE_FUZZING:null`
,
`
${
SCANNER_ID_PREFIX
}
API_FUZZING:null`
,
]),
it
(
'
emits filter-changed event with expected data for selected options
'
,
async
()
=>
{
const
ids
=
[
'
GitLab.SAST
'
,
'
Custom.SAST
'
,
'
GitLab.API_FUZZING
'
,
'
GitLab.COVERAGE_FUZZING
'
];
router
.
replace
({
query
:
{
[
scannerFilter
.
id
]:
ids
}
});
const
selectedScanners
=
customScanners
.
filter
((
x
)
=>
ids
.
includes
(
`
${
x
.
vendor
}
.
${
x
.
report_type
}
`
),
);
createWrapper
();
await
wrapper
.
vm
.
$nextTick
();
expect
(
wrapper
.
emitted
(
'
filter-changed
'
)[
0
][
0
]).
toEqual
({
scannerId
:
expect
.
arrayContaining
([
...
selectedScanners
.
map
((
x
)
=>
`
${
SCANNER_ID_PREFIX
}${
x
.
id
}
`
),
`
${
SCANNER_ID_PREFIX
}
COVERAGE_FUZZING:null`
,
`
${
SCANNER_ID_PREFIX
}
API_FUZZING:null`
,
]),
});
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment