Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7687174
activity_expiration_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
activity_expiration_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.ActivityExpirationTest
do
use
Pleroma.DataCase
alias
Pleroma.ActivityExpiration
import
Pleroma.Factory
clear_config
([
ActivityExpiration
,
:enabled
])
test
"finds activities due to be deleted only"
do
activity
=
insert
(
:note_activity
)
expiration_due
=
insert
(
:expiration_in_the_past
,
%{
activity_id
:
activity
.
id
})
activity2
=
insert
(
:note_activity
)
insert
(
:expiration_in_the_future
,
%{
activity_id
:
activity2
.
id
})
expirations
=
ActivityExpiration
.
due_expirations
()
assert
length
(
expirations
)
==
1
assert
hd
(
expirations
)
==
expiration_due
end
test
"denies expirations that don't live long enough"
do
activity
=
insert
(
:note_activity
)
now
=
NaiveDateTime
.
utc_now
()
assert
{
:error
,
_
}
=
ActivityExpiration
.
create
(
activity
,
now
)
end
test
"deletes an expiration activity"
do
Pleroma.Config
.
put
([
ActivityExpiration
,
:enabled
],
true
)
activity
=
insert
(
:note_activity
)
naive_datetime
=
NaiveDateTime
.
add
(
NaiveDateTime
.
utc_now
(),
-
:timer
.
minutes
(
2
),
:millisecond
)
expiration
=
insert
(
:expiration_in_the_past
,
%{
activity_id
:
activity
.
id
,
scheduled_at
:
naive_datetime
}
)
Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker
.
perform
(
:ops
,
:pid
)
refute
Pleroma.Repo
.
get
(
Pleroma.Activity
,
activity
.
id
)
refute
Pleroma.Repo
.
get
(
Pleroma.ActivityExpiration
,
expiration
.
id
)
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Sep 3, 7:24 PM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
439193
Default Alt Text
activity_expiration_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment