| 
									
										
										
										
											2016-02-25 00:17:01 +01:00
										 |  |  | require 'rails_helper' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-02 18:58:48 +02:00
										 |  |  | RSpec.describe PostStatusService, type: :service do | 
					
						
							| 
									
										
										
										
											2016-03-05 12:50:59 +01:00
										 |  |  |   subject { PostStatusService.new } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   it 'creates a new status' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  |     text = "test status update" | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: text) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.text).to eq text | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'creates a new response status' do | 
					
						
							|  |  |  |     in_reply_to_status = Fabricate(:status) | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     account = Fabricate(:account) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |     text = "test status update" | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: text, thread: in_reply_to_status) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.text).to eq text | 
					
						
							|  |  |  |     expect(status.thread).to eq in_reply_to_status | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |   it 'schedules a status' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  |     future  = Time.now.utc + 2.hours | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = subject.call(account, text: 'Hi future!', scheduled_at: future) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_a ScheduledStatus | 
					
						
							|  |  |  |     expect(status.scheduled_at).to eq future | 
					
						
							|  |  |  |     expect(status.params['text']).to eq 'Hi future!' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-21 20:03:04 +01:00
										 |  |  |   it 'does not immediately create a status when scheduling a status' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  |     media = Fabricate(:media_attachment) | 
					
						
							|  |  |  |     future  = Time.now.utc + 2.hours | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = subject.call(account, text: 'Hi future!', media_ids: [media.id], scheduled_at: future) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_a ScheduledStatus | 
					
						
							|  |  |  |     expect(status.scheduled_at).to eq future | 
					
						
							|  |  |  |     expect(status.params['text']).to eq 'Hi future!' | 
					
						
							|  |  |  |     expect(media.reload.status).to be_nil | 
					
						
							|  |  |  |     expect(Status.where(text: 'Hi future!').exists?).to be_falsey | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-26 00:35:21 +09:00
										 |  |  |   it 'creates response to the original status of boost' do | 
					
						
							|  |  |  |     boosted_status = Fabricate(:status) | 
					
						
							|  |  |  |     in_reply_to_status = Fabricate(:status, reblog: boosted_status) | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  |     text = "test status update" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: text, thread: in_reply_to_status) | 
					
						
							| 
									
										
										
										
											2018-11-26 00:35:21 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.text).to eq text | 
					
						
							|  |  |  |     expect(status.thread).to eq boosted_status | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   it 'creates a sensitive status' do | 
					
						
							|  |  |  |     status = create_status_with_options(sensitive: true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status).to be_sensitive | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'creates a status with spoiler text' do | 
					
						
							|  |  |  |     spoiler_text = "spoiler text" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = create_status_with_options(spoiler_text: spoiler_text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.spoiler_text).to eq spoiler_text | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'creates a status with empty default spoiler text' do | 
					
						
							|  |  |  |     status = create_status_with_options(spoiler_text: nil) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.spoiler_text).to eq '' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'creates a status with the given visibility' do | 
					
						
							|  |  |  |     status = create_status_with_options(visibility: :private) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.visibility).to eq "private" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 19:06:14 +01:00
										 |  |  |   it 'creates a status with limited visibility for silenced users' do | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(Fabricate(:account, silenced: true), text: 'test', visibility: :public) | 
					
						
							| 
									
										
										
										
											2018-12-24 19:06:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.visibility).to eq "unlisted" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   it 'creates a status for the given application' do | 
					
						
							|  |  |  |     application = Fabricate(:application) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = create_status_with_options(application: application) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(status).to be_persisted | 
					
						
							|  |  |  |     expect(status.application).to eq application | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 16:20:12 -04:00
										 |  |  |   it 'creates a status with a language set' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							| 
									
										
										
										
											2017-09-16 21:59:41 +09:00
										 |  |  |     text = 'This is an English text.' | 
					
						
							| 
									
										
										
										
											2017-04-18 16:20:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: text) | 
					
						
							| 
									
										
										
										
											2017-04-18 16:20:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 21:59:41 +09:00
										 |  |  |     expect(status.language).to eq 'en' | 
					
						
							| 
									
										
										
										
											2017-04-18 16:20:12 -04:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   it 'processes mentions' do | 
					
						
							|  |  |  |     mention_service = double(:process_mentions_service) | 
					
						
							|  |  |  |     allow(mention_service).to receive(:call) | 
					
						
							|  |  |  |     allow(ProcessMentionsService).to receive(:new).and_return(mention_service) | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: "test status update") | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(ProcessMentionsService).to have_received(:new) | 
					
						
							|  |  |  |     expect(mention_service).to have_received(:call).with(status) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'processes hashtags' do | 
					
						
							|  |  |  |     hashtags_service = double(:process_hashtags_service) | 
					
						
							|  |  |  |     allow(hashtags_service).to receive(:call) | 
					
						
							|  |  |  |     allow(ProcessHashtagsService).to receive(:new).and_return(hashtags_service) | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: "test status update") | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(ProcessHashtagsService).to have_received(:new) | 
					
						
							|  |  |  |     expect(hashtags_service).to have_received(:call).with(status) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-13 00:44:41 +02:00
										 |  |  |   it 'gets distributed' do | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |     allow(DistributionWorker).to receive(:perform_async) | 
					
						
							| 
									
										
										
										
											2017-08-13 00:44:41 +02:00
										 |  |  |     allow(ActivityPub::DistributionWorker).to receive(:perform_async) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: "test status update") | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(DistributionWorker).to have_received(:perform_async).with(status.id) | 
					
						
							| 
									
										
										
										
											2017-08-13 00:44:41 +02:00
										 |  |  |     expect(ActivityPub::DistributionWorker).to have_received(:perform_async).with(status.id) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'crawls links' do | 
					
						
							|  |  |  |     allow(LinkCrawlWorker).to receive(:perform_async) | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status = subject.call(account, text: "test status update") | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(LinkCrawlWorker).to have_received(:perform_async).with(status.id) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'attaches the given media to the created status' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							| 
									
										
										
										
											2019-01-26 23:59:39 +01:00
										 |  |  |     media = Fabricate(:media_attachment, account: account) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     status = subject.call( | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |       account, | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |       text: "test status update", | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |       media_ids: [media.id], | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(media.reload.status).to eq status | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-26 23:59:39 +01:00
										 |  |  |   it 'does not attach media from another account to the created status' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  |     media = Fabricate(:media_attachment, account: Fabricate(:account)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = subject.call( | 
					
						
							|  |  |  |       account, | 
					
						
							|  |  |  |       text: "test status update", | 
					
						
							|  |  |  |       media_ids: [media.id], | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(media.reload.status).to eq nil | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   it 'does not allow attaching more than 4 files' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect do | 
					
						
							|  |  |  |       subject.call( | 
					
						
							|  |  |  |         account, | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |         text: "test status update", | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |         media_ids: [ | 
					
						
							|  |  |  |           Fabricate(:media_attachment, account: account), | 
					
						
							|  |  |  |           Fabricate(:media_attachment, account: account), | 
					
						
							|  |  |  |           Fabricate(:media_attachment, account: account), | 
					
						
							|  |  |  |           Fabricate(:media_attachment, account: account), | 
					
						
							|  |  |  |           Fabricate(:media_attachment, account: account), | 
					
						
							|  |  |  |         ].map(&:id), | 
					
						
							|  |  |  |       ) | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     end.to raise_error( | 
					
						
							|  |  |  |       Mastodon::ValidationError, | 
					
						
							| 
									
										
										
										
											2017-04-07 14:19:16 -04:00
										 |  |  |       I18n.t('media_attachments.validations.too_many'), | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     ) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it 'does not allow attaching both videos and images' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect do | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |       subject.call( | 
					
						
							|  |  |  |         account, | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |         text: "test status update", | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |         media_ids: [ | 
					
						
							|  |  |  |           Fabricate(:media_attachment, type: :video, account: account), | 
					
						
							|  |  |  |           Fabricate(:media_attachment, type: :image, account: account), | 
					
						
							|  |  |  |         ].map(&:id), | 
					
						
							|  |  |  |       ) | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     end.to raise_error( | 
					
						
							|  |  |  |       Mastodon::ValidationError, | 
					
						
							| 
									
										
										
										
											2017-04-07 14:19:16 -04:00
										 |  |  |       I18n.t('media_attachments.validations.images_and_video'), | 
					
						
							| 
									
										
										
										
											2017-04-07 12:50:43 -04:00
										 |  |  |     ) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 15:04:49 +02:00
										 |  |  |   it 'returns existing status when used twice with idempotency key' do | 
					
						
							|  |  |  |     account = Fabricate(:account) | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     status1 = subject.call(account, text: 'test', idempotency: 'meepmeep') | 
					
						
							|  |  |  |     status2 = subject.call(account, text: 'test', idempotency: 'meepmeep') | 
					
						
							| 
									
										
										
										
											2017-04-25 15:04:49 +02:00
										 |  |  |     expect(status2.id).to eq status1.id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 19:41:57 +09:00
										 |  |  |   def create_status_with_options(**options) | 
					
						
							| 
									
										
										
										
											2019-01-05 12:43:28 +01:00
										 |  |  |     subject.call(Fabricate(:account), options.merge(text: 'test')) | 
					
						
							| 
									
										
										
										
											2017-04-07 13:48:38 -04:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2016-02-25 00:17:01 +01:00
										 |  |  | end |