gitlab-org--gitlab-foss/spec/lib/mattermost/command_spec.rb

63 lines
1.7 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe Mattermost::Command do
let(:params) { { 'token' => 'token', team_id: 'abc' } }
2016-12-20 18:11:53 +00:00
before do
session = Mattermost::Session.new(nil)
session.base_uri = 'http://mattermost.example.com'
2017-06-21 13:48:12 +00:00
allow_any_instance_of(Mattermost::Client).to receive(:with_session)
.and_yield(session)
2016-12-21 10:53:44 +00:00
end
2016-12-20 18:11:53 +00:00
describe '#create' do
2016-12-21 10:53:44 +00:00
let(:params) do
{ team_id: 'abc',
2017-02-22 17:44:44 +00:00
trigger: 'gitlab' }
2016-12-21 10:53:44 +00:00
end
subject { described_class.new(nil).create(params) }
context 'for valid trigger word' do
before do
stub_request(:post, 'http://mattermost.example.com/api/v4/commands')
2017-06-21 13:48:12 +00:00
.with(body: {
2016-12-21 10:53:44 +00:00
team_id: 'abc',
2017-02-22 17:44:44 +00:00
trigger: 'gitlab'
2017-06-21 13:48:12 +00:00
}.to_json)
.to_return(
status: 201,
2016-12-21 10:53:44 +00:00
headers: { 'Content-Type' => 'application/json' },
body: { token: 'token' }.to_json
)
end
it 'returns a token' do
is_expected.to eq('token')
end
end
context 'for error message' do
before do
stub_request(:post, 'http://mattermost.example.com/api/v4/commands')
2017-06-21 13:48:12 +00:00
.to_return(
status: 400,
2016-12-21 10:53:44 +00:00
headers: { 'Content-Type' => 'application/json' },
body: {
id: 'api.command.duplicate_trigger.app_error',
message: 'This trigger word is already in use. Please choose another word.',
detailed_error: '',
request_id: 'obc374man7bx5r3dbc1q5qhf3r',
status_code: 400
2016-12-21 10:53:44 +00:00
}.to_json
)
end
2016-12-21 10:53:44 +00:00
it 'raises an error with message' do
expect { subject }.to raise_error(Mattermost::Error, 'This trigger word is already in use. Please choose another word.')
end
end
end
end