Commit 653aeda7 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Merge branch 'use-gitlab-roulette-in-danger-roulette' into 'master'

Use the JSON from the gitlab-roulette project for Danger roulette

Closes #121583

See merge request gitlab-org/gitlab!33757
parents 31157962 02ee393e
...@@ -10,9 +10,7 @@ def get_vue_files_with_ce_and_ee_versions(files) ...@@ -10,9 +10,7 @@ def get_vue_files_with_ce_and_ee_versions(files)
"ee/#{file}" "ee/#{file}"
end end
escaped_path = CGI.escape(counterpart_path) response = gitlab.api.get_file(gitlab.mr_json['project_id'], counterpart_path, 'master')
api_endpoint = "https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ee/repository/files/#{escaped_path}?ref=master"
response = HTTParty.get(api_endpoint) # rubocop:disable Gitlab/HTTParty
response.code != 404 response.code != 404
else else
false false
......
...@@ -5,7 +5,7 @@ require_relative 'teammate' ...@@ -5,7 +5,7 @@ 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://gitlab-org.gitlab.io/gitlab-roulette/roulette.json'
OPTIONAL_CATEGORIES = [:qa, :test].freeze OPTIONAL_CATEGORIES = [:qa, :test].freeze
Spin = Struct.new(:category, :reviewer, :maintainer, :optional_role) Spin = Struct.new(:category, :reviewer, :maintainer, :optional_role)
...@@ -90,7 +90,7 @@ module Gitlab ...@@ -90,7 +90,7 @@ module Gitlab
# @param [Teammate] person # @param [Teammate] person
# @return [Boolean] # @return [Boolean]
def valid_person?(person) def valid_person?(person)
!mr_author?(person) && person.available? !mr_author?(person) && person.available && person.has_capacity
end end
# @param [Teammate] person # @param [Teammate] person
......
# frozen_string_literal: true # frozen_string_literal: true
require 'cgi'
require 'set'
module Gitlab module Gitlab
module Danger module Danger
class Teammate class Teammate
attr_reader :name, :username, :role, :projects attr_reader :username, :name, :markdown_name, :role, :projects, :available, :has_capacity
AT_CAPACITY_EMOJI = Set.new(%w[red_circle]).freeze
OOO_EMOJI = Set.new(%w[
palm_tree
beach beach_umbrella beach_with_umbrella
]).freeze
# The options data are produced by https://gitlab.com/gitlab-org/gitlab-roulette/-/blob/master/lib/team_member.rb
def initialize(options = {}) def initialize(options = {})
@username = options['username'] @username = options['username']
@name = options['name'] || @username @name = options['name']
@markdown_name = options['markdown_name']
@role = options['role'] @role = options['role']
@projects = options['projects'] @projects = options['projects']
end @available = options['available']
@has_capacity = options['has_capacity']
def markdown_name
"[#{name}](https://gitlab.com/#{username}) (`@#{username}`)"
end end
def in_project?(name) def in_project?(name)
...@@ -43,42 +34,8 @@ module Gitlab ...@@ -43,42 +34,8 @@ module Gitlab
has_capability?(project, category, :maintainer, labels) has_capability?(project, category, :maintainer, labels)
end end
def status
return @status if defined?(@status)
@status ||=
begin
Gitlab::Danger::RequestHelper.http_get_json(status_api_endpoint)
rescue Gitlab::Danger::RequestHelper::HTTPError, JSON::ParserError
nil # better no status than a crashing Danger
end
end
# @return [Boolean]
def available?
!out_of_office? && has_capacity?
end
private private
def status_api_endpoint
"https://gitlab.com/api/v4/users/#{CGI.escape(username)}/status"
end
def status_emoji
status&.dig("emoji")
end
# @return [Boolean]
def out_of_office?
status&.dig("message")&.match?(/OOO/i) || OOO_EMOJI.include?(status_emoji)
end
# @return [Boolean]
def has_capacity?
!AT_CAPACITY_EMOJI.include?(status_emoji)
end
def has_capability?(project, category, kind, labels) def has_capability?(project, category, kind, labels)
case category case category
when :test when :test
......
...@@ -11,7 +11,9 @@ describe Gitlab::Danger::Roulette do ...@@ -11,7 +11,9 @@ describe Gitlab::Danger::Roulette do
username: 'backend-maintainer', username: 'backend-maintainer',
name: 'Backend maintainer', name: 'Backend maintainer',
role: 'Backend engineer', role: 'Backend engineer',
projects: { 'gitlab' => 'maintainer backend' } projects: { 'gitlab' => 'maintainer backend' },
available: true,
has_capacity: true
} }
end end
let(:frontend_reviewer) do let(:frontend_reviewer) do
...@@ -19,7 +21,9 @@ describe Gitlab::Danger::Roulette do ...@@ -19,7 +21,9 @@ describe Gitlab::Danger::Roulette do
username: 'frontend-reviewer', username: 'frontend-reviewer',
name: 'Frontend reviewer', name: 'Frontend reviewer',
role: 'Frontend engineer', role: 'Frontend engineer',
projects: { 'gitlab' => 'reviewer frontend' } projects: { 'gitlab' => 'reviewer frontend' },
available: true,
has_capacity: true
} }
end end
let(:frontend_maintainer) do let(:frontend_maintainer) do
...@@ -27,7 +31,9 @@ describe Gitlab::Danger::Roulette do ...@@ -27,7 +31,9 @@ describe Gitlab::Danger::Roulette do
username: 'frontend-maintainer', username: 'frontend-maintainer',
name: 'Frontend maintainer', name: 'Frontend maintainer',
role: 'Frontend engineer', role: 'Frontend engineer',
projects: { 'gitlab' => "maintainer frontend" } projects: { 'gitlab' => "maintainer frontend" },
available: true,
has_capacity: true
} }
end end
let(:software_engineer_in_test) do let(:software_engineer_in_test) do
...@@ -38,7 +44,9 @@ describe Gitlab::Danger::Roulette do ...@@ -38,7 +44,9 @@ describe Gitlab::Danger::Roulette do
projects: { projects: {
'gitlab' => 'reviewer qa', 'gitlab' => 'reviewer qa',
'gitlab-qa' => 'maintainer' 'gitlab-qa' => 'maintainer'
} },
available: true,
has_capacity: true
} }
end end
let(:engineering_productivity_reviewer) do let(:engineering_productivity_reviewer) do
...@@ -46,7 +54,9 @@ describe Gitlab::Danger::Roulette do ...@@ -46,7 +54,9 @@ describe Gitlab::Danger::Roulette do
username: 'eng-prod-reviewer', username: 'eng-prod-reviewer',
name: 'EP engineer', name: 'EP engineer',
role: 'Engineering Productivity', role: 'Engineering Productivity',
projects: { 'gitlab' => 'reviewer backend' } projects: { 'gitlab' => 'reviewer backend' },
available: true,
has_capacity: true
} }
end end
...@@ -73,10 +83,17 @@ describe Gitlab::Danger::Roulette do ...@@ -73,10 +83,17 @@ describe Gitlab::Danger::Roulette do
def matching_spin(category, reviewer: { username: nil }, maintainer: { username: nil }, optional: nil) def matching_spin(category, reviewer: { username: nil }, maintainer: { username: nil }, optional: nil)
satisfy do |spin| satisfy do |spin|
spin.category == category && bool = spin.category == category
spin.reviewer&.username == reviewer[:username] && bool &&= spin.reviewer&.username == reviewer[:username]
spin.maintainer&.username == maintainer[:username] &&
spin.optional_role == optional bool &&=
if maintainer
spin.maintainer&.username == maintainer[:username]
else
spin.maintainer.nil?
end
bool && spin.optional_role == optional
end end
end end
...@@ -85,66 +102,76 @@ describe Gitlab::Danger::Roulette do ...@@ -85,66 +102,76 @@ describe Gitlab::Danger::Roulette do
let!(:branch_name) { 'a-branch' } let!(:branch_name) { 'a-branch' }
let!(:mr_labels) { ['backend', 'devops::create'] } let!(:mr_labels) { ['backend', 'devops::create'] }
let!(:author) { Gitlab::Danger::Teammate.new('username' => 'filipa') } let!(:author) { Gitlab::Danger::Teammate.new('username' => 'filipa') }
let(:spins) do
before do # Stub the request at the latest time so that we can modify the raw data, e.g. available and has_capacity fields.
[
backend_maintainer,
frontend_reviewer,
frontend_maintainer,
software_engineer_in_test,
engineering_productivity_reviewer
].each do |person|
stub_person_status(instance_double(Gitlab::Danger::Teammate, username: person[:username]), message: 'making GitLab magic')
end
WebMock WebMock
.stub_request(:get, described_class::ROULETTE_DATA_URL) .stub_request(:get, described_class::ROULETTE_DATA_URL)
.to_return(body: teammate_json) .to_return(body: teammate_json)
subject.spin(project, categories, branch_name)
end
before do
allow(subject).to receive_message_chain(:gitlab, :mr_author).and_return(author.username) allow(subject).to receive_message_chain(:gitlab, :mr_author).and_return(author.username)
allow(subject).to receive_message_chain(:gitlab, :mr_labels).and_return(mr_labels) allow(subject).to receive_message_chain(:gitlab, :mr_labels).and_return(mr_labels)
end end
context 'when change contains backend category' do context 'when change contains backend category' do
it 'assigns backend reviewer and maintainer' do let(:categories) { [:backend] }
categories = [:backend]
spins = subject.spin(project, categories, branch_name)
it 'assigns backend reviewer and maintainer' do
expect(spins).to contain_exactly(matching_spin(:backend, reviewer: engineering_productivity_reviewer, maintainer: backend_maintainer)) expect(spins).to contain_exactly(matching_spin(:backend, reviewer: engineering_productivity_reviewer, maintainer: backend_maintainer))
end end
context 'when teammate is not available' do
before do
backend_maintainer[:available] = false
end
it 'assigns backend reviewer and no maintainer' do
expect(spins).to contain_exactly(matching_spin(:backend, reviewer: engineering_productivity_reviewer, maintainer: nil))
end
end
context 'when teammate has no capacity' do
before do
backend_maintainer[:has_capacity] = false
end
it 'assigns backend reviewer and no maintainer' do
expect(spins).to contain_exactly(matching_spin(:backend, reviewer: engineering_productivity_reviewer, maintainer: nil))
end
end
end end
context 'when change contains frontend category' do context 'when change contains frontend category' do
it 'assigns frontend reviewer and maintainer' do let(:categories) { [:frontend] }
categories = [:frontend]
spins = subject.spin(project, categories, branch_name)
it 'assigns frontend reviewer and maintainer' do
expect(spins).to contain_exactly(matching_spin(:frontend, reviewer: frontend_reviewer, maintainer: frontend_maintainer)) expect(spins).to contain_exactly(matching_spin(:frontend, reviewer: frontend_reviewer, maintainer: frontend_maintainer))
end end
end end
context 'when change contains QA category' do context 'when change contains QA category' do
it 'assigns QA reviewer and sets optional QA maintainer' do let(:categories) { [:qa] }
categories = [:qa]
spins = subject.spin(project, categories, branch_name)
it 'assigns QA reviewer and sets optional QA maintainer' do
expect(spins).to contain_exactly(matching_spin(:qa, reviewer: software_engineer_in_test, optional: :maintainer)) expect(spins).to contain_exactly(matching_spin(:qa, reviewer: software_engineer_in_test, optional: :maintainer))
end end
end end
context 'when change contains Engineering Productivity category' do context 'when change contains Engineering Productivity category' do
it 'assigns Engineering Productivity reviewer and fallback to backend maintainer' do let(:categories) { [:engineering_productivity] }
categories = [:engineering_productivity]
spins = subject.spin(project, categories, branch_name)
it 'assigns Engineering Productivity reviewer and fallback to backend maintainer' do
expect(spins).to contain_exactly(matching_spin(:engineering_productivity, reviewer: engineering_productivity_reviewer, maintainer: backend_maintainer)) expect(spins).to contain_exactly(matching_spin(:engineering_productivity, reviewer: engineering_productivity_reviewer, maintainer: backend_maintainer))
end end
end end
context 'when change contains test category' do context 'when change contains test category' do
it 'assigns corresponding SET and sets optional test maintainer' do let(:categories) { [:test] }
categories = [:test]
spins = subject.spin(project, categories, branch_name)
it 'assigns corresponding SET and sets optional test maintainer' do
expect(spins).to contain_exactly(matching_spin(:test, reviewer: software_engineer_in_test, optional: :maintainer)) expect(spins).to contain_exactly(matching_spin(:test, reviewer: software_engineer_in_test, optional: :maintainer))
end end
end end
...@@ -217,20 +244,13 @@ describe Gitlab::Danger::Roulette do ...@@ -217,20 +244,13 @@ describe Gitlab::Danger::Roulette do
end end
describe '#spin_for_person' do describe '#spin_for_person' do
let(:person1) { Gitlab::Danger::Teammate.new('username' => 'rymai') } let(:person1) { Gitlab::Danger::Teammate.new('username' => 'rymai', 'available' => true, 'has_capacity' => true) }
let(:person2) { Gitlab::Danger::Teammate.new('username' => 'godfat') } let(:person2) { Gitlab::Danger::Teammate.new('username' => 'godfat', 'available' => true, 'has_capacity' => true) }
let(:author) { Gitlab::Danger::Teammate.new('username' => 'filipa') } let(:author) { Gitlab::Danger::Teammate.new('username' => 'filipa', 'available' => true, 'has_capacity' => true) }
let(:ooo) { Gitlab::Danger::Teammate.new('username' => 'jacopo-beschi') } let(:ooo) { Gitlab::Danger::Teammate.new('username' => 'jacopo-beschi', 'available' => false, 'has_capacity' => true) }
let(:no_capacity) { Gitlab::Danger::Teammate.new('username' => 'uncharged') } let(:no_capacity) { Gitlab::Danger::Teammate.new('username' => 'uncharged', 'available' => true, 'has_capacity' => false) }
before do before do
stub_person_status(person1, message: 'making GitLab magic')
stub_person_status(person2, message: 'making GitLab magic')
stub_person_status(ooo, message: 'OOO till 15th')
stub_person_status(no_capacity, message: 'At capacity for the next few days', emoji: 'red_circle')
# we don't stub Filipa, as she is the author and
# we should not fire request checking for her
allow(subject).to receive_message_chain(:gitlab, :mr_author).and_return(author.username) allow(subject).to receive_message_chain(:gitlab, :mr_author).and_return(author.username)
end end
...@@ -254,14 +274,4 @@ describe Gitlab::Danger::Roulette do ...@@ -254,14 +274,4 @@ describe Gitlab::Danger::Roulette do
expect(subject.spin_for_person([no_capacity], random: Random.new)).to be_nil expect(subject.spin_for_person([no_capacity], random: Random.new)).to be_nil
end end
end end
private
def stub_person_status(person, message: 'dummy message', emoji: 'unicorn')
body = { message: message, emoji: emoji }.to_json
WebMock
.stub_request(:get, "https://gitlab.com/api/v4/users/#{person.username}/status")
.to_return(body: body)
end
end end
...@@ -114,79 +114,4 @@ describe Gitlab::Danger::Teammate do ...@@ -114,79 +114,4 @@ 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 '#available?' do
using RSpec::Parameterized::TableSyntax
let(:capabilities) { ['dry head'] }
where(:status, :result) do
{} | true
{ message: 'dear reader' } | true
{ message: 'OOO: massage' } | false
{ message: 'love it SOOO much' } | false
{ emoji: 'red_circle' } | false
{ emoji: 'palm_tree' } | false
{ emoji: 'beach' } | false
{ emoji: 'beach_umbrella' } | false
{ emoji: 'beach_with_umbrella' } | false
{ emoji: nil } | true
{ emoji: '' } | true
{ emoji: 'dancer' } | 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.available?).to be result }
end
it 'returns true if request fails' do
expect(Gitlab::Danger::RequestHelper)
.to receive(:http_get_json)
.and_raise(Gitlab::Danger::RequestHelper::HTTPError.new)
expect(subject.available?).to be true
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment