Merge remote-tracking branch 'remotes/origin/develop' into 1560-non-federating-instan...
[akkoma] / test / web / feed / user_controller_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.Feed.UserControllerTest do
6 use Pleroma.Web.ConnCase
7
8 import Pleroma.Factory
9 import SweetXml
10
11 alias Pleroma.Config
12 alias Pleroma.Object
13 alias Pleroma.User
14
15 clear_config([:instance, :federating]) do
16 Config.put([:instance, :federating], true)
17 end
18
19 describe "feed" do
20 clear_config([:feed])
21
22 test "gets a feed", %{conn: conn} do
23 Config.put(
24 [:feed, :post_title],
25 %{max_length: 10, omission: "..."}
26 )
27
28 activity = insert(:note_activity)
29
30 note =
31 insert(:note,
32 data: %{
33 "content" => "This is :moominmamma: note ",
34 "attachment" => [
35 %{
36 "url" => [
37 %{"mediaType" => "image/png", "href" => "https://pleroma.gov/image.png"}
38 ]
39 }
40 ],
41 "inReplyTo" => activity.data["id"]
42 }
43 )
44
45 note_activity = insert(:note_activity, note: note)
46 user = User.get_cached_by_ap_id(note_activity.data["actor"])
47
48 note2 =
49 insert(:note,
50 user: user,
51 data: %{
52 "content" => "42 This is :moominmamma: note ",
53 "inReplyTo" => activity.data["id"]
54 }
55 )
56
57 _note_activity2 = insert(:note_activity, note: note2)
58 object = Object.normalize(note_activity)
59
60 resp =
61 conn
62 |> put_req_header("content-type", "application/atom+xml")
63 |> get(user_feed_path(conn, :feed, user.nickname))
64 |> response(200)
65
66 activity_titles =
67 resp
68 |> SweetXml.parse()
69 |> SweetXml.xpath(~x"//entry/title/text()"l)
70
71 assert activity_titles == ['42 This...', 'This is...']
72 assert resp =~ object.data["content"]
73 end
74
75 test "returns 404 for a missing feed", %{conn: conn} do
76 conn =
77 conn
78 |> put_req_header("content-type", "application/atom+xml")
79 |> get(user_feed_path(conn, :feed, "nonexisting"))
80
81 assert response(conn, 404)
82 end
83 end
84
85 # Note: see ActivityPubControllerTest for JSON format tests
86 describe "feed_redirect" do
87 test "with html format, it redirects to user feed", %{conn: conn} do
88 note_activity = insert(:note_activity)
89 user = User.get_cached_by_ap_id(note_activity.data["actor"])
90
91 response =
92 conn
93 |> get("/users/#{user.nickname}")
94 |> response(200)
95
96 assert response ==
97 Fallback.RedirectController.redirector_with_meta(
98 conn,
99 %{user: user}
100 ).resp_body
101 end
102
103 test "with html format, it returns error when user is not found", %{conn: conn} do
104 response =
105 conn
106 |> get("/users/jimm")
107 |> json_response(404)
108
109 assert response == %{"error" => "Not found"}
110 end
111
112 test "with non-html / non-json format, it redirects to user feed in atom format", %{
113 conn: conn
114 } do
115 note_activity = insert(:note_activity)
116 user = User.get_cached_by_ap_id(note_activity.data["actor"])
117
118 conn =
119 conn
120 |> put_req_header("accept", "application/xml")
121 |> get("/users/#{user.nickname}")
122
123 assert conn.status == 302
124 assert redirected_to(conn) == "#{Pleroma.Web.base_url()}/users/#{user.nickname}/feed.atom"
125 end
126
127 test "with non-html / non-json format, it returns error when user is not found", %{conn: conn} do
128 response =
129 conn
130 |> put_req_header("accept", "application/xml")
131 |> get(user_feed_path(conn, :feed, "jimm"))
132 |> response(404)
133
134 assert response == ~S({"error":"Not found"})
135 end
136 end
137 end