Merge branch 'develop' into 'oembed_provider'
[akkoma] / test / web / ostatus / ostatus_controller_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.OStatus.OStatusControllerTest do
6 use Pleroma.Web.ConnCase
7 import Pleroma.Factory
8 alias Pleroma.{User, Repo, Object}
9 alias Pleroma.Web.CommonAPI
10 alias Pleroma.Web.OStatus.ActivityRepresenter
11
12 setup_all do
13 Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
14 :ok
15 end
16
17 test "decodes a salmon", %{conn: conn} do
18 user = insert(:user)
19 salmon = File.read!("test/fixtures/salmon.xml")
20
21 conn =
22 conn
23 |> put_req_header("content-type", "application/atom+xml")
24 |> post("/users/#{user.nickname}/salmon", salmon)
25
26 assert response(conn, 200)
27 end
28
29 test "decodes a salmon with a changed magic key", %{conn: conn} do
30 user = insert(:user)
31 salmon = File.read!("test/fixtures/salmon.xml")
32
33 conn =
34 conn
35 |> put_req_header("content-type", "application/atom+xml")
36 |> post("/users/#{user.nickname}/salmon", salmon)
37
38 assert response(conn, 200)
39
40 # Set a wrong magic-key for a user so it has to refetch
41 salmon_user = User.get_by_ap_id("http://gs.example.org:4040/index.php/user/1")
42 # Wrong key
43 info_cng =
44 User.Info.remote_user_creation(salmon_user.info, %{
45 magic_key:
46 "RSA.pu0s-halox4tu7wmES1FVSx6u-4wc0YrUFXcqWXZG4-27UmbCOpMQftRCldNRfyA-qLbz-eqiwrong1EwUvjsD4cYbAHNGHwTvDOyx5AKthQUP44ykPv7kjKGh3DWKySJvcs9tlUG87hlo7AvnMo9pwRS_Zz2CacQ-MKaXyDepk=.AQAB"
47 })
48
49 salmon_user
50 |> Ecto.Changeset.change()
51 |> Ecto.Changeset.put_embed(:info, info_cng)
52 |> Repo.update()
53
54 conn =
55 build_conn()
56 |> put_req_header("content-type", "application/atom+xml")
57 |> post("/users/#{user.nickname}/salmon", salmon)
58
59 assert response(conn, 200)
60 end
61
62 test "gets a feed", %{conn: conn} do
63 note_activity = insert(:note_activity)
64 user = User.get_cached_by_ap_id(note_activity.data["actor"])
65
66 conn =
67 conn
68 |> put_req_header("content-type", "application/atom+xml")
69 |> get("/users/#{user.nickname}/feed.atom")
70
71 assert response(conn, 200) =~ note_activity.data["object"]["content"]
72 end
73
74 test "returns 404 for a missing feed", %{conn: conn} do
75 conn =
76 conn
77 |> put_req_header("content-type", "application/atom+xml")
78 |> get("/users/nonexisting/feed.atom")
79
80 assert response(conn, 404)
81 end
82
83 test "gets an object", %{conn: conn} do
84 note_activity = insert(:note_activity)
85 user = User.get_by_ap_id(note_activity.data["actor"])
86 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"]))
87 url = "/objects/#{uuid}"
88
89 conn =
90 conn
91 |> put_req_header("accept", "application/xml")
92 |> get(url)
93
94 expected =
95 ActivityRepresenter.to_simple_form(note_activity, user, true)
96 |> ActivityRepresenter.wrap_with_entry()
97 |> :xmerl.export_simple(:xmerl_xml)
98 |> to_string
99
100 assert response(conn, 200) == expected
101 end
102
103 test "404s on private objects", %{conn: conn} do
104 note_activity = insert(:direct_note_activity)
105 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"]))
106
107 conn
108 |> get("/objects/#{uuid}")
109 |> response(404)
110 end
111
112 test "404s on nonexisting objects", %{conn: conn} do
113 conn
114 |> get("/objects/123")
115 |> response(404)
116 end
117
118 test "gets an activity in xml format", %{conn: conn} do
119 note_activity = insert(:note_activity)
120 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
121
122 conn
123 |> put_req_header("accept", "application/xml")
124 |> get("/activities/#{uuid}")
125 |> response(200)
126 end
127
128 test "404s on deleted objects", %{conn: conn} do
129 note_activity = insert(:note_activity)
130 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"]))
131 object = Object.get_by_ap_id(note_activity.data["object"]["id"])
132
133 conn
134 |> put_req_header("accept", "application/xml")
135 |> get("/objects/#{uuid}")
136 |> response(200)
137
138 Object.delete(object)
139
140 conn
141 |> put_req_header("accept", "application/xml")
142 |> get("/objects/#{uuid}")
143 |> response(404)
144 end
145
146 test "404s on private activities", %{conn: conn} do
147 note_activity = insert(:direct_note_activity)
148 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
149
150 conn
151 |> get("/activities/#{uuid}")
152 |> response(404)
153 end
154
155 test "404s on nonexistent activities", %{conn: conn} do
156 conn
157 |> get("/activities/123")
158 |> response(404)
159 end
160
161 test "gets a notice in xml format", %{conn: conn} do
162 note_activity = insert(:note_activity)
163
164 conn
165 |> get("/notice/#{note_activity.id}")
166 |> response(200)
167 end
168
169 test "gets a notice in AS2 format", %{conn: conn} do
170 note_activity = insert(:note_activity)
171
172 conn
173 |> put_req_header("accept", "application/activity+json")
174 |> get("/notice/#{note_activity.id}")
175 |> json_response(200)
176 end
177
178 test "only gets a notice in AS2 format for Create messages", %{conn: conn} do
179 note_activity = insert(:note_activity)
180 url = "/notice/#{note_activity.id}"
181
182 conn =
183 conn
184 |> put_req_header("accept", "application/activity+json")
185 |> get(url)
186
187 assert json_response(conn, 200)
188
189 user = insert(:user)
190
191 {:ok, like_activity, _} = CommonAPI.favorite(note_activity.id, user)
192 url = "/notice/#{like_activity.id}"
193
194 assert like_activity.data["type"] == "Like"
195
196 conn =
197 build_conn()
198 |> put_req_header("accept", "application/activity+json")
199 |> get(url)
200
201 assert response(conn, 404)
202 end
203
204 test "gets an activity in AS2 format", %{conn: conn} do
205 note_activity = insert(:note_activity)
206 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
207 url = "/activities/#{uuid}"
208
209 conn =
210 conn
211 |> put_req_header("accept", "application/activity+json")
212 |> get(url)
213
214 assert json_response(conn, 200)
215 end
216
217 test "404s a private notice", %{conn: conn} do
218 note_activity = insert(:direct_note_activity)
219 url = "/notice/#{note_activity.id}"
220
221 conn =
222 conn
223 |> get(url)
224
225 assert response(conn, 404)
226 end
227
228 test "404s a nonexisting notice", %{conn: conn} do
229 url = "/notice/123"
230
231 conn =
232 conn
233 |> get(url)
234
235 assert response(conn, 404)
236 end
237 end