diff options
author | lain <lain@soykaf.club> | 2019-05-17 11:33:04 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-17 11:33:04 +0200 |
commit | 67af50ec713d46e6e1d72605b985858cc15aad3c (patch) | |
tree | 044e9f4235fbcbe7985ea36a98558bac05b0ae42 /test/tasks/database_test.exs | |
parent | e39c190f046bb345e80a2195278bb59ac81b8002 (diff) | |
parent | 3e5301ad5cf3d9805c0dc9ea8440992de160330b (diff) | |
download | pleroma-67af50ec713d46e6e1d72605b985858cc15aad3c.tar.gz pleroma-67af50ec713d46e6e1d72605b985858cc15aad3c.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ecto_sql_update
Diffstat (limited to 'test/tasks/database_test.exs')
-rw-r--r-- | test/tasks/database_test.exs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/test/tasks/database_test.exs b/test/tasks/database_test.exs new file mode 100644 index 000000000..579130b05 --- /dev/null +++ b/test/tasks/database_test.exs @@ -0,0 +1,49 @@ +# 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.DatabaseTest do + alias Pleroma.Repo + alias Pleroma.User + use Pleroma.DataCase + + import Pleroma.Factory + + setup_all do + Mix.shell(Mix.Shell.Process) + + on_exit(fn -> + Mix.shell(Mix.Shell.IO) + end) + + :ok + end + + describe "running update_users_following_followers_counts" do + test "following and followers count are updated" do + [user, user2] = insert_pair(:user) + {:ok, %User{following: following, info: info} = user} = User.follow(user, user2) + + assert length(following) == 2 + assert info.follower_count == 0 + + info_cng = Ecto.Changeset.change(info, %{follower_count: 3}) + + {:ok, user} = + user + |> Ecto.Changeset.change(%{following: following ++ following}) + |> Ecto.Changeset.put_embed(:info, info_cng) + |> Repo.update() + + assert length(user.following) == 4 + assert user.info.follower_count == 3 + + assert :ok == Mix.Tasks.Pleroma.Database.run(["update_users_following_followers_counts"]) + + user = User.get_by_id(user.id) + + assert length(user.following) == 2 + assert user.info.follower_count == 0 + end + end +end |