mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
cb5b5cb5f7
* No need to re-require sidekiq plugins, they are required via Gemfile * Add derailed_benchmarks tool, no need to require TTY gems in Gemfile * Replace ruby-oembed with FetchOEmbedService Reduce startup by 45382 allocated objects * Remove preloaded JSON-LD in favour of caching HTTP responses Reduce boot RAM by about 6 MiB * Fix tests * Fix test suite by stubbing out JSON-LD contexts
30 lines
903 B
Ruby
30 lines
903 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe AfterBlockService, type: :service do
|
|
subject do
|
|
-> { described_class.new.call(account, target_account) }
|
|
end
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
let(:target_account) { Fabricate(:account) }
|
|
|
|
describe 'home timeline' do
|
|
let(:status) { Fabricate(:status, account: target_account) }
|
|
let(:other_account_status) { Fabricate(:status) }
|
|
let(:home_timeline_key) { FeedManager.instance.key(:home, account.id) }
|
|
|
|
before do
|
|
Redis.current.del(home_timeline_key)
|
|
end
|
|
|
|
it "clears account's statuses" do
|
|
FeedManager.instance.push_to_home(account, status)
|
|
FeedManager.instance.push_to_home(account, other_account_status)
|
|
|
|
is_expected.to change {
|
|
Redis.current.zrange(home_timeline_key, 0, -1)
|
|
}.from([status.id.to_s, other_account_status.id.to_s]).to([other_account_status.id.to_s])
|
|
end
|
|
end
|
|
end
|