from datetime import timedelta as td
|
|
|
|
from django.core import signing
|
|
from django.utils.timezone import now
|
|
from hc.test import BaseTestCase
|
|
|
|
|
|
class UnsubscribeReportsTestCase(BaseTestCase):
|
|
def test_it_unsubscribes(self):
|
|
self.profile.next_report_date = now()
|
|
self.profile.nag_period = td(hours=1)
|
|
self.profile.next_nag_date = now()
|
|
self.profile.save()
|
|
|
|
sig = signing.TimestampSigner(salt="reports").sign("alice")
|
|
url = "/accounts/unsubscribe_reports/%s/" % sig
|
|
|
|
r = self.client.get(url)
|
|
self.assertContains(r, "Unsubscribed")
|
|
|
|
self.profile.refresh_from_db()
|
|
self.assertFalse(self.profile.reports_allowed)
|
|
self.assertIsNone(self.profile.next_report_date)
|
|
|
|
self.assertEqual(self.profile.nag_period.total_seconds(), 0)
|
|
self.assertIsNone(self.profile.next_nag_date)
|
|
|
|
def test_bad_signature_gets_rejected(self):
|
|
url = "/accounts/unsubscribe_reports/invalid/"
|
|
r = self.client.get(url)
|
|
self.assertContains(r, "Incorrect Link")
|
|
|
|
def test_post_works(self):
|
|
sig = signing.TimestampSigner(salt="reports").sign("alice")
|
|
url = "/accounts/unsubscribe_reports/%s/" % sig
|
|
|
|
r = self.client.post(url)
|
|
self.assertContains(r, "Unsubscribed")
|
|
|
|
def test_it_serves_confirmation_form(self):
|
|
sig = signing.TimestampSigner(salt="reports").sign("alice")
|
|
url = "/accounts/unsubscribe_reports/%s/?ask=1" % sig
|
|
|
|
r = self.client.get(url)
|
|
self.assertContains(r, "Please press the button below")
|