Mercurial > public > sg101
view weblinks/tests/test_receivers.py @ 953:8647a669edb4
Fix excessive cache usage for forum date/times.
Issue #84. Hitting the cache 30+ times while browsing the forums
to adjust all the dates/times into the user's time zone. Just
hit the user's profile and be done with it. It should be loaded.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 19 May 2015 21:08:45 -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)