2017-09-07 15:40:18 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe ::Presence::PresencesController, type: :request do
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.presence_enabled = true
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:user1) { Fabricate(:user) }
|
|
|
|
let(:user2) { Fabricate(:user) }
|
|
|
|
let(:user3) { Fabricate(:user) }
|
|
|
|
|
2017-09-09 04:06:27 +08:00
|
|
|
let(:post1) { Fabricate(:post) }
|
|
|
|
let(:post2) { Fabricate(:post) }
|
|
|
|
|
2017-09-07 15:40:18 +08:00
|
|
|
after(:each) do
|
2017-09-09 04:06:27 +08:00
|
|
|
$redis.del("presence:topic:#{post1.topic.id}")
|
|
|
|
$redis.del("presence:topic:#{post2.topic.id}")
|
|
|
|
$redis.del("presence:post:#{post1.id}")
|
|
|
|
$redis.del("presence:post:#{post2.id}")
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not logged in' do
|
|
|
|
it 'should raise the right error' do
|
|
|
|
expect { post '/presence/publish.json' }.to raise_error(Discourse::NotLoggedIn)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
before do
|
|
|
|
sign_in(user1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't produce an error" do
|
|
|
|
expect { post '/presence/publish.json' }.not_to raise_error
|
|
|
|
end
|
|
|
|
|
2017-09-09 04:06:27 +08:00
|
|
|
it "uses guardian to secure endpoint" do
|
|
|
|
# Private message
|
|
|
|
private_post = Fabricate(:private_message_post)
|
|
|
|
post '/presence/publish.json', current: { action: 'edit', post_id: private_post.id }
|
|
|
|
expect(response.code.to_i).to eq(403)
|
|
|
|
|
|
|
|
# Secure category
|
|
|
|
group = Fabricate(:group)
|
|
|
|
category = Fabricate(:private_category, group: group)
|
|
|
|
private_topic = Fabricate(:topic, category: category)
|
|
|
|
|
|
|
|
post '/presence/publish.json', current: { action: 'edit', topic_id: private_topic.id }
|
|
|
|
expect(response.code.to_i).to eq(403)
|
|
|
|
end
|
|
|
|
|
2017-09-07 15:40:18 +08:00
|
|
|
it "returns a response when requested" do
|
|
|
|
messages = MessageBus.track_publish do
|
2017-09-09 04:06:27 +08:00
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post1.id }, response_needed: true
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(messages.count).to eq (1)
|
|
|
|
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
|
2017-09-09 04:06:27 +08:00
|
|
|
expect(data['messagebus_channel']).to eq("/presence/post/#{post1.id}")
|
|
|
|
expect(data['messagebus_id']).to eq(MessageBus.last_id("/presence/post/#{post1.id}"))
|
2017-09-07 15:40:18 +08:00
|
|
|
expect(data['users'][0]["id"]).to eq(user1.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't return a response when not requested" do
|
|
|
|
messages = MessageBus.track_publish do
|
2017-09-09 04:06:27 +08:00
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post1.id }
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(messages.count).to eq (1)
|
|
|
|
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data).to eq({})
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't send duplicate messagebus messages" do
|
|
|
|
messages = MessageBus.track_publish do
|
2017-09-09 04:06:27 +08:00
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post1.id }
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
expect(messages.count).to eq (1)
|
|
|
|
|
|
|
|
messages = MessageBus.track_publish do
|
2017-09-09 04:06:27 +08:00
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post1.id }
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
expect(messages.count).to eq (0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "clears 'previous' state when supplied" do
|
|
|
|
messages = MessageBus.track_publish do
|
2017-09-09 04:06:27 +08:00
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post1.id }
|
|
|
|
post '/presence/publish.json', current: { compose_state: 'open', action: 'edit', post_id: post2.id }, previous: { compose_state: 'open', action: 'edit', post_id: post1.id }
|
2017-09-07 15:40:18 +08:00
|
|
|
end
|
|
|
|
expect(messages.count).to eq (3)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|