summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/object_validators/follow_validation_test.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-07-19 20:05:37 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-07-19 20:05:37 +0300
commitbdf57b8ef438f32999ef917777b13161320644a8 (patch)
treeb72dc8ce2621eeb25e14504d6ce73c6657fac571 /test/web/activity_pub/object_validators/follow_validation_test.exs
parent9faa63203717e71d666afb6755ff0b781b491823 (diff)
parentf0d13fc3f7d0e9b58cfe1cd8918072d45d656a31 (diff)
downloadpleroma-bdf57b8ef438f32999ef917777b13161320644a8.tar.gz
pleroma-bdf57b8ef438f32999ef917777b13161320644a8.zip
Merge remote-tracking branch 'remotes/origin/develop' into 2168-media-preview-proxy
# Conflicts: # config/config.exs # lib/pleroma/web/media_proxy/media_proxy.ex # mix.lock # test/web/media_proxy/media_proxy_test.exs
Diffstat (limited to 'test/web/activity_pub/object_validators/follow_validation_test.exs')
-rw-r--r--test/web/activity_pub/object_validators/follow_validation_test.exs26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/web/activity_pub/object_validators/follow_validation_test.exs b/test/web/activity_pub/object_validators/follow_validation_test.exs
new file mode 100644
index 000000000..6e1378be2
--- /dev/null
+++ b/test/web/activity_pub/object_validators/follow_validation_test.exs
@@ -0,0 +1,26 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.Web.ActivityPub.ObjectValidators.FollowValidationTest do
+ use Pleroma.DataCase
+
+ 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