view weblinks/tests/test_receivers.py @ 1201:fe10aea76cbd tip

Add 2023 MP3 compilation links
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Mar 2024 14:50:23 -0500
parents 89e2d00d653c
children
line wrap: on
line source
"""Tests for the weblink app signal handlers."""

from django.contrib.auth.models import User
from django.test import TestCase

import custom_search.receivers

from weblinks.models import Category
from weblinks.models import Link


class ReceiverTestCase(TestCase):

    fixtures = ['weblinks_categories.json']

    def setUp(self):
        self.user = User.objects.create_user('user', 'user@example.com', 'pw')

        # Don't let our custom search signal handler class catch any of the
        # signals we are throwing here.
        custom_search.receivers.signal_processor.teardown()

    def tearDown(self):
        custom_search.receivers.signal_processor.setup()

    def test_signal_handlers(self):

        category = Category.objects.get(pk=1)
        link = Link(category=category,
                    title='Title',
                    url='http://example.com/',
                    description='Cool stuff',
                    is_public=True,
                    user=self.user)
        link.save()

        category = Category.objects.get(pk=1)
        self.assertEqual(1, category.count)

        category2 = Category.objects.get(pk=4)
        link.category = category2
        link.save()

        category = Category.objects.get(pk=1)
        self.assertEqual(0, category.count)
        category2 = Category.objects.get(pk=4)
        self.assertEqual(1, category2.count)

        link.delete()
        category2 = Category.objects.get(pk=4)
        self.assertEqual(0, category2.count)