| 
									
										
										
										
											2016-03-19 12:13:47 +01:00
										 |  |  | require 'rails_helper' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-02 18:58:48 +02:00
										 |  |  | RSpec.describe FanOutOnWriteService, type: :service 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 12:14:44 -07: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 |