logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

favourite_service_spec.rb (2041B)


  1. require 'rails_helper'
  2. RSpec.describe FavouriteService do
  3. let(:sender) { Fabricate(:account, username: 'alice') }
  4. subject { FavouriteService.new }
  5. describe 'local' do
  6. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
  7. let(:status) { Fabricate(:status, account: bob) }
  8. before do
  9. subject.call(sender, status)
  10. end
  11. it 'creates a favourite' do
  12. expect(status.favourites.first).to_not be_nil
  13. end
  14. end
  15. describe 'remote OStatus' do
  16. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob', protocol: :ostatus, domain: 'example.com', salmon_url: 'http://salmon.example.com')).account }
  17. let(:status) { Fabricate(:status, account: bob, uri: 'tag:example.com:blahblah') }
  18. before do
  19. stub_request(:post, "http://salmon.example.com/").to_return(:status => 200, :body => "", :headers => {})
  20. subject.call(sender, status)
  21. end
  22. it 'creates a favourite' do
  23. expect(status.favourites.first).to_not be_nil
  24. end
  25. it 'sends a salmon slap' do
  26. expect(a_request(:post, "http://salmon.example.com/").with { |req|
  27. xml = OStatus2::Salmon.new.unpack(req.body)
  28. xml.match(OStatus::TagManager::VERBS[:favorite])
  29. }).to have_been_made.once
  30. end
  31. end
  32. describe 'remote ActivityPub' do
  33. let(:bob) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, protocol: :activitypub, username: 'bob', domain: 'example.com', inbox_url: 'http://example.com/inbox')).account }
  34. let(:status) { Fabricate(:status, account: bob) }
  35. before do
  36. stub_request(:post, "http://example.com/inbox").to_return(:status => 200, :body => "", :headers => {})
  37. subject.call(sender, status)
  38. end
  39. it 'creates a favourite' do
  40. expect(status.favourites.first).to_not be_nil
  41. end
  42. it 'sends a like activity' do
  43. expect(a_request(:post, "http://example.com/inbox")).to have_been_made.once
  44. end
  45. end
  46. end