logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: d96139f78924c5607cd218ea5432a9b80a6301ea
parent: 8eebc75c152ee339bac347350266e3bc6536016b
Author: Haelwenn <contact+git.pleroma.social@hacktivis.me>
Date:   Wed, 25 Mar 2020 14:57:19 +0000

Merge branch 'add-test-update_credentials' into 'develop'

Add a test for accounts/update_credentials

See merge request pleroma/pleroma!2330

Diffstat:

Mtest/web/mastodon_api/controllers/account_controller/update_credentials_test.exs12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs b/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs @@ -118,6 +118,18 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do assert user_data["pleroma"]["hide_followers"] == true end + test "updates the user's discoverable status", %{conn: conn} do + assert %{"source" => %{"pleroma" => %{"discoverable" => true}}} = + conn + |> patch("/api/v1/accounts/update_credentials", %{discoverable: "true"}) + |> json_response(:ok) + + assert %{"source" => %{"pleroma" => %{"discoverable" => false}}} = + conn + |> patch("/api/v1/accounts/update_credentials", %{discoverable: "false"}) + |> json_response(:ok) + end + test "updates the user's hide_followers_count and hide_follows_count", %{conn: conn} do conn = patch(conn, "/api/v1/accounts/update_credentials", %{