summaryrefslogtreecommitdiff
path: root/test/pleroma/web/activity_pub/object_validators/follow_validation_test.exs
blob: d2a9b72a5aaf9731a3c000334b07ee4e36827f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.ActivityPub.ObjectValidators.FollowValidationTest do
  use Pleroma.DataCase, async: true

  alias Pleroma.Web.ActivityPub.Builder
  alias Pleroma.Web.ActivityPub.ObjectValidator

  import Pleroma.Factory

  describe "Follows" do
    setup do
      follower = insert(:user)
      followed = insert(:user)

      {:ok, valid_follow, []} = Builder.follow(follower, followed)
      %{follower: follower, followed: followed, valid_follow: valid_follow}
    end

    test "validates a basic follow object", %{valid_follow: valid_follow} do
      assert {:ok, _follow, []} = ObjectValidator.validate(valid_follow, [])
    end
  end
end