forked from AkkomaGang/akkoma
Test that only author can reblog a private status
This commit is contained in:
parent
1b79dce7bc
commit
51d5951c02
1 changed files with 8 additions and 3 deletions
|
@ -745,14 +745,19 @@ test "repeating a status privately" do
|
|||
end
|
||||
|
||||
test "author can repeat own private statuses" do
|
||||
user = insert(:user)
|
||||
author = insert(:user)
|
||||
follower = insert(:user)
|
||||
CommonAPI.follow(follower, author)
|
||||
|
||||
{:ok, activity} = CommonAPI.post(user, %{status: "cofe", visibility: "private"})
|
||||
{:ok, activity} = CommonAPI.post(author, %{status: "cofe", visibility: "private"})
|
||||
|
||||
{:ok, %Activity{} = announce_activity} = CommonAPI.repeat(activity.id, user)
|
||||
{:ok, %Activity{} = announce_activity} = CommonAPI.repeat(activity.id, author)
|
||||
|
||||
assert Visibility.is_private?(announce_activity)
|
||||
refute Visibility.visible_for_user?(announce_activity, nil)
|
||||
|
||||
assert Visibility.visible_for_user?(activity, follower)
|
||||
assert {:error, :not_found} = CommonAPI.repeat(activity.id, follower)
|
||||
end
|
||||
|
||||
test "favoriting a status" do
|
||||
|
|
Loading…
Reference in a new issue