2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do
|
|
|
|
use Pleroma.DataCase
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Web.TwitterAPI.TwitterAPI
|
|
|
|
alias Pleroma.Web.TwitterAPI.UserView
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.UserInviteToken
|
2017-04-14 16:15:15 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-03-30 14:50:30 +00:00
|
|
|
alias Pleroma.Web.TwitterAPI.ActivityView
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2017-04-13 14:19:07 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
test "create a status" do
|
2017-07-22 15:42:15 +00:00
|
|
|
user = insert(:user)
|
2018-12-05 20:16:30 +00:00
|
|
|
mentioned_user = insert(:user, %{nickname: "shp", ap_id: "shp"})
|
2017-04-03 16:28:19 +00:00
|
|
|
|
2017-03-30 15:07:03 +00:00
|
|
|
object_data = %{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"type" => "Link",
|
|
|
|
"mediaType" => "image/jpg",
|
|
|
|
"href" => "http://example.org/image.jpg"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"uuid" => 1
|
|
|
|
}
|
|
|
|
|
|
|
|
object = Repo.insert!(%Object{data: object_data})
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
input = %{
|
2018-03-30 13:01:53 +00:00
|
|
|
"status" =>
|
|
|
|
"Hello again, @shp.<script></script>\nThis is on another :moominmamma: line. #2hu #epic #phantasmagoric",
|
2017-03-30 15:07:03 +00:00
|
|
|
"media_ids" => [object.id]
|
2017-03-21 16:53:20 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, activity = %Activity{}} = TwitterAPI.create_status(user, input)
|
|
|
|
|
|
|
|
expected_text =
|
2019-01-16 04:09:01 +00:00
|
|
|
"Hello again, <span class='h-card'><a data-user='#{mentioned_user.id}' class='u-url mention' href='shp'>@<span>shp</span></a></span>.<script></script><br>This is on another :moominmamma: line. <a class='hashtag' data-tag='2hu' href='http://localhost:4001/tag/2hu' rel='tag'>#2hu</a> <a class='hashtag' data-tag='epic' href='http://localhost:4001/tag/epic' rel='tag'>#epic</a> <a class='hashtag' data-tag='phantasmagoric' href='http://localhost:4001/tag/phantasmagoric' rel='tag'>#phantasmagoric</a><br><a href=\"http://example.org/image.jpg\" class='attachment'>image.jpg</a>"
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2018-03-24 10:03:10 +00:00
|
|
|
assert get_in(activity.data, ["object", "content"]) == expected_text
|
2017-03-21 17:17:35 +00:00
|
|
|
assert get_in(activity.data, ["object", "type"]) == "Note"
|
2017-04-13 12:56:19 +00:00
|
|
|
assert get_in(activity.data, ["object", "actor"]) == user.ap_id
|
2017-04-03 16:28:19 +00:00
|
|
|
assert get_in(activity.data, ["actor"]) == user.ap_id
|
2018-02-25 16:48:31 +00:00
|
|
|
assert Enum.member?(get_in(activity.data, ["cc"]), User.ap_followers(user))
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
assert Enum.member?(
|
|
|
|
get_in(activity.data, ["to"]),
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public"
|
|
|
|
)
|
|
|
|
|
2018-11-08 19:17:15 +00:00
|
|
|
assert Enum.member?(get_in(activity.data, ["to"]), "shp")
|
2017-05-02 08:43:35 +00:00
|
|
|
assert activity.local == true
|
2017-03-23 22:34:10 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
assert %{"moominmamma" => "http://localhost:4001/finmoji/128px/moominmamma-128.png"} =
|
|
|
|
activity.data["object"]["emoji"]
|
2017-11-20 16:53:21 +00:00
|
|
|
|
2017-05-18 13:16:49 +00:00
|
|
|
# hashtags
|
|
|
|
assert activity.data["object"]["tag"] == ["2hu", "epic", "phantasmagoric"]
|
|
|
|
|
2017-04-30 12:02:04 +00:00
|
|
|
# Add a context
|
2017-03-23 22:34:10 +00:00
|
|
|
assert is_binary(get_in(activity.data, ["context"]))
|
|
|
|
assert is_binary(get_in(activity.data, ["object", "context"]))
|
2017-03-30 15:07:03 +00:00
|
|
|
|
2017-03-30 16:07:38 +00:00
|
|
|
assert is_list(activity.data["object"]["attachment"])
|
2017-04-14 16:59:11 +00:00
|
|
|
|
|
|
|
assert activity.data["object"] == Object.get_by_ap_id(activity.data["object"]["id"]).data
|
2017-07-22 15:42:15 +00:00
|
|
|
|
|
|
|
user = User.get_by_ap_id(user.ap_id)
|
|
|
|
|
2018-11-18 21:36:47 +00:00
|
|
|
assert user.info.note_count == 1
|
2017-03-23 22:34:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "create a status that is a reply" do
|
2017-07-22 15:42:15 +00:00
|
|
|
user = insert(:user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-03-23 22:34:10 +00:00
|
|
|
input = %{
|
|
|
|
"status" => "Hello again."
|
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, activity = %Activity{}} = TwitterAPI.create_status(user, input)
|
2017-03-23 22:34:10 +00:00
|
|
|
|
|
|
|
input = %{
|
|
|
|
"status" => "Here's your (you).",
|
|
|
|
"in_reply_to_status_id" => activity.id
|
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, reply = %Activity{}} = TwitterAPI.create_status(user, input)
|
2017-03-23 22:34:10 +00:00
|
|
|
|
|
|
|
assert get_in(reply.data, ["context"]) == get_in(activity.data, ["context"])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
assert get_in(reply.data, ["object", "context"]) ==
|
|
|
|
get_in(activity.data, ["object", "context"])
|
|
|
|
|
2017-03-23 22:34:10 +00:00
|
|
|
assert get_in(reply.data, ["object", "inReplyTo"]) == get_in(activity.data, ["object", "id"])
|
|
|
|
assert get_in(reply.data, ["object", "inReplyToStatusId"]) == activity.id
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|
|
|
|
|
2017-04-10 13:38:21 +00:00
|
|
|
test "Follow another user using user_id" do
|
2017-04-16 13:28:28 +00:00
|
|
|
user = insert(:user)
|
2017-04-16 14:18:34 +00:00
|
|
|
followed = insert(:user)
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, user, followed, _activity} = TwitterAPI.follow(user, %{"user_id" => followed.id})
|
2017-11-20 05:52:02 +00:00
|
|
|
assert User.ap_followers(followed) in user.following
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:error, msg} = TwitterAPI.follow(user, %{"user_id" => followed.id})
|
2017-04-20 07:39:18 +00:00
|
|
|
assert msg == "Could not follow user: #{followed.nickname} is already on your list."
|
2017-04-10 13:38:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "Follow another user using screen_name" do
|
2017-04-16 14:12:28 +00:00
|
|
|
user = insert(:user)
|
2017-04-20 07:39:18 +00:00
|
|
|
followed = insert(:user)
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, user, followed, _activity} =
|
|
|
|
TwitterAPI.follow(user, %{"screen_name" => followed.nickname})
|
|
|
|
|
2017-11-20 05:52:02 +00:00
|
|
|
assert User.ap_followers(followed) in user.following
|
2017-04-12 14:34:36 +00:00
|
|
|
|
2017-07-22 15:42:15 +00:00
|
|
|
followed = User.get_by_ap_id(followed.ap_id)
|
2018-11-18 21:36:47 +00:00
|
|
|
assert followed.info.follower_count == 1
|
2017-07-22 15:42:15 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:error, msg} = TwitterAPI.follow(user, %{"screen_name" => followed.nickname})
|
2017-04-12 14:34:36 +00:00
|
|
|
assert msg == "Could not follow user: #{followed.nickname} is already on your list."
|
2017-03-22 17:36:08 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
|
2017-04-20 07:46:27 +00:00
|
|
|
test "Unfollow another user using user_id" do
|
|
|
|
unfollowed = insert(:user)
|
|
|
|
user = insert(:user, %{following: [User.ap_followers(unfollowed)]})
|
2017-05-07 17:28:23 +00:00
|
|
|
ActivityPub.follow(user, unfollowed)
|
2017-04-10 13:45:47 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, user, unfollowed} = TwitterAPI.unfollow(user, %{"user_id" => unfollowed.id})
|
2017-04-10 13:45:47 +00:00
|
|
|
assert user.following == []
|
2017-03-23 12:13:09 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:error, msg} = TwitterAPI.unfollow(user, %{"user_id" => unfollowed.id})
|
2017-04-20 07:46:27 +00:00
|
|
|
assert msg == "Not subscribed!"
|
2017-04-10 13:45:47 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
|
2017-04-10 13:45:47 +00:00
|
|
|
test "Unfollow another user using screen_name" do
|
2017-04-20 07:46:27 +00:00
|
|
|
unfollowed = insert(:user)
|
|
|
|
user = insert(:user, %{following: [User.ap_followers(unfollowed)]})
|
2017-03-23 12:13:09 +00:00
|
|
|
|
2017-05-07 17:28:23 +00:00
|
|
|
ActivityPub.follow(user, unfollowed)
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, user, unfollowed} = TwitterAPI.unfollow(user, %{"screen_name" => unfollowed.nickname})
|
2017-03-23 12:13:09 +00:00
|
|
|
assert user.following == []
|
2017-04-20 07:46:27 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:error, msg} = TwitterAPI.unfollow(user, %{"screen_name" => unfollowed.nickname})
|
2017-04-12 14:34:36 +00:00
|
|
|
assert msg == "Not subscribed!"
|
2017-03-23 12:13:09 +00:00
|
|
|
end
|
2017-03-28 15:22:44 +00:00
|
|
|
|
2017-11-07 22:04:53 +00:00
|
|
|
test "Block another user using user_id" do
|
|
|
|
user = insert(:user)
|
|
|
|
blocked = insert(:user)
|
|
|
|
|
|
|
|
{:ok, user, blocked} = TwitterAPI.block(user, %{"user_id" => blocked.id})
|
|
|
|
assert User.blocks?(user, blocked)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Block another user using screen_name" do
|
|
|
|
user = insert(:user)
|
|
|
|
blocked = insert(:user)
|
|
|
|
|
|
|
|
{:ok, user, blocked} = TwitterAPI.block(user, %{"screen_name" => blocked.nickname})
|
|
|
|
assert User.blocks?(user, blocked)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Unblock another user using user_id" do
|
|
|
|
unblocked = insert(:user)
|
|
|
|
user = insert(:user)
|
2018-05-22 09:41:17 +00:00
|
|
|
{:ok, user, _unblocked} = TwitterAPI.block(user, %{"user_id" => unblocked.id})
|
2017-11-07 22:04:53 +00:00
|
|
|
|
2018-02-12 09:13:54 +00:00
|
|
|
{:ok, user, _unblocked} = TwitterAPI.unblock(user, %{"user_id" => unblocked.id})
|
2018-11-18 21:36:47 +00:00
|
|
|
assert user.info.blocks == []
|
2017-11-07 22:04:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "Unblock another user using screen_name" do
|
|
|
|
unblocked = insert(:user)
|
|
|
|
user = insert(:user)
|
2018-05-22 09:41:17 +00:00
|
|
|
{:ok, user, _unblocked} = TwitterAPI.block(user, %{"screen_name" => unblocked.nickname})
|
2017-11-07 22:04:53 +00:00
|
|
|
|
2018-02-12 09:13:54 +00:00
|
|
|
{:ok, user, _unblocked} = TwitterAPI.unblock(user, %{"screen_name" => unblocked.nickname})
|
2018-11-18 21:36:47 +00:00
|
|
|
assert user.info.blocks == []
|
2017-11-07 22:04:53 +00:00
|
|
|
end
|
|
|
|
|
2017-03-29 00:05:51 +00:00
|
|
|
test "upload a file" do
|
2018-12-05 10:37:06 +00:00
|
|
|
user = insert(:user)
|
2018-12-05 10:43:00 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
file = %Plug.Upload{
|
|
|
|
content_type: "image/jpg",
|
|
|
|
path: Path.absname("test/fixtures/image.jpg"),
|
|
|
|
filename: "an_image.jpg"
|
|
|
|
}
|
2017-03-29 00:05:51 +00:00
|
|
|
|
2018-12-05 10:37:06 +00:00
|
|
|
response = TwitterAPI.upload(file, user)
|
2017-03-29 00:05:51 +00:00
|
|
|
|
|
|
|
assert is_binary(response)
|
|
|
|
end
|
2017-04-03 16:28:19 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
test "it favorites a status, returns the updated activity" do
|
2017-04-13 14:19:07 +00:00
|
|
|
user = insert(:user)
|
2019-02-03 17:28:14 +00:00
|
|
|
other_user = insert(:user)
|
2017-04-13 14:19:07 +00:00
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
|
2017-09-09 16:09:37 +00:00
|
|
|
{:ok, status} = TwitterAPI.fav(user, note_activity.id)
|
2017-04-13 14:19:07 +00:00
|
|
|
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
|
2019-02-03 17:28:14 +00:00
|
|
|
assert ActivityView.render("activity.json", %{activity: updated_activity})["fave_num"] == 1
|
|
|
|
|
|
|
|
object = Object.normalize(note_activity.data["object"])
|
|
|
|
|
|
|
|
assert object.data["like_count"] == 1
|
2017-04-13 14:19:07 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
assert status == updated_activity
|
2019-02-03 17:28:14 +00:00
|
|
|
|
|
|
|
{:ok, _status} = TwitterAPI.fav(other_user, note_activity.id)
|
|
|
|
|
|
|
|
object = Object.normalize(note_activity.data["object"])
|
|
|
|
|
|
|
|
assert object.data["like_count"] == 2
|
|
|
|
|
|
|
|
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
|
|
|
|
assert ActivityView.render("activity.json", %{activity: updated_activity})["fave_num"] == 2
|
2017-04-13 14:19:07 +00:00
|
|
|
end
|
2017-04-14 15:13:51 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
test "it unfavorites a status, returns the updated activity" do
|
2017-04-14 16:15:15 +00:00
|
|
|
user = insert(:user)
|
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
object = Object.get_by_ap_id(note_activity.data["object"]["id"])
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, _like_activity, _object} = ActivityPub.like(user, object)
|
2017-04-14 16:15:15 +00:00
|
|
|
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
assert ActivityView.render("activity.json", activity: updated_activity)["fave_num"] == 1
|
2017-04-14 16:15:15 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
{:ok, activity} = TwitterAPI.unfav(user, note_activity.id)
|
2017-04-14 16:15:15 +00:00
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
assert ActivityView.render("activity.json", activity: activity)["fave_num"] == 0
|
2017-04-14 16:15:15 +00:00
|
|
|
end
|
|
|
|
|
2017-04-15 11:54:46 +00:00
|
|
|
test "it retweets a status and returns the retweet" do
|
|
|
|
user = insert(:user)
|
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
|
2017-09-09 15:48:57 +00:00
|
|
|
{:ok, status} = TwitterAPI.repeat(user, note_activity.id)
|
2017-04-15 11:54:46 +00:00
|
|
|
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
|
|
|
|
|
2018-03-30 14:50:30 +00:00
|
|
|
assert status == updated_activity
|
2017-04-15 11:54:46 +00:00
|
|
|
end
|
|
|
|
|
2018-06-14 01:29:55 +00:00
|
|
|
test "it unretweets an already retweeted status" do
|
|
|
|
user = insert(:user)
|
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
|
|
|
|
{:ok, _status} = TwitterAPI.repeat(user, note_activity.id)
|
|
|
|
{:ok, status} = TwitterAPI.unrepeat(user, note_activity.id)
|
|
|
|
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
|
|
|
|
|
|
|
|
assert status == updated_activity
|
|
|
|
end
|
|
|
|
|
2017-04-16 08:25:27 +00:00
|
|
|
test "it registers a new user and returns the user." do
|
|
|
|
data = %{
|
|
|
|
"nickname" => "lain",
|
|
|
|
"email" => "lain@wired.jp",
|
|
|
|
"fullname" => "lain iwakura",
|
2018-12-09 21:01:43 +00:00
|
|
|
"password" => "bear",
|
|
|
|
"confirm" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
fetched_user = Repo.get_by(User, nickname: "lain")
|
|
|
|
|
|
|
|
assert UserView.render("show.json", %{user: user}) ==
|
|
|
|
UserView.render("show.json", %{user: fetched_user})
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it registers a new user with empty string in bio and returns the user." do
|
|
|
|
data = %{
|
|
|
|
"nickname" => "lain",
|
|
|
|
"email" => "lain@wired.jp",
|
|
|
|
"fullname" => "lain iwakura",
|
|
|
|
"bio" => "",
|
2017-04-16 08:25:27 +00:00
|
|
|
"password" => "bear",
|
|
|
|
"confirm" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
fetched_user = Repo.get_by(User, nickname: "lain")
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
assert UserView.render("show.json", %{user: user}) ==
|
|
|
|
UserView.render("show.json", %{user: fetched_user})
|
2017-04-16 08:25:27 +00:00
|
|
|
end
|
|
|
|
|
2018-12-18 14:13:52 +00:00
|
|
|
@moduletag skip: "needs 'account_activation_required: true' in config"
|
|
|
|
test "it sends confirmation email if :account_activation_required is specified in instance config" do
|
|
|
|
setting = Pleroma.Config.get([:instance, :account_activation_required])
|
|
|
|
|
|
|
|
unless setting do
|
|
|
|
Pleroma.Config.put([:instance, :account_activation_required], true)
|
|
|
|
on_exit(fn -> Pleroma.Config.put([:instance, :account_activation_required], setting) end)
|
|
|
|
end
|
|
|
|
|
|
|
|
data = %{
|
|
|
|
"nickname" => "lain",
|
|
|
|
"email" => "lain@wired.jp",
|
|
|
|
"fullname" => "lain iwakura",
|
|
|
|
"bio" => "",
|
|
|
|
"password" => "bear",
|
|
|
|
"confirm" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
assert user.info.confirmation_pending
|
|
|
|
|
|
|
|
Swoosh.TestAssertions.assert_email_sent(Pleroma.UserEmail.account_confirmation_email(user))
|
|
|
|
end
|
|
|
|
|
2018-12-02 19:03:53 +00:00
|
|
|
test "it registers a new user and parses mentions in the bio" do
|
|
|
|
data1 = %{
|
|
|
|
"nickname" => "john",
|
|
|
|
"email" => "john@gmail.com",
|
|
|
|
"fullname" => "John Doe",
|
|
|
|
"bio" => "test",
|
|
|
|
"password" => "bear",
|
|
|
|
"confirm" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user1} = TwitterAPI.register_user(data1)
|
|
|
|
|
|
|
|
data2 = %{
|
|
|
|
"nickname" => "lain",
|
|
|
|
"email" => "lain@wired.jp",
|
|
|
|
"fullname" => "lain iwakura",
|
|
|
|
"bio" => "@john test",
|
|
|
|
"password" => "bear",
|
|
|
|
"confirm" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user2} = TwitterAPI.register_user(data2)
|
|
|
|
|
2018-12-02 19:08:53 +00:00
|
|
|
expected_text =
|
2019-01-16 04:09:01 +00:00
|
|
|
"<span class='h-card'><a data-user='#{user1.id}' class='u-url mention' href='#{user1.ap_id}'>@<span>john</span></a></span> test"
|
2018-12-02 19:03:53 +00:00
|
|
|
|
|
|
|
assert user2.bio == expected_text
|
|
|
|
end
|
|
|
|
|
2018-06-12 11:52:54 +00:00
|
|
|
@moduletag skip: "needs 'registrations_open: false' in config"
|
|
|
|
test "it registers a new user via invite token and returns the user." do
|
|
|
|
{:ok, token} = UserInviteToken.create_token()
|
|
|
|
|
|
|
|
data = %{
|
|
|
|
"nickname" => "vinny",
|
|
|
|
"email" => "pasta@pizza.vs",
|
|
|
|
"fullname" => "Vinny Vinesauce",
|
|
|
|
"bio" => "streamer",
|
|
|
|
"password" => "hiptofbees",
|
|
|
|
"confirm" => "hiptofbees",
|
|
|
|
"token" => token.token
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, user} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
fetched_user = Repo.get_by(User, nickname: "vinny")
|
|
|
|
token = Repo.get_by(UserInviteToken, token: token.token)
|
|
|
|
|
|
|
|
assert token.used == true
|
2018-06-12 12:01:40 +00:00
|
|
|
|
2018-06-12 11:52:54 +00:00
|
|
|
assert UserView.render("show.json", %{user: user}) ==
|
2018-06-12 12:01:40 +00:00
|
|
|
UserView.render("show.json", %{user: fetched_user})
|
2018-06-12 11:52:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@moduletag skip: "needs 'registrations_open: false' in config"
|
|
|
|
test "it returns an error if invalid token submitted" do
|
|
|
|
data = %{
|
|
|
|
"nickname" => "GrimReaper",
|
|
|
|
"email" => "death@reapers.afterlife",
|
|
|
|
"fullname" => "Reaper Grim",
|
|
|
|
"bio" => "Your time has come",
|
|
|
|
"password" => "scythe",
|
|
|
|
"confirm" => "scythe",
|
|
|
|
"token" => "DudeLetMeInImAFairy"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:error, msg} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
assert msg == "Invalid token"
|
|
|
|
refute Repo.get_by(User, nickname: "GrimReaper")
|
|
|
|
end
|
|
|
|
|
|
|
|
@moduletag skip: "needs 'registrations_open: false' in config"
|
|
|
|
test "it returns an error if expired token submitted" do
|
|
|
|
{:ok, token} = UserInviteToken.create_token()
|
|
|
|
UserInviteToken.mark_as_used(token.token)
|
|
|
|
|
|
|
|
data = %{
|
|
|
|
"nickname" => "GrimReaper",
|
|
|
|
"email" => "death@reapers.afterlife",
|
|
|
|
"fullname" => "Reaper Grim",
|
|
|
|
"bio" => "Your time has come",
|
|
|
|
"password" => "scythe",
|
|
|
|
"confirm" => "scythe",
|
|
|
|
"token" => token.token
|
|
|
|
}
|
|
|
|
|
|
|
|
{:error, msg} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
assert msg == "Expired token"
|
|
|
|
refute Repo.get_by(User, nickname: "GrimReaper")
|
|
|
|
end
|
|
|
|
|
2017-04-16 08:25:27 +00:00
|
|
|
test "it returns the error on registration problems" do
|
|
|
|
data = %{
|
|
|
|
"nickname" => "lain",
|
|
|
|
"email" => "lain@wired.jp",
|
|
|
|
"fullname" => "lain iwakura",
|
|
|
|
"bio" => "close the world.",
|
|
|
|
"password" => "bear"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:error, error_object} = TwitterAPI.register_user(data)
|
|
|
|
|
|
|
|
assert is_binary(error_object[:error])
|
|
|
|
refute Repo.get_by(User, nickname: "lain")
|
|
|
|
end
|
|
|
|
|
2017-04-30 11:53:26 +00:00
|
|
|
test "it assigns an integer conversation_id" do
|
|
|
|
note_activity = insert(:note_activity)
|
2018-03-30 14:50:30 +00:00
|
|
|
status = ActivityView.render("activity.json", activity: note_activity)
|
2017-04-30 11:53:26 +00:00
|
|
|
|
|
|
|
assert is_number(status["statusnet_conversation_id"])
|
|
|
|
end
|
|
|
|
|
2017-04-14 15:13:51 +00:00
|
|
|
setup do
|
2017-04-17 09:36:17 +00:00
|
|
|
Supervisor.terminate_child(Pleroma.Supervisor, Cachex)
|
|
|
|
Supervisor.restart_child(Pleroma.Supervisor, Cachex)
|
2017-04-14 15:13:51 +00:00
|
|
|
:ok
|
|
|
|
end
|
2017-04-30 11:53:26 +00:00
|
|
|
|
|
|
|
describe "context_to_conversation_id" do
|
|
|
|
test "creates a mapping object" do
|
|
|
|
conversation_id = TwitterAPI.context_to_conversation_id("random context")
|
|
|
|
object = Object.get_by_ap_id("random context")
|
|
|
|
|
|
|
|
assert conversation_id == object.id
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns an existing mapping for an existing object" do
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, object} = Object.context_mapping("random context") |> Repo.insert()
|
2017-04-30 11:53:26 +00:00
|
|
|
conversation_id = TwitterAPI.context_to_conversation_id("random context")
|
|
|
|
|
|
|
|
assert conversation_id == object.id
|
|
|
|
end
|
|
|
|
end
|
2017-05-10 16:44:57 +00:00
|
|
|
|
|
|
|
describe "fetching a user by uri" do
|
|
|
|
test "fetches a user by uri" do
|
2017-06-18 15:20:39 +00:00
|
|
|
id = "https://mastodon.social/users/lambadalambda"
|
2017-05-10 16:44:57 +00:00
|
|
|
user = insert(:user)
|
2017-06-18 15:20:39 +00:00
|
|
|
{:ok, represented} = TwitterAPI.get_external_profile(user, id)
|
|
|
|
remote = User.get_by_ap_id(id)
|
2017-05-10 16:44:57 +00:00
|
|
|
|
2017-10-31 16:57:26 +00:00
|
|
|
assert represented["id"] == UserView.render("show.json", %{user: remote, for: user})["id"]
|
2017-06-18 15:20:39 +00:00
|
|
|
|
|
|
|
# Also fetches the feed.
|
2019-01-21 06:14:20 +00:00
|
|
|
# assert Activity.get_create_by_object_ap_id("tag:mastodon.social,2017-04-05:objectId=1641750:objectType=Status")
|
2017-05-10 16:44:57 +00:00
|
|
|
end
|
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|