mastodon/spec/models/home_feed_spec.rb
David Roetzel 319fbbbfac
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Run Chromatic (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.2) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Crowdin / Upload translations / upload-translations (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
Experimental Async Refreshes API (#34918)
2025-06-12 14:54:00 +00:00

126 lines
3.3 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe HomeFeed do
subject { described_class.new(account) }
let(:account) { Fabricate(:account) }
describe '#get' do
before do
Fabricate(:status, account: account, id: 1)
Fabricate(:status, account: account, id: 2)
Fabricate(:status, account: account, id: 3)
Fabricate(:status, account: account, id: 10)
end
context 'when feed is generated' do
before do
redis.zadd(
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]
end
end
context 'when feed is being generated' do
before do
redis.hset("account:#{account.id}:regeneration", { 'status' => 'running' })
end
it 'returns nothing' do
results = subject.get(3)
expect(results.map(&:id)).to eq []
end
end
end
describe '#regenerating?' do
context 'when an old-style string key is still in use' do
it 'upgrades the key to a hash' do
redis.set("account:#{account.id}:regeneration", true)
expect(subject.regenerating?).to be true
expect(redis.type("account:#{account.id}:regeneration")).to eq 'hash'
end
end
context 'when feed is being generated' do
before do
redis.hset("account:#{account.id}:regeneration", { 'status' => 'running' })
end
it 'returns `true`' do
expect(subject.regenerating?).to be true
end
end
context 'when feed is not being generated' do
context 'when the job is marked as finished' do
before do
redis.hset("account:#{account.id}:regeneration", { 'status' => 'finished' })
end
it 'returns `false`' do
expect(subject.regenerating?).to be false
end
end
context 'when the job key is missing' do
it 'returns `false`' do
expect(subject.regenerating?).to be false
end
end
end
end
describe '#regeneration_in_progress!' do
context 'when an old-style string key is still in use' do
it 'upgrades the key to a hash' do
redis.set("account:#{account.id}:regeneration", true)
subject.regeneration_in_progress!
expect(redis.type("account:#{account.id}:regeneration")).to eq 'hash'
end
end
it 'sets the corresponding key in redis' do
expect(redis.exists?("account:#{account.id}:regeneration")).to be false
subject.regeneration_in_progress!
expect(redis.exists?("account:#{account.id}:regeneration")).to be true
end
end
describe '#regeneration_finished!' do
context 'when an old-style string key is still in use' do
it 'upgrades the key to a hash' do
redis.set("account:#{account.id}:regeneration", true)
subject.regeneration_finished!
expect(redis.type("account:#{account.id}:regeneration")).to eq 'hash'
end
end
it "sets the corresponding key's status to 'finished'" do
redis.hset("account:#{account.id}:regeneration", { 'status' => 'running' })
subject.regeneration_finished!
expect(redis.hget("account:#{account.id}:regeneration", 'status')).to eq 'finished'
end
end
end