2016-03-19 12:13:47 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe FanOutOnWriteService do
|
2016-11-06 15:56:34 +01:00
|
|
|
let(:author) { Fabricate(:account, username: 'tom') }
|
|
|
|
let(:status) { Fabricate(:status, text: 'Hello @alice #test', account: author) }
|
|
|
|
let(:alice) { Fabricate(:user, account: Fabricate(:account, username: 'alice')).account }
|
|
|
|
let(:follower) { Fabricate(:account, username: 'bob') }
|
|
|
|
|
2016-03-19 12:13:47 +01:00
|
|
|
subject { FanOutOnWriteService.new }
|
2016-11-06 15:56:34 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
alice
|
|
|
|
follower.follow!(author)
|
|
|
|
|
|
|
|
ProcessMentionsService.new.call(status)
|
|
|
|
ProcessHashtagsService.new.call(status)
|
|
|
|
|
|
|
|
subject.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers status to home timeline' do
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(author).get(10).map(&:id)).to include status.id
|
2016-11-06 15:56:34 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers status to local followers' do
|
2017-04-04 21:14:44 +02:00
|
|
|
pending 'some sort of problem in test environment causes this to sometimes fail'
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(follower).get(10).map(&:id)).to include status.id
|
2016-11-06 15:56:34 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers status to hashtag' do
|
|
|
|
expect(Tag.find_by!(name: 'test').statuses.pluck(:id)).to include status.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers status to public timeline' do
|
|
|
|
expect(Status.as_public_timeline(alice).map(&:id)).to include status.id
|
|
|
|
end
|
2016-03-19 12:13:47 +01:00
|
|
|
end
|