Add tests for Mattermost team creation

This commit is contained in:
Z.J. van de Weg 2017-02-03 11:29:56 +01:00
parent 297dc70158
commit 1a0e54b32d
9 changed files with 73 additions and 32 deletions

View File

@ -143,6 +143,7 @@ class GroupsController < Groups::ApplicationController
:share_with_group_lock, :share_with_group_lock,
:visibility_level, :visibility_level,
:parent_id :parent_id
:create_chat_team
] ]
end end

5
app/models/chat_team.rb Normal file
View File

@ -0,0 +1,5 @@
class ChatTeam < ActiveRecord::Base
validates :team_id, presence: true
belongs_to :namespace
end

View File

@ -5,6 +5,8 @@ module Groups
end end
def execute def execute
create_chat_team = params.delete(:create_chat_team)
@group = Group.new(params) @group = Group.new(params)
unless Gitlab::VisibilityLevel.allowed_for?(current_user, params[:visibility_level]) unless Gitlab::VisibilityLevel.allowed_for?(current_user, params[:visibility_level])
@ -23,7 +25,7 @@ module Groups
@group.save @group.save
@group.add_owner(current_user) @group.add_owner(current_user)
if params[:create_chat_team] && Gitlab.config.mattermost.enabled if create_chat_team && Gitlab.config.mattermost.enabled
Mattermost::CreateTeamWorker.perform_async(@group.id, current_user.id) Mattermost::CreateTeamWorker.perform_async(@group.id, current_user.id)
end end

View File

@ -3,26 +3,21 @@ module Mattermost
include Sidekiq::Worker include Sidekiq::Worker
include DedicatedSidekiqQueue include DedicatedSidekiqQueue
def perform(group_id, current_user_id, options = {}) sidekiq_options retry: 5
@group = Group.find(group_id)
current_user = User.find(current_user_id)
options = team_params.merge(options) # Add 5 seconds so the first retry isn't 1 second later
sidekiq_retry_in do |count|
# The user that creates the team will be Team Admin 5 + 5 ** n
response = Mattermost::Team.new(current_user).create(options)
ChatTeam.create!(namespace: @group, name: response['name'], team_id: response['id'])
end end
private def perform(group_id, current_user_id, options = {})
group = Group.find(group_id)
current_user = User.find(current_user_id)
def team_params # The user that creates the team will be Team Admin
{ response = Mattermost::Team.new(current_user).create(group, options)
name: @group.path[0..59],
display_name: @group.name[0..59], ChatTeam.create(namespace: group, name: response['name'], team_id: response['id'])
type: @group.public? ? 'O' : 'I' # Open vs Invite-only
}
end end
end end
end end

View File

@ -26,7 +26,7 @@ module Mattermost
def session_get(path, options = {}) def session_get(path, options = {})
with_session do |session| with_session do |session|
get(session, path, options) get(session, path, options)
end end
end end

View File

@ -5,8 +5,22 @@ module Mattermost
session_get('/api/v3/teams/all') session_get('/api/v3/teams/all')
end end
def create(params) # Creates a team on the linked Mattermost instance, the team admin will be the
session_post('/api/v3/teams/create', body: params.to_json) # `current_user` passed to the Mattermost::Client instance
def create(group, params)
session_post('/api/v3/teams/create', body: new_team_params(group, params).to_json)
end
private
MATTERMOST_TEAM_LENGTH_MAX = 59
def new_team_params(group, options)
{
name: group.path[0..MATTERMOST_TEAM_LENGTH_MAX],
display_name: group.name[0..MATTERMOST_TEAM_LENGTH_MAX],
type: group.public? ? 'O' : 'I' # Open vs Invite-only
}.merge(options)
end end
end end
end end

View File

@ -2,7 +2,7 @@ require 'spec_helper'
describe ChatTeam, type: :model do describe ChatTeam, type: :model do
# Associations # Associations
it { is_expected.to belong_to(:group) } it { is_expected.to belong_to(:namespace) }
# Fields # Fields
it { is_expected.to respond_to(:name) } it { is_expected.to respond_to(:name) }

View File

@ -4,11 +4,11 @@ describe Groups::CreateService, '#execute', services: true do
let!(:user) { create(:user) } let!(:user) { create(:user) }
let!(:group_params) { { path: "group_path", visibility_level: Gitlab::VisibilityLevel::PUBLIC } } let!(:group_params) { { path: "group_path", visibility_level: Gitlab::VisibilityLevel::PUBLIC } }
subject { service.execute }
describe 'visibility level restrictions' do describe 'visibility level restrictions' do
let!(:service) { described_class.new(user, group_params) } let!(:service) { described_class.new(user, group_params) }
subject { service.execute }
context "create groups without restricted visibility level" do context "create groups without restricted visibility level" do
it { is_expected.to be_persisted } it { is_expected.to be_persisted }
end end
@ -24,8 +24,6 @@ describe Groups::CreateService, '#execute', services: true do
let!(:group) { create(:group) } let!(:group) { create(:group) }
let!(:service) { described_class.new(user, group_params.merge(parent_id: group.id)) } let!(:service) { described_class.new(user, group_params.merge(parent_id: group.id)) }
subject { service.execute }
context 'as group owner' do context 'as group owner' do
before { group.add_owner(user) } before { group.add_owner(user) }
@ -40,4 +38,15 @@ describe Groups::CreateService, '#execute', services: true do
end end
end end
end end
describe 'creating a mattermost team' do
let!(:params) { group_params.merge(create_chat_team: true) }
let!(:service) { described_class.new(user, params) }
it 'queues a background job' do
expect(Mattermost::CreateTeamWorker).to receive(:perform_async)
subject
end
end
end end

View File

@ -7,15 +7,30 @@ describe Mattermost::CreateTeamWorker do
describe '.perform' do describe '.perform' do
subject { described_class.new.perform(group.id, admin.id) } subject { described_class.new.perform(group.id, admin.id) }
before do context 'succesfull request to mattermost' do
allow_any_instance_of(Mattermost::Team). before do
to receive(:create). allow_any_instance_of(Mattermost::Team).
with(name: "path", display_name: "name", type: "O"). to receive(:create).
and_return('name' => 'my team', 'id' => 'sjfkdlwkdjfwlkfjwf') with(group, {}).
and_return('name' => 'my team', 'id' => 'sjfkdlwkdjfwlkfjwf')
end
it 'creates a new chat team' do
expect { subject }.to change { ChatTeam.count }.from(0).to(1)
end
end end
it 'creates a new chat team' do context 'connection trouble' do
expect { subject }.to change { ChatTeam.count }.from(0).to(1) before do
allow_any_instance_of(Mattermost::Team).
to receive(:create).
with(group, {}).
and_raise(Mattermost::ClientError.new('Undefined error'))
end
it 'does not rescue the error' do
expect { subject }.to raise_error(Mattermost::ClientError)
end
end end
end end
end end