def populate_feed
redis.pipelined do
- statuses.each do |status|
+ statuses.reverse_each do |status|
process_status(status)
end
Fabricate(:status, account: account, id: 2)
Fabricate(:status, account: account, id: 3)
Fabricate(:status, account: account, id: 10)
- redis = double(zrevrangebyscore: [['val2', 2.0], ['val1', 1.0], ['val3', 3.0], ['deleted', 4.0]], exists: false)
- allow(Redis).to receive(:current).and_return(redis)
+ Redis.current.zadd(FeedManager.instance.key(:home, account.id),
+ [[4, 'deleted'], [3, 'val3'], [2, 'val2'], [1, 'val1']])
feed = Feed.new(:home, account)
results = feed.get(3)
- expect(results.map(&:id)).to eq [2, 1, 3]
+ expect(results.map(&:id)).to eq [3, 2]
expect(results.first.attributes.keys).to eq %w(id updated_at)
end
end
ActiveRecord::Migration.maintain_test_schema!
WebMock.disable_net_connect!
+Redis.current = Redis::Namespace.new("mastodon_test#{ENV['TEST_ENV_NUMBER']}", redis: Redis.current)
Sidekiq::Testing.inline!
Sidekiq::Logging.logger = nil
https = ENV['LOCAL_HTTPS'] == 'true'
Capybara.app_host = "http#{https ? 's' : ''}://#{ENV.fetch('LOCAL_DOMAIN')}"
end
+
+ config.after :each do
+ keys = Redis.current.keys
+ Redis.current.del(keys) if keys.any?
+ end
end
RSpec::Sidekiq.configure do |config|
account = Fabricate(:account)
followed_account = Fabricate(:account)
Fabricate(:follow, account: account, target_account: followed_account)
- status = Fabricate(:status, account: followed_account)
-
- expected_redis_args = FeedManager.instance.key(:home, account.id), status.id, status.id
- expect_any_instance_of(Redis).to receive(:zadd).with(*expected_redis_args)
+ reblog = Fabricate(:status, account: followed_account)
+ status = Fabricate(:status, account: account, reblog: reblog)
subject.call(account)
+
+ expect(Redis.current.zscore(FeedManager.instance.key(:home, account.id), reblog.id)).to eq status.id
end
end
end
let!(:inactive_user) { Fabricate(:user, current_sign_in_at: 22.days.ago) }
it 'clears feeds of inactives' do
- expect_any_instance_of(Redis).to receive(:del).with(feed_key_for(inactive_user))
- expect_any_instance_of(Redis).not_to receive(:del).with(feed_key_for(active_user))
+ Redis.current.zadd(feed_key_for(inactive_user), 1, 1)
+ Redis.current.zadd(feed_key_for(active_user), 1, 1)
subject.perform
+
+ expect(Redis.current.zcard(feed_key_for(inactive_user))).to eq 0
+ expect(Redis.current.zcard(feed_key_for(active_user))).to eq 1
end
def feed_key_for(user)