BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
83130ae8
Commit
83130ae8
authored
Nov 04, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated production events with new fields
parent
beeb6461
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
7 deletions
+20
-7
events.rb
lib/gitlab/cycle_analytics/events.rb
+1
-1
query_config.rb
lib/gitlab/cycle_analytics/query_config.rb
+4
-2
events_spec.rb
spec/lib/gitlab/cycle_analytics/events_spec.rb
+15
-4
No files found.
lib/gitlab/cycle_analytics/events.rb
View file @
83130ae8
...
...
@@ -17,7 +17,7 @@ module Gitlab
event
[
'total_time'
]
=
distance_of_time_in_words
(
event
[
'total_time'
].
to_f
)
commit
=
first_time_reference_commit
(
event
.
delete
(
'commits'
),
event
)
event
[
'title'
]
=
commit
.
title
event
[
'url'
]
=
Gitlab
::
LightUrlBuilder
.
build
(
entity: :commit_url
,
project:
@project
,
id:
commit
.
id
)
event
[
'url'
]
=
Gitlab
::
LightUrlBuilder
.
build
(
entity: :commit_url
,
project:
@project
,
id:
commit
.
id
)
event
[
'sha'
]
=
commit
.
short_id
event
[
'author_name'
]
=
commit
.
author
.
name
event
[
'author_profile_url'
]
=
Gitlab
::
LightUrlBuilder
.
build
(
entity: :user
,
id:
commit
.
author
.
username
)
...
...
lib/gitlab/cycle_analytics/query_config.rb
View file @
83130ae8
...
...
@@ -87,9 +87,11 @@ module Gitlab
end_time_attrs:
mr_metrics_table
[
:first_deployed_to_production_at
],
projections:
[
issue_table
[
:title
],
issue_table
[
:iid
],
issue_table
[
:id
],
issue_table
[
:created_at
],
user_table
[
:name
],
user_table
[
:email
]]
user_table
[
:name
].
as
(
'author_name'
),
user_table
[
:username
].
as
(
'author_username'
),
user_table
[
:id
].
as
(
'author_id'
)]
}
end
end
...
...
spec/lib/gitlab/cycle_analytics/events_spec.rb
View file @
83130ae8
...
...
@@ -21,6 +21,10 @@ describe Gitlab::CycleAnalytics::Events do
expect
(
subject
.
issue_events
.
first
[
'title'
]).
to
eq
(
context
.
title
)
end
it
'has the URL'
do
expect
(
subject
.
issue_events
.
first
[
'url'
]).
not_to
be_nil
end
it
'has an iid'
do
expect
(
subject
.
issue_events
.
first
[
'iid'
]).
to
eq
(
context
.
iid
.
to_s
)
end
...
...
@@ -216,7 +220,6 @@ describe Gitlab::CycleAnalytics::Events do
deploy_master
end
it
'has the name'
do
expect
(
subject
.
staging_events
.
first
[
'name'
]).
not_to
be_nil
end
...
...
@@ -274,6 +277,10 @@ describe Gitlab::CycleAnalytics::Events do
expect
(
subject
.
production_events
.
first
[
'title'
]).
to
eq
(
context
.
title
)
end
it
'has the URL'
do
expect
(
subject
.
production_events
.
first
[
'url'
]).
not_to
be_nil
end
it
'has an iid'
do
expect
(
subject
.
production_events
.
first
[
'iid'
]).
to
eq
(
context
.
iid
.
to_s
)
end
...
...
@@ -282,12 +289,16 @@ describe Gitlab::CycleAnalytics::Events do
expect
(
subject
.
production_events
.
first
[
'created_at'
]).
to
end_with
(
'ago'
)
end
it
"has the author's email"
do
expect
(
subject
.
production_events
.
first
[
'email'
]).
to
eq
(
context
.
author
.
email
)
it
"has the author's URL"
do
expect
(
subject
.
production_events
.
first
[
'author_profile_url'
]).
not_to
be_nil
end
it
"has the author's avatar URL"
do
expect
(
subject
.
production_events
.
first
[
'author_avatar_url'
]).
not_to
be_nil
end
it
"has the author's name"
do
expect
(
subject
.
production_events
.
first
[
'name'
]).
to
eq
(
context
.
author
.
name
)
expect
(
subject
.
production_events
.
first
[
'
author_
name'
]).
to
eq
(
context
.
author
.
name
)
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