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
6405b943
Commit
6405b943
authored
Jun 09, 2020
by
charlieablett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parse and persist separate requirement states
- persist requirements report by iid and state from JSON
parent
b5a642ab
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
166 additions
and
57 deletions
+166
-57
ee/app/models/requirements_management/test_report.rb
ee/app/models/requirements_management/test_report.rb
+40
-11
ee/app/services/requirements_management/process_test_reports_service.rb
...s/requirements_management/process_test_reports_service.rb
+3
-2
ee/changelogs/unreleased/215514-passing-status-per-requirement.yml
...logs/unreleased/215514-passing-status-per-requirement.yml
+5
-0
ee/lib/gitlab/ci/reports/requirements_management/report.rb
ee/lib/gitlab/ci/reports/requirements_management/report.rb
+1
-1
ee/spec/factories/ci/builds.rb
ee/spec/factories/ci/builds.rb
+1
-1
ee/spec/factories/ci/job_artifacts.rb
ee/spec/factories/ci/job_artifacts.rb
+12
-2
ee/spec/fixtures/requirements_management/all_passing_report.json
.../fixtures/requirements_management/all_passing_report.json
+0
-0
ee/spec/fixtures/requirements_management/report_by_requirement.json
...xtures/requirements_management/report_by_requirement.json
+5
-0
ee/spec/models/ci/build_spec.rb
ee/spec/models/ci/build_spec.rb
+1
-1
ee/spec/models/requirements_management/test_report_spec.rb
ee/spec/models/requirements_management/test_report_spec.rb
+56
-14
ee/spec/services/requirements_management/process_test_reports_service_spec.rb
...uirements_management/process_test_reports_service_spec.rb
+42
-25
No files found.
ee/app/models/requirements_management/test_report.rb
View file @
6405b943
...
...
@@ -13,15 +13,48 @@ module RequirementsManagement
validates
:requirement
,
:state
,
presence:
true
validate
:validate_pipeline_reference
enum
state:
{
passed:
1
}
enum
state:
{
passed:
1
,
failed:
2
}
scope
:for_user_build
,
->
(
user_id
,
build_id
)
{
where
(
author_id:
user_id
,
build_id:
build_id
)
}
def
self
.
persist_all_requirement_reports_as_passed
(
build
)
reports
=
[]
timestamp
=
Time
.
current
build
.
project
.
requirements
.
opened
.
select
(
:id
).
find_each
do
|
requirement
|
reports
<<
new
(
class
<<
self
def
persist_requirement_reports
(
build
,
ci_report
)
timestamp
=
Time
.
current
if
ci_report
.
all_passed?
bulk_insert!
(
persist_all_requirement_reports_as_passed
(
build
,
timestamp
))
else
bulk_insert!
(
persist_individual_reports
(
build
,
ci_report
,
timestamp
))
end
end
private
def
persist_all_requirement_reports_as_passed
(
build
,
timestamp
)
[].
tap
do
|
reports
|
build
.
project
.
requirements
.
opened
.
select
(
:id
).
find_each
do
|
requirement
|
reports
<<
build_report
(
state: :passed
,
requirement:
requirement
,
build:
build
,
timestamp:
timestamp
)
end
end
end
def
persist_individual_reports
(
build
,
ci_report
,
timestamp
)
[].
tap
do
|
reports
|
iids
=
ci_report
.
requirements
.
keys
break
[]
if
iids
.
empty?
build
.
project
.
requirements
.
opened
.
select
(
:id
,
:iid
).
where
(
iid:
iids
).
each
do
|
requirement
|
# ignore anything with any unexpected state
new_state
=
ci_report
.
requirements
[
requirement
.
iid
.
to_s
]
next
unless
states
.
key?
(
new_state
)
reports
<<
build_report
(
state:
new_state
,
requirement:
requirement
,
build:
build
,
timestamp:
timestamp
)
end
end
end
def
build_report
(
state
:,
requirement
:,
build
:,
timestamp
:)
new
(
requirement_id:
requirement
.
id
,
# pipeline_reference will be removed:
# https://gitlab.com/gitlab-org/gitlab/-/issues/219999
...
...
@@ -29,15 +62,11 @@ module RequirementsManagement
build_id:
build
.
id
,
author_id:
build
.
user_id
,
created_at:
timestamp
,
state:
:passed
state:
state
)
end
bulk_insert!
(
reports
)
end
private
def
validate_pipeline_reference
if
pipeline_id
!=
build
&
.
pipeline_id
errors
.
add
(
:build
,
_
(
'build pipeline reference mismatch'
))
...
...
ee/app/services/requirements_management/process_test_reports_service.rb
View file @
6405b943
...
...
@@ -12,12 +12,13 @@ module RequirementsManagement
end
def
execute
return
unless
@build
.
project
.
feature_available?
(
:requirements
)
return
if
@build
.
project
.
requirements
.
empty?
return
if
test_report_already_generated?
return
unless
report
.
all_passed?
raise
Gitlab
::
Access
::
AccessDeniedError
unless
can?
(
@build
.
user
,
:create_requirement_test_report
,
@build
.
project
)
RequirementsManagement
::
TestReport
.
persist_
all_requirement_reports_as_passed
(
@build
)
RequirementsManagement
::
TestReport
.
persist_
requirement_reports
(
@build
,
report
)
end
private
...
...
ee/changelogs/unreleased/215514-passing-status-per-requirement.yml
0 → 100644
View file @
6405b943
---
title
:
Persist individual requirement report results to test report
merge_request
:
34162
author
:
type
:
added
ee/lib/gitlab/ci/reports/requirements_management/report.rb
View file @
6405b943
...
...
@@ -12,7 +12,7 @@ module Gitlab
end
def
add_requirement
(
key
,
value
)
@requirements
[
key
]
=
value
@requirements
[
key
.
remove
(
'requirement_iid'
)
]
=
value
end
def
all_passed?
...
...
ee/spec/factories/ci/builds.rb
View file @
6405b943
...
...
@@ -124,7 +124,7 @@ FactoryBot.define do
trait
:requirements_report
do
after
(
:build
)
do
|
build
|
build
.
job_artifacts
<<
create
(
:ee_ci_job_artifact
,
:requirements
,
job:
build
)
build
.
job_artifacts
<<
create
(
:ee_ci_job_artifact
,
:
all_passing_
requirements
,
job:
build
)
end
end
end
...
...
ee/spec/factories/ci/job_artifacts.rb
View file @
6405b943
...
...
@@ -333,13 +333,23 @@ FactoryBot.define do
end
end
trait
:requirements
do
trait
:
all_passing_
requirements
do
file_format
{
:raw
}
file_type
{
:requirements
}
after
(
:build
)
do
|
artifact
,
_
|
artifact
.
file
=
fixture_file_upload
(
Rails
.
root
.
join
(
'ee/spec/fixtures/requirements_management/report.json'
),
'application/json'
)
Rails
.
root
.
join
(
'ee/spec/fixtures/requirements_management/all_passing_report.json'
),
'application/json'
)
end
end
trait
:individual_requirements
do
file_format
{
:raw
}
file_type
{
:requirements
}
after
(
:build
)
do
|
artifact
,
_
|
artifact
.
file
=
fixture_file_upload
(
Rails
.
root
.
join
(
'ee/spec/fixtures/requirements_management/report_by_requirement.json'
),
'application/json'
)
end
end
end
...
...
ee/spec/fixtures/requirements_management/report.json
→
ee/spec/fixtures/requirements_management/
all_passing_
report.json
View file @
6405b943
File moved
ee/spec/fixtures/requirements_management/report_by_requirement.json
0 → 100644
View file @
6405b943
{
"requirement_iid1"
:
"passed"
,
"requirement_iid2"
:
"failed"
,
"requirement_iid3"
:
"passed"
}
ee/spec/models/ci/build_spec.rb
View file @
6405b943
...
...
@@ -432,7 +432,7 @@ RSpec.describe Ci::Build do
context
'when there is a requirements report'
do
before
do
create
(
:ee_ci_job_artifact
,
:requirements
,
job:
job
,
project:
job
.
project
)
create
(
:ee_ci_job_artifact
,
:
all_passing_
requirements
,
job:
job
,
project:
job
.
project
)
end
context
'when requirements are available'
do
...
...
ee/spec/models/requirements_management/test_report_spec.rb
View file @
6405b943
...
...
@@ -50,26 +50,68 @@ RSpec.describe RequirementsManagement::TestReport do
end
end
describe
'.persist_
all_requirement_reports_as_passed
'
do
describe
'.persist_
requirement_reports
'
do
let_it_be
(
:project
)
{
create
(
:project
)
}
let_it_be
(
:build
)
{
create
(
:ee_ci_build
,
:requirements_report
,
project:
project
)
}
subject
{
described_class
.
persist_
all_requirement_reports_as_passed
(
build
)
}
subject
{
described_class
.
persist_
requirement_reports
(
build
,
ci_report
)
}
it
'creates test report with passed status for each open requirement'
do
requirement
=
create
(
:requirement
,
state: :opened
,
project:
project
)
create
(
:requirement
,
state: :opened
)
create
(
:requirement
,
state: :archived
,
project:
project
)
context
'if the CI report contains no entries'
do
let
(
:ci_report
)
{
Gitlab
::
Ci
::
Reports
::
RequirementsManagement
::
Report
.
new
}
expect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
1
)
it
'does not create any test reports'
do
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
.
count
}
end
end
reports
=
RequirementsManagement
::
TestReport
.
where
(
pipeline:
build
.
pipeline
)
expect
(
reports
.
size
).
to
eq
(
1
)
expect
(
reports
.
first
).
to
have_attributes
(
requirement:
requirement
,
author:
build
.
user
,
state:
'passed'
)
context
'if the CI report contains some entries'
do
context
'and the entries are valid'
do
let
(
:ci_report
)
do
Gitlab
::
Ci
::
Reports
::
RequirementsManagement
::
Report
.
new
.
tap
do
|
report
|
report
.
add_requirement
(
'requirement_iid1'
,
'passed'
)
report
.
add_requirement
(
'requirement_iid2'
,
'failed'
)
report
.
add_requirement
(
'requirement_iid3'
,
'passed'
)
end
end
it
'creates test report with expected status for each open requirement'
do
requirement1
=
create
(
:requirement
,
state: :opened
,
project:
project
)
requirement2
=
create
(
:requirement
,
state: :opened
,
project:
project
)
create
(
:requirement
,
state: :opened
)
# different project
create
(
:requirement
,
state: :archived
,
project:
project
)
# archived
expect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
2
)
reports
=
RequirementsManagement
::
TestReport
.
where
(
pipeline:
build
.
pipeline
)
expect
(
reports
).
to
match_array
([
have_attributes
(
requirement:
requirement1
,
author:
build
.
user
,
state:
'passed'
),
have_attributes
(
requirement:
requirement2
,
author:
build
.
user
,
state:
'failed'
)
])
end
end
context
'and the entries are not valid'
do
let
(
:ci_report
)
do
Gitlab
::
Ci
::
Reports
::
RequirementsManagement
::
Report
.
new
.
tap
do
|
report
|
report
.
add_requirement
(
'requirement_iid0'
,
'passed'
)
report
.
add_requirement
(
'requirement_iid1'
,
'nonsense'
)
report
.
add_requirement
(
'requirement_iid2'
,
nil
)
end
end
it
'creates test report with expected status for each open requirement'
do
# ignore requirement IIDs that appear in the test but are missing
create
(
:requirement
,
state: :opened
,
project:
project
,
iid:
1
)
create
(
:requirement
,
state: :opened
,
project:
project
,
iid:
2
)
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
.
count
}
end
end
end
end
end
ee/spec/services/requirements_management/process_test_reports_service_spec.rb
View file @
6405b943
...
...
@@ -8,45 +8,62 @@ describe RequirementsManagement::ProcessTestReportsService do
let_it_be
(
:build
)
{
create
(
:ee_ci_build
,
:requirements_report
,
project:
project
,
user:
user
)
}
describe
'#execute'
do
let_it_be
(
:requirement1
)
{
create
(
:requirement
,
state: :opened
,
project:
project
)
}
let_it_be
(
:requirement2
)
{
create
(
:requirement
,
state: :opened
,
project:
project
)
}
let_it_be
(
:requirement3
)
{
create
(
:requirement
,
state: :archived
,
project:
project
)
}
subject
{
described_class
.
new
(
build
).
execute
}
before
do
stub_licensed_features
(
requirements:
true
)
end
context
'when user can create requirements test reports'
do
context
'when requirements feature is available'
do
before
do
project
.
add_reporter
(
user
)
stub_licensed_features
(
requirements:
true
)
end
it
'creates new test report for each open requiremen
t'
do
expect
(
RequirementsManagement
::
TestReport
).
to
receive
(
:persist_all_requirement_reports_as_passed
).
with
(
build
).
and_call_original
e
xpect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
2
)
context
'when there are no requirements in the projec
t'
do
it
'does not create any test report'
do
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
e
nd
end
it
'does not create test report for the same pipeline and user twice'
do
expect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
2
)
context
'when there are requirements'
do
let_it_be
(
:requirement1
)
{
create
(
:requirement
,
state: :opened
,
project:
project
)
}
let_it_be
(
:requirement2
)
{
create
(
:requirement
,
state: :opened
,
project:
project
)
}
let_it_be
(
:requirement3
)
{
create
(
:requirement
,
state: :archived
,
project:
project
)
}
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
end
context
'when user is not allowed to create requirements test reports'
do
it
'raises an exception'
do
expect
{
subject
}.
to
raise_exception
(
Gitlab
::
Access
::
AccessDeniedError
)
end
end
context
'when build does not contain any requirements report'
do
let
(
:build
)
{
create
(
:ee_ci_build
,
project:
project
,
user:
user
)
}
context
'when user can create requirements test reports'
do
before
do
project
.
add_reporter
(
user
)
end
it
'does not create any test report'
do
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
it
'creates new test report for each open requirement'
do
expect
(
RequirementsManagement
::
TestReport
).
to
receive
(
:persist_requirement_reports
)
.
with
(
build
,
an_instance_of
(
Gitlab
::
Ci
::
Reports
::
RequirementsManagement
::
Report
)).
and_call_original
expect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
2
)
end
it
'does not create test report for the same pipeline and user twice'
do
expect
{
subject
}.
to
change
{
RequirementsManagement
::
TestReport
.
count
}.
by
(
2
)
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
end
context
'when build does not contain any requirements report'
do
let
(
:build
)
{
create
(
:ee_ci_build
,
project:
project
,
user:
user
)
}
it
'does not create any test report'
do
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
end
end
end
end
end
context
'when
user is not allowed to create requirements test reports
'
do
it
'
raises an exception
'
do
expect
{
subject
}.
to
raise_exception
(
Gitlab
::
Access
::
AccessDeniedError
)
context
'when
requirements feature is not available
'
do
it
'
does not create any test report
'
do
expect
{
subject
}.
not_to
change
{
RequirementsManagement
::
TestReport
}
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