1 defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do
2 use Pleroma.Web.ConnCase
4 alias Pleroma.Notification
7 alias Pleroma.Web.CommonAPI
11 Tesla.Mock.mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
15 describe "POST /api/pleroma/follow_import" do
16 test "it returns HTTP 200", %{conn: conn} do
22 |> assign(:user, user1)
23 |> post("/api/pleroma/follow_import", %{"list" => "#{user2.ap_id}"})
26 assert response == "job started"
29 test "it imports new-style mastodon follow lists", %{conn: conn} do
35 |> assign(:user, user1)
36 |> post("/api/pleroma/follow_import", %{
37 "list" => "Account address,Show boosts\n#{user2.ap_id},true"
41 assert response == "job started"
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)
49 for token <- [token1, token2] do
52 |> put_req_header("authorization", "Bearer #{token.token}")
53 |> post("/api/pleroma/follow_import", %{"list" => "#{another_user.ap_id}"})
56 assert %{"error" => "Insufficient permissions: follow."} == json_response(conn, 403)
58 assert json_response(conn, 200)
64 describe "POST /api/pleroma/blocks_import" do
65 test "it returns HTTP 200", %{conn: conn} do
71 |> assign(:user, user1)
72 |> post("/api/pleroma/blocks_import", %{"list" => "#{user2.ap_id}"})
75 assert response == "job started"
79 describe "POST /api/pleroma/notifications/read" do
80 test "it marks a single notification as read", %{conn: conn} do
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)
89 |> assign(:user, user1)
90 |> post("/api/pleroma/notifications/read", %{"id" => "#{notification1.id}"})
93 assert Repo.get(Notification, notification1.id).seen
94 refute Repo.get(Notification, notification2.id).seen
98 describe "PUT /api/pleroma/notification_settings" do
99 test "it updates notification settings", %{conn: conn} do
103 |> assign(:user, user)
104 |> put("/api/pleroma/notification_settings", %{
106 "followers" => false,
109 |> json_response(:ok)
111 user = Repo.get(User, user.id)
113 assert %{"remote" => false, "local" => true, "followers" => false, "follows" => true} ==
114 user.info.notification_settings
118 describe "GET /api/statusnet/config.json" do
119 test "returns the state of safe_dm_mentions flag", %{conn: conn} do
120 option = Pleroma.Config.get([:instance, :safe_dm_mentions])
121 Pleroma.Config.put([:instance, :safe_dm_mentions], true)
125 |> get("/api/statusnet/config.json")
126 |> json_response(:ok)
128 assert response["site"]["safeDMMentionsEnabled"] == "1"
130 Pleroma.Config.put([:instance, :safe_dm_mentions], false)
134 |> get("/api/statusnet/config.json")
135 |> json_response(:ok)
137 assert response["site"]["safeDMMentionsEnabled"] == "0"
139 Pleroma.Config.put([:instance, :safe_dm_mentions], option)
142 test "it returns the managed config", %{conn: conn} do
143 Pleroma.Config.put([:instance, :managed_config], false)
144 Pleroma.Config.put([:fe], theme: "rei-ayanami-towel")
148 |> get("/api/statusnet/config.json")
149 |> json_response(:ok)
151 refute response["site"]["pleromafe"]
153 Pleroma.Config.put([:instance, :managed_config], true)
157 |> get("/api/statusnet/config.json")
158 |> json_response(:ok)
160 assert response["site"]["pleromafe"]
163 test "if :pleroma, :fe is false, it returns the new style config settings", %{conn: conn} do
164 Pleroma.Config.put([:instance, :managed_config], true)
165 Pleroma.Config.put([:fe, :theme], "rei-ayanami-towel")
166 Pleroma.Config.put([:frontend_configurations, :pleroma_fe], %{theme: "asuka-hospital"})
170 |> get("/api/statusnet/config.json")
171 |> json_response(:ok)
173 assert response["site"]["pleromafe"]["theme"] == "rei-ayanami-towel"
175 Pleroma.Config.put([:fe], false)
179 |> get("/api/statusnet/config.json")
180 |> json_response(:ok)
182 assert response["site"]["pleromafe"]["theme"] == "asuka-hospital"
186 describe "GET /api/pleroma/frontend_configurations" do
187 test "returns everything in :pleroma, :frontend_configurations", %{conn: conn} do
198 Pleroma.Config.put(:frontend_configurations, config)
202 |> get("/api/pleroma/frontend_configurations")
203 |> json_response(:ok)
205 assert response == Jason.encode!(config |> Enum.into(%{})) |> Jason.decode!()
209 describe "/api/pleroma/emoji" do
210 test "returns json with custom emoji with tags", %{conn: conn} do
213 |> get("/api/pleroma/emoji")
214 |> json_response(200)
216 assert Enum.all?(emoji, fn
222 is_binary(url) and is_list(tags)
227 describe "GET /ostatus_subscribe?acct=...." do
228 test "adds status to pleroma instance if the `acct` is a status", %{conn: conn} do
232 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie/statuses/101849165031453009"
235 assert redirected_to(conn) =~ "/notice/"
238 test "show follow account page if the `acct` is a account link", %{conn: conn} do
242 "/ostatus_subscribe?acct=https://mastodon.social/users/emelie"
245 assert html_response(response, 200) =~ "Log in to follow"
249 test "GET /api/pleroma/healthcheck", %{conn: conn} do
250 conn = get(conn, "/api/pleroma/healthcheck")
252 assert conn.status in [200, 503]