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
7dc27993
Commit
7dc27993
authored
May 08, 2020
by
Maxime Orefice
Committed by
Douglas Barbosa Alexandre
May 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add AccessibilityReportsService class
parent
98a943b8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
0 deletions
+79
-0
app/services/ci/compare_accessibility_reports_service.rb
app/services/ci/compare_accessibility_reports_service.rb
+17
-0
spec/services/ci/compare_accessibility_reports_service_spec.rb
...services/ci/compare_accessibility_reports_service_spec.rb
+62
-0
No files found.
app/services/ci/compare_accessibility_reports_service.rb
0 → 100644
View file @
7dc27993
# frozen_string_literal: true
module
Ci
class
CompareAccessibilityReportsService
<
CompareReportsBaseService
def
comparer_class
Gitlab
::
Ci
::
Reports
::
AccessibilityReportsComparer
end
def
serializer_class
AccessibilityReportsComparerSerializer
end
def
get_report
(
pipeline
)
pipeline
&
.
accessibility_reports
end
end
end
spec/services/ci/compare_accessibility_reports_service_spec.rb
0 → 100644
View file @
7dc27993
# frozen_string_literal: true
require
'spec_helper'
describe
Ci
::
CompareAccessibilityReportsService
do
let
(
:service
)
{
described_class
.
new
(
project
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
describe
'#execute'
do
subject
{
service
.
execute
(
base_pipeline
,
head_pipeline
)
}
context
'when head pipeline has accessibility reports'
do
let
(
:base_pipeline
)
{
nil
}
let
(
:head_pipeline
)
{
create
(
:ci_pipeline
,
:with_accessibility_reports
,
project:
project
)
}
it
'returns status and data'
do
expect
(
subject
[
:status
]).
to
eq
(
:parsed
)
expect
(
subject
[
:data
]).
to
match_schema
(
'entities/accessibility_reports_comparer'
)
end
end
context
'when base and head pipelines have accessibility reports'
do
let
(
:base_pipeline
)
{
create
(
:ci_pipeline
,
:with_accessibility_reports
,
project:
project
)
}
let
(
:head_pipeline
)
{
create
(
:ci_pipeline
,
:with_accessibility_reports
,
project:
project
)
}
it
'returns status and data'
do
expect
(
subject
[
:status
]).
to
eq
(
:parsed
)
expect
(
subject
[
:data
]).
to
match_schema
(
'entities/accessibility_reports_comparer'
)
end
end
end
describe
'#latest?'
do
subject
{
service
.
latest?
(
base_pipeline
,
head_pipeline
,
data
)
}
let!
(
:base_pipeline
)
{
nil
}
let!
(
:head_pipeline
)
{
create
(
:ci_pipeline
,
:with_accessibility_reports
,
project:
project
)
}
let!
(
:key
)
{
service
.
send
(
:key
,
base_pipeline
,
head_pipeline
)
}
context
'when cache key is latest'
do
let
(
:data
)
{
{
key:
key
}
}
it
{
is_expected
.
to
be_truthy
}
end
context
'when cache key is outdated'
do
before
do
head_pipeline
.
update_column
(
:updated_at
,
10
.
minutes
.
ago
)
end
let
(
:data
)
{
{
key:
key
}
}
it
{
is_expected
.
to
be_falsy
}
end
context
'when cache key is empty'
do
let
(
:data
)
{
{
key:
nil
}
}
it
{
is_expected
.
to
be_falsy
}
end
end
end
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