1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Metadata.Providers.RelMeTest do
6 use Pleroma.DataCase, async: true
8 alias Pleroma.Web.Metadata.Providers.RelMe
10 test "it renders all links with rel='me' from user bio" do
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">)
17 "value" => ~S(<a rel="me" href="http://profile.com">http://profile.com</a>)
21 "value" => ~S(<a href="http://cofe.io">http://cofe.io</a>)
23 %{"name" => "foo", "value" => "bar"}
26 user = insert(:user, %{bio: bio, fields: fields})
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"], []}