2020-01-26 19:34:25 +00:00
|
|
|
defmodule Mobilizon.GraphQL.Resolvers.PictureTest do
|
2020-01-26 20:36:50 +00:00
|
|
|
use Mobilizon.Web.ConnCase
|
2019-05-22 12:12:11 +00:00
|
|
|
use Bamboo.Test
|
2020-01-26 19:34:25 +00:00
|
|
|
|
2019-05-22 12:12:11 +00:00
|
|
|
import Mobilizon.Factory
|
|
|
|
|
2020-01-26 19:34:25 +00:00
|
|
|
alias Mobilizon.Media.Picture
|
|
|
|
|
|
|
|
alias Mobilizon.GraphQL.AbsintheHelpers
|
|
|
|
|
2020-01-28 18:18:33 +00:00
|
|
|
alias Mobilizon.Web.Endpoint
|
|
|
|
|
2019-05-22 12:12:11 +00:00
|
|
|
setup %{conn: conn} do
|
|
|
|
user = insert(:user)
|
2019-05-31 15:58:03 +00:00
|
|
|
actor = insert(:actor, user: user)
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2019-05-31 15:58:03 +00:00
|
|
|
{:ok, conn: conn, user: user, actor: actor}
|
2019-05-22 12:12:11 +00:00
|
|
|
end
|
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
@picture_query """
|
|
|
|
query Picture($id: ID!) {
|
|
|
|
picture(id: $id) {
|
|
|
|
id
|
|
|
|
name,
|
|
|
|
alt,
|
|
|
|
url,
|
|
|
|
content_type,
|
|
|
|
size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2019-05-22 12:12:11 +00:00
|
|
|
describe "Resolver: Get picture" do
|
2020-11-20 15:35:48 +00:00
|
|
|
test "picture/3 returns the information on a picture", %{conn: conn} do
|
2019-05-22 12:12:11 +00:00
|
|
|
%Picture{id: id} = picture = insert(:picture)
|
|
|
|
|
|
|
|
res =
|
2020-11-20 15:35:48 +00:00
|
|
|
conn
|
|
|
|
|> AbsintheHelpers.graphql_query(query: @picture_query, variables: %{id: id})
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert res["data"]["picture"]["name"] == picture.file.name
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert res["data"]["picture"]["content_type"] ==
|
2019-06-03 15:13:47 +00:00
|
|
|
picture.file.content_type
|
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert res["data"]["picture"]["size"] == 13_120
|
2019-06-03 15:13:47 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert res["data"]["picture"]["url"] =~ Endpoint.url()
|
2019-05-22 12:12:11 +00:00
|
|
|
end
|
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
test "picture/3 returns nothing on a non-existent picture", %{conn: conn} do
|
2019-05-22 12:12:11 +00:00
|
|
|
res =
|
2020-11-20 15:35:48 +00:00
|
|
|
conn
|
|
|
|
|> AbsintheHelpers.graphql_query(query: @picture_query, variables: %{id: 3})
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert hd(res["errors"])["message"] == "Resource not found"
|
|
|
|
assert hd(res["errors"])["status_code"] == 404
|
2019-05-22 12:12:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Resolver: Upload picture" do
|
2020-11-20 15:35:48 +00:00
|
|
|
@upload_picture_mutation """
|
|
|
|
mutation UploadPicture($name: String!, $alt: String, $file: Upload!) {
|
|
|
|
uploadPicture(
|
|
|
|
name: $name
|
|
|
|
alt: $alt
|
|
|
|
file: $file
|
|
|
|
) {
|
|
|
|
url
|
|
|
|
name
|
|
|
|
content_type
|
|
|
|
size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2020-11-19 16:06:28 +00:00
|
|
|
test "upload_picture/3 uploads a new picture", %{conn: conn, user: user} do
|
2019-05-22 12:12:11 +00:00
|
|
|
picture = %{name: "my pic", alt: "represents something", file: "picture.png"}
|
|
|
|
|
|
|
|
map = %{
|
2020-11-20 15:35:48 +00:00
|
|
|
"query" => @upload_picture_mutation,
|
|
|
|
"variables" => picture,
|
2019-05-22 12:12:11 +00:00
|
|
|
picture.file => %Plug.Upload{
|
|
|
|
path: "test/fixtures/picture.png",
|
|
|
|
filename: picture.file
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> auth_conn(user)
|
|
|
|
|> put_req_header("content-type", "multipart/form-data")
|
|
|
|
|> post(
|
|
|
|
"/api",
|
|
|
|
map
|
|
|
|
)
|
2020-11-20 15:35:48 +00:00
|
|
|
|> json_response(200)
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert res["data"]["uploadPicture"]["name"] == picture.name
|
|
|
|
assert res["data"]["uploadPicture"]["content_type"] == "image/png"
|
|
|
|
assert res["data"]["uploadPicture"]["size"] == 10_097
|
|
|
|
assert res["data"]["uploadPicture"]["url"]
|
2019-05-22 12:12:11 +00:00
|
|
|
end
|
|
|
|
|
2020-11-19 16:06:28 +00:00
|
|
|
test "upload_picture/3 forbids uploading if no auth", %{conn: conn} do
|
2019-05-22 12:12:11 +00:00
|
|
|
picture = %{name: "my pic", alt: "represents something", file: "picture.png"}
|
|
|
|
|
|
|
|
map = %{
|
2020-11-20 15:35:48 +00:00
|
|
|
"query" => @upload_picture_mutation,
|
|
|
|
"variables" => picture,
|
2019-05-22 12:12:11 +00:00
|
|
|
picture.file => %Plug.Upload{
|
|
|
|
path: "test/fixtures/picture.png",
|
|
|
|
filename: picture.file
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> put_req_header("content-type", "multipart/form-data")
|
|
|
|
|> post(
|
|
|
|
"/api",
|
|
|
|
map
|
|
|
|
)
|
2020-11-20 15:35:48 +00:00
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert hd(res["errors"])["message"] == "You need to be logged in"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Resolver: Remove picture" do
|
|
|
|
@remove_picture_mutation """
|
|
|
|
mutation RemovePicture($id: ID!) {
|
|
|
|
removePicture(id: $id) {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
test "Removes a previously uploaded picture", %{conn: conn, user: user, actor: actor} do
|
|
|
|
%Picture{id: picture_id} = insert(:picture, actor: actor)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> auth_conn(user)
|
|
|
|
|> AbsintheHelpers.graphql_query(
|
|
|
|
query: @remove_picture_mutation,
|
|
|
|
variables: %{id: picture_id}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert is_nil(res["errors"])
|
|
|
|
assert res["data"]["removePicture"]["id"] == to_string(picture_id)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> AbsintheHelpers.graphql_query(query: @picture_query, variables: %{id: picture_id})
|
|
|
|
|
|
|
|
assert hd(res["errors"])["message"] == "Resource not found"
|
|
|
|
assert hd(res["errors"])["status_code"] == 404
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Removes nothing if picture is not found", %{conn: conn, user: user} do
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> auth_conn(user)
|
|
|
|
|> AbsintheHelpers.graphql_query(
|
|
|
|
query: @remove_picture_mutation,
|
|
|
|
variables: %{id: 400}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert hd(res["errors"])["message"] == "Resource not found"
|
|
|
|
assert hd(res["errors"])["status_code"] == 404
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Removes nothing if picture if not logged-in", %{conn: conn, actor: actor} do
|
|
|
|
%Picture{id: picture_id} = insert(:picture, actor: actor)
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> AbsintheHelpers.graphql_query(
|
|
|
|
query: @remove_picture_mutation,
|
|
|
|
variables: %{id: picture_id}
|
|
|
|
)
|
2019-05-22 12:12:11 +00:00
|
|
|
|
2020-11-20 15:35:48 +00:00
|
|
|
assert hd(res["errors"])["message"] == "You need to be logged in"
|
|
|
|
assert hd(res["errors"])["status_code"] == 401
|
2019-05-22 12:12:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|