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
7e8b42f5
Commit
7e8b42f5
authored
Dec 14, 2021
by
Jiaan Louw
Committed by
Phil Hughes
Dec 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add violation component to compliance report app
parent
2c862282
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
ee/app/assets/javascripts/compliance_dashboard/components/report.vue
...ts/javascripts/compliance_dashboard/components/report.vue
+7
-1
ee/spec/frontend/compliance_dashboard/components/report_spec.js
...c/frontend/compliance_dashboard/components/report_spec.js
+20
-2
No files found.
ee/app/assets/javascripts/compliance_dashboard/components/report.vue
View file @
7e8b42f5
...
...
@@ -7,6 +7,7 @@ import complianceViolationsQuery from '../graphql/compliance_violations.query.gr
import
{
mapResponse
}
from
'
../graphql/mappers
'
;
import
EmptyState
from
'
./empty_state.vue
'
;
import
MergeCommitsExportButton
from
'
./merge_requests/merge_commits_export_button.vue
'
;
import
ViolationReason
from
'
./violations/reason.vue
'
;
export
default
{
name
:
'
ComplianceReport
'
,
...
...
@@ -16,6 +17,7 @@ export default {
GlLoadingIcon
,
GlTable
,
MergeCommitsExportButton
,
ViolationReason
,
},
props
:
{
emptyStateSvgPath
:
{
...
...
@@ -122,7 +124,11 @@ export default {
head-variant=
"white"
stacked=
"lg"
thead-class=
"gl-border-b-solid gl-border-b-1 gl-border-b-gray-100"
/>
>
<template
#cell(reason)=
"
{ item: { reason, violatingUser } }">
<violation-reason
:reason=
"reason"
:user=
"violatingUser"
/>
</
template
>
</gl-table>
<empty-state
v-else
:image-path=
"emptyStateSvgPath"
/>
</section>
</template>
ee/spec/frontend/compliance_dashboard/components/report_spec.js
View file @
7e8b42f5
...
...
@@ -6,6 +6,7 @@ import * as Sentry from '@sentry/browser';
import
ComplianceReport
from
'
ee/compliance_dashboard/components/report.vue
'
;
import
EmptyState
from
'
ee/compliance_dashboard/components/empty_state.vue
'
;
import
MergeCommitsExportButton
from
'
ee/compliance_dashboard/components/merge_requests/merge_commits_export_button.vue
'
;
import
ViolationReason
from
'
ee/compliance_dashboard/components/violations/reason.vue
'
;
import
resolvers
from
'
ee/compliance_dashboard/graphql/resolvers
'
;
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
...
...
@@ -25,6 +26,7 @@ describe('ComplianceReport component', () => {
const
findViolationsTable
=
()
=>
wrapper
.
findComponent
(
GlTable
);
const
findEmptyState
=
()
=>
wrapper
.
findComponent
(
EmptyState
);
const
findMergeCommitsExportButton
=
()
=>
wrapper
.
findComponent
(
MergeCommitsExportButton
);
const
findViolationReason
=
()
=>
wrapper
.
findComponent
(
ViolationReason
);
const
findTableHeaders
=
()
=>
findViolationsTable
().
findAll
(
'
th
'
);
const
findTablesFirstRowData
=
()
=>
...
...
@@ -110,12 +112,28 @@ describe('ComplianceReport component', () => {
// Note: This should be refactored as each table component is created
// Severity: https://gitlab.com/gitlab-org/gitlab/-/issues/342900
// Violation: https://gitlab.com/gitlab-org/gitlab/-/issues/342901
// Merge request and date merged: https://gitlab.com/gitlab-org/gitlab/-/issues/342902
it
(
'
has the correct first row data
'
,
()
=>
{
const
headerTexts
=
findTablesFirstRowData
().
wrappers
.
map
((
d
)
=>
d
.
text
());
expect
(
headerTexts
).
toEqual
([
'
1
'
,
'
1
'
,
expect
.
anything
(),
'
2021-11-25T11:56:52.215Z
'
]);
expect
(
headerTexts
).
toEqual
([
'
1
'
,
'
Approved by committer
'
,
expect
.
anything
(),
'
2021-11-25T11:56:52.215Z
'
,
]);
});
it
(
'
renders the violation reason
'
,
()
=>
{
const
{
violatingUser
:
{
__typename
,
...
user
},
reason
,
}
=
mockResolver
().
mergeRequestViolations
.
nodes
[
0
];
expect
(
findViolationReason
().
props
()).
toMatchObject
({
reason
,
user
,
});
});
});
...
...
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