2016-03-19 11:13:47 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-11-17 23:16:48 +00:00
|
|
|
RSpec.describe HomeFeed, type: :model do
|
2022-04-14 15:44:21 +00:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:followed) { Fabricate(:account) }
|
|
|
|
let(:other) { Fabricate(:account) }
|
2017-10-13 09:00:11 +00:00
|
|
|
|
2017-11-17 23:16:48 +00:00
|
|
|
subject { described_class.new(account) }
|
2017-10-13 09:00:11 +00:00
|
|
|
|
2016-03-19 11:13:47 +00:00
|
|
|
describe '#get' do
|
2017-10-13 09:00:11 +00:00
|
|
|
before do
|
2022-04-14 15:44:21 +00:00
|
|
|
account.follow!(followed)
|
|
|
|
|
|
|
|
Fabricate(:status, account: account, id: 1)
|
|
|
|
Fabricate(:status, account: account, id: 2)
|
|
|
|
status = Fabricate(:status, account: followed, id: 3)
|
|
|
|
Fabricate(:mention, account: account, status: status)
|
|
|
|
Fabricate(:status, account: account, id: 10)
|
|
|
|
Fabricate(:status, account: other, id: 11)
|
|
|
|
Fabricate(:status, account: followed, id: 12, visibility: :private)
|
|
|
|
Fabricate(:status, account: followed, id: 13, visibility: :direct)
|
2017-10-13 09:00:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is generated' do
|
|
|
|
before do
|
2022-04-14 15:44:21 +00:00
|
|
|
FeedManager.instance.populate_home(account)
|
2017-10-13 09:00:11 +00:00
|
|
|
end
|
|
|
|
|
2022-04-12 15:52:14 +00:00
|
|
|
it 'gets statuses with ids in the range from redis with database' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3)
|
2022-04-14 15:44:21 +00:00
|
|
|
|
2022-04-16 19:20:07 +00:00
|
|
|
expect(results.map(&:id)).to eq [12, 10, 3]
|
2022-04-14 15:44:21 +00:00
|
|
|
expect(results.first.attributes.keys).to eq %w(id updated_at)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'with since_id present' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3, nil, 3, nil)
|
|
|
|
expect(results.map(&:id)).to eq [12, 10]
|
2022-04-14 15:44:21 +00:00
|
|
|
end
|
2017-10-13 09:00:11 +00:00
|
|
|
|
2022-04-14 15:44:21 +00:00
|
|
|
it 'with min_id present' do
|
|
|
|
results = subject.get(3, nil, nil, 0)
|
2022-04-12 15:52:14 +00:00
|
|
|
expect(results.map(&:id)).to eq [3, 2, 1]
|
2022-04-14 15:44:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is only partial' do
|
|
|
|
before do
|
|
|
|
FeedManager.instance.populate_home(account)
|
|
|
|
|
|
|
|
Redis.current.zremrangebyrank(FeedManager.instance.key(:home, account.id), 0, -2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'gets statuses with ids in the range from redis with database' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3)
|
2022-04-14 15:44:21 +00:00
|
|
|
|
2022-04-16 19:20:07 +00:00
|
|
|
expect(results.map(&:id)).to eq [12, 10, 3]
|
2017-10-13 09:00:11 +00:00
|
|
|
expect(results.first.attributes.keys).to eq %w(id updated_at)
|
|
|
|
end
|
2022-04-12 15:52:14 +00:00
|
|
|
|
2022-04-14 15:44:21 +00:00
|
|
|
it 'with since_id present' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3, nil, 3, nil)
|
|
|
|
expect(results.map(&:id)).to eq [12, 10]
|
2022-04-14 15:44:21 +00:00
|
|
|
end
|
|
|
|
|
2022-04-12 15:52:14 +00:00
|
|
|
it 'with min_id present' do
|
|
|
|
results = subject.get(3, nil, nil, 0)
|
|
|
|
expect(results.map(&:id)).to eq [3, 2, 1]
|
|
|
|
end
|
2017-10-13 09:00:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is being generated' do
|
|
|
|
before do
|
|
|
|
Redis.current.set("account:#{account.id}:regeneration", true)
|
|
|
|
end
|
2017-04-28 22:21:35 +00:00
|
|
|
|
2022-04-12 15:52:14 +00:00
|
|
|
it 'returns from database' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3)
|
2022-04-14 15:44:21 +00:00
|
|
|
|
2022-04-16 19:20:07 +00:00
|
|
|
expect(results.map(&:id)).to eq [12, 10, 3]
|
2022-04-14 15:44:21 +00:00
|
|
|
end
|
2017-04-28 22:21:35 +00:00
|
|
|
|
2022-04-14 15:44:21 +00:00
|
|
|
it 'with since_id present' do
|
2022-04-16 19:20:07 +00:00
|
|
|
results = subject.get(3, nil, 3, nil)
|
|
|
|
expect(results.map(&:id)).to eq [12, 10]
|
2022-04-12 15:52:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'with min_id present' do
|
|
|
|
results = subject.get(3, nil, nil, 0)
|
|
|
|
expect(results.map(&:id)).to eq [3, 2, 1]
|
2017-10-13 09:00:11 +00:00
|
|
|
end
|
2017-04-28 22:21:35 +00:00
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
end
|