2019-09-30 12:32:43 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-09-30 12:32:43 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.MascotControllerTest do
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
alias Pleroma.User
|
|
|
|
|
2019-12-19 14:23:27 +00:00
|
|
|
test "mascot upload" do
|
|
|
|
%{conn: conn} = oauth_access(["write:accounts"])
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
non_image_file = %Plug.Upload{
|
|
|
|
content_type: "audio/mpeg",
|
|
|
|
path: Path.absname("test/fixtures/sound.mp3"),
|
|
|
|
filename: "sound.mp3"
|
|
|
|
}
|
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
ret_conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("content-type", "multipart/form-data")
|
|
|
|
|> put("/api/v1/pleroma/mascot", %{"file" => non_image_file})
|
2019-09-30 12:32:43 +00:00
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
assert json_response_and_validate_schema(ret_conn, 415)
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
file = %Plug.Upload{
|
2020-10-13 15:37:24 +00:00
|
|
|
content_type: "image/jpeg",
|
2019-09-30 12:32:43 +00:00
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an_image.jpg"
|
|
|
|
}
|
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("content-type", "multipart/form-data")
|
|
|
|
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
2019-09-30 12:32:43 +00:00
|
|
|
|
2020-10-15 12:54:59 +00:00
|
|
|
assert %{"id" => _, "type" => _image} = json_response_and_validate_schema(conn, 200)
|
2019-09-30 12:32:43 +00:00
|
|
|
end
|
|
|
|
|
2019-12-19 14:23:27 +00:00
|
|
|
test "mascot retrieving" do
|
|
|
|
%{user: user, conn: conn} = oauth_access(["read:accounts", "write:accounts"])
|
|
|
|
|
2019-09-30 12:32:43 +00:00
|
|
|
# When user hasn't set a mascot, we should just get pleroma tan back
|
2019-12-19 14:23:27 +00:00
|
|
|
ret_conn = get(conn, "/api/v1/pleroma/mascot")
|
2019-09-30 12:32:43 +00:00
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
assert %{"url" => url} = json_response_and_validate_schema(ret_conn, 200)
|
2019-09-30 12:32:43 +00:00
|
|
|
assert url =~ "pleroma-fox-tan-smol"
|
|
|
|
|
|
|
|
# When a user sets their mascot, we should get that back
|
|
|
|
file = %Plug.Upload{
|
2020-10-13 15:37:24 +00:00
|
|
|
content_type: "image/jpeg",
|
2019-09-30 12:32:43 +00:00
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an_image.jpg"
|
|
|
|
}
|
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
ret_conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("content-type", "multipart/form-data")
|
|
|
|
|> put("/api/v1/pleroma/mascot", %{"file" => file})
|
2019-09-30 12:32:43 +00:00
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
assert json_response_and_validate_schema(ret_conn, 200)
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
user = User.get_cached_by_id(user.id)
|
|
|
|
|
|
|
|
conn =
|
2019-12-19 14:23:27 +00:00
|
|
|
conn
|
2019-09-30 12:32:43 +00:00
|
|
|
|> assign(:user, user)
|
|
|
|
|> get("/api/v1/pleroma/mascot")
|
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
assert %{"url" => url, "type" => "image"} = json_response_and_validate_schema(conn, 200)
|
2019-09-30 12:32:43 +00:00
|
|
|
assert url =~ "an_image"
|
|
|
|
end
|
|
|
|
end
|