diff options
| author | lain <lain@soykaf.club> | 2020-07-08 17:07:24 +0200 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-07-08 17:07:24 +0200 |
| commit | 00e54f8fe7af098ba829f7f7cd5511569dcd1c0a (patch) | |
| tree | 263998479216cab106f83f0ef7654f82b98d7e6f /test/web/activity_pub/relay_test.exs | |
| parent | 9dda8b542723afae8dd5493b4082b8524873a14d (diff) | |
| download | pleroma-00e54f8fe7af098ba829f7f7cd5511569dcd1c0a.tar.gz pleroma-00e54f8fe7af098ba829f7f7cd5511569dcd1c0a.zip | |
ActivityPub: Remove `follow` and fix issues.
Diffstat (limited to 'test/web/activity_pub/relay_test.exs')
| -rw-r--r-- | test/web/activity_pub/relay_test.exs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/web/activity_pub/relay_test.exs b/test/web/activity_pub/relay_test.exs index b3b573c9b..9d657ac4f 100644 --- a/test/web/activity_pub/relay_test.exs +++ b/test/web/activity_pub/relay_test.exs @@ -7,8 +7,8 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do alias Pleroma.Activity alias Pleroma.User - alias Pleroma.Web.ActivityPub.ActivityPub alias Pleroma.Web.ActivityPub.Relay + alias Pleroma.Web.CommonAPI import ExUnit.CaptureLog import Pleroma.Factory @@ -53,8 +53,7 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do test "returns activity" do user = insert(:user) service_actor = Relay.get_actor() - ActivityPub.follow(service_actor, user) - Pleroma.User.follow(service_actor, user) + CommonAPI.follow(service_actor, user) assert "#{user.ap_id}/followers" in User.following(service_actor) assert {:ok, %Activity{} = activity} = Relay.unfollow(user.ap_id) assert activity.actor == "#{Pleroma.Web.Endpoint.url()}/relay" @@ -74,6 +73,7 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do assert Relay.publish(activity) == {:error, "Not implemented"} end + @tag capture_log: true test "returns error when activity not public" do activity = insert(:direct_note_activity) assert Relay.publish(activity) == {:error, false} |
