mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 22:14:34 +00:00
30658924a8
* Remove obsolete RSS::Serializer test Since #17828, RSS::Serializer no longer has specific code for deleted statuses, but it is never called on deleted statuses anyway. * Rename erroneously-named test files * Fix failing test * Fix test deprecation warnings * Update CircleCI Ruby orb 1.4.0 has a bug that does not match all the test files due to incorrect globbing
50 lines
1.8 KiB
Ruby
50 lines
1.8 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe AfterBlockService, type: :service do
|
|
subject { described_class.new.call(account, target_account) }
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
let(:target_account) { Fabricate(:account) }
|
|
let(:status) { Fabricate(:status, account: target_account) }
|
|
let(:other_status) { Fabricate(:status, account: target_account) }
|
|
let(:other_account_status) { Fabricate(:status) }
|
|
let(:other_account_reblog) { Fabricate(:status, reblog_of_id: other_status.id) }
|
|
|
|
describe 'home timeline' do
|
|
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)
|
|
FeedManager.instance.push_to_home(account, other_account_reblog)
|
|
|
|
expect { subject }.to change {
|
|
Redis.current.zrange(home_timeline_key, 0, -1)
|
|
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
|
end
|
|
end
|
|
|
|
describe 'lists' do
|
|
let(:list) { Fabricate(:list, account: account) }
|
|
let(:list_timeline_key) { FeedManager.instance.key(:list, list.id) }
|
|
|
|
before do
|
|
Redis.current.del(list_timeline_key)
|
|
end
|
|
|
|
it "clears account's statuses" do
|
|
FeedManager.instance.push_to_list(list, status)
|
|
FeedManager.instance.push_to_list(list, other_account_status)
|
|
FeedManager.instance.push_to_list(list, other_account_reblog)
|
|
|
|
expect { subject }.to change {
|
|
Redis.current.zrange(list_timeline_key, 0, -1)
|
|
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
|
end
|
|
end
|
|
end
|