2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2019-12-19 14:23:27 +00:00
|
|
|
describe "empty_array/2 (stubs)" do
|
|
|
|
test "GET /api/v1/accounts/:id/identity_proofs" do
|
2020-04-24 13:52:38 +00:00
|
|
|
%{user: user, conn: conn} = oauth_access(["read:accounts"])
|
2019-09-06 18:50:00 +00:00
|
|
|
|
2020-04-24 13:52:38 +00:00
|
|
|
assert [] ==
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/accounts/#{user.id}/identity_proofs")
|
|
|
|
|> json_response(200)
|
2019-09-06 18:50:00 +00:00
|
|
|
end
|
|
|
|
|
2019-12-19 14:23:27 +00:00
|
|
|
test "GET /api/v1/endorsements" do
|
|
|
|
%{conn: conn} = oauth_access(["read:accounts"])
|
2019-09-06 18:50:00 +00:00
|
|
|
|
2020-04-24 13:52:38 +00:00
|
|
|
assert [] ==
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/endorsements")
|
|
|
|
|> json_response(200)
|
2019-09-06 18:50:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /api/v1/trends", %{conn: conn} do
|
2020-04-24 13:52:38 +00:00
|
|
|
assert [] ==
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/trends")
|
|
|
|
|> json_response(200)
|
2019-09-06 18:50:00 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|