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
f9bb48c6
Commit
f9bb48c6
authored
Oct 16, 2019
by
Winnie Hellmann
Committed by
Ash McKenzie
Oct 16, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move out_of_office? from reviewer roulette to Teammate class
parent
304b8c8d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
109 additions
and
28 deletions
+109
-28
Dangerfile
Dangerfile
+1
-0
lib/gitlab/danger/request_helper.rb
lib/gitlab/danger/request_helper.rb
+23
-0
lib/gitlab/danger/roulette.rb
lib/gitlab/danger/roulette.rb
+7
-26
lib/gitlab/danger/teammate.rb
lib/gitlab/danger/teammate.rb
+14
-0
spec/lib/gitlab/danger/teammate_spec.rb
spec/lib/gitlab/danger/teammate_spec.rb
+64
-2
No files found.
Dangerfile
View file @
f9bb48c6
# frozen_string_literal: true
# frozen_string_literal: true
require_relative
'lib/gitlab_danger'
require_relative
'lib/gitlab_danger'
require_relative
'lib/gitlab/danger/request_helper'
danger
.
import_plugin
(
'danger/plugins/helper.rb'
)
danger
.
import_plugin
(
'danger/plugins/helper.rb'
)
danger
.
import_plugin
(
'danger/plugins/roulette.rb'
)
danger
.
import_plugin
(
'danger/plugins/roulette.rb'
)
...
...
lib/gitlab/danger/request_helper.rb
0 → 100644
View file @
f9bb48c6
# frozen_string_literal: true
require
'net/http'
require
'json'
module
Gitlab
module
Danger
module
RequestHelper
HTTPError
=
Class
.
new
(
RuntimeError
)
# @param [String] url
def
self
.
http_get_json
(
url
)
rsp
=
Net
::
HTTP
.
get_response
(
URI
.
parse
(
url
))
unless
rsp
.
is_a?
(
Net
::
HTTPOK
)
raise
HTTPError
,
"Failed to read
#{
url
}
:
#{
rsp
.
code
}
#{
rsp
.
message
}
"
end
JSON
.
parse
(
rsp
.
body
)
end
end
end
end
lib/gitlab/danger/roulette.rb
View file @
f9bb48c6
# frozen_string_literal: true
# frozen_string_literal: true
require
'net/http'
require
'json'
require
'cgi'
require_relative
'teammate'
require_relative
'teammate'
module
Gitlab
module
Gitlab
module
Danger
module
Danger
module
Roulette
module
Roulette
ROULETTE_DATA_URL
=
'https://about.gitlab.com/roulette.json'
ROULETTE_DATA_URL
=
'https://about.gitlab.com/roulette.json'
HTTPError
=
Class
.
new
(
RuntimeError
)
# Looks up the current list of GitLab team members and parses it into a
# Looks up the current list of GitLab team members and parses it into a
# useful form
# useful form
...
@@ -19,7 +14,7 @@ module Gitlab
...
@@ -19,7 +14,7 @@ module Gitlab
def
team
def
team
@team
||=
@team
||=
begin
begin
data
=
http_get_json
(
ROULETTE_DATA_URL
)
data
=
Gitlab
::
Danger
::
RequestHelper
.
http_get_json
(
ROULETTE_DATA_URL
)
data
.
map
{
|
hash
|
::
Gitlab
::
Danger
::
Teammate
.
new
(
hash
)
}
data
.
map
{
|
hash
|
::
Gitlab
::
Danger
::
Teammate
.
new
(
hash
)
}
rescue
JSON
::
ParserError
rescue
JSON
::
ParserError
raise
"Failed to parse JSON response from
#{
ROULETTE_DATA_URL
}
"
raise
"Failed to parse JSON response from
#{
ROULETTE_DATA_URL
}
"
...
@@ -44,6 +39,7 @@ module Gitlab
...
@@ -44,6 +39,7 @@ module Gitlab
# Known issue: If someone is rejected due to OOO, and then becomes not OOO, the
# Known issue: If someone is rejected due to OOO, and then becomes not OOO, the
# selection will change on next spin
# selection will change on next spin
# @param [Array<Teammate>] people
def
spin_for_person
(
people
,
random
:)
def
spin_for_person
(
people
,
random
:)
people
.
shuffle
(
random:
random
)
people
.
shuffle
(
random:
random
)
.
find
(
&
method
(
:valid_person?
))
.
find
(
&
method
(
:valid_person?
))
...
@@ -51,32 +47,17 @@ module Gitlab
...
@@ -51,32 +47,17 @@ module Gitlab
private
private
# @param [Teammate] person
# @return [Boolean]
def
valid_person?
(
person
)
def
valid_person?
(
person
)
!
mr_author?
(
person
)
&&
!
out_of_office?
(
person
)
!
mr_author?
(
person
)
&&
!
person
.
out_of_office?
end
end
# @param [Teammate] person
# @return [Boolean]
def
mr_author?
(
person
)
def
mr_author?
(
person
)
person
.
username
==
gitlab
.
mr_author
person
.
username
==
gitlab
.
mr_author
end
end
def
out_of_office?
(
person
)
username
=
CGI
.
escape
(
person
.
username
)
api_endpoint
=
"https://gitlab.com/api/v4/users/
#{
username
}
/status"
response
=
http_get_json
(
api_endpoint
)
response
[
"message"
]
&
.
match?
(
/OOO/i
)
rescue
HTTPError
,
JSON
::
ParserError
false
# this is no worse than not checking for OOO
end
def
http_get_json
(
url
)
rsp
=
Net
::
HTTP
.
get_response
(
URI
.
parse
(
url
))
unless
rsp
.
is_a?
(
Net
::
HTTPSuccess
)
raise
HTTPError
,
"Failed to read
#{
url
}
:
#{
rsp
.
code
}
#{
rsp
.
message
}
"
end
JSON
.
parse
(
rsp
.
body
)
end
end
end
end
end
end
end
lib/gitlab/danger/teammate.rb
View file @
f9bb48c6
# frozen_string_literal: true
# frozen_string_literal: true
require
'cgi'
module
Gitlab
module
Gitlab
module
Danger
module
Danger
class
Teammate
class
Teammate
...
@@ -34,6 +36,18 @@ module Gitlab
...
@@ -34,6 +36,18 @@ module Gitlab
has_capability?
(
project
,
category
,
:maintainer
,
labels
)
has_capability?
(
project
,
category
,
:maintainer
,
labels
)
end
end
def
status
api_endpoint
=
"https://gitlab.com/api/v4/users/
#{
CGI
.
escape
(
username
)
}
/status"
@status
||=
Gitlab
::
Danger
::
RequestHelper
.
http_get_json
(
api_endpoint
)
rescue
Gitlab
::
Danger
::
RequestHelper
::
HTTPError
,
JSON
::
ParserError
nil
# better no status than a crashing Danger
end
# @return [Boolean]
def
out_of_office?
status
&
.
dig
(
"message"
)
&
.
match?
(
/OOO/i
)
||
false
end
private
private
def
has_capability?
(
project
,
category
,
kind
,
labels
)
def
has_capability?
(
project
,
category
,
kind
,
labels
)
...
...
spec/lib/gitlab/danger/teammate_spec.rb
View file @
f9bb48c6
...
@@ -2,11 +2,13 @@
...
@@ -2,11 +2,13 @@
require
'fast_spec_helper'
require
'fast_spec_helper'
require
'rspec-parameterized'
require
'gitlab/danger/teammate'
require
'gitlab/danger/teammate'
describe
Gitlab
::
Danger
::
Teammate
do
describe
Gitlab
::
Danger
::
Teammate
do
subject
{
described_class
.
new
(
options
)
}
subject
{
described_class
.
new
(
options
.
stringify_keys
)
}
let
(
:options
)
{
{
'projects'
=>
projects
,
'role'
=>
role
}
}
let
(
:options
)
{
{
username:
'luigi'
,
projects:
projects
,
role:
role
}
}
let
(
:projects
)
{
{
project
=>
capabilities
}
}
let
(
:projects
)
{
{
project
=>
capabilities
}
}
let
(
:role
)
{
'Engineer, Manage'
}
let
(
:role
)
{
'Engineer, Manage'
}
let
(
:labels
)
{
[]
}
let
(
:labels
)
{
[]
}
...
@@ -95,4 +97,64 @@ describe Gitlab::Danger::Teammate do
...
@@ -95,4 +97,64 @@ describe Gitlab::Danger::Teammate do
expect
(
subject
.
maintainer?
(
project
,
:frontend
,
labels
)).
to
be_falsey
expect
(
subject
.
maintainer?
(
project
,
:frontend
,
labels
)).
to
be_falsey
end
end
end
end
describe
'#status'
do
let
(
:capabilities
)
{
[
'dish washing'
]
}
context
'with empty cache'
do
context
'for successful request'
do
it
'returns the response'
do
mock_status
=
double
(
does_not:
'matter'
)
expect
(
Gitlab
::
Danger
::
RequestHelper
).
to
receive
(
:http_get_json
)
.
and_return
(
mock_status
)
expect
(
subject
.
status
).
to
be
mock_status
end
end
context
'for failing request'
do
it
'returns nil'
do
expect
(
Gitlab
::
Danger
::
RequestHelper
).
to
receive
(
:http_get_json
)
.
and_raise
(
Gitlab
::
Danger
::
RequestHelper
::
HTTPError
.
new
)
expect
(
subject
.
status
).
to
be
nil
end
end
end
context
'with filled cache'
do
it
'returns the cached response'
do
mock_status
=
double
(
does_not:
'matter'
)
expect
(
Gitlab
::
Danger
::
RequestHelper
).
to
receive
(
:http_get_json
)
.
and_return
(
mock_status
)
subject
.
status
expect
(
Gitlab
::
Danger
::
RequestHelper
).
not_to
receive
(
:http_get_json
)
expect
(
subject
.
status
).
to
be
mock_status
end
end
end
describe
'#out_of_office?'
do
using
RSpec
::
Parameterized
::
TableSyntax
let
(
:capabilities
)
{
[
'dry head'
]
}
where
(
:status
,
:result
)
do
nil
|
false
{}
|
false
{
message:
'dear reader'
}
|
false
{
message:
'OOO: massage'
}
|
true
{
message:
'love it SOOO much'
}
|
true
end
with_them
do
before
do
expect
(
Gitlab
::
Danger
::
RequestHelper
).
to
receive
(
:http_get_json
)
.
and_return
(
status
&
.
stringify_keys
)
end
it
{
expect
(
subject
.
out_of_office?
).
to
be
result
}
end
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