diff options
author | Alexander Tumin <iamtakingiteasy@eientei.org> | 2023-01-04 21:13:51 +0300 |
---|---|---|
committer | Alexander Tumin <iamtakingiteasy@eientei.org> | 2023-03-02 11:18:16 +0300 |
commit | 8d3b29aaba1a1879c9495ae15178b6e16ffc5faf (patch) | |
tree | a1b549d4b092257d1838de93021c7a9d81396b32 /test | |
parent | 4b85d1c617e0d3d482dffe59e43c69d717d5a13f (diff) | |
download | pleroma-8d3b29aaba1a1879c9495ae15178b6e16ffc5faf.tar.gz pleroma-8d3b29aaba1a1879c9495ae15178b6e16ffc5faf.zip |
Allow custom emoji reactions: add test for mixed emoji react, fix credo errors
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/pleroma_api/controllers/emoji_reaction_controller_test.exs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/pleroma/web/pleroma_api/controllers/emoji_reaction_controller_test.exs b/test/pleroma/web/pleroma_api/controllers/emoji_reaction_controller_test.exs index 6af68cb52..d81b47a6b 100644 --- a/test/pleroma/web/pleroma_api/controllers/emoji_reaction_controller_test.exs +++ b/test/pleroma/web/pleroma_api/controllers/emoji_reaction_controller_test.exs @@ -76,7 +76,12 @@ defmodule Pleroma.Web.PleromaAPI.EmojiReactionControllerTest do note = insert(:note, user: user, - data: %{"reactions" => [["wow", [other_user.ap_id], "https://remote/emoji/wow"]]} + data: %{ + "reactions" => [ + ["👍", [other_user.ap_id], nil], + ["wow", [other_user.ap_id], "https://remote/emoji/wow"] + ] + } ) activity = insert(:note_activity, note: note, user: user) @@ -90,6 +95,13 @@ defmodule Pleroma.Web.PleromaAPI.EmojiReactionControllerTest do assert result["pleroma"]["emoji_reactions"] == [ %{ + "account_ids" => [other_user.id], + "count" => 1, + "me" => false, + "name" => "👍", + "url" => nil + }, + %{ "name" => "wow@remote", "count" => 2, "me" => true, |