Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33102501
no_placeholder_text_policy_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
no_placeholder_text_policy_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.ActivityPub.MRF.NoPlaceholderTextPolicyTest
do
use
Pleroma.DataCase
,
async
:
true
alias
Pleroma.Web.ActivityPub.MRF
alias
Pleroma.Web.ActivityPub.MRF.NoPlaceholderTextPolicy
test
"it clears content object"
do
message
=
%{
"type"
=>
"Create"
,
"object"
=>
%{
"content"
=>
"."
,
"attachment"
=>
"image"
}
}
assert
{
:ok
,
res
}
=
NoPlaceholderTextPolicy
.
filter
(
message
)
assert
res
[
"object"
][
"content"
]
==
""
message
=
put_in
(
message
,
[
"object"
,
"content"
],
"<p>.</p>"
)
assert
{
:ok
,
res
}
=
NoPlaceholderTextPolicy
.
filter
(
message
)
assert
res
[
"object"
][
"content"
]
==
""
end
test
"history-aware"
do
message
=
%{
"type"
=>
"Create"
,
"object"
=>
%{
"content"
=>
"."
,
"attachment"
=>
"image"
,
"formerRepresentations"
=>
%{
"orderedItems"
=>
[%{
"content"
=>
"."
,
"attachment"
=>
"image"
}]
}
}
}
assert
{
:ok
,
res
}
=
MRF
.
filter_one
(
NoPlaceholderTextPolicy
,
message
)
assert
%{
"content"
=>
""
,
"formerRepresentations"
=>
%{
"orderedItems"
=>
[%{
"content"
=>
""
}]}
}
=
res
[
"object"
]
end
test
"works with Updates"
do
message
=
%{
"type"
=>
"Update"
,
"object"
=>
%{
"content"
=>
"."
,
"attachment"
=>
"image"
,
"formerRepresentations"
=>
%{
"orderedItems"
=>
[%{
"content"
=>
"."
,
"attachment"
=>
"image"
}]
}
}
}
assert
{
:ok
,
res
}
=
MRF
.
filter_one
(
NoPlaceholderTextPolicy
,
message
)
assert
%{
"content"
=>
""
,
"formerRepresentations"
=>
%{
"orderedItems"
=>
[%{
"content"
=>
""
}]}
}
=
res
[
"object"
]
end
@messages
[
%{
"type"
=>
"Create"
,
"object"
=>
%{
"content"
=>
"test"
,
"attachment"
=>
"image"
}
},
%{
"type"
=>
"Create"
,
"object"
=>
%{
"content"
=>
"."
}},
%{
"type"
=>
"Create"
,
"object"
=>
%{
"content"
=>
"<p>.</p>"
}}
]
test
"it skips filter"
do
Enum
.
each
(
@messages
,
fn
message
->
assert
{
:ok
,
res
}
=
NoPlaceholderTextPolicy
.
filter
(
message
)
assert
res
==
message
end
)
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jan 20, 1:09 PM (7 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
968737
Default Alt Text
no_placeholder_text_policy_test.exs (2 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment