2016-03-19 07:13:47 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-11-17 18:16:48 -05:00
|
|
|
RSpec.describe HomeFeed, type: :model do
|
2017-10-13 05:00:11 -04:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
|
2017-11-17 18:16:48 -05:00
|
|
|
subject { described_class.new(account) }
|
2017-10-13 05:00:11 -04:00
|
|
|
|
2016-03-19 07:13:47 -04:00
|
|
|
describe '#get' do
|
2017-10-13 05:00:11 -04:00
|
|
|
before do
|
2017-04-28 18:21:35 -04:00
|
|
|
Fabricate(:status, account: account, id: 1)
|
|
|
|
Fabricate(:status, account: account, id: 2)
|
|
|
|
Fabricate(:status, account: account, id: 3)
|
|
|
|
Fabricate(:status, account: account, id: 10)
|
2017-10-13 05:00:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is generated' do
|
|
|
|
before do
|
2022-04-28 11:47:34 -04:00
|
|
|
redis.zadd(
|
2017-10-13 05:00:11 -04:00
|
|
|
FeedManager.instance.key(:home, account.id),
|
|
|
|
[[4, 4], [3, 3], [2, 2], [1, 1]]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'gets statuses with ids in the range from redis' do
|
|
|
|
results = subject.get(3)
|
|
|
|
|
|
|
|
expect(results.map(&:id)).to eq [3, 2]
|
|
|
|
expect(results.first.attributes.keys).to eq %w(id updated_at)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is being generated' do
|
|
|
|
before do
|
2022-04-28 11:47:34 -04:00
|
|
|
redis.set("account:#{account.id}:regeneration", true)
|
2017-10-13 05:00:11 -04:00
|
|
|
end
|
2017-04-28 18:21:35 -04:00
|
|
|
|
2019-10-06 16:11:17 -04:00
|
|
|
it 'returns nothing' do
|
2017-10-13 05:00:11 -04:00
|
|
|
results = subject.get(3)
|
2017-04-28 18:21:35 -04:00
|
|
|
|
2019-10-06 16:11:17 -04:00
|
|
|
expect(results.map(&:id)).to eq []
|
2017-10-13 05:00:11 -04:00
|
|
|
end
|
2017-04-28 18:21:35 -04:00
|
|
|
end
|
2016-03-19 07:13:47 -04:00
|
|
|
end
|
|
|
|
end
|