forked from AkkomaGang/akkoma
tests for mastodon_api_controller.ex
This commit is contained in:
parent
130bc8e0d5
commit
ab2f21e470
7 changed files with 438 additions and 165 deletions
|
@ -228,4 +228,11 @@ def increase_vote_count(ap_id, name) do
|
||||||
_ -> :noop
|
_ -> :noop
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc "Updates data field of an object"
|
||||||
|
def update_data(%Object{data: data} = object, attrs \\ %{}) do
|
||||||
|
object
|
||||||
|
|> Object.change(%{data: Map.merge(data || %{}, attrs)})
|
||||||
|
|> Repo.update()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -499,6 +499,11 @@ def get_all_by_ap_id(ap_ids) do
|
||||||
|> Repo.all()
|
|> Repo.all()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_all_by_ids(ids) do
|
||||||
|
from(u in __MODULE__, where: u.id in ^ids)
|
||||||
|
|> Repo.all()
|
||||||
|
end
|
||||||
|
|
||||||
# This is mostly an SPC migration fix. This guesses the user nickname by taking the last part
|
# This is mostly an SPC migration fix. This guesses the user nickname by taking the last part
|
||||||
# of the ap_id and the domain and tries to get that user
|
# of the ap_id and the domain and tries to get that user
|
||||||
def get_by_guessed_nickname(ap_id) do
|
def get_by_guessed_nickname(ap_id) do
|
||||||
|
@ -770,6 +775,19 @@ def update_note_count(%User{} = user) do
|
||||||
|> update_and_set_cache()
|
|> update_and_set_cache()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def update_mascot(user, url) do
|
||||||
|
info_changeset =
|
||||||
|
User.Info.mascot_update(
|
||||||
|
user.info,
|
||||||
|
url
|
||||||
|
)
|
||||||
|
|
||||||
|
user
|
||||||
|
|> change()
|
||||||
|
|> put_embed(:info, info_changeset)
|
||||||
|
|> update_and_set_cache()
|
||||||
|
end
|
||||||
|
|
||||||
@spec maybe_fetch_follow_information(User.t()) :: User.t()
|
@spec maybe_fetch_follow_information(User.t()) :: User.t()
|
||||||
def maybe_fetch_follow_information(user) do
|
def maybe_fetch_follow_information(user) do
|
||||||
with {:ok, user} <- fetch_follow_information(user) do
|
with {:ok, user} <- fetch_follow_information(user) do
|
||||||
|
@ -917,9 +935,7 @@ def subscribe(subscriber, %{ap_id: ap_id}) do
|
||||||
|
|
||||||
def unsubscribe(unsubscriber, %{ap_id: ap_id}) do
|
def unsubscribe(unsubscriber, %{ap_id: ap_id}) do
|
||||||
with %User{} = user <- get_cached_by_ap_id(ap_id) do
|
with %User{} = user <- get_cached_by_ap_id(ap_id) do
|
||||||
info_cng =
|
info_cng = User.Info.remove_from_subscribers(user.info, unsubscriber.ap_id)
|
||||||
user.info
|
|
||||||
|> User.Info.remove_from_subscribers(unsubscriber.ap_id)
|
|
||||||
|
|
||||||
change(user)
|
change(user)
|
||||||
|> put_embed(:info, info_cng)
|
|> put_embed(:info, info_cng)
|
||||||
|
|
|
@ -447,8 +447,7 @@ def get_context(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
grouped_activities <- Enum.group_by(activities, fn %{id: id} -> id < activity.id end) do
|
grouped_activities <- Enum.group_by(activities, fn %{id: id} -> id < activity.id end) do
|
||||||
result = %{
|
result = %{
|
||||||
ancestors:
|
ancestors:
|
||||||
StatusView.render(
|
StatusView.render("index.json",
|
||||||
"index.json",
|
|
||||||
for: user,
|
for: user,
|
||||||
activities: grouped_activities[true] || [],
|
activities: grouped_activities[true] || [],
|
||||||
as: :activity
|
as: :activity
|
||||||
|
@ -456,8 +455,7 @@ def get_context(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
|> Enum.reverse(),
|
|> Enum.reverse(),
|
||||||
# credo:disable-for-previous-line Credo.Check.Refactor.PipeChainStart
|
# credo:disable-for-previous-line Credo.Check.Refactor.PipeChainStart
|
||||||
descendants:
|
descendants:
|
||||||
StatusView.render(
|
StatusView.render("index.json",
|
||||||
"index.json",
|
|
||||||
for: user,
|
for: user,
|
||||||
activities: grouped_activities[false] || [],
|
activities: grouped_activities[false] || [],
|
||||||
as: :activity
|
as: :activity
|
||||||
|
@ -746,9 +744,7 @@ def destroy_multiple(%{assigns: %{user: user}} = conn, %{"ids" => ids} = _params
|
||||||
end
|
end
|
||||||
|
|
||||||
def relationships(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
def relationships(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
id = List.wrap(id)
|
targets = User.get_all_by_ids(List.wrap(id))
|
||||||
q = from(u in User, where: u.id in ^id)
|
|
||||||
targets = Repo.all(q)
|
|
||||||
|
|
||||||
conn
|
conn
|
||||||
|> put_view(AccountView)
|
|> put_view(AccountView)
|
||||||
|
@ -758,19 +754,15 @@ def relationships(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
# Instead of returning a 400 when no "id" params is present, Mastodon returns an empty array.
|
# Instead of returning a 400 when no "id" params is present, Mastodon returns an empty array.
|
||||||
def relationships(%{assigns: %{user: _user}} = conn, _), do: json(conn, [])
|
def relationships(%{assigns: %{user: _user}} = conn, _), do: json(conn, [])
|
||||||
|
|
||||||
def update_media(%{assigns: %{user: user}} = conn, data) do
|
def update_media(
|
||||||
with %Object{} = object <- Repo.get(Object, data["id"]),
|
%{assigns: %{user: user}} = conn,
|
||||||
|
%{"id" => id, "description" => description} = _
|
||||||
|
)
|
||||||
|
when is_binary(description) do
|
||||||
|
with %Object{} = object <- Repo.get(Object, id),
|
||||||
true <- Object.authorize_mutation(object, user),
|
true <- Object.authorize_mutation(object, user),
|
||||||
true <- is_binary(data["description"]),
|
{:ok, %Object{data: data}} <- Object.update_data(object, %{"name" => description}) do
|
||||||
description <- data["description"] do
|
attachment_data = Map.put(data, "id", object.id)
|
||||||
new_data = %{object.data | "name" => description}
|
|
||||||
|
|
||||||
{:ok, _} =
|
|
||||||
object
|
|
||||||
|> Object.change(%{data: new_data})
|
|
||||||
|> Repo.update()
|
|
||||||
|
|
||||||
attachment_data = Map.put(new_data, "id", object.id)
|
|
||||||
|
|
||||||
conn
|
conn
|
||||||
|> put_view(StatusView)
|
|> put_view(StatusView)
|
||||||
|
@ -778,6 +770,8 @@ def update_media(%{assigns: %{user: user}} = conn, data) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def update_media(_conn, _data), do: {:error, :bad_request}
|
||||||
|
|
||||||
def upload(%{assigns: %{user: user}} = conn, %{"file" => file} = data) do
|
def upload(%{assigns: %{user: user}} = conn, %{"file" => file} = data) do
|
||||||
with {:ok, object} <-
|
with {:ok, object} <-
|
||||||
ActivityPub.upload(
|
ActivityPub.upload(
|
||||||
|
@ -796,34 +790,23 @@ def upload(%{assigns: %{user: user}} = conn, %{"file" => file} = data) do
|
||||||
def set_mascot(%{assigns: %{user: user}} = conn, %{"file" => file}) do
|
def set_mascot(%{assigns: %{user: user}} = conn, %{"file" => file}) do
|
||||||
with {:ok, object} <- ActivityPub.upload(file, actor: User.ap_id(user)),
|
with {:ok, object} <- ActivityPub.upload(file, actor: User.ap_id(user)),
|
||||||
%{} = attachment_data <- Map.put(object.data, "id", object.id),
|
%{} = attachment_data <- Map.put(object.data, "id", object.id),
|
||||||
%{type: type} = rendered <-
|
%{type: "image"} = rendered <-
|
||||||
StatusView.render("attachment.json", %{attachment: attachment_data}) do
|
StatusView.render("attachment.json", %{attachment: attachment_data}),
|
||||||
# Reject if not an image
|
{:ok, _user} = User.update_mascot(user, rendered) do
|
||||||
if type == "image" do
|
json(conn, rendered)
|
||||||
# Sure!
|
else
|
||||||
# Save to the user's info
|
%{type: _type} = _ ->
|
||||||
info_changeset = User.Info.mascot_update(user.info, rendered)
|
|
||||||
|
|
||||||
user_changeset =
|
|
||||||
user
|
|
||||||
|> Changeset.change()
|
|
||||||
|> Changeset.put_embed(:info, info_changeset)
|
|
||||||
|
|
||||||
{:ok, _user} = User.update_and_set_cache(user_changeset)
|
|
||||||
|
|
||||||
conn
|
|
||||||
|> json(rendered)
|
|
||||||
else
|
|
||||||
render_error(conn, :unsupported_media_type, "mascots can only be images")
|
render_error(conn, :unsupported_media_type, "mascots can only be images")
|
||||||
end
|
|
||||||
|
e ->
|
||||||
|
e
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_mascot(%{assigns: %{user: user}} = conn, _params) do
|
def get_mascot(%{assigns: %{user: user}} = conn, _params) do
|
||||||
mascot = User.get_mascot(user)
|
mascot = User.get_mascot(user)
|
||||||
|
|
||||||
conn
|
json(conn, mascot)
|
||||||
|> json(mascot)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def favourited_by(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
def favourited_by(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
|
@ -1119,10 +1102,8 @@ def subscribe(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
|> put_view(AccountView)
|
|> put_view(AccountView)
|
||||||
|> render("relationship.json", %{user: user, target: subscription_target})
|
|> render("relationship.json", %{user: user, target: subscription_target})
|
||||||
else
|
else
|
||||||
{:error, message} ->
|
nil -> {:error, :not_found}
|
||||||
conn
|
e -> e
|
||||||
|> put_status(:forbidden)
|
|
||||||
|> json(%{error: message})
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1133,10 +1114,8 @@ def unsubscribe(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
||||||
|> put_view(AccountView)
|
|> put_view(AccountView)
|
||||||
|> render("relationship.json", %{user: user, target: subscription_target})
|
|> render("relationship.json", %{user: user, target: subscription_target})
|
||||||
else
|
else
|
||||||
{:error, message} ->
|
nil -> {:error, :not_found}
|
||||||
conn
|
e -> e
|
||||||
|> put_status(:forbidden)
|
|
||||||
|> json(%{error: message})
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1207,8 +1186,10 @@ def bookmarks(%{assigns: %{user: user}} = conn, params) do
|
||||||
|
|
||||||
def account_lists(%{assigns: %{user: user}} = conn, %{"id" => account_id}) do
|
def account_lists(%{assigns: %{user: user}} = conn, %{"id" => account_id}) do
|
||||||
lists = Pleroma.List.get_lists_account_belongs(user, account_id)
|
lists = Pleroma.List.get_lists_account_belongs(user, account_id)
|
||||||
res = ListView.render("lists.json", lists: lists)
|
|
||||||
json(conn, res)
|
conn
|
||||||
|
|> put_view(ListView)
|
||||||
|
|> render("index.json", %{lists: lists})
|
||||||
end
|
end
|
||||||
|
|
||||||
def list_timeline(%{assigns: %{user: user}} = conn, %{"list_id" => id} = params) do
|
def list_timeline(%{assigns: %{user: user}} = conn, %{"list_id" => id} = params) do
|
||||||
|
@ -1363,7 +1344,7 @@ def login(%{assigns: %{user: %User{}}} = conn, _params) do
|
||||||
@doc "Local Mastodon FE login init action"
|
@doc "Local Mastodon FE login init action"
|
||||||
def login(conn, %{"code" => auth_token}) do
|
def login(conn, %{"code" => auth_token}) do
|
||||||
with {:ok, app} <- get_or_make_app(),
|
with {:ok, app} <- get_or_make_app(),
|
||||||
%Authorization{} = auth <- Repo.get_by(Authorization, token: auth_token, app_id: app.id),
|
{:ok, auth} <- Authorization.get_by_token(app, auth_token),
|
||||||
{:ok, token} <- Token.exchange_token(app, auth) do
|
{:ok, token} <- Token.exchange_token(app, auth) do
|
||||||
conn
|
conn
|
||||||
|> put_session(:oauth_token, token.token)
|
|> put_session(:oauth_token, token.token)
|
||||||
|
@ -1375,9 +1356,7 @@ def login(conn, %{"code" => auth_token}) do
|
||||||
def login(conn, _) do
|
def login(conn, _) do
|
||||||
with {:ok, app} <- get_or_make_app() do
|
with {:ok, app} <- get_or_make_app() do
|
||||||
path =
|
path =
|
||||||
o_auth_path(
|
o_auth_path(conn, :authorize,
|
||||||
conn,
|
|
||||||
:authorize,
|
|
||||||
response_type: "code",
|
response_type: "code",
|
||||||
client_id: app.client_id,
|
client_id: app.client_id,
|
||||||
redirect_uri: ".",
|
redirect_uri: ".",
|
||||||
|
@ -1399,31 +1378,12 @@ defp local_mastodon_root_path(conn) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@spec get_or_make_app() :: {:ok, App.t()} | {:error, Ecto.Changeset.t()}
|
||||||
defp get_or_make_app do
|
defp get_or_make_app do
|
||||||
find_attrs = %{client_name: @local_mastodon_name, redirect_uris: "."}
|
App.get_or_make(
|
||||||
scopes = ["read", "write", "follow", "push"]
|
%{client_name: @local_mastodon_name, redirect_uris: "."},
|
||||||
|
["read", "write", "follow", "push"]
|
||||||
with %App{} = app <- Repo.get_by(App, find_attrs) do
|
)
|
||||||
{:ok, app} =
|
|
||||||
if app.scopes == scopes do
|
|
||||||
{:ok, app}
|
|
||||||
else
|
|
||||||
app
|
|
||||||
|> Changeset.change(%{scopes: scopes})
|
|
||||||
|> Repo.update()
|
|
||||||
end
|
|
||||||
|
|
||||||
{:ok, app}
|
|
||||||
else
|
|
||||||
_e ->
|
|
||||||
cs =
|
|
||||||
App.register_changeset(
|
|
||||||
%App{},
|
|
||||||
Map.put(find_attrs, :scopes, scopes)
|
|
||||||
)
|
|
||||||
|
|
||||||
Repo.insert(cs)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def logout(conn, _) do
|
def logout(conn, _) do
|
||||||
|
@ -1432,26 +1392,13 @@ def logout(conn, _) do
|
||||||
|> redirect(to: "/")
|
|> redirect(to: "/")
|
||||||
end
|
end
|
||||||
|
|
||||||
def relationship_noop(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
# Stubs for unimplemented mastodon api
|
||||||
Logger.debug("Unimplemented, returning unmodified relationship")
|
#
|
||||||
|
|
||||||
with %User{} = target <- User.get_cached_by_id(id) do
|
|
||||||
conn
|
|
||||||
|> put_view(AccountView)
|
|
||||||
|> render("relationship.json", %{user: user, target: target})
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def empty_array(conn, _) do
|
def empty_array(conn, _) do
|
||||||
Logger.debug("Unimplemented, returning an empty array")
|
Logger.debug("Unimplemented, returning an empty array")
|
||||||
json(conn, [])
|
json(conn, [])
|
||||||
end
|
end
|
||||||
|
|
||||||
def empty_object(conn, _) do
|
|
||||||
Logger.debug("Unimplemented, returning an empty object")
|
|
||||||
json(conn, %{})
|
|
||||||
end
|
|
||||||
|
|
||||||
def get_filters(%{assigns: %{user: user}} = conn, _) do
|
def get_filters(%{assigns: %{user: user}} = conn, _) do
|
||||||
filters = Filter.get_filters(user)
|
filters = Filter.get_filters(user)
|
||||||
res = FilterView.render("filters.json", filters: filters)
|
res = FilterView.render("filters.json", filters: filters)
|
||||||
|
@ -1570,7 +1517,7 @@ def status_card(%{assigns: %{user: user}} = conn, %{"id" => status_id}) do
|
||||||
json(conn, data)
|
json(conn, data)
|
||||||
else
|
else
|
||||||
_e ->
|
_e ->
|
||||||
%{}
|
json(conn, %{})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1623,7 +1570,7 @@ def account_register(
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def account_register(%{assigns: %{app: _app}} = conn, _params) do
|
def account_register(%{assigns: %{app: _app}} = conn, _) do
|
||||||
render_error(conn, :bad_request, "Missing parameters")
|
render_error(conn, :bad_request, "Missing parameters")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1682,15 +1629,15 @@ def account_confirmation_resend(conn, params) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def try_render(conn, target, params)
|
defp try_render(conn, target, params)
|
||||||
when is_binary(target) do
|
when is_binary(target) do
|
||||||
case render(conn, target, params) do
|
case render(conn, target, params) do
|
||||||
nil -> render_error(conn, :not_implemented, "Can't display this activity")
|
nil -> render_error(conn, :not_implemented, "Can't display this activity")
|
||||||
res -> res
|
res -> res
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def try_render(conn, _, _) do
|
defp try_render(conn, _, _) do
|
||||||
render_error(conn, :not_implemented, "Can't display this activity")
|
render_error(conn, :not_implemented, "Can't display this activity")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
defmodule Pleroma.Web.OAuth.App do
|
defmodule Pleroma.Web.OAuth.App do
|
||||||
use Ecto.Schema
|
use Ecto.Schema
|
||||||
import Ecto.Changeset
|
import Ecto.Changeset
|
||||||
|
alias Pleroma.Repo
|
||||||
|
|
||||||
@type t :: %__MODULE__{}
|
@type t :: %__MODULE__{}
|
||||||
|
|
||||||
|
@ -39,4 +40,29 @@ def register_changeset(struct, params \\ %{}) do
|
||||||
changeset
|
changeset
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Gets app by attrs or create new with attrs.
|
||||||
|
And updates the scopes if need.
|
||||||
|
"""
|
||||||
|
@spec get_or_make(map(), list(String.t())) :: {:ok, App.t()} | {:error, Ecto.Changeset.t()}
|
||||||
|
def get_or_make(attrs, scopes) do
|
||||||
|
with %__MODULE__{} = app <- Repo.get_by(__MODULE__, attrs) do
|
||||||
|
update_scopes(app, scopes)
|
||||||
|
else
|
||||||
|
_e ->
|
||||||
|
%__MODULE__{}
|
||||||
|
|> register_changeset(Map.put(attrs, :scopes, scopes))
|
||||||
|
|> Repo.insert()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
defp update_scopes(%__MODULE__{} = app, []), do: {:ok, app}
|
||||||
|
defp update_scopes(%__MODULE__{scopes: scopes} = app, scopes), do: {:ok, app}
|
||||||
|
|
||||||
|
defp update_scopes(%__MODULE__{} = app, scopes) do
|
||||||
|
app
|
||||||
|
|> change(%{scopes: scopes})
|
||||||
|
|> Repo.update()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,7 +29,7 @@ def register_user(params, opts \\ []) do
|
||||||
captcha_enabled = Pleroma.Config.get([Pleroma.Captcha, :enabled])
|
captcha_enabled = Pleroma.Config.get([Pleroma.Captcha, :enabled])
|
||||||
# true if captcha is disabled or enabled and valid, false otherwise
|
# true if captcha is disabled or enabled and valid, false otherwise
|
||||||
captcha_ok =
|
captcha_ok =
|
||||||
if !captcha_enabled do
|
if not captcha_enabled do
|
||||||
:ok
|
:ok
|
||||||
else
|
else
|
||||||
Pleroma.Captcha.validate(
|
Pleroma.Captcha.validate(
|
||||||
|
|
|
@ -1551,6 +1551,17 @@ test "returns the relationships for the current user", %{conn: conn} do
|
||||||
|
|
||||||
assert to_string(other_user.id) == relationship["id"]
|
assert to_string(other_user.id) == relationship["id"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns an empty list when bad request", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> get("/api/v1/accounts/relationships", %{})
|
||||||
|
|
||||||
|
assert [] = json_response(conn, 200)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "media upload" do
|
describe "media upload" do
|
||||||
|
@ -1752,70 +1763,72 @@ test "respects limit_to_local_content == :unauthenticated for remote user nickna
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "mascot upload", %{conn: conn} do
|
describe "/api/v1/pleroma/mascot" do
|
||||||
user = insert(:user)
|
test "mascot upload", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
non_image_file = %Plug.Upload{
|
non_image_file = %Plug.Upload{
|
||||||
content_type: "audio/mpeg",
|
content_type: "audio/mpeg",
|
||||||
path: Path.absname("test/fixtures/sound.mp3"),
|
path: Path.absname("test/fixtures/sound.mp3"),
|
||||||
filename: "sound.mp3"
|
filename: "sound.mp3"
|
||||||
}
|
}
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
conn
|
conn
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> put("/api/v1/pleroma/mascot", %{"file" => non_image_file})
|
|> put("/api/v1/pleroma/mascot", %{"file" => non_image_file})
|
||||||
|
|
||||||
assert json_response(conn, 415)
|
assert json_response(conn, 415)
|
||||||
|
|
||||||
file = %Plug.Upload{
|
file = %Plug.Upload{
|
||||||
content_type: "image/jpg",
|
content_type: "image/jpg",
|
||||||
path: Path.absname("test/fixtures/image.jpg"),
|
path: Path.absname("test/fixtures/image.jpg"),
|
||||||
filename: "an_image.jpg"
|
filename: "an_image.jpg"
|
||||||
}
|
}
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
build_conn()
|
build_conn()
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
||||||
|
|
||||||
assert %{"id" => _, "type" => image} = json_response(conn, 200)
|
assert %{"id" => _, "type" => image} = json_response(conn, 200)
|
||||||
end
|
end
|
||||||
|
|
||||||
test "mascot retrieving", %{conn: conn} do
|
test "mascot retrieving", %{conn: conn} do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
# When user hasn't set a mascot, we should just get pleroma tan back
|
# When user hasn't set a mascot, we should just get pleroma tan back
|
||||||
conn =
|
conn =
|
||||||
conn
|
conn
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> get("/api/v1/pleroma/mascot")
|
|> get("/api/v1/pleroma/mascot")
|
||||||
|
|
||||||
assert %{"url" => url} = json_response(conn, 200)
|
assert %{"url" => url} = json_response(conn, 200)
|
||||||
assert url =~ "pleroma-fox-tan-smol"
|
assert url =~ "pleroma-fox-tan-smol"
|
||||||
|
|
||||||
# When a user sets their mascot, we should get that back
|
# When a user sets their mascot, we should get that back
|
||||||
file = %Plug.Upload{
|
file = %Plug.Upload{
|
||||||
content_type: "image/jpg",
|
content_type: "image/jpg",
|
||||||
path: Path.absname("test/fixtures/image.jpg"),
|
path: Path.absname("test/fixtures/image.jpg"),
|
||||||
filename: "an_image.jpg"
|
filename: "an_image.jpg"
|
||||||
}
|
}
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
build_conn()
|
build_conn()
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
||||||
|
|
||||||
assert json_response(conn, 200)
|
assert json_response(conn, 200)
|
||||||
|
|
||||||
user = User.get_cached_by_id(user.id)
|
user = User.get_cached_by_id(user.id)
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
build_conn()
|
build_conn()
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> get("/api/v1/pleroma/mascot")
|
|> get("/api/v1/pleroma/mascot")
|
||||||
|
|
||||||
assert %{"url" => url, "type" => "image"} = json_response(conn, 200)
|
assert %{"url" => url, "type" => "image"} = json_response(conn, 200)
|
||||||
assert url =~ "an_image"
|
assert url =~ "an_image"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "hashtag timeline", %{conn: conn} do
|
test "hashtag timeline", %{conn: conn} do
|
||||||
|
@ -2183,23 +2196,51 @@ test "without notifications", %{conn: conn} do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "subscribing / unsubscribing to a user", %{conn: conn} do
|
describe "subscribing / unsubscribing" do
|
||||||
user = insert(:user)
|
test "subscribing / unsubscribing to a user", %{conn: conn} do
|
||||||
subscription_target = insert(:user)
|
user = insert(:user)
|
||||||
|
subscription_target = insert(:user)
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
conn
|
conn
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> post("/api/v1/pleroma/accounts/#{subscription_target.id}/subscribe")
|
|> post("/api/v1/pleroma/accounts/#{subscription_target.id}/subscribe")
|
||||||
|
|
||||||
assert %{"id" => _id, "subscribing" => true} = json_response(conn, 200)
|
assert %{"id" => _id, "subscribing" => true} = json_response(conn, 200)
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
build_conn()
|
build_conn()
|
||||||
|> assign(:user, user)
|
|> assign(:user, user)
|
||||||
|> post("/api/v1/pleroma/accounts/#{subscription_target.id}/unsubscribe")
|
|> post("/api/v1/pleroma/accounts/#{subscription_target.id}/unsubscribe")
|
||||||
|
|
||||||
assert %{"id" => _id, "subscribing" => false} = json_response(conn, 200)
|
assert %{"id" => _id, "subscribing" => false} = json_response(conn, 200)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "subscribing" do
|
||||||
|
test "returns 404 when subscription_target not found", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> post("/api/v1/pleroma/accounts/target_id/subscribe")
|
||||||
|
|
||||||
|
assert %{"error" => "Record not found"} = json_response(conn, 404)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "unsubscribing" do
|
||||||
|
test "returns 404 when subscription_target not found", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> post("/api/v1/pleroma/accounts/target_id/unsubscribe")
|
||||||
|
|
||||||
|
assert %{"error" => "Record not found"} = json_response(conn, 404)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "getting a list of mutes", %{conn: conn} do
|
test "getting a list of mutes", %{conn: conn} do
|
||||||
|
@ -2814,6 +2855,15 @@ test "replaces missing description with an empty string", %{conn: conn, user: us
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns empty object when id invalid", %{conn: conn} do
|
||||||
|
response =
|
||||||
|
conn
|
||||||
|
|> get("/api/v1/statuses/9eoozpwTul5mjSEDRI/card")
|
||||||
|
|> json_response(200)
|
||||||
|
|
||||||
|
assert response == %{}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "bookmarks" do
|
test "bookmarks" do
|
||||||
|
@ -3133,6 +3183,18 @@ test "redirects to the saved path after log in", %{conn: conn, path: path} do
|
||||||
assert conn.status == 302
|
assert conn.status == 302
|
||||||
assert redirected_to(conn) == path
|
assert redirected_to(conn) == path
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "GET /web/login" do
|
||||||
|
test "redirects to /oauth/authorize", %{conn: conn} do
|
||||||
|
app = insert(:oauth_app, client_name: "Mastodon-Local", redirect_uris: ".")
|
||||||
|
conn = get(conn, "/web/login", %{})
|
||||||
|
|
||||||
|
assert conn.status == 302
|
||||||
|
|
||||||
|
assert redirected_to(conn) ==
|
||||||
|
"/oauth/authorize?response_type=code&client_id=#{app.client_id}&redirect_uri=.&scope=read+write+follow+push"
|
||||||
|
end
|
||||||
|
|
||||||
test "redirects to the getting-started page when referer is not present", %{conn: conn} do
|
test "redirects to the getting-started page when referer is not present", %{conn: conn} do
|
||||||
app = insert(:oauth_app, client_name: "Mastodon-Local", redirect_uris: ".")
|
app = insert(:oauth_app, client_name: "Mastodon-Local", redirect_uris: ".")
|
||||||
|
@ -3143,6 +3205,18 @@ test "redirects to the getting-started page when referer is not present", %{conn
|
||||||
assert conn.status == 302
|
assert conn.status == 302
|
||||||
assert redirected_to(conn) == "/web/getting-started"
|
assert redirected_to(conn) == "/web/getting-started"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "redirects to the getting-started page when user assigned", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> get("/web/login", %{})
|
||||||
|
|
||||||
|
assert conn.status == 302
|
||||||
|
assert redirected_to(conn) == "/web/getting-started"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "scheduled activities" do
|
describe "scheduled activities" do
|
||||||
|
@ -3401,6 +3475,17 @@ test "Repeated posts that are replies incorrectly have in_reply_to_id null", %{c
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "create account by app" do
|
describe "create account by app" do
|
||||||
|
setup do
|
||||||
|
valid_params = %{
|
||||||
|
username: "lain",
|
||||||
|
email: "lain@example.org",
|
||||||
|
password: "PlzDontHackLain",
|
||||||
|
agreement: true
|
||||||
|
}
|
||||||
|
|
||||||
|
[valid_params: valid_params]
|
||||||
|
end
|
||||||
|
|
||||||
test "Account registration via Application", %{conn: conn} do
|
test "Account registration via Application", %{conn: conn} do
|
||||||
conn =
|
conn =
|
||||||
conn
|
conn
|
||||||
|
@ -3444,6 +3529,7 @@ test "Account registration via Application", %{conn: conn} do
|
||||||
username: "lain",
|
username: "lain",
|
||||||
email: "lain@example.org",
|
email: "lain@example.org",
|
||||||
password: "PlzDontHackLain",
|
password: "PlzDontHackLain",
|
||||||
|
bio: "Test Bio",
|
||||||
agreement: true
|
agreement: true
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -3462,6 +3548,18 @@ test "Account registration via Application", %{conn: conn} do
|
||||||
assert token_from_db.user.info.confirmation_pending
|
assert token_from_db.user.info.confirmation_pending
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns error when user already registred", %{conn: conn, valid_params: valid_params} do
|
||||||
|
_user = insert(:user, email: "lain@example.org")
|
||||||
|
app_token = insert(:oauth_token, user: nil)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> put_req_header("authorization", "Bearer " <> app_token.token)
|
||||||
|
|
||||||
|
res = post(conn, "/api/v1/accounts", valid_params)
|
||||||
|
assert json_response(res, 400) == %{"error" => "{\"email\":[\"has already been taken\"]}"}
|
||||||
|
end
|
||||||
|
|
||||||
test "rate limit", %{conn: conn} do
|
test "rate limit", %{conn: conn} do
|
||||||
app_token = insert(:oauth_token, user: nil)
|
app_token = insert(:oauth_token, user: nil)
|
||||||
|
|
||||||
|
@ -3505,6 +3603,41 @@ test "rate limit", %{conn: conn} do
|
||||||
|
|
||||||
assert json_response(conn, :too_many_requests) == %{"error" => "Throttled"}
|
assert json_response(conn, :too_many_requests) == %{"error" => "Throttled"}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns bad_request if missing required params", %{
|
||||||
|
conn: conn,
|
||||||
|
valid_params: valid_params
|
||||||
|
} do
|
||||||
|
app_token = insert(:oauth_token, user: nil)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> put_req_header("authorization", "Bearer " <> app_token.token)
|
||||||
|
|
||||||
|
res = post(conn, "/api/v1/accounts", valid_params)
|
||||||
|
assert json_response(res, 200)
|
||||||
|
|
||||||
|
Enum.each(valid_params, fn {attr, _} ->
|
||||||
|
res =
|
||||||
|
conn
|
||||||
|
|> Map.put(
|
||||||
|
:remote_ip,
|
||||||
|
{:rand.uniform(15), :rand.uniform(15), :rand.uniform(15), :rand.uniform(15)}
|
||||||
|
)
|
||||||
|
|> post("/api/v1/accounts", Map.delete(valid_params, attr))
|
||||||
|
|
||||||
|
assert json_response(res, 400) == %{"error" => "Missing parameters"}
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "returns forbidden if token is invalid", %{conn: conn, valid_params: valid_params} do
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> put_req_header("authorization", "Bearer " <> "invalid-token")
|
||||||
|
|
||||||
|
res = post(conn, "/api/v1/accounts", valid_params)
|
||||||
|
assert json_response(res, 403) == %{"error" => "Invalid credentials"}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "GET /api/v1/polls/:id" do
|
describe "GET /api/v1/polls/:id" do
|
||||||
|
@ -3988,4 +4121,115 @@ test "returns suggestions", %{conn: conn, user: user, other_user: other_user} do
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "PUT /api/v1/media/:id" do
|
||||||
|
setup do
|
||||||
|
actor = insert(:user)
|
||||||
|
|
||||||
|
file = %Plug.Upload{
|
||||||
|
content_type: "image/jpg",
|
||||||
|
path: Path.absname("test/fixtures/image.jpg"),
|
||||||
|
filename: "an_image.jpg"
|
||||||
|
}
|
||||||
|
|
||||||
|
{:ok, %Object{} = object} =
|
||||||
|
ActivityPub.upload(
|
||||||
|
file,
|
||||||
|
actor: User.ap_id(actor),
|
||||||
|
description: "test-m"
|
||||||
|
)
|
||||||
|
|
||||||
|
[actor: actor, object: object]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "updates name of media", %{conn: conn, actor: actor, object: object} do
|
||||||
|
media =
|
||||||
|
conn
|
||||||
|
|> assign(:user, actor)
|
||||||
|
|> put("/api/v1/media/#{object.id}", %{"description" => "test-media"})
|
||||||
|
|> json_response(:ok)
|
||||||
|
|
||||||
|
assert media["description"] == "test-media"
|
||||||
|
assert refresh_record(object).data["name"] == "test-media"
|
||||||
|
end
|
||||||
|
|
||||||
|
test "returns error wheb request is bad", %{conn: conn, actor: actor, object: object} do
|
||||||
|
media =
|
||||||
|
conn
|
||||||
|
|> assign(:user, actor)
|
||||||
|
|> put("/api/v1/media/#{object.id}", %{})
|
||||||
|
|> json_response(400)
|
||||||
|
|
||||||
|
assert media == %{"error" => "bad_request"}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "DELETE /auth/sign_out" do
|
||||||
|
test "redirect to root page", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> delete("/auth/sign_out")
|
||||||
|
|
||||||
|
assert conn.status == 302
|
||||||
|
assert redirected_to(conn) == "/"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "GET /api/v1/accounts/:id/lists - account_lists" do
|
||||||
|
test "returns lists to which the account belongs", %{conn: conn} do
|
||||||
|
user = insert(:user)
|
||||||
|
other_user = insert(:user)
|
||||||
|
assert {:ok, %Pleroma.List{} = list} = Pleroma.List.create("Test List", user)
|
||||||
|
{:ok, %{following: _following}} = Pleroma.List.follow(list, other_user)
|
||||||
|
|
||||||
|
res =
|
||||||
|
conn
|
||||||
|
|> assign(:user, user)
|
||||||
|
|> get("/api/v1/accounts/#{other_user.id}/lists")
|
||||||
|
|> json_response(200)
|
||||||
|
|
||||||
|
assert res == [%{"id" => to_string(list.id), "title" => "Test List"}]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
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
|
||||||
end
|
end
|
||||||
|
|
33
test/web/oauth/app_test.exs
Normal file
33
test/web/oauth/app_test.exs
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Pleroma: A lightweight social networking server
|
||||||
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
|
defmodule Pleroma.Web.OAuth.AppTest do
|
||||||
|
use Pleroma.DataCase
|
||||||
|
|
||||||
|
alias Pleroma.Web.OAuth.App
|
||||||
|
import Pleroma.Factory
|
||||||
|
|
||||||
|
describe "get_or_make/2" do
|
||||||
|
test "gets exist app" do
|
||||||
|
attrs = %{client_name: "Mastodon-Local", redirect_uris: "."}
|
||||||
|
app = insert(:oauth_app, Map.merge(attrs, %{scopes: ["read", "write"]}))
|
||||||
|
{:ok, %App{} = exist_app} = App.get_or_make(attrs, [])
|
||||||
|
assert exist_app == app
|
||||||
|
end
|
||||||
|
|
||||||
|
test "make app" do
|
||||||
|
attrs = %{client_name: "Mastodon-Local", redirect_uris: "."}
|
||||||
|
{:ok, %App{} = app} = App.get_or_make(attrs, ["write"])
|
||||||
|
assert app.scopes == ["write"]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "gets exist app and updates scopes" do
|
||||||
|
attrs = %{client_name: "Mastodon-Local", redirect_uris: "."}
|
||||||
|
app = insert(:oauth_app, Map.merge(attrs, %{scopes: ["read", "write"]}))
|
||||||
|
{:ok, %App{} = exist_app} = App.get_or_make(attrs, ["read", "write", "follow", "push"])
|
||||||
|
assert exist_app.id == app.id
|
||||||
|
assert exist_app.scopes == ["read", "write", "follow", "push"]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue