Merge branch 'feature/create-tombstone-instead-of-delete' into 'develop'
[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 |> get(url)
92
93 expected =
94 ActivityRepresenter.to_simple_form(note_activity, user, true)
95 |> ActivityRepresenter.wrap_with_entry()
96 |> :xmerl.export_simple(:xmerl_xml)
97 |> to_string
98
99 assert response(conn, 200) == expected
100 end
101
102 test "404s on private objects", %{conn: conn} do
103 note_activity = insert(:direct_note_activity)
104 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"]))
105
106 conn
107 |> get("/objects/#{uuid}")
108 |> response(404)
109 end
110
111 test "404s on nonexisting objects", %{conn: conn} do
112 conn
113 |> get("/objects/123")
114 |> response(404)
115 end
116
117 test "404s on deleted objects", %{conn: conn} do
118 note_activity = insert(:note_activity)
119 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"]))
120 object = Object.get_by_ap_id(note_activity.data["object"]["id"])
121
122 conn
123 |> get("/objects/#{uuid}")
124 |> response(200)
125
126 Object.delete(object)
127
128 conn
129 |> get("/objects/#{uuid}")
130 |> response(404)
131 end
132
133 test "gets an activity", %{conn: conn} do
134 note_activity = insert(:note_activity)
135 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
136
137 conn
138 |> get("/activities/#{uuid}")
139 |> response(200)
140 end
141
142 test "404s on private activities", %{conn: conn} do
143 note_activity = insert(:direct_note_activity)
144 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
145
146 conn
147 |> get("/activities/#{uuid}")
148 |> response(404)
149 end
150
151 test "404s on nonexistent activities", %{conn: conn} do
152 conn
153 |> get("/activities/123")
154 |> response(404)
155 end
156
157 test "gets a notice", %{conn: conn} do
158 note_activity = insert(:note_activity)
159
160 conn
161 |> get("/notice/#{note_activity.id}")
162 |> response(200)
163 end
164
165 test "gets a notice in AS2 format", %{conn: conn} do
166 note_activity = insert(:note_activity)
167
168 conn
169 |> put_req_header("accept", "application/activity+json")
170 |> get("/notice/#{note_activity.id}")
171 |> json_response(200)
172 end
173
174 test "only gets a notice in AS2 format for Create messages", %{conn: conn} do
175 note_activity = insert(:note_activity)
176 url = "/notice/#{note_activity.id}"
177
178 conn =
179 conn
180 |> put_req_header("accept", "application/activity+json")
181 |> get(url)
182
183 assert json_response(conn, 200)
184
185 user = insert(:user)
186
187 {:ok, like_activity, _} = CommonAPI.favorite(note_activity.id, user)
188 url = "/notice/#{like_activity.id}"
189
190 assert like_activity.data["type"] == "Like"
191
192 conn =
193 build_conn()
194 |> put_req_header("accept", "application/activity+json")
195 |> get(url)
196
197 assert response(conn, 404)
198 end
199
200 test "gets an activity in AS2 format", %{conn: conn} do
201 note_activity = insert(:note_activity)
202 [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
203 url = "/activities/#{uuid}"
204
205 conn =
206 conn
207 |> put_req_header("accept", "application/activity+json")
208 |> get(url)
209
210 assert json_response(conn, 200)
211 end
212
213 test "404s a private notice", %{conn: conn} do
214 note_activity = insert(:direct_note_activity)
215 url = "/notice/#{note_activity.id}"
216
217 conn =
218 conn
219 |> get(url)
220
221 assert response(conn, 404)
222 end
223
224 test "404s a nonexisting notice", %{conn: conn} do
225 url = "/notice/123"
226
227 conn =
228 conn
229 |> get(url)
230
231 assert response(conn, 404)
232 end
233 end