diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2019-12-14 21:44:10 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-12-14 21:44:10 +0300 |
commit | 67cb46e15dd5fa16da257a9b0e5166266d10c694 (patch) | |
tree | 6801ecba06ea3aac7086c57834e1413e5bb0c84a /test/web/mastodon_api/controllers | |
parent | 2b821036c4bd84cee51c9fcace5a4b3764c3bba1 (diff) | |
parent | 8efacfed677ea2f06ac228294faec77a38060976 (diff) | |
download | pleroma-67cb46e15dd5fa16da257a9b0e5166266d10c694.tar.gz pleroma-67cb46e15dd5fa16da257a9b0e5166266d10c694.zip |
Merge branch 'develop' into issue/1383
Diffstat (limited to 'test/web/mastodon_api/controllers')
-rw-r--r-- | test/web/mastodon_api/controllers/search_controller_test.exs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/web/mastodon_api/controllers/search_controller_test.exs b/test/web/mastodon_api/controllers/search_controller_test.exs index 7953fad62..34deeba47 100644 --- a/test/web/mastodon_api/controllers/search_controller_test.exs +++ b/test/web/mastodon_api/controllers/search_controller_test.exs @@ -165,15 +165,20 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do assert status["id"] == to_string(activity.id) end - test "search fetches remote statuses", %{conn: conn} do + test "search fetches remote statuses and prefers them over other results", %{conn: conn} do capture_log(fn -> + {:ok, %{id: activity_id}} = + CommonAPI.post(insert(:user), %{ + "status" => "check out https://shitposter.club/notice/2827873" + }) + conn = conn |> get("/api/v1/search", %{"q" => "https://shitposter.club/notice/2827873"}) assert results = json_response(conn, 200) - [status] = results["statuses"] + [status, %{"id" => ^activity_id}] = results["statuses"] assert status["uri"] == "tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment" |