2021-03-08 16:49:10 +00:00
|
|
|
""" test for app action functionality """
|
2021-08-03 17:25:53 +00:00
|
|
|
from unittest.mock import patch
|
2021-01-12 19:07:29 +00:00
|
|
|
from django.template.response import TemplateResponse
|
|
|
|
from django.test import TestCase
|
|
|
|
from django.test.client import RequestFactory
|
|
|
|
|
|
|
|
from bookwyrm import models
|
|
|
|
from bookwyrm import views
|
2021-10-02 17:37:59 +00:00
|
|
|
from bookwyrm.tests.validate_html import validate_html
|
2021-01-12 19:07:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NotificationViews(TestCase):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""notifications"""
|
2021-03-08 16:49:10 +00:00
|
|
|
|
2021-01-12 19:07:29 +00:00
|
|
|
def setUp(self):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""we need basic test data and mocks"""
|
2021-01-12 19:07:29 +00:00
|
|
|
self.factory = RequestFactory()
|
2021-09-06 21:48:45 +00:00
|
|
|
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
|
|
|
|
"bookwyrm.activitystreams.populate_stream_task.delay"
|
2021-12-09 23:03:01 +00:00
|
|
|
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
|
2021-08-03 17:25:53 +00:00
|
|
|
self.local_user = models.User.objects.create_user(
|
|
|
|
"mouse@local.com",
|
|
|
|
"mouse@mouse.mouse",
|
|
|
|
"password",
|
|
|
|
local=True,
|
|
|
|
localname="mouse",
|
|
|
|
)
|
2021-11-12 17:17:00 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
2021-10-02 17:37:59 +00:00
|
|
|
self.status = models.Status.objects.create(
|
|
|
|
content="hi",
|
|
|
|
user=self.local_user,
|
|
|
|
)
|
2021-08-02 23:05:40 +00:00
|
|
|
models.SiteSettings.objects.create()
|
2021-01-12 19:07:29 +00:00
|
|
|
|
2021-10-02 17:37:59 +00:00
|
|
|
def test_notifications_page_empty(self):
|
|
|
|
"""there are so many views, this just makes sure it LOADS"""
|
|
|
|
view = views.Notifications.as_view()
|
|
|
|
request = self.factory.get("")
|
|
|
|
request.user = self.local_user
|
|
|
|
result = view(request)
|
|
|
|
self.assertIsInstance(result, TemplateResponse)
|
|
|
|
validate_html(result.render())
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
|
|
|
|
def test_notifications_page_notifications(self):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""there are so many views, this just makes sure it LOADS"""
|
2021-10-02 17:37:59 +00:00
|
|
|
models.Notification.objects.create(
|
|
|
|
user=self.local_user,
|
|
|
|
notification_type="FAVORITE",
|
|
|
|
related_status=self.status,
|
|
|
|
)
|
|
|
|
models.Notification.objects.create(
|
|
|
|
user=self.local_user,
|
|
|
|
notification_type="BOOST",
|
|
|
|
related_status=self.status,
|
|
|
|
)
|
|
|
|
models.Notification.objects.create(
|
|
|
|
user=self.local_user,
|
|
|
|
notification_type="MENTION",
|
|
|
|
related_status=self.status,
|
|
|
|
)
|
|
|
|
self.status.reply_parent = self.status
|
|
|
|
self.status.save(broadcast=False)
|
|
|
|
models.Notification.objects.create(
|
|
|
|
user=self.local_user,
|
|
|
|
notification_type="REPLY",
|
|
|
|
related_status=self.status,
|
|
|
|
)
|
2021-01-12 19:07:29 +00:00
|
|
|
view = views.Notifications.as_view()
|
2021-03-08 16:49:10 +00:00
|
|
|
request = self.factory.get("")
|
2021-01-12 19:07:29 +00:00
|
|
|
request.user = self.local_user
|
|
|
|
result = view(request)
|
|
|
|
self.assertIsInstance(result, TemplateResponse)
|
2021-10-02 17:37:59 +00:00
|
|
|
validate_html(result.render())
|
2021-01-12 19:07:29 +00:00
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
|
|
|
|
def test_clear_notifications(self):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""erase notifications"""
|
2021-01-12 19:07:29 +00:00
|
|
|
models.Notification.objects.create(
|
2021-03-08 16:49:10 +00:00
|
|
|
user=self.local_user, notification_type="FAVORITE"
|
|
|
|
)
|
2021-01-12 19:07:29 +00:00
|
|
|
models.Notification.objects.create(
|
2021-03-08 16:49:10 +00:00
|
|
|
user=self.local_user, notification_type="MENTION", read=True
|
|
|
|
)
|
2021-01-12 19:07:29 +00:00
|
|
|
self.assertEqual(models.Notification.objects.count(), 2)
|
|
|
|
view = views.Notifications.as_view()
|
2021-03-08 16:49:10 +00:00
|
|
|
request = self.factory.post("")
|
2021-01-12 19:07:29 +00:00
|
|
|
request.user = self.local_user
|
|
|
|
result = view(request)
|
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(models.Notification.objects.count(), 1)
|