Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7891940
activity_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
769 B
Referenced Files
None
Subscribers
None
activity_test.exs
View Options
defmodule
Pleroma.ActivityTest
do
use
Pleroma.DataCase
import
Pleroma.Factory
test
"returns an activity by it's AP id"
do
activity
=
insert
(
:note_activity
)
found_activity
=
Pleroma.Activity
.
get_by_ap_id
(
activity
.
data
[
"id"
])
assert
activity
==
found_activity
end
test
"returns activities by it's objects AP ids"
do
activity
=
insert
(
:note_activity
)
[
found_activity
]
=
Pleroma.Activity
.
all_by_object_ap_id
(
activity
.
data
[
"object"
][
"id"
])
assert
activity
==
found_activity
end
test
"returns the activity that created an object"
do
activity
=
insert
(
:note_activity
)
found_activity
=
Pleroma.Activity
.
get_create_activity_by_object_ap_id
(
activity
.
data
[
"object"
][
"id"
])
assert
activity
==
found_activity
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Oct 2, 4:06 AM (15 m, 31 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
481016
Default Alt Text
activity_test.exs (769 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment