You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.7 KiB

  1. require 'rails_helper'
  2. RSpec.describe UnfollowService, type: :service do
  3. let(:sender) { Fabricate(:account, username: 'alice') }
  4. subject { UnfollowService.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.follow!(bob)
  9. subject.call(sender, bob)
  10. end
  11. it 'destroys the following relation' do
  12. expect(sender.following?(bob)).to be false
  13. end
  14. end
  15. describe 'remote ActivityPub' do
  16. 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 }
  17. before do
  18. sender.follow!(bob)
  19. stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
  20. subject.call(sender, bob)
  21. end
  22. it 'destroys the following relation' do
  23. expect(sender.following?(bob)).to be false
  24. end
  25. it 'sends an unfollow activity' do
  26. expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
  27. end
  28. end
  29. describe 'remote ActivityPub (reverse)' do
  30. 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 }
  31. before do
  32. bob.follow!(sender)
  33. stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
  34. subject.call(bob, sender)
  35. end
  36. it 'destroys the following relation' do
  37. expect(bob.following?(sender)).to be false
  38. end
  39. it 'sends a reject activity' do
  40. expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
  41. end
  42. end
  43. end