summaryrefslogtreecommitdiff
path: root/test/web/twitter_api/twitter_api_controller_test.exs
diff options
context:
space:
mode:
authoreal <eal@waifu.club>2017-11-07 00:33:44 +0200
committereal <eal@waifu.club>2017-11-07 00:33:44 +0200
commitf85566324ec7cf20f070850d0cd5bd3fec25445d (patch)
tree6470b93d3fc8b197344e9c56fc9e6144e08bf358 /test/web/twitter_api/twitter_api_controller_test.exs
parented1eb5deea35ff2c3487ef550fad3a543a80cb32 (diff)
downloadpleroma-f85566324ec7cf20f070850d0cd5bd3fec25445d.tar.gz
pleroma-f85566324ec7cf20f070850d0cd5bd3fec25445d.zip
Allow profile fetching for authenticated users only.
Diffstat (limited to 'test/web/twitter_api/twitter_api_controller_test.exs')
-rw-r--r--test/web/twitter_api/twitter_api_controller_test.exs6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/web/twitter_api/twitter_api_controller_test.exs b/test/web/twitter_api/twitter_api_controller_test.exs
index a62947018..798309f7d 100644
--- a/test/web/twitter_api/twitter_api_controller_test.exs
+++ b/test/web/twitter_api/twitter_api_controller_test.exs
@@ -405,11 +405,13 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
describe "GET /api/externalprofile/show" do
test "it returns the user", %{conn: conn} do
user = insert(:user)
+ other_user = insert(:user)
conn = conn
- |> get("/api/externalprofile/show", %{profileurl: user.ap_id})
+ |> assign(:user, user)
+ |> get("/api/externalprofile/show", %{profileurl: other_user.ap_id})
- assert json_response(conn, 200) == UserView.render("show.json", %{user: user})
+ assert json_response(conn, 200) == UserView.render("show.json", %{user: other_user})
end
end