summaryrefslogtreecommitdiff
path: root/test/web/metadata/restrict_indexing_test.exs
blob: aad0bac422f5feda4d574878f7247c57da34195c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.Metadata.Providers.RestrictIndexingTest do
  use ExUnit.Case, async: true

  describe "build_tags/1" do
    test "for remote user" do
      assert Pleroma.Web.Metadata.Providers.RestrictIndexing.build_tags(%{
               user: %Pleroma.User{local: false}
             }) == [{:meta, [name: "robots", content: "noindex, noarchive"], []}]
    end

    test "for local user" do
      assert Pleroma.Web.Metadata.Providers.RestrictIndexing.build_tags(%{
               user: %Pleroma.User{local: true}
             }) == []
    end
  end
end