X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=test%2Fweb%2Fplugs%2Ffederating_plug_test.exs;h=c01e0112460b38397c8c554cae5e50117b694015;hb=4948117fcf297efa735cdafb9cddf39946668266;hp=1455a1c467ddce6ecd832a71b5b9367126ef83de;hpb=b451a92d78b184dda63e6647f815f89c0e37fd98;p=akkoma diff --git a/test/web/plugs/federating_plug_test.exs b/test/web/plugs/federating_plug_test.exs index 1455a1c46..c01e01124 100644 --- a/test/web/plugs/federating_plug_test.exs +++ b/test/web/plugs/federating_plug_test.exs @@ -1,12 +1,21 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.Web.FederatingPlugTest do use Pleroma.Web.ConnCase - test "returns and halt the conn when federating is disabled" do - instance = - Application.get_env(:pleroma, :instance) - |> Keyword.put(:federating, false) + setup_all do + config_path = [:instance, :federating] + initial_setting = Pleroma.Config.get(config_path) - Application.put_env(:pleroma, :instance, instance) + on_exit(fn -> Pleroma.Config.put(config_path, initial_setting) end) + + :ok + end + + test "returns and halt the conn when federating is disabled" do + Pleroma.Config.put([:instance, :federating], false) conn = build_conn() @@ -14,15 +23,11 @@ defmodule Pleroma.Web.FederatingPlugTest do assert conn.status == 404 assert conn.halted - - instance = - Application.get_env(:pleroma, :instance) - |> Keyword.put(:federating, true) - - Application.put_env(:pleroma, :instance, instance) end test "does nothing when federating is enabled" do + Pleroma.Config.put([:instance, :federating], true) + conn = build_conn() |> Pleroma.Web.FederatingPlug.call(%{})