summaryrefslogtreecommitdiff
path: root/test/web/mastodon_api
diff options
context:
space:
mode:
authorkaniini <ariadne@dereferenced.org>2019-10-09 16:33:05 +0000
committerkaniini <ariadne@dereferenced.org>2019-10-09 16:33:05 +0000
commit9fd5176c35d21846fb8368ea7bc0285f9cd74ad4 (patch)
tree2102a0cf5a2ba413fb3c2fdef743d38c8f049d93 /test/web/mastodon_api
parentc9b3f0151bc3f95623d95ec6c7f7b2b72e1a87a3 (diff)
parentc1bae0137666505c16482fd22cb3a14bed7a4499 (diff)
downloadpleroma-9fd5176c35d21846fb8368ea7bc0285f9cd74ad4.tar.gz
pleroma-9fd5176c35d21846fb8368ea7bc0285f9cd74ad4.zip
Merge branch 'unicode-search' into 'develop'
Search: Add tests for unicode searches. See merge request pleroma/pleroma!1824
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r--test/web/mastodon_api/controllers/search_controller_test.exs15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/web/mastodon_api/controllers/search_controller_test.exs b/test/web/mastodon_api/controllers/search_controller_test.exs
index 49c79ff0a..0ca896e01 100644
--- a/test/web/mastodon_api/controllers/search_controller_test.exs
+++ b/test/web/mastodon_api/controllers/search_controller_test.exs
@@ -40,7 +40,7 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do
test "search", %{conn: conn} do
user = insert(:user)
user_two = insert(:user, %{nickname: "shp@shitposter.club"})
- user_three = insert(:user, %{nickname: "shp@heldscal.la", name: "I love 2hu"})
+ user_three = insert(:user, %{nickname: "shp@heldscal.la", name: "I love 2hu 天子"})
{:ok, activity} = CommonAPI.post(user, %{"status" => "This is about 2hu private"})
@@ -52,9 +52,9 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do
{:ok, _} = CommonAPI.post(user_two, %{"status" => "This isn't"})
- conn = get(conn, "/api/v2/search", %{"q" => "2hu #private"})
-
- assert results = json_response(conn, 200)
+ results =
+ get(conn, "/api/v2/search", %{"q" => "2hu #private"})
+ |> json_response(200)
[account | _] = results["accounts"]
assert account["id"] == to_string(user_three.id)
@@ -65,6 +65,13 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do
[status] = results["statuses"]
assert status["id"] == to_string(activity.id)
+
+ results =
+ get(conn, "/api/v2/search", %{"q" => "天子"})
+ |> json_response(200)
+
+ [account] == results["accounts"]
+ assert account["id"] == to_string(user_three.id)
end
end