2012-08-31 20:11:15 +02:00
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.test import TestCase
|
|
|
|
from django.utils.timezone import utc
|
|
|
|
from django.db.models import Q
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-09-05 22:30:50 +02:00
|
|
|
from zephyr.models import Zephyr, UserProfile, ZephyrClass, Recipient, Subscription, \
|
2012-09-24 20:29:33 +02:00
|
|
|
filter_by_subscriptions, Realm, do_send_zephyr
|
2012-09-27 21:44:54 +02:00
|
|
|
from zephyr.views import get_updates
|
2012-09-06 23:55:04 +02:00
|
|
|
from zephyr.decorator import TornadoAsyncException
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-08-31 20:11:15 +02:00
|
|
|
import datetime
|
2012-09-06 20:53:13 +02:00
|
|
|
import simplejson
|
2012-09-04 22:31:56 +02:00
|
|
|
import subprocess
|
|
|
|
subprocess.call("zephyr/tests/generate-fixtures");
|
2012-09-27 19:58:42 +02:00
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
settings.ZEPHYR_LOG = "/tmp/test-zephyr-log"
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
class AuthedTestCase(TestCase):
|
|
|
|
def login(self, username, password):
|
|
|
|
return self.client.post('/accounts/login/',
|
|
|
|
{'username':username, 'password':password})
|
|
|
|
|
|
|
|
def register(self, username, password):
|
|
|
|
return self.client.post('/accounts/register/',
|
2012-09-11 23:26:04 +02:00
|
|
|
{'full_name':username, 'short_name':username,
|
|
|
|
'email':username + "@humbughq.com",
|
|
|
|
'username':username, 'password':password,
|
|
|
|
'domain':'humbughq.com'})
|
2012-08-31 20:11:15 +02:00
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
def get_userprofile(self, email):
|
2012-09-06 20:43:41 +02:00
|
|
|
"""
|
2012-09-21 00:26:59 +02:00
|
|
|
Given an email address, return the UserProfile object for the
|
|
|
|
User that has that email.
|
2012-09-06 20:43:41 +02:00
|
|
|
"""
|
|
|
|
# Usernames are unique, even across Realms.
|
2012-09-21 00:26:59 +02:00
|
|
|
return UserProfile.objects.get(user=User.objects.get(email=email))
|
2012-09-06 20:43:41 +02:00
|
|
|
|
2012-08-31 20:11:15 +02:00
|
|
|
def send_zephyr(self, sender_name, recipient_name, zephyr_type):
|
2012-09-06 20:43:41 +02:00
|
|
|
sender = self.get_userprofile(sender_name)
|
2012-09-07 20:14:13 +02:00
|
|
|
if zephyr_type == Recipient.PERSONAL:
|
2012-09-06 20:43:41 +02:00
|
|
|
recipient = self.get_userprofile(recipient_name)
|
2012-08-31 20:11:15 +02:00
|
|
|
else:
|
2012-09-05 22:30:50 +02:00
|
|
|
recipient = ZephyrClass.objects.get(name=recipient_name, realm=sender.realm)
|
2012-09-04 22:22:06 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=recipient.id, type=zephyr_type)
|
2012-08-31 20:11:15 +02:00
|
|
|
pub_date = datetime.datetime.utcnow().replace(tzinfo=utc)
|
2012-09-27 19:58:42 +02:00
|
|
|
do_send_zephyr(Zephyr(sender=sender, recipient=recipient, instance="test", pub_date=pub_date),
|
|
|
|
synced_from_mit=True)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
2012-09-05 22:30:50 +02:00
|
|
|
def users_subscribed_to_class(self, class_name, realm_domain):
|
|
|
|
realm = Realm.objects.get(domain=realm_domain)
|
|
|
|
zephyr_class = ZephyrClass.objects.get(name=class_name, realm=realm)
|
2012-09-07 20:14:13 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=zephyr_class.id, type=Recipient.CLASS)
|
2012-09-05 21:55:40 +02:00
|
|
|
subscriptions = Subscription.objects.filter(recipient=recipient)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
2012-09-05 21:55:40 +02:00
|
|
|
return [subscription.userprofile.user for subscription in subscriptions]
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
def zephyr_stream(self, user):
|
|
|
|
return filter_by_subscriptions(Zephyr.objects.all(), user)
|
|
|
|
|
2012-09-06 21:34:38 +02:00
|
|
|
def assert_json_success(self, result):
|
|
|
|
"""
|
|
|
|
Successful POSTs return a 200 and JSON of the form {"result": "success",
|
|
|
|
"msg": ""}.
|
|
|
|
"""
|
|
|
|
self.assertEquals(result.status_code, 200)
|
|
|
|
json = simplejson.loads(result.content)
|
|
|
|
self.assertEquals(json.get("result"), "success")
|
|
|
|
# We have a msg key for consistency with errors, but it typically has an
|
|
|
|
# empty value.
|
|
|
|
self.assertTrue("msg" in json)
|
|
|
|
|
|
|
|
def assert_json_error(self, result, msg):
|
|
|
|
"""
|
|
|
|
Invalid POSTs return a 400 and JSON of the form {"result": "error",
|
|
|
|
"msg": "reason"}.
|
|
|
|
"""
|
|
|
|
self.assertEquals(result.status_code, 400)
|
|
|
|
json = simplejson.loads(result.content)
|
|
|
|
self.assertEquals(json.get("result"), "error")
|
|
|
|
self.assertEquals(json.get("msg"), msg)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
class PublicURLTest(TestCase):
|
|
|
|
"""
|
|
|
|
Account creation URLs are accessible even when not logged in. Authenticated
|
|
|
|
URLs redirect to a page.
|
|
|
|
"""
|
|
|
|
def fetch(self, urls, expected_status):
|
|
|
|
for url in urls:
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertEqual(response.status_code, expected_status,
|
|
|
|
msg="Expected %d, received %d for %s" % (
|
|
|
|
expected_status, response.status_code, url))
|
|
|
|
|
|
|
|
def test_public_urls(self):
|
|
|
|
"""
|
|
|
|
Pages that should return a 200 when not logged in.
|
|
|
|
"""
|
|
|
|
urls = {200: ["/accounts/home/", "/accounts/login/", "/accounts/logout/",
|
|
|
|
"/accounts/register/"],
|
2012-09-21 23:22:15 +02:00
|
|
|
302: ["/", "/zephyr/", "/json/subscriptions/list",
|
2012-10-01 22:02:47 +02:00
|
|
|
"/json/subscriptions/remove", "/json/subscriptions/add"],
|
|
|
|
400: ["/accounts/register/"],
|
2012-08-31 20:11:15 +02:00
|
|
|
}
|
|
|
|
for status_code, url_set in urls.iteritems():
|
|
|
|
self.fetch(url_set, status_code)
|
|
|
|
|
|
|
|
|
|
|
|
class LoginTest(AuthedTestCase):
|
|
|
|
"""
|
|
|
|
Logging in, registration, and logging out.
|
|
|
|
"""
|
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_login(self):
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email='hamlet@humbughq.com')
|
2012-09-10 19:43:11 +02:00
|
|
|
self.assertEqual(self.client.session['_auth_user_id'], user.id)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
def test_login_bad_password(self):
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "wrongpassword")
|
2012-08-31 20:11:15 +02:00
|
|
|
self.assertIsNone(self.client.session.get('_auth_user_id', None))
|
|
|
|
|
|
|
|
def test_register(self):
|
|
|
|
self.register("test", "test")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email='test@humbughq.com')
|
2012-09-10 19:43:11 +02:00
|
|
|
self.assertEqual(self.client.session['_auth_user_id'], user.id)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
def test_logout(self):
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-08-31 20:11:15 +02:00
|
|
|
self.client.post('/accounts/logout/')
|
|
|
|
self.assertIsNone(self.client.session.get('_auth_user_id', None))
|
|
|
|
|
|
|
|
|
|
|
|
class PersonalZephyrsTest(AuthedTestCase):
|
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_auto_subbed_to_personals(self):
|
|
|
|
"""
|
|
|
|
Newly created users are auto-subbed to the ability to receive
|
|
|
|
personals.
|
|
|
|
"""
|
|
|
|
self.register("test", "test")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email='test@humbughq.com')
|
2012-08-31 20:11:15 +02:00
|
|
|
old_zephyrs = self.zephyr_stream(user)
|
2012-09-21 00:26:59 +02:00
|
|
|
self.send_zephyr("test@humbughq.com", "test@humbughq.com", Recipient.PERSONAL)
|
2012-08-31 20:11:15 +02:00
|
|
|
new_zephyrs = self.zephyr_stream(user)
|
|
|
|
self.assertEqual(len(new_zephyrs) - len(old_zephyrs), 1)
|
|
|
|
|
2012-09-10 19:43:11 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=user.id, type=Recipient.PERSONAL)
|
2012-08-31 20:11:15 +02:00
|
|
|
self.assertEqual(new_zephyrs[-1].recipient, recipient)
|
|
|
|
|
|
|
|
def test_personal_to_self(self):
|
|
|
|
"""
|
|
|
|
If you send a personal to yourself, only you see it.
|
|
|
|
"""
|
|
|
|
old_users = list(User.objects.all())
|
|
|
|
self.register("test1", "test1")
|
|
|
|
|
|
|
|
old_zephyrs = []
|
|
|
|
for user in old_users:
|
|
|
|
old_zephyrs.append(len(self.zephyr_stream(user)))
|
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
self.send_zephyr("test1@humbughq.com", "test1@humbughq.com", Recipient.PERSONAL)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
new_zephyrs = []
|
|
|
|
for user in old_users:
|
|
|
|
new_zephyrs.append(len(self.zephyr_stream(user)))
|
|
|
|
|
|
|
|
self.assertEqual(old_zephyrs, new_zephyrs)
|
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email="test1@humbughq.com")
|
2012-09-10 19:43:11 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=user.id, type=Recipient.PERSONAL)
|
2012-08-31 20:11:15 +02:00
|
|
|
self.assertEqual(self.zephyr_stream(user)[-1].recipient, recipient)
|
|
|
|
|
|
|
|
def test_personal(self):
|
|
|
|
"""
|
|
|
|
If you send a personal, only you and the recipient see it.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-08-31 20:11:15 +02:00
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
old_sender = User.objects.filter(email="hamlet@humbughq.com")
|
2012-08-31 20:11:15 +02:00
|
|
|
old_sender_zephyrs = len(self.zephyr_stream(old_sender))
|
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
old_recipient = User.objects.filter(email="othello@humbughq.com")
|
2012-08-31 20:11:15 +02:00
|
|
|
old_recipient_zephyrs = len(self.zephyr_stream(old_recipient))
|
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
other_users = User.objects.filter(~Q(email="hamlet@humbughq.com") & ~Q(email="othello@humbughq.com"))
|
2012-08-31 20:11:15 +02:00
|
|
|
old_other_zephyrs = []
|
|
|
|
for user in other_users:
|
|
|
|
old_other_zephyrs.append(len(self.zephyr_stream(user)))
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
self.send_zephyr("hamlet@humbughq.com", "othello@humbughq.com", Recipient.PERSONAL)
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-08-31 20:11:15 +02:00
|
|
|
# Users outside the conversation don't get the zephyr.
|
|
|
|
new_other_zephyrs = []
|
|
|
|
for user in other_users:
|
|
|
|
new_other_zephyrs.append(len(self.zephyr_stream(user)))
|
|
|
|
|
|
|
|
self.assertEqual(old_other_zephyrs, new_other_zephyrs)
|
|
|
|
|
|
|
|
# The personal zephyr is in the streams of both the sender and receiver.
|
|
|
|
self.assertEqual(len(self.zephyr_stream(old_sender)),
|
|
|
|
old_sender_zephyrs + 1)
|
|
|
|
self.assertEqual(len(self.zephyr_stream(old_recipient)),
|
|
|
|
old_recipient_zephyrs + 1)
|
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
sender = User.objects.get(email="hamlet@humbughq.com")
|
|
|
|
receiver = User.objects.get(email="othello@humbughq.com")
|
2012-09-10 19:43:11 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=receiver.id, type=Recipient.PERSONAL)
|
2012-08-31 20:11:15 +02:00
|
|
|
self.assertEqual(self.zephyr_stream(sender)[-1].recipient, recipient)
|
|
|
|
self.assertEqual(self.zephyr_stream(receiver)[-1].recipient, recipient)
|
|
|
|
|
|
|
|
def test_personal_to_nonexistent_person(self):
|
2012-08-28 18:44:51 +02:00
|
|
|
"""
|
|
|
|
"""
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
class ClassZephyrsTest(AuthedTestCase):
|
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_zephyr_to_class(self):
|
|
|
|
"""
|
|
|
|
If you send a zephyr to a class, everyone subscribed to the class
|
|
|
|
receives the zephyr.
|
|
|
|
"""
|
2012-09-05 22:30:50 +02:00
|
|
|
subscribers = self.users_subscribed_to_class("Scotland", "humbughq.com")
|
2012-08-31 20:11:15 +02:00
|
|
|
old_subscriber_zephyrs = []
|
|
|
|
for subscriber in subscribers:
|
|
|
|
old_subscriber_zephyrs.append(len(self.zephyr_stream(subscriber)))
|
|
|
|
|
|
|
|
non_subscribers = [user for user in User.objects.all() if user not in subscribers]
|
|
|
|
old_non_subscriber_zephyrs = []
|
|
|
|
for non_subscriber in non_subscribers:
|
|
|
|
old_non_subscriber_zephyrs.append(len(self.zephyr_stream(non_subscriber)))
|
|
|
|
|
|
|
|
a_subscriber = subscribers[0].username
|
2012-09-21 00:26:59 +02:00
|
|
|
a_subscriber_email = subscribers[0].email
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login(a_subscriber_email, a_subscriber)
|
2012-09-21 00:26:59 +02:00
|
|
|
self.send_zephyr(a_subscriber_email, "Scotland", Recipient.CLASS)
|
2012-08-31 20:11:15 +02:00
|
|
|
|
|
|
|
new_subscriber_zephyrs = []
|
|
|
|
for subscriber in subscribers:
|
|
|
|
new_subscriber_zephyrs.append(len(self.zephyr_stream(subscriber)))
|
|
|
|
|
|
|
|
new_non_subscriber_zephyrs = []
|
|
|
|
for non_subscriber in non_subscribers:
|
|
|
|
new_non_subscriber_zephyrs.append(len(self.zephyr_stream(non_subscriber)))
|
|
|
|
|
|
|
|
self.assertEqual(old_non_subscriber_zephyrs, new_non_subscriber_zephyrs)
|
|
|
|
self.assertEqual(new_subscriber_zephyrs, [elt + 1 for elt in old_subscriber_zephyrs])
|
2012-09-04 22:31:56 +02:00
|
|
|
|
2012-09-06 20:53:13 +02:00
|
|
|
class PointerTest(AuthedTestCase):
|
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_update_pointer(self):
|
|
|
|
"""
|
|
|
|
Posting a pointer to /update (in the form {"pointer": pointer}) changes
|
|
|
|
the pointer we store for your UserProfile.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
result = self.client.post("/update", {"pointer": 1})
|
2012-09-06 21:34:38 +02:00
|
|
|
self.assert_json_success(result)
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, 1)
|
2012-09-06 20:53:13 +02:00
|
|
|
|
|
|
|
def test_missing_pointer(self):
|
|
|
|
"""
|
|
|
|
Posting json to /update which does not contain a pointer key/value pair
|
|
|
|
returns a 400 and error message.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
result = self.client.post("/update", {"foo": 1})
|
2012-09-06 21:34:38 +02:00
|
|
|
self.assert_json_error(result, "Missing pointer")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
|
|
|
|
def test_invalid_pointer(self):
|
|
|
|
"""
|
|
|
|
Posting json to /update with an invalid pointer returns a 400 and error
|
|
|
|
message.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
result = self.client.post("/update", {"pointer": "foo"})
|
2012-09-06 21:34:38 +02:00
|
|
|
self.assert_json_error(result, "Invalid pointer: must be an integer")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
|
|
|
|
def test_pointer_out_of_range(self):
|
|
|
|
"""
|
|
|
|
Posting json to /update with an out of range (< 0) pointer returns a 400
|
|
|
|
and error message.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 20:53:13 +02:00
|
|
|
result = self.client.post("/update", {"pointer": -2})
|
2012-09-06 21:34:38 +02:00
|
|
|
self.assert_json_error(result, "Invalid pointer value")
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assertEquals(self.get_userprofile("hamlet@humbughq.com").pointer, -1)
|
2012-09-06 21:46:03 +02:00
|
|
|
|
|
|
|
class ZephyrPOSTTest(AuthedTestCase):
|
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_zephyr_to_class(self):
|
|
|
|
"""
|
|
|
|
Zephyring to a class to which you are subscribed is successful.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-06 21:46:03 +02:00
|
|
|
result = self.client.post("/zephyr/", {"type": "class",
|
|
|
|
"class": "Verona",
|
|
|
|
"new_zephyr": "Test message",
|
|
|
|
"instance": "Test instance"})
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
def test_zephyr_to_nonexistent_class(self):
|
|
|
|
"""
|
2012-09-06 22:01:08 +02:00
|
|
|
Zephyring to a nonexistent class creates the class and is successful.
|
2012-09-06 21:46:03 +02:00
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-06 22:01:08 +02:00
|
|
|
self.assertFalse(ZephyrClass.objects.filter(name="nonexistent_class"))
|
2012-09-06 21:46:03 +02:00
|
|
|
result = self.client.post("/zephyr/", {"type": "class",
|
2012-09-06 22:01:08 +02:00
|
|
|
"class": "nonexistent_class",
|
2012-09-06 21:46:03 +02:00
|
|
|
"new_zephyr": "Test message",
|
|
|
|
"instance": "Test instance"})
|
2012-09-06 22:01:08 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
self.assertTrue(ZephyrClass.objects.filter(name="nonexistent_class"))
|
2012-09-06 21:46:03 +02:00
|
|
|
|
|
|
|
def test_personal_zephyr(self):
|
|
|
|
"""
|
|
|
|
Sending a personal zephyr to a valid username is successful.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-06 21:46:03 +02:00
|
|
|
result = self.client.post("/zephyr/", {"type": "personal",
|
|
|
|
"new_zephyr": "Test message",
|
2012-09-21 00:26:59 +02:00
|
|
|
"recipient": "othello@humbughq.com"})
|
2012-09-06 21:46:03 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
def test_personal_zephyr_to_nonexistent_user(self):
|
|
|
|
"""
|
2012-09-21 00:26:59 +02:00
|
|
|
Sending a personal zephyr to an invalid email returns error JSON.
|
2012-09-06 21:46:03 +02:00
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-06 21:46:03 +02:00
|
|
|
result = self.client.post("/zephyr/", {"type": "personal",
|
|
|
|
"new_zephyr": "Test message",
|
|
|
|
"recipient": "nonexistent"})
|
2012-09-21 00:26:59 +02:00
|
|
|
self.assert_json_error(result, "Invalid email")
|
2012-09-06 21:53:26 +02:00
|
|
|
|
|
|
|
def test_invalid_type(self):
|
|
|
|
"""
|
|
|
|
Sending a zephyr of unknown type returns error JSON.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-07 19:24:54 +02:00
|
|
|
result = self.client.post("/zephyr/", {"type": "invalid type",
|
|
|
|
"new_zephyr": "Test message",
|
2012-09-21 00:26:59 +02:00
|
|
|
"recipient": "othello@humbughq.com"})
|
2012-09-06 21:53:26 +02:00
|
|
|
self.assert_json_error(result, "Invalid zephyr type")
|
2012-09-06 23:55:04 +02:00
|
|
|
|
|
|
|
class DummyHandler(object):
|
|
|
|
def __init__(self, callback):
|
|
|
|
self.callback = callback
|
|
|
|
|
|
|
|
def async_callback(self, _):
|
|
|
|
return self.callback
|
|
|
|
|
|
|
|
class POSTRequestMock(object):
|
|
|
|
method = "POST"
|
|
|
|
|
|
|
|
def __init__(self, post_data, user, assert_callback):
|
|
|
|
self.POST = post_data
|
|
|
|
self.user = user
|
|
|
|
self._tornado_handler = DummyHandler(assert_callback)
|
|
|
|
|
2012-09-27 21:44:54 +02:00
|
|
|
class GetUpdatesTest(AuthedTestCase):
|
2012-09-06 23:55:04 +02:00
|
|
|
fixtures = ['zephyrs.json']
|
|
|
|
|
|
|
|
def test_get_updates(self):
|
|
|
|
"""
|
2012-09-27 21:44:54 +02:00
|
|
|
get_updates returns zephyrs with IDs greater than the
|
2012-09-06 23:55:04 +02:00
|
|
|
last_received ID.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email="hamlet@humbughq.com")
|
2012-09-06 23:55:04 +02:00
|
|
|
|
|
|
|
def callback(zephyrs):
|
|
|
|
correct_zephyrs = filter_by_subscriptions(Zephyr.objects.all(), user)
|
|
|
|
for zephyr in zephyrs:
|
|
|
|
self.assertTrue(zephyr in correct_zephyrs)
|
|
|
|
self.assertTrue(zephyr.id > 1)
|
|
|
|
|
|
|
|
request = POSTRequestMock({"last_received": 1}, user, callback)
|
2012-09-27 21:44:54 +02:00
|
|
|
# get_updates returns None, which raises an exception in the
|
2012-09-06 23:55:04 +02:00
|
|
|
# @asynchronous decorator, which raises a TornadoAsyncException. So this
|
|
|
|
# is expected, but should probably change.
|
2012-09-27 21:44:54 +02:00
|
|
|
self.assertRaises(TornadoAsyncException, get_updates, request)
|
2012-09-06 23:55:04 +02:00
|
|
|
|
|
|
|
def test_beyond_last_zephyr(self):
|
|
|
|
"""
|
|
|
|
If your last_received zephyr is greater than the greatest Zephyr ID, you
|
|
|
|
don't get any new zephyrs.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email="hamlet@humbughq.com")
|
2012-09-06 23:55:04 +02:00
|
|
|
last_received = max(zephyr.id for zephyr in Zephyr.objects.all()) + 100
|
|
|
|
zephyrs = []
|
|
|
|
|
|
|
|
def callback(data):
|
|
|
|
# We can't make asserts in this nested function, so save the data
|
|
|
|
# and assert in the parent.
|
|
|
|
zephyrs = data
|
|
|
|
|
|
|
|
request = POSTRequestMock({"last_received": last_received}, user, callback)
|
2012-09-27 21:44:54 +02:00
|
|
|
self.assertRaises(TornadoAsyncException, get_updates, request)
|
2012-09-06 23:55:04 +02:00
|
|
|
self.assertEquals(len(zephyrs), 0)
|
|
|
|
|
|
|
|
def test_missing_last_received(self):
|
|
|
|
"""
|
2012-09-27 21:44:54 +02:00
|
|
|
Calling get_updates without a last_received key/value pair
|
2012-09-06 23:55:04 +02:00
|
|
|
returns a 400 and error message.
|
|
|
|
"""
|
2012-09-21 16:10:36 +02:00
|
|
|
self.login("hamlet@humbughq.com", "hamlet")
|
2012-09-21 00:26:59 +02:00
|
|
|
user = User.objects.get(email="hamlet@humbughq.com")
|
2012-09-06 23:55:04 +02:00
|
|
|
|
|
|
|
def callback(zephyrs):
|
|
|
|
correct_zephyrs = filter_by_subscriptions(Zephyr.objects.all(), user)
|
|
|
|
for zephyr in zephyrs:
|
|
|
|
self.assertTrue(zephyr in correct_zephyrs)
|
|
|
|
self.assertTrue(zephyr.id > 1)
|
|
|
|
|
|
|
|
request = POSTRequestMock({}, user, callback)
|
2012-09-27 21:44:54 +02:00
|
|
|
self.assert_json_error(get_updates(request), "Missing last_received argument")
|