2021-03-08 16:49:10 +00:00
|
|
|
""" test for app action functionality """
|
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
|
|
|
|
|
|
|
|
|
|
|
|
class NotificationViews(TestCase):
|
2021-03-08 16:49:10 +00:00
|
|
|
""" notifications """
|
|
|
|
|
2021-01-12 19:07:29 +00:00
|
|
|
def setUp(self):
|
2021-03-08 16:49:10 +00:00
|
|
|
""" we need basic test data and mocks """
|
2021-01-12 19:07:29 +00:00
|
|
|
self.factory = RequestFactory()
|
|
|
|
self.local_user = models.User.objects.create_user(
|
2021-03-08 16:49:10 +00:00
|
|
|
"mouse@local.com",
|
|
|
|
"mouse@mouse.mouse",
|
|
|
|
"password",
|
|
|
|
local=True,
|
|
|
|
localname="mouse",
|
|
|
|
)
|
2021-01-30 20:16:57 +00:00
|
|
|
models.SiteSettings.objects.create()
|
2021-01-12 19:07:29 +00:00
|
|
|
|
|
|
|
def test_notifications_page(self):
|
2021-03-08 16:49:10 +00:00
|
|
|
""" there are so many views, this just makes sure it LOADS """
|
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-01-30 20:16:57 +00:00
|
|
|
result.render()
|
2021-01-12 19:07:29 +00:00
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
|
|
|
|
def test_clear_notifications(self):
|
2021-03-08 16:49:10 +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)
|