2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-04 03:17:06 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-13 19:39:26 +11:00
|
|
|
RSpec.describe BlockService do
|
2023-06-06 21:58:33 +10:00
|
|
|
subject { described_class.new }
|
2017-02-13 03:28:15 +11:00
|
|
|
|
2023-02-20 15:24:14 +11:00
|
|
|
let(:sender) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
2017-02-13 03:28:15 +11:00
|
|
|
describe 'local' do
|
2022-01-28 10:46:42 +11:00
|
|
|
let(:bob) { Fabricate(:account, username: 'bob') }
|
2017-02-13 03:28:15 +11:00
|
|
|
|
|
|
|
before do
|
2024-03-27 01:46:38 +11:00
|
|
|
NotificationPermission.create!(account: sender, from_account: bob)
|
2017-02-13 03:28:15 +11:00
|
|
|
end
|
|
|
|
|
2024-03-27 01:46:38 +11:00
|
|
|
it 'creates a blocking relation and removes notification permissions' do
|
|
|
|
expect { subject.call(sender, bob) }
|
|
|
|
.to change { sender.blocking?(bob) }.from(false).to(true)
|
|
|
|
.and change { NotificationPermission.exists?(account: sender, from_account: bob) }.from(true).to(false)
|
2017-02-13 03:28:15 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-13 08:44:41 +10:00
|
|
|
describe 'remote ActivityPub' do
|
2022-01-28 10:46:42 +11:00
|
|
|
let(:bob) { Fabricate(:account, username: 'bob', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
2017-08-13 08:44:41 +10:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
2024-10-05 00:11:15 +10:00
|
|
|
it 'creates a blocking relation and send block activity', :inline_jobs do
|
|
|
|
subject.call(sender, bob)
|
|
|
|
|
|
|
|
expect(sender)
|
|
|
|
.to be_blocking(bob)
|
2017-08-13 08:44:41 +10:00
|
|
|
|
2024-10-05 00:11:15 +10:00
|
|
|
expect(a_request(:post, 'http://example.com/inbox'))
|
|
|
|
.to have_been_made.once
|
2017-08-13 08:44:41 +10:00
|
|
|
end
|
|
|
|
end
|
2016-10-04 03:17:06 +11:00
|
|
|
end
|