about summary refs log tree commit diff
path: root/spec/controllers/api/activitypub/notes_controller_spec.rb
blob: 8b8db2fecf3423020c06cfa98e9d127ba6ad75f2 (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
72
73
74
75
76
77
78
79
80
81
require 'rails_helper'

RSpec.describe Api::Activitypub::NotesController, type: :controller do
  render_views

  let(:user_alice)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:user_bob)  { Fabricate(:user, account: Fabricate(:account, username: 'bob')) }

  describe 'GET #show' do
    describe 'normal status' do
      public_status = nil

      before do
        public_status = Status.create!(account: user_alice.account, text: 'Hello world', visibility: :public)

        @request.env['HTTP_ACCEPT'] = 'application/activity+json'
        get :show, params: { id: public_status.id }
      end

      it 'returns http success' do
        expect(response).to have_http_status(:success)
      end

      it 'sets Content-Type header to AS2' do
        expect(response.header['Content-Type']).to include 'application/activity+json'
      end

      it 'sets Access-Control-Allow-Origin header to *' do
        expect(response.header['Access-Control-Allow-Origin']).to eq '*'
      end

      it 'returns http success' do
        json_data = JSON.parse(response.body)
        expect(json_data).to include('@context' => 'https://www.w3.org/ns/activitystreams')
        expect(json_data).to include('type' => 'Note')
        expect(json_data).to include('id' => @request.url)
        expect(json_data).to include('name' => 'Hello world')
        expect(json_data).to include('content' => 'Hello world')
        expect(json_data).to include('published')
        expect(json_data).to include('url' => TagManager.instance.url_for(public_status))
      end
    end

    describe 'reply' do
      original = nil
      reply = nil

      before do
        original = Status.create!(account: user_alice.account, text: 'Hello world', visibility: :public)
        reply = Status.create!(account: user_bob.account, text: 'Hello world', in_reply_to_id: original.id, visibility: :public)

        @request.env['HTTP_ACCEPT'] = 'application/activity+json'
        get :show, params: { id: reply.id }
      end

      it 'returns http success' do
        expect(response).to have_http_status(:success)
      end

      it 'sets Content-Type header to AS2' do
        expect(response.header['Content-Type']).to include 'application/activity+json'
      end

      it 'sets Access-Control-Allow-Origin header to *' do
        expect(response.header['Access-Control-Allow-Origin']).to eq '*'
      end

      it 'returns http success' do
        json_data = JSON.parse(response.body)
        expect(json_data).to include('@context' => 'https://www.w3.org/ns/activitystreams')
        expect(json_data).to include('type' => 'Note')
        expect(json_data).to include('id' => @request.url)
        expect(json_data).to include('name' => 'Hello world')
        expect(json_data).to include('content' => 'Hello world')
        expect(json_data).to include('published')
        expect(json_data).to include('url' => TagManager.instance.url_for(reply))
        expect(json_data).to include('inReplyTo' => api_activitypub_note_url(original))
      end
    end
  end
end