Merge branch 'hashtag-search-case-sensitivity-test' into 'develop'

Test for case-insensitive mastodon hashtag timelines.

See merge request pleroma/pleroma!419
This commit is contained in:
lambda 2018-11-03 12:40:42 +00:00
commit cf6ed32c68
1 changed files with 11 additions and 2 deletions

View File

@ -944,11 +944,20 @@ test "hashtag timeline", %{conn: conn} do
{:ok, [_activity]} =
OStatus.fetch_activity_from_url("https://shitposter.club/notice/2827873")
conn =
nconn =
conn
|> get("/api/v1/timelines/tag/2hu")
assert [%{"id" => id}] = json_response(conn, 200)
assert [%{"id" => id}] = json_response(nconn, 200)
assert id == to_string(activity.id)
# works for different capitalization too
nconn =
conn
|> get("/api/v1/timelines/tag/2HU")
assert [%{"id" => id}] = json_response(nconn, 200)
assert id == to_string(activity.id)
end)