about summary refs log tree commit diff
path: root/spec/services/fetch_remote_account_service_spec.rb
blob: 4388d4cf4efcb8e38c65bd3a2b856ef166d89d8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
require 'rails_helper'

RSpec.describe FetchRemoteAccountService do
  let(:url) { 'https://example.com' }
  let(:prefetched_body) { nil }
  let(:protocol) { :ostatus }
  subject { FetchRemoteAccountService.new.call(url, prefetched_body, protocol) }

  let(:actor) do
    {
      '@context': 'https://www.w3.org/ns/activitystreams',
      id: 'https://example.com/alice',
      type: 'Person',
      preferredUsername: 'alice',
      name: 'Alice',
      summary: 'Foo bar',
      inbox: 'http://example.com/alice/inbox',
    }
  end

  let(:webfinger) { { subject: 'acct:alice@example.com', links: [{ rel: 'self', href: 'https://example.com/alice' }] } }
  let(:xml) { File.read(File.join(Rails.root, 'spec', 'fixtures', 'xml', 'mastodon.atom')) }

  shared_examples 'return Account' do
    it { is_expected.to be_an Account }
  end

  context 'protocol is :activitypub' do
    let(:prefetched_body) { Oj.dump(actor) }
    let(:protocol) { :activitypub }

    before do
      stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
    end

    include_examples 'return Account'
  end

  context 'protocol is :ostatus' do
    let(:prefetched_body) { xml }
    let(:protocol) { :ostatus }

    before do
      stub_request(:get, "https://kickass.zone/.well-known/webfinger?resource=acct:localhost@kickass.zone").to_return(request_fixture('webfinger-hacker3.txt'))
      stub_request(:get, "https://kickass.zone/api/statuses/user_timeline/7477.atom").to_return(request_fixture('feed.txt'))
    end

    include_examples 'return Account'
  end

  context 'when prefetched_body is nil' do
    context 'protocol is :activitypub' do
      before do
        stub_request(:get, url).to_return(status: 200, body: Oj.dump(actor), headers: { 'Content-Type' => 'application/activity+json' })
        stub_request(:get, 'https://example.com/.well-known/webfinger?resource=acct:alice@example.com').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' })
      end

      include_examples 'return Account'
    end

    context 'protocol is :ostatus' do
      before do
        stub_request(:get, url).to_return(status: 200, body: xml, headers: { 'Content-Type' => 'application/atom+xml' })
        stub_request(:get, "https://kickass.zone/.well-known/webfinger?resource=acct:localhost@kickass.zone").to_return(request_fixture('webfinger-hacker3.txt'))
        stub_request(:get, "https://kickass.zone/api/statuses/user_timeline/7477.atom").to_return(request_fixture('feed.txt'))
      end

      include_examples 'return Account'
    end
  end
end