about summary refs log tree commit diff
path: root/spec/controllers/activitypub/replies_controller_spec.rb
blob: ed383864dd1fe423de4c98789004c887620bc4a3 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe ActivityPub::RepliesController, type: :controller do
  let(:status) { Fabricate(:status, visibility: parent_visibility) }
  let(:remote_reply_id) { nil }
  let(:remote_account) { nil }

  shared_examples 'cachable response' do
    it 'does not set cookies' do
      expect(response.cookies).to be_empty
      expect(response.headers['Set-Cookies']).to be nil
    end

    it 'does not set sessions' do
      expect(session).to be_empty
    end

    it 'returns public Cache-Control header' do
      expect(response.headers['Cache-Control']).to include 'public'
    end
  end

  before do
    allow(controller).to receive(:signed_request_account).and_return(remote_account)

    Fabricate(:status, thread: status, visibility: :public)
    Fabricate(:status, thread: status, visibility: :public)
    Fabricate(:status, thread: status, visibility: :private)
    Fabricate(:status, account: status.account, thread: status, visibility: :public)
    Fabricate(:status, account: status.account, thread: status, visibility: :private)

    Fabricate(:status, account: remote_account, thread: status, visibility: :public, uri: remote_reply_id) if remote_reply_id
  end

  describe 'GET #index' do
    context 'with no signature' do
      before do
        get :index, params: { account_username: status.account.username, status_id: status.id }
      end

      context 'when status is public' do
        let(:parent_visibility) { :public }

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

        it 'returns application/activity+json' do
          expect(response.content_type).to eq 'application/activity+json'
        end

        it_behaves_like 'cachable response'

        it 'returns items with account\'s own replies' do
          json = body_as_json

          expect(json[:first]).to be_a Hash
          expect(json[:first][:items]).to be_an Array
          expect(json[:first][:items].size).to eq 1
          expect(json[:first][:items].all? { |item| item[:to].include?(ActivityPub::TagManager::COLLECTIONS[:public]) || item[:cc].include?(ActivityPub::TagManager::COLLECTIONS[:public]) }).to be true
        end
      end

      context 'when status is private' do
        let(:parent_visibility) { :private }

        it 'returns http not found' do
          expect(response).to have_http_status(404)
        end
      end

      context 'when status is direct' do
        let(:parent_visibility) { :direct }

        it 'returns http not found' do
          expect(response).to have_http_status(404)
        end
      end
    end

    context 'with signature' do
      let(:remote_account) { Fabricate(:account, domain: 'example.com') }
      let(:only_other_accounts) { nil }

      context do
        before do
          get :index, params: { account_username: status.account.username, status_id: status.id, only_other_accounts: only_other_accounts }
        end

        context 'when status is public' do
          let(:parent_visibility) { :public }

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

          it 'returns application/activity+json' do
            expect(response.content_type).to eq 'application/activity+json'
          end

          it_behaves_like 'cachable response'

          context 'without only_other_accounts' do
            it 'returns items with account\'s own replies' do
              json = body_as_json

              expect(json[:first]).to be_a Hash
              expect(json[:first][:items]).to be_an Array
              expect(json[:first][:items].size).to eq 1
              expect(json[:first][:items].all? { |item| item[:to].include?(ActivityPub::TagManager::COLLECTIONS[:public]) || item[:cc].include?(ActivityPub::TagManager::COLLECTIONS[:public]) }).to be true
            end
          end

          context 'with only_other_accounts' do
            let(:only_other_accounts) { 'true' }

            it 'returns items with other public or unlisted replies' do
              json = body_as_json

              expect(json[:first]).to be_a Hash
              expect(json[:first][:items]).to be_an Array
              expect(json[:first][:items].size).to eq 2
              expect(json[:first][:items].all? { |item| item[:to].include?(ActivityPub::TagManager::COLLECTIONS[:public]) || item[:cc].include?(ActivityPub::TagManager::COLLECTIONS[:public]) }).to be true
            end

            context 'with remote responses' do
              let(:remote_reply_id) { 'foo' }

              it 'returned items are all inlined local toots or are ids' do
                json = body_as_json

                expect(json[:first]).to be_a Hash
                expect(json[:first][:items]).to be_an Array
                expect(json[:first][:items].size).to eq 3
                expect(json[:first][:items].all? { |item| item.is_a?(Hash) ? ActivityPub::TagManager.instance.local_uri?(item[:id]) : item.is_a?(String) }).to be true
                expect(json[:first][:items]).to include remote_reply_id
              end
            end
          end
        end

        context 'when status is private' do
          let(:parent_visibility) { :private }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end

        context 'when status is direct' do
          let(:parent_visibility) { :direct }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end
      end

      context 'when signed request account is blocked' do
        before do
          status.account.block!(remote_account)
          get :index, params: { account_username: status.account.username, status_id: status.id }
        end

        context 'when status is public' do
          let(:parent_visibility) { :public }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end

        context 'when status is private' do
          let(:parent_visibility) { :private }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end

        context 'when status is direct' do
          let(:parent_visibility) { :direct }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end
      end

      context 'when signed request account is domain blocked' do
        before do
          status.account.block_domain!(remote_account.domain)
          get :index, params: { account_username: status.account.username, status_id: status.id }
        end

        context 'when status is public' do
          let(:parent_visibility) { :public }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end

        context 'when status is private' do
          let(:parent_visibility) { :private }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end

        context 'when status is direct' do
          let(:parent_visibility) { :direct }

          it 'returns http not found' do
            expect(response).to have_http_status(404)
          end
        end
      end
    end
  end
end