logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 0e50e9e4fa5a5d33d36f4226e1d32a00bf53fc72
parent: 01653f618d0ea5567a76ea2500e1ea046836a2a4
Author: feld <feld@feld.me>
Date:   Thu, 22 Aug 2019 17:37:01 +0000

Merge branch 'support/tests' into 'develop'

fixed clear config after test

See merge request pleroma/pleroma!1588

Diffstat:

Mtest/user_test.exs3+++
Mtest/web/activity_pub/activity_pub_test.exs2+-
Mtest/web/activity_pub/transmogrifier_test.exs2++
Mtest/web/mastodon_api/mastodon_api_controller/update_credentials_test.exs1+
4 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/test/user_test.exs b/test/user_test.exs @@ -541,6 +541,9 @@ defmodule Pleroma.UserTest do avatar: %{some: "avatar"} } + clear_config([:instance, :user_bio_length]) + clear_config([:instance, :user_name_length]) + test "it confirms validity" do cs = User.remote_user_creation(@valid_remote) assert cs.valid? diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs @@ -555,7 +555,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do note_two = insert(:note, data: %{"context" => "suya.."}) activity_two = insert(:note_activity, note: note_two) - {:ok, activity_two} = CommonAPI.add_mute(user, activity_two) + {:ok, _activity_two} = CommonAPI.add_mute(user, activity_two) assert [_activity_two, _activity_one] = ActivityPub.fetch_activities([], %{"muting_user" => user, "with_muted" => true}) diff --git a/test/web/activity_pub/transmogrifier_test.exs b/test/web/activity_pub/transmogrifier_test.exs @@ -24,6 +24,8 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do :ok end + clear_config([:instance, :max_remote_account_fields]) + describe "handle_incoming" do test "it ignores an incoming notice if we already have it" do activity = insert(:note_activity) diff --git a/test/web/mastodon_api/mastodon_api_controller/update_credentials_test.exs b/test/web/mastodon_api/mastodon_api_controller/update_credentials_test.exs @@ -9,6 +9,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do use Pleroma.Web.ConnCase import Pleroma.Factory + clear_config([:instance, :max_account_fields]) describe "updating credentials" do test "sets user settings in a generic way", %{conn: conn} do