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
3459ba13
Commit
3459ba13
authored
Jul 08, 2019
by
Małgorzata Ksionek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add cr remarks
parent
f6423fa4
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
app/controllers/projects/cycle_analytics/events_controller.rb
...controllers/projects/cycle_analytics/events_controller.rb
+1
-1
app/controllers/projects/cycle_analytics_controller.rb
app/controllers/projects/cycle_analytics_controller.rb
+1
-1
lib/gitlab/cycle_analytics/usage_data.rb
lib/gitlab/cycle_analytics/usage_data.rb
+1
-1
spec/lib/gitlab/cycle_analytics/events_spec.rb
spec/lib/gitlab/cycle_analytics/events_spec.rb
+1
-1
spec/models/cycle_analytics/code_spec.rb
spec/models/cycle_analytics/code_spec.rb
+1
-1
spec/models/cycle_analytics/issue_spec.rb
spec/models/cycle_analytics/issue_spec.rb
+1
-1
spec/models/cycle_analytics/plan_spec.rb
spec/models/cycle_analytics/plan_spec.rb
+1
-1
spec/models/cycle_analytics/production_spec.rb
spec/models/cycle_analytics/production_spec.rb
+1
-1
spec/models/cycle_analytics/project_level_spec.rb
spec/models/cycle_analytics/project_level_spec.rb
+1
-1
spec/models/cycle_analytics/review_spec.rb
spec/models/cycle_analytics/review_spec.rb
+1
-1
spec/models/cycle_analytics/staging_spec.rb
spec/models/cycle_analytics/staging_spec.rb
+1
-1
spec/models/cycle_analytics/test_spec.rb
spec/models/cycle_analytics/test_spec.rb
+1
-1
No files found.
app/controllers/projects/cycle_analytics/events_controller.rb
View file @
3459ba13
...
...
@@ -50,7 +50,7 @@ module Projects
end
def
cycle_analytics
@cycle_analytics
||=
::
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
options
(
events_params
))
@cycle_analytics
||=
::
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
options
(
events_params
))
end
def
events_params
...
...
app/controllers/projects/cycle_analytics_controller.rb
View file @
3459ba13
...
...
@@ -9,7 +9,7 @@ class Projects::CycleAnalyticsController < Projects::ApplicationController
before_action
:authorize_read_cycle_analytics!
def
show
@cycle_analytics
=
::
CycleAnalytics
::
ProjectLevel
.
new
(
project:
@project
,
options:
options
(
cycle_analytics_params
))
@cycle_analytics
=
::
CycleAnalytics
::
ProjectLevel
.
new
(
@project
,
options:
options
(
cycle_analytics_params
))
@cycle_analytics_no_data
=
@cycle_analytics
.
no_stats?
...
...
lib/gitlab/cycle_analytics/usage_data.rb
View file @
3459ba13
...
...
@@ -32,7 +32,7 @@ module Gitlab
def
medians_per_stage
projects
.
each_with_object
({})
do
|
project
,
hsh
|
::
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
options
).
all_medians_by_stage
.
each
do
|
stage_name
,
median
|
::
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
options
).
all_medians_by_stage
.
each
do
|
stage_name
,
median
|
hsh
[
stage_name
]
||=
[]
hsh
[
stage_name
]
<<
median
end
...
...
spec/lib/gitlab/cycle_analytics/events_spec.rb
View file @
3459ba13
...
...
@@ -7,7 +7,7 @@ describe 'cycle analytics events' do
let!
(
:context
)
{
create
(
:issue
,
project:
project
,
created_at:
2
.
days
.
ago
)
}
let
(
:events
)
do
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
,
current_user:
user
})[
stage
].
events
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
,
current_user:
user
})[
stage
].
events
end
before
do
...
...
spec/models/cycle_analytics/code_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#code' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
context
'with deployment'
do
generate_cycle_analytics_spec
(
...
...
spec/models/cycle_analytics/issue_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#issue' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :issue
,
...
...
spec/models/cycle_analytics/plan_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#plan' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :plan
,
...
...
spec/models/cycle_analytics/production_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#production' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :production
,
...
...
spec/models/cycle_analytics/project_level_spec.rb
View file @
3459ba13
...
...
@@ -11,7 +11,7 @@ describe CycleAnalytics::ProjectLevel do
let
(
:mr
)
{
create_merge_request_closing_issue
(
user
,
project
,
issue
,
commit_message:
"References
#{
issue
.
to_reference
}
"
)
}
let
(
:pipeline
)
{
create
(
:ci_empty_pipeline
,
status:
'created'
,
project:
project
,
ref:
mr
.
source_branch
,
sha:
mr
.
source_branch_sha
,
head_pipeline_of:
mr
)
}
subject
{
described_class
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
described_class
.
new
(
project
,
options:
{
from:
from_date
})
}
describe
'#all_medians_by_stage'
do
before
do
...
...
spec/models/cycle_analytics/review_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#review' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :review
,
...
...
spec/models/cycle_analytics/staging_spec.rb
View file @
3459ba13
...
...
@@ -9,7 +9,7 @@ describe 'CycleAnalytics#staging' do
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :staging
,
...
...
spec/models/cycle_analytics/test_spec.rb
View file @
3459ba13
...
...
@@ -8,7 +8,7 @@ describe 'CycleAnalytics#test' do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:from_date
)
{
10
.
days
.
ago
}
let
(
:user
)
{
create
(
:user
,
:admin
)
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
:
project
,
options:
{
from:
from_date
})
}
subject
{
CycleAnalytics
::
ProjectLevel
.
new
(
project
,
options:
{
from:
from_date
})
}
generate_cycle_analytics_spec
(
phase: :test
,
...
...
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