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
98d9ae07
Commit
98d9ae07
authored
Jan 13, 2019
by
Sadposter
Browse files
Add test for mastodon API /favourites endpoint
parent
9daf1624
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/web/mastodon_api/mastodon_api_controller_test.exs
View file @
98d9ae07
...
...
@@ -1349,13 +1349,42 @@ test "returns the favorites of a user", %{conn: conn} do
{
:ok
,
_
,
_
}
=
CommonAPI
.
favorite
(
activity
.
id
,
user
)
conn
=
first_
conn
=
conn
|>
assign
(
:user
,
user
)
|>
get
(
"/api/v1/favourites"
)
assert
[
status
]
=
json_response
(
conn
,
200
)
assert
[
status
]
=
json_response
(
first_
conn
,
200
)
assert
status
[
"id"
]
==
to_string
(
activity
.
id
)
assert
[{
"link"
,
link_header
}]
=
Enum
.
filter
(
first_conn
.
resp_headers
,
fn
element
->
match?
({
"link"
,
_
},
element
)
end
)
# Honours query params
{
:ok
,
second_activity
}
=
CommonAPI
.
post
(
other_user
,
%{
"status"
=>
"Trees Are Never Sad Look At Them Every Once In Awhile They're Quite Beautiful."
})
{
:ok
,
_
,
_
}
=
CommonAPI
.
favorite
(
second_activity
.
id
,
user
)
last_like
=
status
[
"id"
]
second_conn
=
conn
|>
assign
(
:user
,
user
)
|>
get
(
"/api/v1/favourites?since_id=
#{
last_like
}
"
)
assert
[
second_status
]
=
json_response
(
second_conn
,
200
)
assert
second_status
[
"id"
]
==
to_string
(
second_activity
.
id
)
third_conn
=
conn
|>
assign
(
:user
,
user
)
|>
get
(
"/api/v1/favourites?limit=0"
)
assert
[]
=
json_response
(
third_conn
,
200
)
end
describe
"updating credentials"
do
...
...
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