2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2019-01-09 12:54:37 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-09 11:15:01 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
|
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Notification
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-09-26 03:53:42 +00:00
|
|
|
|
|
|
|
import Pleroma.Factory
|
|
|
|
import Tesla.Mock
|
2018-12-03 18:37:55 +00:00
|
|
|
|
|
|
|
setup do
|
|
|
|
mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
|
|
|
:ok
|
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2019-08-19 15:34:29 +00:00
|
|
|
clear_config([:rich_media, :enabled])
|
|
|
|
|
2018-09-01 21:34:15 +00:00
|
|
|
test "getting a list of mutes", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, user} = User.mute(user, other_user)
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/mutes")
|
|
|
|
|
|
|
|
other_user_id = to_string(other_user.id)
|
|
|
|
assert [%{"id" => ^other_user_id}] = json_response(conn, 200)
|
|
|
|
end
|
|
|
|
|
2017-11-03 07:51:17 +00:00
|
|
|
test "getting a list of blocks", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, user} = User.block(user, other_user)
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/blocks")
|
2017-11-03 07:51:17 +00:00
|
|
|
|
2017-11-10 16:18:19 +00:00
|
|
|
other_user_id = to_string(other_user.id)
|
2017-11-03 07:51:17 +00:00
|
|
|
assert [%{"id" => ^other_user_id}] = json_response(conn, 200)
|
|
|
|
end
|
|
|
|
|
2018-09-01 21:34:15 +00:00
|
|
|
test "unimplemented follow_requests, blocks, domain blocks" do
|
2017-09-14 16:30:05 +00:00
|
|
|
user = insert(:user)
|
|
|
|
|
2018-09-01 21:34:15 +00:00
|
|
|
["blocks", "domain_blocks", "follow_requests"]
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.each(fn endpoint ->
|
|
|
|
conn =
|
|
|
|
build_conn()
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/#{endpoint}")
|
2017-09-14 16:30:05 +00:00
|
|
|
|
|
|
|
assert [] = json_response(conn, 200)
|
|
|
|
end)
|
|
|
|
end
|
2017-09-16 08:42:24 +00:00
|
|
|
|
2017-09-17 11:09:49 +00:00
|
|
|
test "returns the favorites of a user", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, _} = CommonAPI.post(other_user, %{"status" => "bla"})
|
|
|
|
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "traps are happy"})
|
|
|
|
|
|
|
|
{:ok, _, _} = CommonAPI.favorite(activity.id, user)
|
|
|
|
|
2019-01-13 15:17:47 +00:00
|
|
|
first_conn =
|
2018-03-30 13:01:53 +00:00
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/favourites")
|
2017-09-17 11:09:49 +00:00
|
|
|
|
2019-01-13 15:17:47 +00:00
|
|
|
assert [status] = json_response(first_conn, 200)
|
2017-10-31 16:57:26 +00:00
|
|
|
assert status["id"] == to_string(activity.id)
|
2019-01-13 15:17:47 +00:00
|
|
|
|
2019-01-16 04:09:01 +00:00
|
|
|
assert [{"link", _link_header}] =
|
2019-01-13 15:17:47 +00:00
|
|
|
Enum.filter(first_conn.resp_headers, fn element -> match?({"link", _}, element) end)
|
|
|
|
|
|
|
|
# Honours query params
|
|
|
|
{:ok, second_activity} =
|
|
|
|
CommonAPI.post(other_user, %{
|
|
|
|
"status" =>
|
|
|
|
"Trees Are Never Sad Look At Them Every Once In Awhile They're Quite Beautiful."
|
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, _, _} = CommonAPI.favorite(second_activity.id, user)
|
|
|
|
|
|
|
|
last_like = status["id"]
|
|
|
|
|
|
|
|
second_conn =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/favourites?since_id=#{last_like}")
|
|
|
|
|
|
|
|
assert [second_status] = json_response(second_conn, 200)
|
|
|
|
assert second_status["id"] == to_string(second_activity.id)
|
|
|
|
|
|
|
|
third_conn =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/favourites?limit=0")
|
|
|
|
|
|
|
|
assert [] = json_response(third_conn, 200)
|
2017-09-17 11:09:49 +00:00
|
|
|
end
|
2017-11-11 22:27:09 +00:00
|
|
|
|
2019-03-07 02:29:42 +00:00
|
|
|
describe "link headers" do
|
|
|
|
test "preserves parameters in link headers", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity1} =
|
|
|
|
CommonAPI.post(other_user, %{
|
|
|
|
"status" => "hi @#{user.nickname}",
|
|
|
|
"visibility" => "public"
|
|
|
|
})
|
2019-03-28 09:39:10 +00:00
|
|
|
|
2019-03-07 02:29:42 +00:00
|
|
|
{:ok, activity2} =
|
|
|
|
CommonAPI.post(other_user, %{
|
|
|
|
"status" => "hi @#{user.nickname}",
|
|
|
|
"visibility" => "public"
|
|
|
|
})
|
2019-03-28 09:39:10 +00:00
|
|
|
|
2019-03-07 02:29:42 +00:00
|
|
|
notification1 = Repo.get_by(Notification, activity_id: activity1.id)
|
|
|
|
notification2 = Repo.get_by(Notification, activity_id: activity2.id)
|
2019-03-28 09:39:10 +00:00
|
|
|
|
2019-03-07 02:29:42 +00:00
|
|
|
conn =
|
2019-03-28 09:39:10 +00:00
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
2019-03-07 02:29:42 +00:00
|
|
|
|> get("/api/v1/notifications", %{media_only: true})
|
2019-03-28 09:39:10 +00:00
|
|
|
|
2019-03-07 02:29:42 +00:00
|
|
|
assert [link_header] = get_resp_header(conn, "link")
|
|
|
|
assert link_header =~ ~r/media_only=true/
|
2019-03-25 21:19:57 +00:00
|
|
|
assert link_header =~ ~r/min_id=#{notification2.id}/
|
2019-03-07 02:29:42 +00:00
|
|
|
assert link_header =~ ~r/max_id=#{notification1.id}/
|
2019-03-28 09:39:10 +00:00
|
|
|
end
|
2019-03-07 02:29:42 +00:00
|
|
|
end
|
2019-03-28 09:39:10 +00:00
|
|
|
|
2019-09-06 18:50:00 +00:00
|
|
|
describe "empty_array, stubs for mastodon api" do
|
|
|
|
test "GET /api/v1/accounts/:id/identity_proofs", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/accounts/#{user.id}/identity_proofs")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /api/v1/endorsements", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/endorsements")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /api/v1/trends", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/trends")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|