31 lines
1.2 KiB
Ruby
Raw Normal View History

2017-07-19 21:26:16 +01:00
require 'rails_helper'
RSpec.describe DiscourseChat::Provider::TelegramProvider do
let(:post) { Fabricate(:post) }
describe '.trigger_notifications' do
before do
SiteSetting.chat_integration_telegram_access_token = "TOKEN"
SiteSetting.chat_integration_telegram_secret = 'shhh'
SiteSetting.chat_integration_telegram_enabled = true
end
2017-08-01 20:53:39 +01:00
let(:chan1) { DiscourseChat::Channel.create!(provider: 'telegram', data: { name: "Awesome Channel", chat_id: '123' }) }
2017-07-19 21:26:16 +01:00
it 'sends a webhook request' do
stub1 = stub_request(:post, 'https://api.telegram.org/botTOKEN/sendMessage').to_return(body: "{\"ok\":true}")
described_class.trigger_notification(post, chan1)
expect(stub1).to have_been_requested.once
end
2017-08-01 20:53:39 +01:00
it 'handles errors correctly' do
2017-07-19 21:26:16 +01:00
stub1 = stub_request(:post, 'https://api.telegram.org/botTOKEN/sendMessage').to_return(body: "{\"ok\":false, \"description\":\"chat not found\"}")
expect(stub1).to have_been_requested.times(0)
2017-08-01 20:53:39 +01:00
expect { described_class.trigger_notification(post, chan1) }.to raise_exception(::DiscourseChat::ProviderError)
2017-07-19 21:26:16 +01:00
expect(stub1).to have_been_requested.once
end
end
end