diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-14 16:26:56 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-14 21:29:14 +0300 |
commit | c9f45edeac2cc3ed262bb4b30dc7e1120c6fa047 (patch) | |
tree | 3ba35681409d9c5dd9ca4d355ff39d4dd67448d4 /test/web/feed | |
parent | 969769730e0b7578ddc6a5cd02f9b24eff5902a0 (diff) | |
parent | 12b28c8925c2c55e0d7bb66ff3320532a1aade3b (diff) | |
download | pleroma-c9f45edeac2cc3ed262bb4b30dc7e1120c6fa047.tar.gz |
Merge branch 'develop' into feature/tag_feed
Diffstat (limited to 'test/web/feed')
-rw-r--r-- | test/web/feed/tag_controller_test.exs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/web/feed/tag_controller_test.exs b/test/web/feed/tag_controller_test.exs index efc588070..a56a18738 100644 --- a/test/web/feed/tag_controller_test.exs +++ b/test/web/feed/tag_controller_test.exs @@ -85,5 +85,17 @@ defmodule Pleroma.Web.Feed.TagControllerTest do HtmlEntities.decode(FeedView.activity_content(obj2)), HtmlEntities.decode(FeedView.activity_content(obj1)) ] + + response = + conn + |> put_req_header("content-type", "application/atom+xml") + |> get(tag_feed_path(conn, :feed, "pleromaart")) + |> response(200) + + xml = parse(response) + assert xpath(xml, ~x"//channel/title/text()") == '#pleromaart' + + assert xpath(xml, ~x"//channel/description/text()"s) == + "These are public toots tagged with #pleromaart. You can interact with them if you have an account anywhere in the fediverse." end end |