提交 85f0229b 编写于 作者: Z Z.J. van de Weg

Fix inconsistent return type

上级 b60de9c0
......@@ -34,7 +34,10 @@ class Projects::MattermostsController < Projects::ApplicationController
end
def teams
@teams ||= @service.list_teams(current_user)
@teams ||= begin
teams, error_message = @service.list_teams(current_user)
error_message ? error_message : teams
end
end
def service
......
......@@ -30,8 +30,8 @@ class MattermostSlashCommandsService < ChatSlashCommandsService
def list_teams(user)
Mattermost::Team.new(user).all
rescue Mattermost::Error => e
[[], e.message]
rescue Mattermost::Error
[]
end
private
......
......@@ -27,12 +27,12 @@ module Mattermost
end
def json_response(response)
json_response = JSON.parse(response.body)
unless response.success?
raise Mattermost::ClientError.new(json_response['message'] || 'Undefined error')
end
json_response = JSON.parse(response.body)
json_response
rescue JSON::JSONError
raise Mattermost::ClientError.new('Cannot parse response')
......
......@@ -13,13 +13,13 @@ describe Projects::MattermostsController do
before do
allow_any_instance_of(MattermostSlashCommandsService).
to receive(:list_teams).and_return([])
end
it 'accepts the request' do
get(:new,
namespace_id: project.namespace.to_param,
project_id: project.to_param)
end
it 'accepts the request' do
expect(response).to have_http_status(200)
end
end
......
......@@ -113,10 +113,7 @@ describe MattermostSlashCommandsService, :models do
end
it 'shows error messages' do
teams, message = subject
expect(teams).to be_empty
expect(message).to eq('Failed to get team list.')
expect(subject).to eq([])
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册