2017-06-27 14:21:27 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
require_dependency 'post_creator'
|
2017-07-13 09:01:30 -04:00
|
|
|
require_relative '../dummy_provider'
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
RSpec.describe DiscourseChat::Manager do
|
|
|
|
|
|
|
|
let(:manager) {::DiscourseChat::Manager}
|
|
|
|
let(:category) {Fabricate(:category)}
|
|
|
|
let(:topic){Fabricate(:topic, category_id: category.id )}
|
|
|
|
let(:first_post) {Fabricate(:post, topic: topic)}
|
|
|
|
let(:second_post) {Fabricate(:post, topic: topic, post_number:2)}
|
|
|
|
|
|
|
|
describe '.trigger_notifications' do
|
2017-07-10 13:19:59 -04:00
|
|
|
include_context "dummy provider"
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
let(:chan1){DiscourseChat::Channel.create!(provider:'dummy')}
|
|
|
|
let(:chan2){DiscourseChat::Channel.create!(provider:'dummy')}
|
|
|
|
let(:chan3){DiscourseChat::Channel.create!(provider:'dummy')}
|
|
|
|
|
2017-07-03 10:53:26 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.chat_integration_enabled = true
|
|
|
|
end
|
|
|
|
|
2017-07-04 14:37:56 -04:00
|
|
|
it "should fail gracefully when a provider throws an exception" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id:category.id )
|
2017-07-04 14:37:56 -04:00
|
|
|
|
|
|
|
# Triggering a ProviderError should set the error_key to the error message
|
2017-07-13 16:47:15 -04:00
|
|
|
provider.set_raise_exception(DiscourseChat::ProviderError.new info: {error_key:"hello"})
|
2017-07-04 14:37:56 -04:00
|
|
|
manager.trigger_notifications(first_post.id)
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-07-18 18:08:06 -04:00
|
|
|
expect(DiscourseChat::Channel.all.first.error_key).to eq('hello')
|
2017-07-04 14:37:56 -04:00
|
|
|
|
|
|
|
# Triggering a different error should set the error_key to a generic message
|
2017-07-13 16:47:15 -04:00
|
|
|
provider.set_raise_exception(StandardError.new "hello")
|
2017-07-04 14:37:56 -04:00
|
|
|
manager.trigger_notifications(first_post.id)
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-07-18 18:08:06 -04:00
|
|
|
expect(DiscourseChat::Channel.all.first.error_key).to eq('chat_integration.channel_exception')
|
2017-07-04 14:37:56 -04:00
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
provider.set_raise_exception(nil)
|
2017-07-04 14:37:56 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
2017-07-18 18:08:06 -04:00
|
|
|
expect(DiscourseChat::Channel.all.first.error_key.nil?).to be true
|
2017-07-04 14:37:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not send notifications when provider is disabled" do
|
2017-07-03 10:53:26 -04:00
|
|
|
SiteSetting.chat_integration_enabled = false
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id:category.id )
|
2017-07-03 10:53:26 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-07-03 10:53:26 -04:00
|
|
|
end
|
|
|
|
|
2017-06-27 14:21:27 -04:00
|
|
|
it "should send a notification to watched and following channels for new topic" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id:category.id )
|
|
|
|
DiscourseChat::Rule.create!(channel: chan2, filter: 'follow', category_id:category.id )
|
|
|
|
DiscourseChat::Rule.create!(channel: chan3, filter: 'mute', category_id:category.id )
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id, chan2.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should send a notification only to watched for reply" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id:category.id )
|
|
|
|
DiscourseChat::Rule.create!(channel: chan2, filter: 'follow', category_id:category.id )
|
|
|
|
DiscourseChat::Rule.create!(channel: chan3, filter: 'mute', category_id:category.id )
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(second_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should respect wildcard category settings" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id: nil )
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should respect mute over watch" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id: nil ) # Wildcard watch
|
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'mute', category_id: category.id ) # Specific mute
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should respect watch over follow" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'follow', category_id: nil ) # Wildcard watch
|
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'watch', category_id: category.id ) # Specific watch
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(second_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not notify about private messages" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'follow', category_id: nil ) # Wildcard watch
|
|
|
|
|
2017-06-27 14:21:27 -04:00
|
|
|
private_post = Fabricate(:private_message_post)
|
|
|
|
|
|
|
|
manager.trigger_notifications(private_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not notify about posts the chat_user cannot see" do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'follow', category_id: nil ) # Wildcard watch
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
# Create a group & user
|
|
|
|
group = Fabricate(:group, name: "friends")
|
|
|
|
user = Fabricate(:user, username: 'david')
|
|
|
|
group.add(user)
|
|
|
|
|
|
|
|
# Set the chat_user to the newly created non-admin user
|
2017-07-03 06:08:14 -04:00
|
|
|
SiteSetting.chat_integration_discourse_username = 'david'
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
# Create a category
|
|
|
|
category = Fabricate(:category, name: "Test category")
|
|
|
|
topic.category = category
|
|
|
|
topic.save!
|
|
|
|
|
|
|
|
# Restrict category to admins only
|
|
|
|
category.set_permissions(Group[:admins] => :full)
|
|
|
|
category.save!
|
|
|
|
|
|
|
|
# Check no notification sent
|
|
|
|
manager.trigger_notifications(first_post.id)
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly()
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
# Now expose category to new user
|
|
|
|
category.set_permissions(Group[:friends] => :full)
|
|
|
|
category.save!
|
|
|
|
|
|
|
|
# Check notification sent
|
|
|
|
manager.trigger_notifications(first_post.id)
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with tags enabled' do
|
|
|
|
let(:tag){Fabricate(:tag, name:'gsoc')}
|
|
|
|
let(:tagged_topic){Fabricate(:topic, category_id: category.id, tags: [tag])}
|
|
|
|
let(:tagged_first_post) {Fabricate(:post, topic: tagged_topic)}
|
|
|
|
|
|
|
|
before(:each) do
|
|
|
|
SiteSetting.tagging_enabled = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should still work for rules without any tags specified' do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'follow', category_id: nil ) # Wildcard watch
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
manager.trigger_notifications(tagged_first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id, chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should only match tagged topics when rule has tags' do
|
2017-07-13 16:47:15 -04:00
|
|
|
DiscourseChat::Rule.create!(channel: chan1, filter: 'follow', category_id: category.id, tags:[tag.name] )
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
manager.trigger_notifications(first_post.id)
|
|
|
|
manager.trigger_notifications(tagged_first_post.id)
|
|
|
|
|
2017-07-13 16:47:15 -04:00
|
|
|
expect(provider.sent_to_channel_ids).to contain_exactly(chan1.id)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|