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