summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-09-16 17:29:16 +0200
committerlain <lain@soykaf.club>2020-09-16 17:29:16 +0200
commit7a88b726bf81e1610ade2b07ffd6af672b701600 (patch)
treea9b080e388098f810e034c62740f71da4194b3c1 /test
parenteca8d267846afc802f9a5ceed036482a9c90b4e2 (diff)
downloadpleroma-7a88b726bf81e1610ade2b07ffd6af672b701600.tar.gz
pleroma-7a88b726bf81e1610ade2b07ffd6af672b701600.zip
User: Remote users don't need to be confirmed or approved
Diffstat (limited to 'test')
-rw-r--r--test/user_test.exs15
1 files changed, 12 insertions, 3 deletions
diff --git a/test/user_test.exs b/test/user_test.exs
index a910226b2..060918d71 100644
--- a/test/user_test.exs
+++ b/test/user_test.exs
@@ -1676,7 +1676,7 @@ defmodule Pleroma.UserTest do
assert User.visible_for(user, user) == :visible
end
- test "returns false when the account is unauthenticated and auth is required" do
+ test "returns false when the account is unconfirmed and confirmation is required" do
Pleroma.Config.put([:instance, :account_activation_required], true)
user = insert(:user, local: true, confirmation_pending: true)
@@ -1685,14 +1685,23 @@ defmodule Pleroma.UserTest do
refute User.visible_for(user, other_user) == :visible
end
- test "returns true when the account is unauthenticated and auth is not required" do
+ test "returns true when the account is unconfirmed and confirmation is required but the account is remote" do
+ Pleroma.Config.put([:instance, :account_activation_required], true)
+
+ user = insert(:user, local: false, confirmation_pending: true)
+ other_user = insert(:user, local: true)
+
+ assert User.visible_for(user, other_user) == :visible
+ end
+
+ test "returns true when the account is unconfirmed and confirmation is not required" do
user = insert(:user, local: true, confirmation_pending: true)
other_user = insert(:user, local: true)
assert User.visible_for(user, other_user) == :visible
end
- test "returns true when the account is unauthenticated and being viewed by a privileged account (auth required)" do
+ test "returns true when the account is unconfirmed and being viewed by a privileged account (confirmation required)" do
Pleroma.Config.put([:instance, :account_activation_required], true)
user = insert(:user, local: true, confirmation_pending: true)