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
6d79bfc1
Commit
6d79bfc1
authored
Sep 17, 2020
by
Savas Vedova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move the remediated badge to the activity column
- Update tests - Update translations - Add changelog
parent
f73bb238
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
38 additions
and
14 deletions
+38
-14
ee/app/assets/javascripts/security_dashboard/components/vulnerability_list.vue
...ipts/security_dashboard/components/vulnerability_list.vue
+10
-1
ee/app/assets/javascripts/vulnerabilities/components/remediated_badge.vue
...vascripts/vulnerabilities/components/remediated_badge.vue
+6
-5
ee/changelogs/unreleased/230381-activity-column-on-security-dashboards.yml
...eleased/230381-activity-column-on-security-dashboards.yml
+5
-0
ee/spec/frontend/security_dashboard/components/mock_data.js
ee/spec/frontend/security_dashboard/components/mock_data.js
+1
-0
ee/spec/frontend/security_dashboard/components/vulnerability_list_spec.js
.../security_dashboard/components/vulnerability_list_spec.js
+5
-1
ee/spec/frontend/vulnerabilities/remediated_badge_spec.js
ee/spec/frontend/vulnerabilities/remediated_badge_spec.js
+8
-4
locale/gitlab.pot
locale/gitlab.pot
+3
-3
No files found.
ee/app/assets/javascripts/security_dashboard/components/vulnerability_list.vue
View file @
6d79bfc1
...
...
@@ -164,6 +164,12 @@ export default {
thClass
:
'
scanner
'
,
tdClass
:
'
scanner
'
,
},
{
key
:
'
activity
'
,
label
:
s__
(
'
Vulnerability|Activity
'
),
thClass
:
'
gl-text-right
'
,
tdClass
:
'
gl-text-right
'
,
},
];
if
(
this
.
shouldShowSelection
)
{
...
...
@@ -363,7 +369,6 @@ export default {
</gl-link>
<issue-link
v-if=
"issue(item)"
:issue=
"issue(item)"
/>
<vulnerability-comment-icon
v-if=
"hasComments(item)"
:vulnerability=
"item"
/>
<remediated-badge
v-if=
"item.resolvedOnDefaultBranch"
class=
"gl-ml-3"
/>
</div>
<div
v-if=
"item.location"
...
...
@@ -409,6 +414,10 @@ export default {
</div>
</
template
>
<
template
#cell(activity)=
"{ item }"
>
<remediated-badge
v-if=
"item.resolvedOnDefaultBranch"
class=
"gl-ml-3"
/>
</
template
>
<
template
#table-busy
>
<gl-skeleton-loading
v-for=
"n in $options.VULNERABILITIES_PER_PAGE"
...
...
ee/app/assets/javascripts/vulnerabilities/components/remediated_badge.vue
View file @
6d79bfc1
<
script
>
import
{
Gl
DeprecatedBadge
as
GlBadge
,
GlPopover
}
from
'
@gitlab/ui
'
;
import
{
Gl
Icon
,
GlPopover
}
from
'
@gitlab/ui
'
;
export
default
{
name
:
'
RemediatedBadge
'
,
components
:
{
Gl
Badge
,
Gl
Icon
,
GlPopover
,
},
};
</
script
>
<
template
>
<div
class=
"d-inline-block"
>
<gl-badge
ref=
"badge"
variant=
"info"
>
{{
__
(
'
Remediated: needs review
'
)
}}
</gl-badge>
<div
class=
"gl-display-inline-block"
>
<span
class=
"gl-display-inline-block gl-rounded-lg gl-bg-blue-200 gl-text-blue-500 gl-px-3"
>
<gl-icon
ref=
"badge"
name=
"admin"
/>
</span>
<gl-popover
ref=
"popover"
:content=
"
...
...
ee/changelogs/unreleased/230381-activity-column-on-security-dashboards.yml
0 → 100644
View file @
6d79bfc1
---
title
:
Move the remediated badge to the activity column
merge_request
:
42599
author
:
type
:
changed
ee/spec/frontend/security_dashboard/components/mock_data.js
View file @
6d79bfc1
...
...
@@ -16,6 +16,7 @@ export const generateVulnerabilities = () => [
severity
:
'
critical
'
,
state
:
'
dismissed
'
,
reportType
:
'
SAST
'
,
resolvedOnDefaultBranch
:
true
,
location
:
{
image
:
'
registry.gitlab.com/groulot/container-scanning-test/master:5f21de6956aee99ddb68ae49498662d9872f50ff
'
,
...
...
ee/spec/frontend/security_dashboard/components/vulnerability_list_spec.js
View file @
6d79bfc1
...
...
@@ -42,6 +42,7 @@ describe('Vulnerability list component', () => {
const
findSortableColumn
=
()
=>
wrapper
.
find
(
'
[aria-sort="descending"]
'
);
const
findCell
=
label
=>
wrapper
.
find
(
`.js-
${
label
}
`
);
const
findRow
=
(
index
=
0
)
=>
wrapper
.
findAll
(
'
tbody tr
'
).
at
(
index
);
const
findRemediatedBadge
=
()
=>
wrapper
.
find
(
RemediatedBadge
);
const
findSecurityScannerAlert
=
()
=>
wrapper
.
find
(
SecurityScannerAlert
);
const
findDismissalButton
=
()
=>
findSecurityScannerAlert
().
find
(
'
button[aria-label="Dismiss"]
'
);
const
findSelectionSummary
=
()
=>
wrapper
.
find
(
SelectionSummary
);
...
...
@@ -83,10 +84,13 @@ describe('Vulnerability list component', () => {
it
(
'
should correctly render the description
'
,
()
=>
{
const
cell
=
findCell
(
'
description
'
);
expect
(
cell
.
text
()).
toBe
(
newVulnerabilities
[
0
].
title
);
});
it
(
'
should display the remediated badge
'
,
()
=>
{
expect
(
findRemediatedBadge
().
exists
()).
toBe
(
true
);
});
it
(
'
should correctly render the identifier cell
'
,
()
=>
{
const
identifiers
=
findDataCells
(
'
vulnerability-identifier
'
);
const
extraIdentifierCounts
=
findDataCells
(
'
vulnerability-more-identifiers
'
);
...
...
ee/spec/frontend/vulnerabilities/remediated_badge_spec.js
View file @
6d79bfc1
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
Gl
DeprecatedBadge
as
GlBadge
,
GlPopover
}
from
'
@gitlab/ui
'
;
import
{
Gl
Icon
,
GlPopover
}
from
'
@gitlab/ui
'
;
import
RemediatedBadge
from
'
ee/vulnerabilities/components/remediated_badge.vue
'
;
const
POPOVER_TITLE
=
'
Vulnerability remediated. Review before resolving.
'
;
...
...
@@ -9,6 +9,8 @@ const POPOVER_CONTENT =
describe
(
'
Remediated badge component
'
,
()
=>
{
let
wrapper
;
const
findIcon
=
()
=>
wrapper
.
find
(
GlIcon
);
const
createWrapper
=
()
=>
{
return
shallowMount
(
RemediatedBadge
);
};
...
...
@@ -19,11 +21,13 @@ describe('Remediated badge component', () => {
afterEach
(()
=>
wrapper
.
destroy
());
it
(
'
should display the correct icon
'
,
()
=>
{
expect
(
findIcon
().
props
(
'
name
'
)).
toBe
(
'
admin
'
);
});
it
(
'
should link the badge and the popover
'
,
()
=>
{
const
badge
=
wrapper
.
find
(
GlBadge
);
const
{
popover
}
=
wrapper
.
vm
.
$refs
;
expect
(
popover
.
$attrs
.
target
()).
toEqual
(
badge
.
element
);
expect
(
popover
.
$attrs
.
target
()).
toEqual
(
findIcon
().
element
);
});
it
(
'
should pass down the data to the popover
'
,
()
=>
{
...
...
locale/gitlab.pot
View file @
6d79bfc1
...
...
@@ -21049,9 +21049,6 @@ msgstr ""
msgid "Release|Something went wrong while saving the release details"
msgstr ""
msgid "Remediated: needs review"
msgstr ""
msgid "Remediations"
msgstr ""
...
...
@@ -28320,6 +28317,9 @@ msgstr ""
msgid "Vulnerability|%{scannerName} (version %{scannerVersion})"
msgstr ""
msgid "Vulnerability|Activity"
msgstr ""
msgid "Vulnerability|Class"
msgstr ""
...
...
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