|
|
@ -1,13 +1,16 @@ |
|
|
|
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_token_works(self): |
|
|
|
self.profile.next_report_date = now() |
|
|
|
self.profile.nag_period = td(hours=1) |
|
|
|
self.profile.next_nag_date = now() |
|
|
|
self.profile.save() |
|
|
|
|
|
|
|
token = signing.Signer().sign("foo") |
|
|
@ -17,7 +20,10 @@ class UnsubscribeReportsTestCase(BaseTestCase): |
|
|
|
|
|
|
|
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_token_gets_rejected(self): |
|
|
|
url = "/accounts/unsubscribe_reports/alice/?token=invalid" |
|
|
|