2017-07-10 16:04:37 -04:00
|
|
|
require 'rails_helper'
|
2017-07-13 09:01:30 -04:00
|
|
|
require_relative '../dummy_provider'
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
describe 'Chat Controller', type: :request do
|
|
|
|
let(:first_post) { Fabricate(:post) }
|
|
|
|
let(:topic) { Fabricate(:topic, posts: [first_post]) }
|
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
let(:category) { Fabricate(:category) }
|
2017-07-18 13:23:20 -04:00
|
|
|
let(:category2) { Fabricate(:category) }
|
2017-07-10 16:04:37 -04:00
|
|
|
let(:tag) { Fabricate(:tag) }
|
2017-07-18 13:23:20 -04:00
|
|
|
let(:channel) { DiscourseChat::Channel.create(provider:'dummy') }
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
include_context "dummy provider"
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.chat_integration_enabled = true
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'admin constraints' do |action, route|
|
|
|
|
context 'when user is not signed in' do
|
|
|
|
it 'should raise the right error' do
|
|
|
|
expect { send(action, route) }.to raise_error(ActionController::RoutingError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not an admin' do
|
|
|
|
it 'should raise the right error' do
|
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
expect { send(action, route) }.to raise_error(ActionController::RoutingError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'listing providers' do
|
|
|
|
include_examples 'admin constraints', 'get', '/admin/plugins/chat/providers.json'
|
|
|
|
|
|
|
|
context 'when signed in as an admin' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get '/admin/plugins/chat/providers.json'
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
expect(json['providers'].size).to eq(2)
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
expect(json['providers'][0]).to eq('name'=> 'dummy',
|
|
|
|
'id'=> 'dummy',
|
2017-07-18 13:23:20 -04:00
|
|
|
'channel_parameters'=> []
|
2017-07-10 16:04:37 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
describe 'testing channels' do
|
2017-07-10 16:04:37 -04:00
|
|
|
include_examples 'admin constraints', 'get', '/admin/plugins/chat/test.json'
|
|
|
|
|
|
|
|
context 'when signed in as an admin' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
2017-07-18 13:23:20 -04:00
|
|
|
post '/admin/plugins/chat/test.json', channel_id: channel.id, topic_id: topic.id
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
end
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
it 'should fail for invalid channel' do
|
|
|
|
post '/admin/plugins/chat/test.json', channel_id: 999, topic_id: topic.id
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
describe 'viewing channels' do
|
|
|
|
include_examples 'admin constraints', 'get', '/admin/plugins/chat/channels.json'
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
context 'when signed in as an admin' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
2017-07-18 13:23:20 -04:00
|
|
|
rule = DiscourseChat::Rule.create(channel: channel, filter:'follow', category_id:category.id, tags:[tag.name])
|
2017-07-10 16:04:37 -04:00
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
get '/admin/plugins/chat/channels.json', provider:'dummy'
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
channels = JSON.parse(response.body)['channels']
|
2017-07-10 16:04:37 -04:00
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
expect(channels.count).to eq(1)
|
2017-07-10 16:04:37 -04:00
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
expect(channels.first).to eq(
|
|
|
|
"id" => channel.id,
|
|
|
|
"provider" => 'dummy',
|
|
|
|
"data" => {},
|
|
|
|
"rules" => [{"id" => rule.id, "filter" => "follow", "channel_id" => channel.id, "category_id" => category.id, "tags" => [tag.name], "error_key" => nil}]
|
2017-07-10 16:04:37 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for invalid provider' do
|
2017-07-18 13:23:20 -04:00
|
|
|
get '/admin/plugins/chat/channels.json', provider:'someprovider'
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'adding a channel' do
|
|
|
|
include_examples 'admin constraints', 'post', '/admin/plugins/chat/channels.json'
|
|
|
|
|
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to add a new channel' do
|
|
|
|
post '/admin/plugins/chat/channels.json',
|
|
|
|
channel:{
|
|
|
|
provider: 'dummy',
|
|
|
|
data: {}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
channel = DiscourseChat::Channel.all.first
|
|
|
|
|
|
|
|
expect(channel.provider).to eq('dummy')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for invalid params' do
|
|
|
|
post '/admin/plugins/chat/channels.json',
|
|
|
|
channel:{
|
|
|
|
provider: 'dummy2',
|
|
|
|
data: {val: 'something with whitespace'}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'updating a channel' do
|
|
|
|
let(:channel){DiscourseChat::Channel.create(provider:'dummy2', data:{val:"something"})}
|
|
|
|
|
|
|
|
include_examples 'admin constraints', 'put', "/admin/plugins/chat/channels/1.json"
|
|
|
|
|
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able update a channel' do
|
|
|
|
put "/admin/plugins/chat/channels/#{channel.id}.json",
|
|
|
|
channel:{
|
|
|
|
data: {val: "something-else"}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
channel = DiscourseChat::Channel.all.first
|
|
|
|
expect(channel.data).to eq({"val" => "something-else"})
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for invalid params' do
|
|
|
|
put "/admin/plugins/chat/channels/#{channel.id}.json",
|
|
|
|
channel:{
|
|
|
|
data: {val: "something with whitespace"}
|
|
|
|
}
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
expect(response).not_to be_success
|
2017-07-18 13:23:20 -04:00
|
|
|
|
2017-07-10 16:04:37 -04:00
|
|
|
end
|
2017-07-18 13:23:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'deleting a channel' do
|
|
|
|
let(:channel){DiscourseChat::Channel.create(provider:'dummy', data:{})}
|
|
|
|
|
|
|
|
include_examples 'admin constraints', 'delete', "/admin/plugins/chat/channels/1.json"
|
2017-07-10 16:04:37 -04:00
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able delete a channel' do
|
|
|
|
delete "/admin/plugins/chat/channels/#{channel.id}.json"
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
expect(DiscourseChat::Channel.all.size).to eq(0)
|
|
|
|
end
|
2017-07-10 16:04:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'adding a rule' do
|
|
|
|
include_examples 'admin constraints', 'put', '/admin/plugins/chat/rules.json'
|
|
|
|
|
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to add a new rule' do
|
2017-07-18 13:23:20 -04:00
|
|
|
post '/admin/plugins/chat/rules.json',
|
2017-07-10 16:04:37 -04:00
|
|
|
rule:{
|
2017-07-18 13:23:20 -04:00
|
|
|
channel_id: channel.id,
|
2017-07-10 16:04:37 -04:00
|
|
|
category_id: category.id,
|
|
|
|
filter: 'watch',
|
|
|
|
tags: [tag.name]
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
rule = DiscourseChat::Rule.all.first
|
|
|
|
|
2017-07-18 13:23:20 -04:00
|
|
|
expect(rule.channel_id).to eq(channel.id)
|
2017-07-10 16:04:37 -04:00
|
|
|
expect(rule.category_id).to eq(category.id)
|
|
|
|
expect(rule.filter).to eq('watch')
|
|
|
|
expect(rule.tags).to eq([tag.name])
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for invalid params' do
|
2017-07-18 13:23:20 -04:00
|
|
|
post '/admin/plugins/chat/rules.json',
|
2017-07-10 16:04:37 -04:00
|
|
|
rule:{
|
2017-07-18 13:23:20 -04:00
|
|
|
channel_id: channel.id,
|
2017-07-10 16:04:37 -04:00
|
|
|
category_id: category.id,
|
|
|
|
filter: 'watch',
|
|
|
|
tags: ['somenonexistanttag']
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'updating a rule' do
|
2017-07-18 13:23:20 -04:00
|
|
|
let(:rule){DiscourseChat::Rule.create(channel: channel, filter:'follow', category_id:category.id, tags:[tag.name])}
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
include_examples 'admin constraints', 'put', "/admin/plugins/chat/rules/1.json"
|
|
|
|
|
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able update a rule' do
|
|
|
|
put "/admin/plugins/chat/rules/#{rule.id}.json",
|
|
|
|
rule:{
|
2017-07-18 13:23:20 -04:00
|
|
|
channel_id: channel.id,
|
|
|
|
category_id: category2.id,
|
2017-07-10 16:04:37 -04:00
|
|
|
filter: rule.filter,
|
|
|
|
tags: rule.tags
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
rule = DiscourseChat::Rule.all.first
|
2017-07-18 13:23:20 -04:00
|
|
|
expect(rule.category_id).to eq(category2.id)
|
2017-07-10 16:04:37 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for invalid params' do
|
|
|
|
put "/admin/plugins/chat/rules/#{rule.id}.json",
|
|
|
|
rule:{
|
2017-07-18 13:23:20 -04:00
|
|
|
channel_id: channel.id,
|
2017-07-10 16:04:37 -04:00
|
|
|
category_id: category.id,
|
|
|
|
filter: 'watch',
|
|
|
|
tags: ['somenonexistanttag']
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'deleting a rule' do
|
2017-07-18 13:23:20 -04:00
|
|
|
let(:rule){DiscourseChat::Rule.create(channel_id: channel.id, filter:'follow', category_id:category.id, tags:[tag.name])}
|
2017-07-10 16:04:37 -04:00
|
|
|
|
|
|
|
include_examples 'admin constraints', 'delete', "/admin/plugins/chat/rules/1.json"
|
|
|
|
|
|
|
|
context 'as an admin' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able delete a rule' do
|
|
|
|
delete "/admin/plugins/chat/rules/#{rule.id}.json"
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
expect(DiscourseChat::Rule.all.size).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|