2019-10-07 12:20:41 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-10-07 12:20:41 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-12-06 06:32:29 +00:00
|
|
|
defmodule Pleroma.Web.Feed.UserControllerTest do
|
2019-10-07 12:20:41 +00:00
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
2019-11-08 06:23:24 +00:00
|
|
|
import SweetXml
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
alias Pleroma.Config
|
2019-10-07 12:20:41 +00:00
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.User
|
2020-05-25 20:27:47 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:instance, :federating], true)
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
describe "feed" do
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:feed])
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-05-25 20:27:47 +00:00
|
|
|
test "gets an atom feed", %{conn: conn} do
|
2020-02-22 16:48:41 +00:00
|
|
|
Config.put(
|
|
|
|
[:feed, :post_title],
|
|
|
|
%{max_length: 10, omission: "..."}
|
2019-11-08 06:23:24 +00:00
|
|
|
)
|
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
note =
|
|
|
|
insert(:note,
|
|
|
|
data: %{
|
|
|
|
"content" => "This is :moominmamma: note ",
|
|
|
|
"attachment" => [
|
|
|
|
%{
|
|
|
|
"url" => [
|
|
|
|
%{"mediaType" => "image/png", "href" => "https://pleroma.gov/image.png"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"inReplyTo" => activity.data["id"]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
note_activity = insert(:note_activity, note: note)
|
|
|
|
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
2019-11-08 06:23:24 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
note2 =
|
|
|
|
insert(:note,
|
|
|
|
user: user,
|
|
|
|
data: %{
|
|
|
|
"content" => "42 This is :moominmamma: note ",
|
|
|
|
"inReplyTo" => activity.data["id"]
|
|
|
|
}
|
|
|
|
)
|
2019-11-08 06:23:24 +00:00
|
|
|
|
2020-03-10 15:11:48 +00:00
|
|
|
note_activity2 = insert(:note_activity, note: note2)
|
2020-02-22 16:48:41 +00:00
|
|
|
object = Object.normalize(note_activity)
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
resp =
|
|
|
|
conn
|
2020-03-13 14:41:26 +00:00
|
|
|
|> put_req_header("accept", "application/atom+xml")
|
2020-02-22 16:48:41 +00:00
|
|
|
|> get(user_feed_path(conn, :feed, user.nickname))
|
|
|
|
|> response(200)
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
activity_titles =
|
|
|
|
resp
|
|
|
|
|> SweetXml.parse()
|
|
|
|
|> SweetXml.xpath(~x"//entry/title/text()"l)
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
assert activity_titles == ['42 This...', 'This is...']
|
|
|
|
assert resp =~ object.data["content"]
|
2020-03-10 15:11:48 +00:00
|
|
|
|
|
|
|
resp =
|
|
|
|
conn
|
2020-03-13 14:41:26 +00:00
|
|
|
|> put_req_header("accept", "application/atom+xml")
|
2020-03-10 15:11:48 +00:00
|
|
|
|> get("/users/#{user.nickname}/feed", %{"max_id" => note_activity2.id})
|
|
|
|
|> response(200)
|
|
|
|
|
|
|
|
activity_titles =
|
|
|
|
resp
|
|
|
|
|> SweetXml.parse()
|
|
|
|
|> SweetXml.xpath(~x"//entry/title/text()"l)
|
|
|
|
|
|
|
|
assert activity_titles == ['This is...']
|
2020-02-22 16:48:41 +00:00
|
|
|
end
|
|
|
|
|
2020-03-13 14:41:26 +00:00
|
|
|
test "gets a rss feed", %{conn: conn} do
|
|
|
|
Pleroma.Config.put(
|
|
|
|
[:feed, :post_title],
|
|
|
|
%{max_length: 10, omission: "..."}
|
|
|
|
)
|
|
|
|
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
note =
|
|
|
|
insert(:note,
|
|
|
|
data: %{
|
|
|
|
"content" => "This is :moominmamma: note ",
|
|
|
|
"attachment" => [
|
|
|
|
%{
|
|
|
|
"url" => [
|
|
|
|
%{"mediaType" => "image/png", "href" => "https://pleroma.gov/image.png"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"inReplyTo" => activity.data["id"]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
note_activity = insert(:note_activity, note: note)
|
|
|
|
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
|
|
|
|
|
|
|
note2 =
|
|
|
|
insert(:note,
|
|
|
|
user: user,
|
|
|
|
data: %{
|
|
|
|
"content" => "42 This is :moominmamma: note ",
|
|
|
|
"inReplyTo" => activity.data["id"]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
note_activity2 = insert(:note_activity, note: note2)
|
|
|
|
object = Object.normalize(note_activity)
|
|
|
|
|
|
|
|
resp =
|
|
|
|
conn
|
|
|
|
|> put_req_header("accept", "application/rss+xml")
|
|
|
|
|> get("/users/#{user.nickname}/feed.rss")
|
|
|
|
|> response(200)
|
|
|
|
|
|
|
|
activity_titles =
|
|
|
|
resp
|
|
|
|
|> SweetXml.parse()
|
|
|
|
|> SweetXml.xpath(~x"//item/title/text()"l)
|
|
|
|
|
|
|
|
assert activity_titles == ['42 This...', 'This is...']
|
|
|
|
assert resp =~ object.data["content"]
|
|
|
|
|
|
|
|
resp =
|
|
|
|
conn
|
2020-03-13 14:58:14 +00:00
|
|
|
|> put_req_header("accept", "application/rss+xml")
|
2020-03-13 14:41:26 +00:00
|
|
|
|> get("/users/#{user.nickname}/feed.rss", %{"max_id" => note_activity2.id})
|
|
|
|
|> response(200)
|
|
|
|
|
|
|
|
activity_titles =
|
|
|
|
resp
|
|
|
|
|> SweetXml.parse()
|
|
|
|
|> SweetXml.xpath(~x"//item/title/text()"l)
|
|
|
|
|
|
|
|
assert activity_titles == ['This is...']
|
2020-02-22 16:48:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "returns 404 for a missing feed", %{conn: conn} do
|
|
|
|
conn =
|
|
|
|
conn
|
2020-03-13 14:41:26 +00:00
|
|
|
|> put_req_header("accept", "application/atom+xml")
|
2020-02-22 16:48:41 +00:00
|
|
|
|> get(user_feed_path(conn, :feed, "nonexisting"))
|
|
|
|
|
|
|
|
assert response(conn, 404)
|
|
|
|
end
|
2020-05-25 20:27:47 +00:00
|
|
|
|
|
|
|
test "returns feed with public and unlisted activities", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, _} = CommonAPI.post(user, %{status: "public", visibility: "public"})
|
|
|
|
{:ok, _} = CommonAPI.post(user, %{status: "direct", visibility: "direct"})
|
|
|
|
{:ok, _} = CommonAPI.post(user, %{status: "unlisted", visibility: "unlisted"})
|
|
|
|
{:ok, _} = CommonAPI.post(user, %{status: "private", visibility: "private"})
|
|
|
|
|
|
|
|
resp =
|
|
|
|
conn
|
|
|
|
|> put_req_header("accept", "application/atom+xml")
|
|
|
|
|> get(user_feed_path(conn, :feed, user.nickname))
|
|
|
|
|> response(200)
|
|
|
|
|
|
|
|
activity_titles =
|
|
|
|
resp
|
|
|
|
|> SweetXml.parse()
|
|
|
|
|> SweetXml.xpath(~x"//entry/title/text()"l)
|
|
|
|
|> Enum.sort()
|
|
|
|
|
|
|
|
assert activity_titles == ['public', 'unlisted']
|
|
|
|
end
|
2020-07-29 12:02:02 +00:00
|
|
|
|
|
|
|
test "returns 404 when the user is remote", %{conn: conn} do
|
|
|
|
user = insert(:user, local: false)
|
|
|
|
|
|
|
|
{:ok, _} = CommonAPI.post(user, %{status: "test"})
|
|
|
|
|
|
|
|
assert conn
|
|
|
|
|> put_req_header("accept", "application/atom+xml")
|
|
|
|
|> get(user_feed_path(conn, :feed, user.nickname))
|
|
|
|
|> response(404)
|
|
|
|
end
|
2019-10-07 12:20:41 +00:00
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
# Note: see ActivityPubControllerTest for JSON format tests
|
2019-10-07 12:20:41 +00:00
|
|
|
describe "feed_redirect" do
|
2020-03-09 17:51:44 +00:00
|
|
|
test "with html format, it redirects to user feed", %{conn: conn} do
|
2019-10-07 12:20:41 +00:00
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/users/#{user.nickname}")
|
|
|
|
|> response(200)
|
|
|
|
|
|
|
|
assert response ==
|
|
|
|
Fallback.RedirectController.redirector_with_meta(
|
|
|
|
conn,
|
|
|
|
%{user: user}
|
|
|
|
).resp_body
|
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
test "with html format, it returns error when user is not found", %{conn: conn} do
|
2019-10-07 12:20:41 +00:00
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/users/jimm")
|
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert response == %{"error" => "Not found"}
|
|
|
|
end
|
2020-02-22 16:48:41 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
test "with non-html / non-json format, it redirects to user feed in atom format", %{
|
|
|
|
conn: conn
|
|
|
|
} do
|
|
|
|
note_activity = insert(:note_activity)
|
|
|
|
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
2020-02-22 16:48:41 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("accept", "application/xml")
|
|
|
|
|> get("/users/#{user.nickname}")
|
2020-02-22 16:48:41 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
assert conn.status == 302
|
|
|
|
assert redirected_to(conn) == "#{Pleroma.Web.base_url()}/users/#{user.nickname}/feed.atom"
|
2020-02-22 16:48:41 +00:00
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
test "with non-html / non-json format, it returns error when user is not found", %{conn: conn} do
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> put_req_header("accept", "application/xml")
|
|
|
|
|> get(user_feed_path(conn, :feed, "jimm"))
|
|
|
|
|> response(404)
|
2020-02-22 16:48:41 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
assert response == ~S({"error":"Not found"})
|
2020-02-22 16:48:41 +00:00
|
|
|
end
|
|
|
|
end
|
2019-10-07 12:20:41 +00:00
|
|
|
end
|