logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma

rel_me_test.exs (837B)


  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. defmodule Pleroma.Web.Metadata.Providers.RelMeTest do
  5. use Pleroma.DataCase
  6. import Pleroma.Factory
  7. alias Pleroma.Web.Metadata.Providers.RelMe
  8. test "it renders all links with rel='me' from user bio" do
  9. bio =
  10. ~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">)
  11. user = insert(:user, %{bio: bio})
  12. assert RelMe.build_tags(%{user: user}) == [
  13. {:link, [rel: "me", href: "http://some3.com"], []},
  14. {:link, [rel: "me", href: "https://another-link.com"], []}
  15. ]
  16. end
  17. end