diff options
author | Maksim <parallel588@gmail.com> | 2019-07-31 18:35:15 +0000 |
---|---|---|
committer | kaniini <ariadne@dereferenced.org> | 2019-07-31 18:35:15 +0000 |
commit | 6eb33e73035789fd9160e697617feb30a3070589 (patch) | |
tree | 606920cbd22678870b42c55082fc56dbad70bdf9 /test/web/common_api/common_api_utils_test.exs | |
parent | 8980c1c769dab3df91d34a90407d31e09788beff (diff) | |
download | pleroma-6eb33e73035789fd9160e697617feb30a3070589.tar.gz |
test for Pleroma.Web.CommonAPI.Utils.get_by_id_or_ap_id
Diffstat (limited to 'test/web/common_api/common_api_utils_test.exs')
-rw-r--r-- | test/web/common_api/common_api_utils_test.exs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/web/common_api/common_api_utils_test.exs b/test/web/common_api/common_api_utils_test.exs index af320f31f..4b5666c29 100644 --- a/test/web/common_api/common_api_utils_test.exs +++ b/test/web/common_api/common_api_utils_test.exs @@ -360,4 +360,24 @@ defmodule Pleroma.Web.CommonAPI.UtilsTest do assert third_user.ap_id in to end end + + describe "get_by_id_or_ap_id/1" do + test "get activity by id" do + activity = insert(:note_activity) + %Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.id) + assert note.id == activity.id + end + + test "get activity by ap_id" do + activity = insert(:note_activity) + %Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.data["object"]) + assert note.id == activity.id + end + + test "get activity by object when type isn't `Create` " do + activity = insert(:like_activity) + %Pleroma.Activity{} = like = Utils.get_by_id_or_ap_id(activity.id) + assert like.data["object"] == activity.data["object"] + end + end end |