Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
feld
pleroma
Commits
9cac7c95
Commit
9cac7c95
authored
Aug 29, 2018
by
kaniini
Browse files
test: add testcase proving lists system does not leak non-public posts
parent
40ea07cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/web/mastodon_api/mastodon_api_controller_test.exs
View file @
9cac7c95
...
...
@@ -368,6 +368,30 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
assert
id
==
to_string
(
activity_two
.
id
)
end
test
"list timeline does not leak non-public statuses for unfollowed users"
,
%{
conn:
conn
}
do
user
=
insert
(
:user
)
other_user
=
insert
(
:user
)
{
:ok
,
activity_one
}
=
TwitterAPI
.
create_status
(
other_user
,
%{
"status"
=>
"Marisa is cute."
})
{
:ok
,
activity_two
}
=
TwitterAPI
.
create_status
(
other_user
,
%{
"status"
=>
"Marisa is cute."
,
"visibility"
=>
"private"
})
{
:ok
,
list
}
=
Pleroma
.
List
.
create
(
"name"
,
user
)
{
:ok
,
list
}
=
Pleroma
.
List
.
follow
(
list
,
other_user
)
conn
=
conn
|>
assign
(
:user
,
user
)
|>
get
(
"/api/v1/timelines/list/
#{
list
.
id
}
"
)
assert
[%{
"id"
=>
id
}]
=
json_response
(
conn
,
200
)
assert
id
==
to_string
(
activity_one
.
id
)
end
end
describe
"notifications"
do
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment