2017-06-11 17:13:43 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
RSpec.describe RemoveStatusService, type: :service do
|
2017-06-11 17:13:43 +02:00
|
|
|
subject { RemoveStatusService.new }
|
|
|
|
|
|
|
|
let!(:alice) { Fabricate(:account) }
|
|
|
|
let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://example.com/salmon') }
|
|
|
|
let!(:jeff) { Fabricate(:account) }
|
2017-08-13 00:44:41 +02:00
|
|
|
let!(:hank) { Fabricate(:account, username: 'hank', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
2017-08-28 21:38:59 +02:00
|
|
|
let!(:bill) { Fabricate(:account, username: 'bill', protocol: :activitypub, domain: 'example2.com', inbox_url: 'http://example2.com/inbox') }
|
2017-06-11 17:13:43 +02:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/push').to_return(status: 200, body: '', headers: {})
|
|
|
|
stub_request(:post, 'http://example.com/salmon').to_return(status: 200, body: '', headers: {})
|
2017-08-13 00:44:41 +02:00
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
2017-08-28 21:38:59 +02:00
|
|
|
stub_request(:post, 'http://example2.com/inbox').to_return(status: 200)
|
2017-06-11 17:13:43 +02:00
|
|
|
|
|
|
|
Fabricate(:subscription, account: alice, callback_url: 'http://example.com/push', confirmed: true, expires_at: 30.days.from_now)
|
|
|
|
jeff.follow!(alice)
|
2017-08-13 00:44:41 +02:00
|
|
|
hank.follow!(alice)
|
|
|
|
|
2019-01-05 12:43:28 +01:00
|
|
|
@status = PostStatusService.new.call(alice, text: 'Hello @bob@example.com')
|
2017-08-28 21:38:59 +02:00
|
|
|
Fabricate(:status, account: bill, reblog: @status, uri: 'hoge')
|
2017-06-11 17:13:43 +02:00
|
|
|
subject.call(@status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes status from author\'s home feed' do
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(alice).get(10)).to_not include(@status.id)
|
2017-06-11 17:13:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes status from local follower\'s home feed' do
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(jeff).get(10)).to_not include(@status.id)
|
2017-06-11 17:13:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends PuSH update to PuSH subscribers' do
|
|
|
|
expect(a_request(:post, 'http://example.com/push').with { |req|
|
2017-09-19 18:08:08 +02:00
|
|
|
req.body.match(OStatus::TagManager::VERBS[:delete])
|
2017-06-11 17:13:43 +02:00
|
|
|
}).to have_been_made
|
|
|
|
end
|
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
it 'sends delete activity to followers' do
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.twice
|
|
|
|
end
|
|
|
|
|
2017-06-11 17:13:43 +02:00
|
|
|
it 'sends Salmon slap to previously mentioned users' do
|
|
|
|
expect(a_request(:post, "http://example.com/salmon").with { |req|
|
|
|
|
xml = OStatus2::Salmon.new.unpack(req.body)
|
2017-09-19 18:08:08 +02:00
|
|
|
xml.match(OStatus::TagManager::VERBS[:delete])
|
2017-06-11 17:13:43 +02:00
|
|
|
}).to have_been_made.once
|
|
|
|
end
|
2017-08-28 21:38:59 +02:00
|
|
|
|
|
|
|
it 'sends delete activity to rebloggers' do
|
|
|
|
expect(a_request(:post, 'http://example2.com/inbox')).to have_been_made
|
|
|
|
end
|
2017-06-11 17:13:43 +02:00
|
|
|
end
|