You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
5.3 KiB
133 lines
5.3 KiB
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
12 months ago
|
describe Status::ThreadingConcern do
|
||
8 years ago
|
describe '#ancestors' do
|
||
|
let!(:alice) { Fabricate(:account, username: 'alice') }
|
||
|
let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com') }
|
||
|
let!(:jeff) { Fabricate(:account, username: 'jeff') }
|
||
|
let!(:status) { Fabricate(:status, account: alice) }
|
||
1 year ago
|
let!(:reply_to_status) { Fabricate(:status, thread: status, account: jeff) }
|
||
|
let!(:reply_to_first_reply) { Fabricate(:status, thread: reply_to_status, account: bob) }
|
||
|
let!(:reply_to_second_reply) { Fabricate(:status, thread: reply_to_first_reply, account: alice) }
|
||
8 years ago
|
let!(:viewer) { Fabricate(:account, username: 'viewer') }
|
||
|
|
||
|
it 'returns conversation history' do
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4)).to include(status, reply_to_status, reply_to_first_reply)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return conversation history user is not allowed to see' do
|
||
1 year ago
|
reply_to_status.update(visibility: :private)
|
||
8 years ago
|
status.update(visibility: :direct)
|
||
|
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4, viewer)).to_not include(reply_to_status, status)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return conversation history from blocked users' do
|
||
|
viewer.block!(jeff)
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4, viewer)).to_not include(reply_to_status)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return conversation history from muted users' do
|
||
|
viewer.mute!(jeff)
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4, viewer)).to_not include(reply_to_status)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return conversation history from silenced and not followed users' do
|
||
6 years ago
|
jeff.silence!
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4, viewer)).to_not include(reply_to_status)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return conversation history from blocked domains' do
|
||
|
viewer.block_domain!('example.com')
|
||
1 year ago
|
expect(reply_to_second_reply.ancestors(4, viewer)).to_not include(reply_to_first_reply)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'ignores deleted records' do
|
||
|
first_status = Fabricate(:status, account: bob)
|
||
|
second_status = Fabricate(:status, thread: first_status, account: alice)
|
||
|
|
||
|
# Create cache and delete cached record
|
||
7 years ago
|
second_status.ancestors(4)
|
||
8 years ago
|
first_status.destroy
|
||
|
|
||
7 years ago
|
expect(second_status.ancestors(4)).to eq([])
|
||
|
end
|
||
|
|
||
|
it 'can return more records than previously requested' do
|
||
|
first_status = Fabricate(:status, account: bob)
|
||
|
second_status = Fabricate(:status, thread: first_status, account: alice)
|
||
|
third_status = Fabricate(:status, thread: second_status, account: alice)
|
||
|
|
||
|
# Create cache
|
||
|
second_status.ancestors(1)
|
||
|
|
||
|
expect(third_status.ancestors(2)).to eq([first_status, second_status])
|
||
|
end
|
||
|
|
||
|
it 'can return fewer records than previously requested' do
|
||
|
first_status = Fabricate(:status, account: bob)
|
||
|
second_status = Fabricate(:status, thread: first_status, account: alice)
|
||
|
third_status = Fabricate(:status, thread: second_status, account: alice)
|
||
|
|
||
|
# Create cache
|
||
|
second_status.ancestors(2)
|
||
|
|
||
|
expect(third_status.ancestors(1)).to eq([second_status])
|
||
8 years ago
|
end
|
||
|
end
|
||
|
|
||
|
describe '#descendants' do
|
||
|
let!(:alice) { Fabricate(:account, username: 'alice') }
|
||
|
let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com') }
|
||
|
let!(:jeff) { Fabricate(:account, username: 'jeff') }
|
||
|
let!(:status) { Fabricate(:status, account: alice) }
|
||
1 year ago
|
let!(:reply_to_status_from_alice) { Fabricate(:status, thread: status, account: alice) }
|
||
|
let!(:reply_to_status_from_bob) { Fabricate(:status, thread: status, account: bob) }
|
||
|
let!(:reply_to_alice_reply_from_jeff) { Fabricate(:status, thread: reply_to_status_from_alice, account: jeff) }
|
||
8 years ago
|
let!(:viewer) { Fabricate(:account, username: 'viewer') }
|
||
|
|
||
|
it 'returns replies' do
|
||
1 year ago
|
expect(status.descendants(4)).to include(reply_to_status_from_alice, reply_to_status_from_bob, reply_to_alice_reply_from_jeff)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return replies user is not allowed to see' do
|
||
1 year ago
|
reply_to_status_from_alice.update(visibility: :private)
|
||
|
reply_to_alice_reply_from_jeff.update(visibility: :direct)
|
||
8 years ago
|
|
||
1 year ago
|
expect(status.descendants(4, viewer)).to_not include(reply_to_status_from_alice, reply_to_alice_reply_from_jeff)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return replies from blocked users' do
|
||
|
viewer.block!(jeff)
|
||
1 year ago
|
expect(status.descendants(4, viewer)).to_not include(reply_to_alice_reply_from_jeff)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return replies from muted users' do
|
||
|
viewer.mute!(jeff)
|
||
1 year ago
|
expect(status.descendants(4, viewer)).to_not include(reply_to_alice_reply_from_jeff)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return replies from silenced and not followed users' do
|
||
6 years ago
|
jeff.silence!
|
||
1 year ago
|
expect(status.descendants(4, viewer)).to_not include(reply_to_alice_reply_from_jeff)
|
||
8 years ago
|
end
|
||
|
|
||
|
it 'does not return replies from blocked domains' do
|
||
|
viewer.block_domain!('example.com')
|
||
1 year ago
|
expect(status.descendants(4, viewer)).to_not include(reply_to_status_from_bob)
|
||
8 years ago
|
end
|
||
6 years ago
|
|
||
|
it 'promotes self-replies to the top while leaving the rest in order' do
|
||
|
a = Fabricate(:status, account: alice)
|
||
|
d = Fabricate(:status, account: jeff, thread: a)
|
||
|
e = Fabricate(:status, account: bob, thread: d)
|
||
|
c = Fabricate(:status, account: alice, thread: a)
|
||
|
f = Fabricate(:status, account: bob, thread: c)
|
||
|
|
||
|
expect(a.descendants(20)).to eq [c, d, e, f]
|
||
|
end
|
||
8 years ago
|
end
|
||
|
end
|