Browse Source

tests: add test verifying the relay user is invisible

merge-requests/1875/head
Ariadne Conill 4 years ago
parent
commit
52d56ed705
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      test/web/activity_pub/relay_test.exs

+ 6
- 0
test/web/activity_pub/relay_test.exs View File

@@ -7,6 +7,7 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do

alias Pleroma.Activity
alias Pleroma.Object
alias Pleroma.User
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Web.ActivityPub.Relay

@@ -19,6 +20,11 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do
assert user.ap_id == "#{Pleroma.Web.Endpoint.url()}/relay"
end

test "relay actor is invisible" do
user = Relay.get_actor()
assert User.invisible?(user)
end

describe "follow/1" do
test "returns errors when user not found" do
assert capture_log(fn ->


Loading…
Cancel
Save