Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / test / web / metadata / rel_me_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.Metadata.Providers.RelMeTest do
6 use Pleroma.DataCase
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>
13 <link href="http://some.com"> <link rel="me" href="http://some3.com>")
14
15 user = insert(:user, %{bio: bio})
16
17 assert RelMe.build_tags(%{user: user}) == [
18 {:link, [rel: "me", href: "http://some3.com>"], []},
19 {:link, [rel: "me", href: "https://another-link.com"], []}
20 ]
21 end
22 end