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-12-19 14:23:27 +00:00
|
|
|
describe "empty_array/2 (stubs)" do
|
|
|
|
test "GET /api/v1/accounts/:id/identity_proofs" do
|
|
|
|
%{user: user, conn: conn} = oauth_access(["n/a"])
|
2019-09-06 18:50:00 +00:00
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/accounts/#{user.id}/identity_proofs")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
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
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/endorsements")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /api/v1/trends", %{conn: conn} do
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/trends")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|