diff options
| author | lain <lain@soykaf.club> | 2019-05-15 17:47:29 +0200 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2019-05-15 17:47:29 +0200 |
| commit | f168a1cbdc318ffaa2d8bc9fb561eb3dfdfb89d9 (patch) | |
| tree | 3c208baf52e27859491cce07954ac9b1198cbc8f /test/plugs/ensure_public_or_authenticated_plug_test.exs | |
| parent | 786f2c7a849bc4fa2bd4aac18de59ef6b2ed18c5 (diff) | |
| parent | 62516be9c462ca206163eaf7822f9ee5c2470453 (diff) | |
| download | pleroma-f168a1cbdc318ffaa2d8bc9fb561eb3dfdfb89d9.tar.gz pleroma-f168a1cbdc318ffaa2d8bc9fb561eb3dfdfb89d9.zip | |
Merge remote-tracking branch 'origin/develop' into conversations-import
Diffstat (limited to 'test/plugs/ensure_public_or_authenticated_plug_test.exs')
| -rw-r--r-- | test/plugs/ensure_public_or_authenticated_plug_test.exs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/test/plugs/ensure_public_or_authenticated_plug_test.exs b/test/plugs/ensure_public_or_authenticated_plug_test.exs new file mode 100644 index 000000000..ce5d77ff7 --- /dev/null +++ b/test/plugs/ensure_public_or_authenticated_plug_test.exs @@ -0,0 +1,55 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Plugs.EnsurePublicOrAuthenticatedPlugTest do + use Pleroma.Web.ConnCase, async: true + + alias Pleroma.Config + alias Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug + alias Pleroma.User + + test "it halts if not public and no user is assigned", %{conn: conn} do + set_public_to(false) + + conn = + conn + |> EnsurePublicOrAuthenticatedPlug.call(%{}) + + assert conn.status == 403 + assert conn.halted == true + end + + test "it continues if public", %{conn: conn} do + set_public_to(true) + + ret_conn = + conn + |> EnsurePublicOrAuthenticatedPlug.call(%{}) + + assert ret_conn == conn + end + + test "it continues if a user is assigned, even if not public", %{conn: conn} do + set_public_to(false) + + conn = + conn + |> assign(:user, %User{}) + + ret_conn = + conn + |> EnsurePublicOrAuthenticatedPlug.call(%{}) + + assert ret_conn == conn + end + + defp set_public_to(value) do + orig = Config.get!([:instance, :public]) + Config.put([:instance, :public], value) + + on_exit(fn -> + Config.put([:instance, :public], orig) + end) + end +end |
