ca0b8cc260a72dee21c1dbce79a8726af7346821
[akkoma] / test / web / twitter_api / util_controller_test.exs
1 defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do
2 use Pleroma.Web.ConnCase
3
4 alias Pleroma.Notification
5 alias Pleroma.Repo
6 alias Pleroma.User
7 alias Pleroma.Web.CommonAPI
8 import Pleroma.Factory
9
10 setup do
11 Tesla.Mock.mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
12 :ok
13 end
14
15 describe "POST /api/pleroma/follow_import" do
16 test "it returns HTTP 200", %{conn: conn} do
17 user1 = insert(:user)
18 user2 = insert(:user)
19
20 response =
21 conn
22 |> assign(:user, user1)
23 |> post("/api/pleroma/follow_import", %{"list" => "#{user2.ap_id}"})
24 |> json_response(:ok)
25
26 assert response == "job started"
27 end
28
29 test "it imports new-style mastodon follow lists", %{conn: conn} do
30 user1 = insert(:user)
31 user2 = insert(:user)
32
33 response =
34 conn
35 |> assign(:user, user1)
36 |> post("/api/pleroma/follow_import", %{
37 "list" => "Account address,Show boosts\n#{user2.ap_id},true"
38 })
39 |> json_response(:ok)
40
41 assert response == "job started"
42 end
43
44 test "requires 'follow' permission", %{conn: conn} do
45 token1 = insert(:oauth_token, scopes: ["read", "write"])
46 token2 = insert(:oauth_token, scopes: ["follow"])
47 another_user = insert(:user)
48
49 for token <- [token1, token2] do
50 conn =
51 conn
52 |> put_req_header("authorization", "Bearer #{token.token}")
53 |> post("/api/pleroma/follow_import", %{"list" => "#{another_user.ap_id}"})
54
55 if token == token1 do
56 assert %{"error" => "Insufficient permissions: follow."} == json_response(conn, 403)
57 else
58 assert json_response(conn, 200)
59 end
60 end
61 end
62 end
63
64 describe "POST /api/pleroma/blocks_import" do
65 test "it returns HTTP 200", %{conn: conn} do
66 user1 = insert(:user)
67 user2 = insert(:user)
68
69 response =
70 conn
71 |> assign(:user, user1)
72 |> post("/api/pleroma/blocks_import", %{"list" => "#{user2.ap_id}"})
73 |> json_response(:ok)
74
75 assert response == "job started"
76 end
77 end
78
79 describe "POST /api/pleroma/notifications/read" do
80 test "it marks a single notification as read", %{conn: conn} do
81 user1 = insert(:user)
82 user2 = insert(:user)
83 {:ok, activity1} = CommonAPI.post(user2, %{"status" => "hi @#{user1.nickname}"})
84 {:ok, activity2} = CommonAPI.post(user2, %{"status" => "hi @#{user1.nickname}"})
85 {:ok, [notification1]} = Notification.create_notifications(activity1)
86 {:ok, [notification2]} = Notification.create_notifications(activity2)
87
88 conn
89 |> assign(:user, user1)
90 |> post("/api/pleroma/notifications/read", %{"id" => "#{notification1.id}"})
91 |> json_response(:ok)
92
93 assert Repo.get(Notification, notification1.id).seen
94 refute Repo.get(Notification, notification2.id).seen
95 end
96 end
97
98 describe "PUT /api/pleroma/notification_settings" do
99 test "it updates notification settings", %{conn: conn} do
100 user = insert(:user)
101
102 conn
103 |> assign(:user, user)
104 |> put("/api/pleroma/notification_settings", %{
105 "remote" => false,
106 "followers" => false,
107 "bar" => 1
108 })
109 |> json_response(:ok)
110
111 user = Repo.get(User, user.id)
112
113 assert %{
114 "remote" => false,
115 "local" => true,
116 "followers" => false,
117 "follows" => true,
118 "non_follows" => true,
119 "non_followers" => true
120 } == user.info.notification_settings
121 end
122 end
123
124 describe "GET /api/statusnet/config.json" do
125 test "returns the state of safe_dm_mentions flag", %{conn: conn} do
126 option = Pleroma.Config.get([:instance, :safe_dm_mentions])
127 Pleroma.Config.put([:instance, :safe_dm_mentions], true)
128
129 response =
130 conn
131 |> get("/api/statusnet/config.json")
132 |> json_response(:ok)
133
134 assert response["site"]["safeDMMentionsEnabled"] == "1"
135
136 Pleroma.Config.put([:instance, :safe_dm_mentions], false)
137
138 response =
139 conn
140 |> get("/api/statusnet/config.json")
141 |> json_response(:ok)
142
143 assert response["site"]["safeDMMentionsEnabled"] == "0"
144
145 Pleroma.Config.put([:instance, :safe_dm_mentions], option)
146 end
147
148 test "it returns the managed config", %{conn: conn} do
149 Pleroma.Config.put([:instance, :managed_config], false)
150 Pleroma.Config.put([:frontend_configurations, :pleroma_fe], %{theme: "asuka-hospital"})
151
152 response =
153 conn
154 |> get("/api/statusnet/config.json")
155 |> json_response(:ok)
156
157 refute response["site"]["pleromafe"]
158
159 Pleroma.Config.put([:instance, :managed_config], true)
160
161 response =
162 conn
163 |> get("/api/statusnet/config.json")
164 |> json_response(:ok)
165
166 assert response["site"]["pleromafe"] == %{"theme" => "asuka-hospital"}
167 end
168 end
169
170 describe "GET /api/pleroma/frontend_configurations" do
171 test "returns everything in :pleroma, :frontend_configurations", %{conn: conn} do
172 config = [
173 frontend_a: %{
174 x: 1,
175 y: 2
176 },
177 frontend_b: %{
178 z: 3
179 }
180 ]
181
182 Pleroma.Config.put(:frontend_configurations, config)
183
184 response =
185 conn
186 |> get("/api/pleroma/frontend_configurations")
187 |> json_response(:ok)
188
189 assert response == Jason.encode!(config |> Enum.into(%{})) |> Jason.decode!()
190 end
191 end
192
193 describe "/api/pleroma/emoji" do
194 test "returns json with custom emoji with tags", %{conn: conn} do
195 emoji =
196 conn
197 |> get("/api/pleroma/emoji")
198 |> json_response(200)
199
200 assert Enum.all?(emoji, fn
201 {_key,
202 %{
203 "image_url" => url,
204 "tags" => tags
205 }} ->
206 is_binary(url) and is_list(tags)
207 end)
208 end
209 end
210
211 describe "GET /ostatus_subscribe?acct=...." do
212 test "adds status to pleroma instance if the `acct` is a status", %{conn: conn} do
213 conn =
214 get(
215 conn,
216 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie/statuses/101849165031453009"
217 )
218
219 assert redirected_to(conn) =~ "/notice/"
220 end
221
222 test "show follow account page if the `acct` is a account link", %{conn: conn} do
223 response =
224 get(
225 conn,
226 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie"
227 )
228
229 assert html_response(response, 200) =~ "Log in to follow"
230 end
231 end
232
233 test "GET /api/pleroma/healthcheck", %{conn: conn} do
234 conn = get(conn, "/api/pleroma/healthcheck")
235
236 assert conn.status in [200, 503]
237 end
238
239 describe "POST /api/pleroma/disable_account" do
240 test "it returns HTTP 200", %{conn: conn} do
241 user = insert(:user)
242
243 response =
244 conn
245 |> assign(:user, user)
246 |> post("/api/pleroma/disable_account", %{"password" => "test"})
247 |> json_response(:ok)
248
249 assert response == %{"status" => "success"}
250
251 user = User.get_cached_by_id(user.id)
252
253 assert user.info.deactivated == true
254 end
255 end
256 end