2021-11-17 17:47:24 +00:00
|
|
|
""" testing lists_stream """
|
2021-11-17 17:10:28 +00:00
|
|
|
from unittest.mock import patch
|
|
|
|
from django.test import TestCase
|
2021-11-17 17:47:24 +00:00
|
|
|
from bookwyrm import lists_stream, models
|
2021-11-17 17:10:28 +00:00
|
|
|
|
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
@patch("bookwyrm.activitystreams.populate_stream_task.delay")
|
|
|
|
@patch("bookwyrm.activitystreams.remove_user_statuses_task.delay")
|
|
|
|
@patch("bookwyrm.activitystreams.add_user_statuses_task.delay")
|
2021-11-17 17:10:28 +00:00
|
|
|
class Activitystreams(TestCase):
|
|
|
|
"""using redis to build activity streams"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
"""use a test csv"""
|
|
|
|
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
|
|
|
|
"bookwyrm.activitystreams.populate_stream_task.delay"
|
2021-12-10 03:14:10 +00:00
|
|
|
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
|
2021-11-17 17:10:28 +00:00
|
|
|
self.local_user = models.User.objects.create_user(
|
|
|
|
"mouse", "mouse@mouse.mouse", "password", local=True, localname="mouse"
|
|
|
|
)
|
|
|
|
self.another_user = models.User.objects.create_user(
|
|
|
|
"nutria",
|
|
|
|
"nutria@nutria.nutria",
|
|
|
|
"password",
|
|
|
|
local=True,
|
|
|
|
localname="nutria",
|
|
|
|
)
|
|
|
|
with patch("bookwyrm.models.user.set_remote_server.delay"):
|
|
|
|
self.remote_user = models.User.objects.create_user(
|
|
|
|
"rat",
|
|
|
|
"rat@rat.com",
|
|
|
|
"ratword",
|
|
|
|
local=False,
|
|
|
|
remote_id="https://example.com/users/rat",
|
|
|
|
inbox="https://example.com/users/rat/inbox",
|
|
|
|
outbox="https://example.com/users/rat/outbox",
|
|
|
|
)
|
2021-12-14 17:31:57 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
|
|
|
self.list = models.List.objects.create(
|
|
|
|
user=self.local_user, name="hi", privacy="public"
|
|
|
|
)
|
2021-11-17 17:47:24 +00:00
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
def test_populate_lists_task(self, *_):
|
2021-11-17 17:47:24 +00:00
|
|
|
"""populate lists cache"""
|
2022-01-06 20:10:36 +00:00
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.populate_lists") as mock:
|
2021-11-17 17:47:24 +00:00
|
|
|
lists_stream.populate_lists_task(self.local_user.id)
|
2021-11-17 17:10:28 +00:00
|
|
|
self.assertTrue(mock.called)
|
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
|
2022-01-06 20:10:36 +00:00
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.populate_lists") as mock:
|
2021-11-17 17:47:24 +00:00
|
|
|
lists_stream.populate_lists_task(self.local_user.id)
|
2021-11-17 17:10:28 +00:00
|
|
|
self.assertTrue(mock.called)
|
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
def test_remove_list_task(self, *_):
|
2021-11-17 17:47:24 +00:00
|
|
|
"""remove a list from all streams"""
|
2021-11-17 17:10:28 +00:00
|
|
|
with patch(
|
2021-11-17 17:47:24 +00:00
|
|
|
"bookwyrm.lists_stream.ListsStream.remove_object_from_related_stores"
|
2021-11-17 17:10:28 +00:00
|
|
|
) as mock:
|
2021-11-17 17:47:24 +00:00
|
|
|
lists_stream.remove_list_task(self.list.id)
|
|
|
|
self.assertEqual(mock.call_count, 1)
|
2021-11-17 17:10:28 +00:00
|
|
|
args = mock.call_args[0]
|
2022-01-07 21:40:20 +00:00
|
|
|
self.assertEqual(args[0], self.list.id)
|
2021-11-17 17:10:28 +00:00
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
def test_add_list_task(self, *_):
|
2021-11-17 17:47:24 +00:00
|
|
|
"""add a list to all streams"""
|
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.add_list") as mock:
|
|
|
|
lists_stream.add_list_task(self.list.id)
|
|
|
|
self.assertEqual(mock.call_count, 1)
|
2021-11-17 17:10:28 +00:00
|
|
|
args = mock.call_args[0]
|
2021-11-17 17:47:24 +00:00
|
|
|
self.assertEqual(args[0], self.list)
|
2021-11-17 17:10:28 +00:00
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
def test_remove_user_lists_task(self, *_):
|
2021-11-17 17:47:24 +00:00
|
|
|
"""remove all lists by a user from another users' feeds"""
|
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.remove_user_lists") as mock:
|
|
|
|
lists_stream.remove_user_lists_task(
|
2021-11-17 17:10:28 +00:00
|
|
|
self.local_user.id, self.another_user.id
|
|
|
|
)
|
2021-11-17 17:47:24 +00:00
|
|
|
self.assertEqual(mock.call_count, 1)
|
2021-11-17 17:10:28 +00:00
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
self.assertEqual(args[1], self.another_user)
|
|
|
|
|
2021-11-17 17:47:24 +00:00
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.remove_user_lists") as mock:
|
|
|
|
lists_stream.remove_user_lists_task(
|
|
|
|
self.local_user.id, self.another_user.id
|
2021-11-17 17:10:28 +00:00
|
|
|
)
|
|
|
|
self.assertEqual(mock.call_count, 1)
|
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
self.assertEqual(args[1], self.another_user)
|
|
|
|
|
2021-12-14 17:31:57 +00:00
|
|
|
def test_add_user_lists_task(self, *_):
|
2021-11-17 17:47:24 +00:00
|
|
|
"""add a user's lists to another users feeds"""
|
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.add_user_lists") as mock:
|
|
|
|
lists_stream.add_user_lists_task(self.local_user.id, self.another_user.id)
|
|
|
|
self.assertEqual(mock.call_count, 1)
|
2021-11-17 17:10:28 +00:00
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
self.assertEqual(args[1], self.another_user)
|
|
|
|
|
2021-11-17 17:47:24 +00:00
|
|
|
with patch("bookwyrm.lists_stream.ListsStream.add_user_lists") as mock:
|
|
|
|
lists_stream.add_user_lists_task(self.local_user.id, self.another_user.id)
|
2021-11-17 17:10:28 +00:00
|
|
|
self.assertEqual(mock.call_count, 1)
|
|
|
|
args = mock.call_args[0]
|
|
|
|
self.assertEqual(args[0], self.local_user)
|
|
|
|
self.assertEqual(args[1], self.another_user)
|