Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ivan Tashkinov
pleroma
Commits
d0a94f98
Commit
d0a94f98
authored
6 years ago
by
rinpatch
Browse files
Options
Downloads
Patches
Plain Diff
more tests for HellthreadPolicy
parent
8f98d970
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/web/activity_pub/mrf/hellthread_policy_test.exs
+46
-23
46 additions, 23 deletions
test/web/activity_pub/mrf/hellthread_policy_test.exs
with
46 additions
and
23 deletions
test/web/activity_pub/mrf/hellthread_policy_test.exs
+
46
−
23
View file @
d0a94f98
...
...
@@ -8,32 +8,47 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do
import
Pleroma
.
Web
.
ActivityPub
.
MRF
.
HellthreadPolicy
describe
"hellthread filter tests"
do
setup
do
user
=
insert
(
:user
)
message
=
%{
"actor"
=>
user
.
ap_id
,
"cc"
=>
[
user
.
follower_address
],
"type"
=>
"Create"
,
"to"
=>
[
"https://www.w3.org/ns/activitystreams#Public"
,
"https://instace.tld/users/user1"
,
"https://instace.tld/users/user2"
,
"https://instace.tld/users/user3"
]
}
[
user:
user
,
message:
message
]
end
setup
do
user
=
insert
(
:user
)
message
=
%{
"actor"
=>
user
.
ap_id
,
"cc"
=>
[
user
.
follower_address
],
"type"
=>
"Create"
,
"to"
=>
[
"https://www.w3.org/ns/activitystreams#Public"
,
"https://instance.tld/users/user1"
,
"https://instance.tld/users/user2"
,
"https://instance.tld/users/user3"
]
}
[
user:
user
,
message:
message
]
end
test
"reject test"
,
%{
message:
message
}
do
describe
"reject"
do
test
"rejects the message if the recipient count is above reject_threshold"
,
%{
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
0
,
reject_threshold:
2
})
{
:reject
,
nil
}
=
filter
(
message
)
end
test
"delist test"
,
%{
user:
user
,
message:
message
}
do
test
"does not reject the message if the recipient count is below reject_threshold"
,
%{
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
0
,
reject_threshold:
3
})
assert
{
:ok
,
^
message
}
=
filter
(
message
)
end
end
describe
"delist"
do
test
"delists the message if the recipient count is above delist_threshold"
,
%{
user:
user
,
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
2
,
reject_threshold:
0
})
{
:ok
,
message
}
=
filter
(
message
)
...
...
@@ -41,10 +56,18 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do
assert
"https://www.w3.org/ns/activitystreams#Public"
in
message
[
"cc"
]
end
test
"excludes follower collection and public URI from threshold count"
,
%{
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
0
,
reject_threshold:
3
})
test
"does not delist the message if the recipient count is below delist_threshold"
,
%{
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
4
,
reject_threshold:
0
})
{
:ok
,
_
}
=
filter
(
message
)
assert
{
:ok
,
^
message
}
=
filter
(
message
)
end
end
test
"excludes follower collection and public URI from threshold count"
,
%{
message:
message
}
do
Pleroma
.
Config
.
put
([
:mrf_hellthread
],
%{
delist_threshold:
0
,
reject_threshold:
3
})
assert
{
:ok
,
^
message
}
=
filter
(
message
)
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment