Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F41646482
media_controller_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
media_controller_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.MastodonAPI.MediaControllerTest
do
use
Pleroma.Web.ConnCase
alias
Pleroma.Object
alias
Pleroma.User
alias
Pleroma.Web.ActivityPub.ActivityPub
setup
do
:
oauth_access
([
"write:media"
])
describe
"media upload"
do
setup
do
image
=
%
Plug.Upload
{
content_type
:
"image/jpg"
,
path
:
Path
.
absname
(
"test/fixtures/image.jpg"
),
filename
:
"an_image.jpg"
}
[
image
:
image
]
end
setup
do
:
clear_config
([
:media_proxy
])
setup
do
:
clear_config
([
Pleroma.Upload
])
test
"returns uploaded image"
,
%{
conn
:
conn
,
image
:
image
}
do
desc
=
"Description of the image"
media
=
conn
|>
post
(
"/api/v1/media"
,
%{
"file"
=>
image
,
"description"
=>
desc
})
|>
json_response
(
:ok
)
assert
media
[
"type"
]
==
"image"
assert
media
[
"description"
]
==
desc
assert
media
[
"id"
]
object
=
Object
.
get_by_id
(
media
[
"id"
])
assert
object
.
data
[
"actor"
]
==
User
.
ap_id
(
conn
.
assigns
[
:user
])
end
end
describe
"PUT /api/v1/media/:id"
do
setup
%{
user
:
actor
}
do
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"
)
[
object
:
object
]
end
test
"updates name of media"
,
%{
conn
:
conn
,
object
:
object
}
do
media
=
conn
|>
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 when request is bad"
,
%{
conn
:
conn
,
object
:
object
}
do
media
=
conn
|>
put
(
"/api/v1/media/
#{
object
.
id
}
"
,
%{})
|>
json_response
(
400
)
assert
media
==
%{
"error"
=>
"bad_request"
}
end
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Feb 15, 4:36 AM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
984886
Default Alt Text
media_controller_test.exs (2 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment