29
31
from lp.answers.tests.test_question_notifications import pop_questionemailjobs
30
32
from lp.bugs.interfaces.bugtask import (
36
from lp.bugs.mail.bugnotificationrecipients import BugNotificationRecipients
34
37
from lp.bugs.model.bugnotification import (
36
39
BugNotificationFilter,
37
40
BugNotificationSet,
39
42
from lp.bugs.model.bugsubscriptionfilter import BugSubscriptionFilterMute
43
from lp.services.messages.interfaces.message import IMessageSet
40
44
from lp.testing import (
41
45
TestCaseWithFactory,
134
138
# Ensure that notifications are sent to subscribers of a
135
139
# question linked to the expired bug.
136
140
bugtask = self.bug.default_bugtask
137
bugtask_before_modification = Snapshot(
138
bugtask, providing=IUpstreamBugTask)
141
bugtask_before_modification = Snapshot(bugtask, providing=IBugTask)
139
142
bugtask.transitionToStatus(BugTaskStatus.EXPIRED, self.product.owner)
140
143
bug_modified = ObjectModifiedEvent(
141
144
bugtask, bugtask_before_modification, ["status"])
642
645
{team.teamowner: [notification.recipients[0]],
643
646
team: [notification.recipients[1]]},
650
class TestGetDeferredNotifications(TestCaseWithFactory):
651
"""Test the getDeferredNotifications method."""
653
layer = DatabaseFunctionalLayer
656
super(TestGetDeferredNotifications, self).setUp()
657
self.bns = BugNotificationSet()
659
def test_no_deferred_notifications(self):
660
results = self.bns.getDeferredNotifications()
661
self.assertEqual(0, results.count())
663
def _make_deferred_notification(self):
664
bug = self.factory.makeBug()
665
empty_recipients = BugNotificationRecipients()
666
message = getUtility(IMessageSet).fromText(
667
'subject', 'a comment.', bug.owner,
668
datecreated=datetime.now(pytz.UTC))
669
self.bns.addNotification(
670
bug, False, message, empty_recipients, None, deferred=True)
672
def test_one_deferred_notification(self):
673
self._make_deferred_notification()
674
results = self.bns.getDeferredNotifications()
675
self.assertEqual(1, results.count())
677
def test_many_deferred_notification(self):
679
for i in xrange(num):
680
self._make_deferred_notification()
681
results = self.bns.getDeferredNotifications()
682
self.assertEqual(num, results.count())
684
def test_destroy_notifications(self):
685
self._make_deferred_notification()
686
results = self.bns.getDeferredNotifications()
687
self.assertEqual(1, results.count())
688
notification = results[0]
689
notification.destroySelf()
690
results = self.bns.getDeferredNotifications()
691
self.assertEqual(0, results.count())