discourse-chat-integration/spec/lib/discourse_chat/provider/mattermost/mattermost_provider_spec.rb

46 lines
1.7 KiB
Ruby
Raw Normal View History

2017-07-25 17:14:48 -04:00
require 'rails_helper'
RSpec.describe DiscourseChat::Provider::MattermostProvider do
let(:post) { Fabricate(:post) }
describe '.trigger_notifications' do
before do
SiteSetting.chat_integration_mattermost_enabled = true
SiteSetting.chat_integration_mattermost_webhook_url = "https://mattermost.blah/hook/abcd"
2017-11-20 07:49:36 -05:00
SiteSetting.logo_small_url = "https://some_small_logo"
2017-07-25 17:14:48 -04:00
end
2017-08-01 15:53:39 -04:00
let(:chan1) { DiscourseChat::Channel.create!(provider: 'mattermost', data: { identifier: "#awesomechannel" }) }
2017-07-25 17:14:48 -04:00
it 'sends a webhook request' do
stub1 = stub_request(:post, 'https://mattermost.blah/hook/abcd').to_return(status: 200)
described_class.trigger_notification(post, chan1)
expect(stub1).to have_been_requested.once
end
2017-11-20 07:49:36 -05:00
describe 'when mattermost icon is not configured' do
it 'defaults to the right icon' do
message = described_class.mattermost_message(post, chan1)
expect(message[:icon_url]).to eq(SiteSetting.logo_small_url)
end
end
describe 'when mattermost icon has been configured' do
it 'should use the right icon' do
SiteSetting.chat_integration_mattermost_icon_url = "https://specific_logo"
message = described_class.mattermost_message(post, chan1)
expect(message[:icon_url]).to eq(SiteSetting.chat_integration_mattermost_icon_url)
end
end
2017-08-01 15:53:39 -04:00
it 'handles errors correctly' do
2017-07-25 17:14:48 -04:00
stub1 = stub_request(:post, "https://mattermost.blah/hook/abcd").to_return(status: 500, body: "error")
expect(stub1).to have_been_requested.times(0)
2017-08-01 15:53:39 -04:00
expect { described_class.trigger_notification(post, chan1) }.to raise_exception(::DiscourseChat::ProviderError)
2017-07-25 17:14:48 -04:00
expect(stub1).to have_been_requested.once
end
end
end