diff options
author | eugenijm <eugenijm@protonmail.com> | 2020-01-09 22:18:55 +0300 |
---|---|---|
committer | eugenijm <eugenijm@protonmail.com> | 2020-02-24 21:46:37 +0300 |
commit | 7ad5c51f23102e89c491a2ef731e108873a09d71 (patch) | |
tree | edfad3b8ea92b2037ef737a97acaa87d2ee00a34 /test/tasks/refresh_counter_cache_test.exs | |
parent | d240ce41b55a557366746fb7e313d3810bd8fe16 (diff) | |
download | pleroma-7ad5c51f23102e89c491a2ef731e108873a09d71.tar.gz pleroma-7ad5c51f23102e89c491a2ef731e108873a09d71.zip |
Admin API: `GET /api/pleroma/admin/stats` to get status count by visibility scope
Diffstat (limited to 'test/tasks/refresh_counter_cache_test.exs')
-rw-r--r-- | test/tasks/refresh_counter_cache_test.exs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/tasks/refresh_counter_cache_test.exs b/test/tasks/refresh_counter_cache_test.exs new file mode 100644 index 000000000..47367af94 --- /dev/null +++ b/test/tasks/refresh_counter_cache_test.exs @@ -0,0 +1,43 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Mix.Tasks.Pleroma.RefreshCounterCacheTest do + use Pleroma.DataCase + alias Pleroma.Web.CommonAPI + import ExUnit.CaptureIO, only: [capture_io: 1] + import Pleroma.Factory + + test "counts statuses" do + user = insert(:user) + other_user = insert(:user) + + CommonAPI.post(user, %{"visibility" => "public", "status" => "hey"}) + + Enum.each(0..1, fn _ -> + CommonAPI.post(user, %{ + "visibility" => "unlisted", + "status" => "hey" + }) + end) + + Enum.each(0..2, fn _ -> + CommonAPI.post(user, %{ + "visibility" => "direct", + "status" => "hey @#{other_user.nickname}" + }) + end) + + Enum.each(0..3, fn _ -> + CommonAPI.post(user, %{ + "visibility" => "private", + "status" => "hey" + }) + end) + + assert capture_io(fn -> Mix.Tasks.Pleroma.RefreshCounterCache.run([]) end) =~ "Done\n" + + assert %{direct: 3, private: 4, public: 1, unlisted: 2} = + Pleroma.Stats.get_status_visibility_count() + end +end |