total rebase
[anni] / test / pleroma / web / metadata / providers / rel_me_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.Metadata.Providers.RelMeTest do
6   use Pleroma.DataCase, async: true
7   import Pleroma.Factory
8   alias Pleroma.Web.Metadata.Providers.RelMe
9
10   test "it renders all links with rel='me' from user bio" do
11     bio =
12       ~s(<a href="https://some-link.com">https://some-link.com</a> <a rel="me" href="https://another-link.com">https://another-link.com</a> <link href="http://some.com"> <link rel="me" href="http://some3.com">)
13
14     fields = [
15       %{
16         "name" => "profile",
17         "value" => ~S(<a rel="me" href="http://profile.com">http://profile.com</a>)
18       },
19       %{
20         "name" => "like",
21         "value" => ~S(<a href="http://cofe.io">http://cofe.io</a>)
22       },
23       %{"name" => "foo", "value" => "bar"}
24     ]
25
26     user = insert(:user, %{bio: bio, fields: fields})
27
28     assert RelMe.build_tags(%{user: user}) == [
29              {:link, [rel: "me", href: "http://some3.com"], []},
30              {:link, [rel: "me", href: "https://another-link.com"], []},
31              {:link, [rel: "me", href: "http://profile.com"], []}
32            ]
33   end
34 end