Add error messages for repeated follows and unfollows
This commit is contained in:
parent
b5e94bf930
commit
65ef18a715
4 changed files with 55 additions and 27 deletions
|
|
@ -105,26 +105,31 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do
|
|||
|
||||
test "Follow another user" do
|
||||
{ :ok, user } = UserBuilder.insert
|
||||
{ :ok, following } = UserBuilder.insert(%{nickname: "guy"})
|
||||
{ :ok, followed } = UserBuilder.insert(%{nickname: "guy"})
|
||||
|
||||
{:ok, user, following, activity } = TwitterAPI.follow(user, following.id)
|
||||
{ :ok, user, followed, activity } = TwitterAPI.follow(user, followed.id)
|
||||
|
||||
user = Repo.get(User, user.id)
|
||||
follow = Repo.get(Activity, activity.id)
|
||||
|
||||
assert user.following == [User.ap_followers(following)]
|
||||
assert user.following == [User.ap_followers(followed)]
|
||||
assert follow == activity
|
||||
|
||||
{ :error, msg } = TwitterAPI.follow(user, followed.id)
|
||||
assert msg == "Could not follow user: #{followed.nickname} is already on your list."
|
||||
end
|
||||
|
||||
test "Unfollow another user" do
|
||||
{ :ok, following } = UserBuilder.insert(%{nickname: "guy"})
|
||||
{ :ok, user } = UserBuilder.insert(%{following: [User.ap_followers(following)]})
|
||||
{ :ok, followed } = UserBuilder.insert(%{nickname: "guy"})
|
||||
{ :ok, user } = UserBuilder.insert(%{following: [User.ap_followers(followed)]})
|
||||
|
||||
{:ok, user, _following } = TwitterAPI.unfollow(user, following.id)
|
||||
{ :ok, user, _followed } = TwitterAPI.unfollow(user, followed.id)
|
||||
|
||||
user = Repo.get(User, user.id)
|
||||
|
||||
assert user.following == []
|
||||
{ :error, msg } = TwitterAPI.unfollow(user, followed.id)
|
||||
assert msg == "Not subscribed!"
|
||||
end
|
||||
|
||||
test "fetch statuses in a context using the conversation id" do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue