Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
3c5926fe
Commit
3c5926fe
authored
Mar 07, 2019
by
kaniini
Browse files
tests: add regression test
parent
e53a9fd1
Pipeline
#8674
passed with stages
in 3 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
test/web/activity_pub/mrf/anti_followbot_policy_test.exs
View file @
3c5926fe
...
...
@@ -54,4 +54,19 @@ test "it allows non-followbots" do
{
:ok
,
_
}
=
AntiFollowbotPolicy
.
filter
(
message
)
end
test
"it gracefully handles nil display names"
do
actor
=
insert
(
:user
,
%{
name:
nil
})
target
=
insert
(
:user
)
message
=
%{
"@context"
=>
"https://www.w3.org/ns/activitystreams"
,
"type"
=>
"Follow"
,
"actor"
=>
actor
.
ap_id
,
"object"
=>
target
.
ap_id
,
"id"
=>
"https://example.com/activities/1234"
}
{
:ok
,
_
}
=
AntiFollowbotPolicy
.
filter
(
message
)
end
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment