From 253178538410c63be6bd14016b800b42df59bfb6 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Wed, 7 Aug 2024 13:07:54 -0400 Subject: Do not allow committing tests with a .ex extension --- test/pleroma/web/views/streamer_view_test.ex | 100 -------------------------- test/pleroma/web/views/streamer_view_test.exs | 100 ++++++++++++++++++++++++++ 2 files changed, 100 insertions(+), 100 deletions(-) delete mode 100644 test/pleroma/web/views/streamer_view_test.ex create mode 100644 test/pleroma/web/views/streamer_view_test.exs (limited to 'test') diff --git a/test/pleroma/web/views/streamer_view_test.ex b/test/pleroma/web/views/streamer_view_test.ex deleted file mode 100644 index 43a17a43e..000000000 --- a/test/pleroma/web/views/streamer_view_test.ex +++ /dev/null @@ -1,100 +0,0 @@ -# Pleroma: A lightweight social networking server -# Copyright © 2017-2022 Pleroma Authors -# SPDX-License-Identifier: AGPL-3.0-only - -defmodule Pleroma.Web.StreamerViewTest do - use Pleroma.Web.ConnCase, async: true - # import ExUnit.CaptureLog - import Pleroma.Factory - - alias Pleroma.Web.CommonAPI - alias Pleroma.Web.StreamerView - - describe "follow_relationships_update.json" do - test "shows follower/following count normally" do - other_user = insert(:user) - %{id: following_id} = following = insert(:user) - follower = insert(:user) - - {:ok, _, _, _} = CommonAPI.follow(other_user, following) - {:ok, follower, following, _activity} = CommonAPI.follow(following, follower) - - result = - StreamerView.render( - "follow_relationships_update.json", - %{follower: follower, following: following, state: :test}, - "user:test" - ) - - {:ok, %{"payload" => payload}} = Jason.decode(result) - - {:ok, decoded_payload} = Jason.decode(payload) - - # check the payload updating the user that was followed - assert match?( - %{"follower_count" => 1, "following_count" => 1, "id" => ^following_id}, - decoded_payload["following"] - ) - end - - test "hides follower count for :hide_followers and :hide_followers_count" do - user_attrs = [%{hide_followers: true}, %{hide_followers_count: true}] - - Enum.each(user_attrs, fn attrs -> - other_user = insert(:user) - %{id: following_id} = following = insert(:user, attrs) - follower = insert(:user) - - {:ok, _, _, _} = CommonAPI.follow(other_user, following) - {:ok, follower, following, _activity} = CommonAPI.follow(following, follower) - - result = - StreamerView.render( - "follow_relationships_update.json", - %{follower: follower, following: following, state: :test}, - "user:test" - ) - - {:ok, %{"payload" => payload}} = Jason.decode(result) - - {:ok, decoded_payload} = Jason.decode(payload) - - # check the payload updating the user that was followed - assert match?( - %{"follower_count" => 0, "following_count" => 1, "id" => ^following_id}, - decoded_payload["following"] - ) - end) - end - - test "hides follows count for :hide_follows and :hide_follows_count" do - user_attrs = [%{hide_follows: true}, %{hide_follows_count: true}] - - Enum.each(user_attrs, fn attrs -> - other_user = insert(:user) - %{id: following_id} = following = insert(:user, attrs) - follower = insert(:user) - - {:ok, _, _, _} = CommonAPI.follow(other_user, following) - {:ok, follower, following, _activity} = CommonAPI.follow(following, follower) - - result = - StreamerView.render( - "follow_relationships_update.json", - %{follower: follower, following: following, state: :test}, - "user:test" - ) - - {:ok, %{"payload" => payload}} = Jason.decode(result) - - {:ok, decoded_payload} = Jason.decode(payload) - - # check the payload updating the user that was followed - assert match?( - %{"follower_count" => 1, "following_count" => 0, "id" => ^following_id}, - decoded_payload["following"] - ) - end) - end - end -end diff --git a/test/pleroma/web/views/streamer_view_test.exs b/test/pleroma/web/views/streamer_view_test.exs new file mode 100644 index 000000000..b1c5f52ab --- /dev/null +++ b/test/pleroma/web/views/streamer_view_test.exs @@ -0,0 +1,100 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2022 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Web.StreamerViewTest do + use Pleroma.Web.ConnCase, async: true + # import ExUnit.CaptureLog + import Pleroma.Factory + + alias Pleroma.Web.CommonAPI + alias Pleroma.Web.StreamerView + + describe "follow_relationships_update.json" do + test "shows follower/following count normally" do + other_user = insert(:user) + %{id: following_id} = following = insert(:user) + follower = insert(:user) + + {:ok, _, _, _} = CommonAPI.follow(other_user, following) + {:ok, following, follower, _activity} = CommonAPI.follow(following, follower) + + result = + StreamerView.render( + "follow_relationships_update.json", + %{follower: follower, following: following, state: :test}, + "user:test" + ) + + {:ok, %{"payload" => payload}} = Jason.decode(result) + + {:ok, decoded_payload} = Jason.decode(payload) + + # check the payload updating the user that was followed + assert match?( + %{"follower_count" => 1, "following_count" => 1, "id" => ^following_id}, + decoded_payload["following"] + ) + end + + test "hides follower count for :hide_followers and :hide_followers_count" do + user_attrs = [%{hide_followers: true}, %{hide_followers_count: true}] + + Enum.each(user_attrs, fn attrs -> + other_user = insert(:user) + %{id: following_id} = following = insert(:user, attrs) + follower = insert(:user) + + {:ok, _, _, _} = CommonAPI.follow(other_user, following) + {:ok, following, follower, _activity} = CommonAPI.follow(following, follower) + + result = + StreamerView.render( + "follow_relationships_update.json", + %{follower: follower, following: following, state: :test}, + "user:test" + ) + + {:ok, %{"payload" => payload}} = Jason.decode(result) + + {:ok, decoded_payload} = Jason.decode(payload) + + # check the payload updating the user that was followed + assert match?( + %{"follower_count" => 0, "following_count" => 1, "id" => ^following_id}, + decoded_payload["following"] + ) + end) + end + + test "hides follows count for :hide_follows and :hide_follows_count" do + user_attrs = [%{hide_follows: true}, %{hide_follows_count: true}] + + Enum.each(user_attrs, fn attrs -> + other_user = insert(:user) + %{id: following_id} = following = insert(:user, attrs) + follower = insert(:user) + + {:ok, _, _, _} = CommonAPI.follow(other_user, following) + {:ok, following, follower, _activity} = CommonAPI.follow(following, follower) + + result = + StreamerView.render( + "follow_relationships_update.json", + %{follower: follower, following: following, state: :test}, + "user:test" + ) + + {:ok, %{"payload" => payload}} = Jason.decode(result) + + {:ok, decoded_payload} = Jason.decode(payload) + + # check the payload updating the user that was followed + assert match?( + %{"follower_count" => 1, "following_count" => 0, "id" => ^following_id}, + decoded_payload["following"] + ) + end) + end + end +end -- cgit v1.2.3