The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

53 satır
1.6 KiB

  1. require 'rails_helper'
  2. RSpec.describe UnblockService, type: :service do
  3. let(:sender) { Fabricate(:account, username: 'alice') }
  4. subject { UnblockService.new }
  5. describe 'local' do
  6. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
  7. before do
  8. sender.block!(bob)
  9. subject.call(sender, bob)
  10. end
  11. it 'destroys the blocking relation' do
  12. expect(sender.blocking?(bob)).to be false
  13. end
  14. end
  15. describe 'remote OStatus' do
  16. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://salmon.example.com')).account }
  17. before do
  18. sender.block!(bob)
  19. stub_request(:post, "http://salmon.example.com/").to_return(:status => 200, :body => "", :headers => {})
  20. subject.call(sender, bob)
  21. end
  22. it 'destroys the blocking relation' do
  23. expect(sender.blocking?(bob)).to be false
  24. end
  25. end
  26. describe 'remote ActivityPub' do
  27. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox')).account }
  28. before do
  29. sender.block!(bob)
  30. stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
  31. subject.call(sender, bob)
  32. end
  33. it 'destroys the blocking relation' do
  34. expect(sender.blocking?(bob)).to be false
  35. end
  36. it 'sends an unblock activity' do
  37. expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
  38. end
  39. end
  40. end