2019-05-12 22:37:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-21 18:34:04 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe DiscourseChat::Provider::ZulipProvider do
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
|
|
|
|
describe '.trigger_notifications' do
|
|
|
|
before do
|
|
|
|
SiteSetting.chat_integration_zulip_enabled = true
|
|
|
|
SiteSetting.chat_integration_zulip_server = "https://hello.world"
|
2017-08-23 07:36:11 -04:00
|
|
|
SiteSetting.chat_integration_zulip_bot_email_address = "some_bot@example.com"
|
2017-08-21 18:34:04 -04:00
|
|
|
SiteSetting.chat_integration_zulip_bot_api_key = "secret"
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:chan1) { DiscourseChat::Channel.create!(provider: 'zulip', data: { stream: "general", subject: "Discourse Notifications" }) }
|
|
|
|
|
|
|
|
it 'sends a webhook request' do
|
2017-08-23 07:36:11 -04:00
|
|
|
stub1 = stub_request(:post, 'https://hello.world/api/v1/messages').to_return(status: 200)
|
2020-06-15 11:45:25 -04:00
|
|
|
described_class.trigger_notification(post, chan1, nil)
|
2017-08-21 18:34:04 -04:00
|
|
|
expect(stub1).to have_been_requested.once
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles errors correctly' do
|
2017-08-23 07:36:11 -04:00
|
|
|
stub1 = stub_request(:post, 'https://hello.world/api/v1/messages').to_return(status: 400, body: '{}')
|
2017-08-21 18:34:04 -04:00
|
|
|
expect(stub1).to have_been_requested.times(0)
|
2020-06-15 11:45:25 -04:00
|
|
|
expect { described_class.trigger_notification(post, chan1, nil) }.to raise_exception(::DiscourseChat::ProviderError)
|
2017-08-21 18:34:04 -04:00
|
|
|
expect(stub1).to have_been_requested.once
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|