2013-03-20 22:08:48 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
2015-11-01 17:11:06 +01:00
|
|
|
from __future__ import print_function
|
2013-03-20 22:08:48 +01:00
|
|
|
|
2016-07-30 06:16:35 +02:00
|
|
|
from typing import Any, Callable, Dict, Iterable, List, Mapping, Tuple, TypeVar
|
2016-06-22 10:36:22 +02:00
|
|
|
from mock import patch, MagicMock
|
2016-06-15 23:47:22 +02:00
|
|
|
|
|
|
|
from django.http import HttpResponse
|
2016-08-24 07:53:05 +02:00
|
|
|
from django.test import TestCase, override_settings
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2014-01-27 22:53:36 +01:00
|
|
|
from zerver.lib.test_helpers import (
|
2016-07-15 10:14:51 +02:00
|
|
|
queries_captured, simulated_empty_cache,
|
2016-08-23 02:08:42 +02:00
|
|
|
simulated_queue_client, tornado_redirected_to_list, ZulipTestCase,
|
2014-01-31 23:23:39 +01:00
|
|
|
most_recent_usermessage, most_recent_message,
|
2014-01-27 22:53:36 +01:00
|
|
|
)
|
2016-07-16 03:56:45 +02:00
|
|
|
from zerver.lib.test_runner import slow
|
2014-01-27 22:53:36 +01:00
|
|
|
|
2014-01-31 23:13:58 +01:00
|
|
|
from zerver.models import UserProfile, Recipient, \
|
2014-01-31 21:08:40 +01:00
|
|
|
Realm, Client, UserActivity, \
|
2014-01-31 16:44:45 +01:00
|
|
|
get_user_profile_by_email, split_email_to_domain, get_realm, \
|
2015-10-15 16:13:52 +02:00
|
|
|
get_client, get_stream, Message, get_unique_open_realm, \
|
|
|
|
completely_open
|
2014-02-07 22:47:30 +01:00
|
|
|
|
2014-07-18 06:16:14 +02:00
|
|
|
from zerver.lib.avatar import get_avatar_url
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.initial_password import initial_password
|
2016-06-22 10:36:22 +02:00
|
|
|
from zerver.lib.email_mirror import create_missed_message_address
|
2014-01-31 16:44:45 +01:00
|
|
|
from zerver.lib.actions import \
|
2014-01-29 22:07:09 +01:00
|
|
|
get_emails_from_user_ids, do_deactivate_user, do_reactivate_user, \
|
2014-02-14 19:29:42 +01:00
|
|
|
do_change_is_admin, extract_recipients, \
|
2015-10-13 22:47:21 +02:00
|
|
|
do_set_realm_name, do_deactivate_realm, \
|
2014-02-11 18:43:30 +01:00
|
|
|
do_add_subscription, do_remove_subscription, do_make_stream_private
|
2013-09-03 22:41:17 +02:00
|
|
|
from zerver.lib.alert_words import alert_words_in_realm, user_alert_words, \
|
|
|
|
add_user_alert_words, remove_user_alert_words
|
2014-07-15 21:03:51 +02:00
|
|
|
from zerver.lib.notifications import handle_missedmessage_emails
|
2015-08-19 20:53:55 +02:00
|
|
|
from zerver.lib.session_user import get_session_dict_user
|
2013-12-26 15:01:46 +01:00
|
|
|
from zerver.middleware import is_slow_query
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2013-10-17 17:48:19 +02:00
|
|
|
from zerver.worker import queue_processors
|
|
|
|
|
2012-09-27 19:58:42 +02:00
|
|
|
from django.conf import settings
|
2014-07-15 21:03:51 +02:00
|
|
|
from django.core import mail
|
2016-06-15 23:47:22 +02:00
|
|
|
from six import text_type
|
2016-06-22 10:36:22 +02:00
|
|
|
from six.moves import range
|
2013-09-20 18:36:40 +02:00
|
|
|
import datetime
|
2013-06-19 20:08:48 +02:00
|
|
|
import os
|
2014-07-15 21:03:51 +02:00
|
|
|
import re
|
2013-01-10 19:41:49 +01:00
|
|
|
import sys
|
2013-06-20 18:47:19 +02:00
|
|
|
import time
|
2013-06-18 23:55:55 +02:00
|
|
|
import ujson
|
2016-07-13 19:05:41 +02:00
|
|
|
import random
|
2013-03-14 22:12:25 +01:00
|
|
|
|
2013-02-12 21:04:30 +01:00
|
|
|
def bail(msg):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (str) -> None
|
2015-11-01 17:11:06 +01:00
|
|
|
print('\nERROR: %s\n' % (msg,))
|
2013-02-12 21:04:30 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
2013-01-10 19:41:49 +01:00
|
|
|
try:
|
|
|
|
settings.TEST_SUITE
|
|
|
|
except:
|
2013-08-06 22:51:47 +02:00
|
|
|
bail('Test suite only runs correctly with --settings=zproject.test_settings')
|
2013-02-12 21:04:30 +01:00
|
|
|
|
2013-03-28 16:27:24 +01:00
|
|
|
# Even though we don't use pygments directly in this file, we need
|
|
|
|
# this import.
|
2013-02-12 21:04:30 +01:00
|
|
|
try:
|
|
|
|
import pygments
|
|
|
|
except ImportError:
|
|
|
|
bail('The Pygments library is required to run the backend test suite.')
|
2012-09-27 19:58:42 +02:00
|
|
|
|
2016-06-15 23:47:22 +02:00
|
|
|
K = TypeVar('K')
|
|
|
|
V = TypeVar('V')
|
2014-01-14 20:38:45 +01:00
|
|
|
def find_dict(lst, k, v):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (Iterable[Dict[K, V]], K, V) -> Dict[K, V]
|
2014-01-14 20:38:45 +01:00
|
|
|
for dct in lst:
|
|
|
|
if dct[k] == v:
|
|
|
|
return dct
|
|
|
|
raise Exception('Cannot find element in list where key %s == %s' % (k, v))
|
|
|
|
|
2016-07-13 18:21:24 +02:00
|
|
|
# same as in test_uploads.py
|
|
|
|
TEST_AVATAR_DIR = os.path.join(os.path.dirname(__file__), 'images')
|
|
|
|
|
2013-12-26 15:01:46 +01:00
|
|
|
class SlowQueryTest(TestCase):
|
|
|
|
def test_is_slow_query(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-12-26 15:16:49 +01:00
|
|
|
self.assertFalse(is_slow_query(1.1, '/some/random/url'))
|
2013-12-26 15:01:46 +01:00
|
|
|
self.assertTrue(is_slow_query(2, '/some/random/url'))
|
2013-12-26 15:23:18 +01:00
|
|
|
self.assertTrue(is_slow_query(5.1, '/activity'))
|
2013-12-26 15:01:46 +01:00
|
|
|
self.assertFalse(is_slow_query(2, '/activity'))
|
|
|
|
self.assertFalse(is_slow_query(2, '/json/report_error'))
|
|
|
|
self.assertFalse(is_slow_query(2, '/api/v1/deployments/report_error'))
|
|
|
|
self.assertFalse(is_slow_query(2, '/realm_activity/whatever'))
|
|
|
|
self.assertFalse(is_slow_query(2, '/user_activity/whatever'))
|
2013-12-26 15:20:59 +01:00
|
|
|
self.assertFalse(is_slow_query(9, '/accounts/webathena_kerberos_login/'))
|
|
|
|
self.assertTrue(is_slow_query(11, '/accounts/webathena_kerberos_login/'))
|
2013-12-26 15:01:46 +01:00
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class RealmTest(ZulipTestCase):
|
2014-01-28 15:11:10 +01:00
|
|
|
def assert_user_profile_cache_gets_new_name(self, email, new_realm_name):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (text_type, text_type) -> None
|
2014-01-28 15:11:10 +01:00
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(user_profile.realm.name, new_realm_name)
|
|
|
|
|
2014-01-28 22:23:31 +01:00
|
|
|
def test_do_set_realm_name_caching(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""The main complicated thing about setting realm names is fighting the
|
|
|
|
cache, and we start by populating the cache for Hamlet, and we end
|
|
|
|
by checking the cache to ensure that the new value is there."""
|
2014-01-28 15:11:10 +01:00
|
|
|
get_user_profile_by_email('hamlet@zulip.com')
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm('zulip.com')
|
2014-01-28 15:11:10 +01:00
|
|
|
new_name = 'Zed You Elle Eye Pea'
|
|
|
|
do_set_realm_name(realm, new_name)
|
2015-10-13 22:47:21 +02:00
|
|
|
self.assertEqual(get_realm(realm.domain).name, new_name)
|
2014-01-28 15:11:10 +01:00
|
|
|
self.assert_user_profile_cache_gets_new_name('hamlet@zulip.com', new_name)
|
|
|
|
|
2014-01-28 22:23:31 +01:00
|
|
|
def test_do_set_realm_name_events(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm('zulip.com')
|
2014-01-28 22:23:31 +01:00
|
|
|
new_name = 'Puliz'
|
2016-06-15 23:47:22 +02:00
|
|
|
events = [] # type: List[Dict[str, Any]]
|
2014-01-28 22:23:31 +01:00
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
do_set_realm_name(realm, new_name)
|
|
|
|
event = events[0]['event']
|
|
|
|
self.assertEqual(event, dict(
|
|
|
|
type = 'realm',
|
|
|
|
op = 'update',
|
|
|
|
property = 'name',
|
|
|
|
value = new_name,
|
|
|
|
))
|
|
|
|
|
2014-01-28 23:22:50 +01:00
|
|
|
def test_realm_name_api(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-01-28 23:22:50 +01:00
|
|
|
new_name = 'Zulip: Worldwide Exporter of APIs'
|
|
|
|
|
|
|
|
email = 'cordelia@zulip.com'
|
|
|
|
self.login(email)
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
do_change_is_admin(user_profile, True)
|
|
|
|
|
|
|
|
req = dict(name=ujson.dumps(new_name))
|
|
|
|
result = self.client_patch('/json/realm', req)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
realm = get_realm('zulip.com')
|
|
|
|
self.assertEqual(realm.name, new_name)
|
|
|
|
|
2014-01-28 23:29:09 +01:00
|
|
|
def test_admin_restrictions_for_changing_realm_name(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-01-28 23:29:09 +01:00
|
|
|
new_name = 'Mice will play while the cat is away'
|
|
|
|
|
|
|
|
email = 'othello@zulip.com'
|
|
|
|
self.login(email)
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
do_change_is_admin(user_profile, False)
|
|
|
|
|
|
|
|
req = dict(name=ujson.dumps(new_name))
|
|
|
|
result = self.client_patch('/json/realm', req)
|
|
|
|
self.assert_json_error(result, 'Must be a realm administrator')
|
|
|
|
|
2014-01-28 17:29:00 +01:00
|
|
|
def test_do_deactivate_realm(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""The main complicated thing about deactivating realm names is
|
|
|
|
updating the cache, and we start by populating the cache for
|
|
|
|
Hamlet, and we end by checking the cache to ensure that his
|
|
|
|
realm appears to be deactivated. You can make this test fail
|
|
|
|
by disabling cache.flush_realm()."""
|
2014-01-28 17:29:00 +01:00
|
|
|
get_user_profile_by_email('hamlet@zulip.com')
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm('zulip.com')
|
2014-01-28 17:29:00 +01:00
|
|
|
do_deactivate_realm(realm)
|
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
self.assertTrue(user.realm.deactivated)
|
|
|
|
|
2016-08-04 17:32:41 +02:00
|
|
|
def test_do_set_realm_default_language(self):
|
|
|
|
# type: () -> None
|
|
|
|
new_lang = "de"
|
|
|
|
realm = get_realm('zulip.com')
|
|
|
|
self.assertNotEqual(realm.default_language, new_lang)
|
|
|
|
# we need an admin user.
|
|
|
|
email = 'iago@zulip.com'
|
|
|
|
self.login(email)
|
|
|
|
|
|
|
|
req = dict(default_language=ujson.dumps(new_lang))
|
|
|
|
result = self.client_patch('/json/realm', req)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
realm = get_realm('zulip.com')
|
|
|
|
self.assertEqual(realm.default_language, new_lang)
|
|
|
|
|
|
|
|
# Test setting zh_CN, we set zh_HANS instead of zh_CN in db
|
|
|
|
chinese = "zh_CN"
|
|
|
|
simplified_chinese = "zh_HANS"
|
|
|
|
req = dict(default_language=ujson.dumps(chinese))
|
|
|
|
result = self.client_patch('/json/realm', req)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
realm = get_realm('zulip.com')
|
|
|
|
self.assertEqual(realm.default_language, simplified_chinese)
|
|
|
|
|
|
|
|
# Test to make sure that when invalid languages are passed
|
|
|
|
# as the default realm language, correct validation error is
|
|
|
|
# raised and the invalid language is not saved in db
|
|
|
|
invalid_lang = "invalid_lang"
|
|
|
|
req = dict(default_language=ujson.dumps(invalid_lang))
|
|
|
|
result = self.client_patch('/json/realm', req)
|
|
|
|
self.assert_json_error(result, "Invalid language '%s'" % (invalid_lang,))
|
|
|
|
realm = get_realm('zulip.com')
|
|
|
|
self.assertNotEqual(realm.default_language, invalid_lang)
|
|
|
|
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class PermissionTest(ZulipTestCase):
|
2013-11-02 15:36:17 +01:00
|
|
|
def test_get_admin_users(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-02 15:36:17 +01:00
|
|
|
user_profile = get_user_profile_by_email('hamlet@zulip.com')
|
2014-01-22 20:12:29 +01:00
|
|
|
do_change_is_admin(user_profile, False)
|
2013-11-02 15:36:17 +01:00
|
|
|
admin_users = user_profile.realm.get_admin_users()
|
|
|
|
self.assertFalse(user_profile in admin_users)
|
2014-01-22 20:12:29 +01:00
|
|
|
do_change_is_admin(user_profile, True)
|
2013-11-02 15:36:17 +01:00
|
|
|
admin_users = user_profile.realm.get_admin_users()
|
|
|
|
self.assertTrue(user_profile in admin_users)
|
2013-09-30 22:52:04 +02:00
|
|
|
|
2016-07-13 05:05:55 +02:00
|
|
|
def test_updating_non_existent_user(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login('hamlet@zulip.com')
|
|
|
|
admin = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
do_change_is_admin(admin, True)
|
|
|
|
|
|
|
|
result = self.client_patch('/json/users/nonexistentuser@zulip.com', {})
|
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
|
2014-01-14 16:19:26 +01:00
|
|
|
def test_admin_api(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-01-14 16:19:26 +01:00
|
|
|
self.login('hamlet@zulip.com')
|
|
|
|
admin = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
user = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
realm = admin.realm
|
2014-01-22 20:12:29 +01:00
|
|
|
do_change_is_admin(admin, True)
|
2014-01-14 20:38:45 +01:00
|
|
|
|
|
|
|
# Make sure we see is_admin flag in /json/users
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users')
|
2014-01-14 20:38:45 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
members = ujson.loads(result.content)['members']
|
|
|
|
hamlet = find_dict(members, 'email', 'hamlet@zulip.com')
|
|
|
|
self.assertTrue(hamlet['is_admin'])
|
|
|
|
othello = find_dict(members, 'email', 'othello@zulip.com')
|
|
|
|
self.assertFalse(othello['is_admin'])
|
2014-01-14 16:19:26 +01:00
|
|
|
|
|
|
|
# Giveth
|
|
|
|
req = dict(is_admin=ujson.dumps(True))
|
2014-01-21 19:27:22 +01:00
|
|
|
|
2016-06-15 23:47:22 +02:00
|
|
|
events = [] # type: List[Dict[str, Any]]
|
2014-01-21 19:27:22 +01:00
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.client_patch('/json/users/othello@zulip.com', req)
|
2014-01-14 16:19:26 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
admin_users = realm.get_admin_users()
|
|
|
|
self.assertTrue(user in admin_users)
|
2014-01-21 19:27:22 +01:00
|
|
|
person = events[0]['event']['person']
|
|
|
|
self.assertEqual(person['email'], 'othello@zulip.com')
|
|
|
|
self.assertEqual(person['is_admin'], True)
|
2014-01-14 16:19:26 +01:00
|
|
|
|
|
|
|
# Taketh away
|
|
|
|
req = dict(is_admin=ujson.dumps(False))
|
2014-01-21 19:27:22 +01:00
|
|
|
events = []
|
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.client_patch('/json/users/othello@zulip.com', req)
|
2014-01-14 16:19:26 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
admin_users = realm.get_admin_users()
|
|
|
|
self.assertFalse(user in admin_users)
|
2014-01-21 19:27:22 +01:00
|
|
|
person = events[0]['event']['person']
|
|
|
|
self.assertEqual(person['email'], 'othello@zulip.com')
|
|
|
|
self.assertEqual(person['is_admin'], False)
|
2014-01-14 16:19:26 +01:00
|
|
|
|
|
|
|
# Make sure only admins can patch other user's info.
|
|
|
|
self.login('othello@zulip.com')
|
|
|
|
result = self.client_patch('/json/users/hamlet@zulip.com', req)
|
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class AdminCreateUserTest(ZulipTestCase):
|
2016-07-12 20:46:55 +02:00
|
|
|
def test_create_user_backend(self):
|
|
|
|
# type: () -> None
|
|
|
|
|
|
|
|
# This test should give us complete coverage on
|
|
|
|
# create_user_backend. It mostly exercises error
|
|
|
|
# conditions, and it also does a basic test of the success
|
|
|
|
# path.
|
|
|
|
|
|
|
|
admin_email = 'hamlet@zulip.com'
|
|
|
|
self.login(admin_email)
|
|
|
|
admin = get_user_profile_by_email(admin_email)
|
|
|
|
do_change_is_admin(admin, True)
|
|
|
|
|
2016-08-18 17:15:35 +02:00
|
|
|
result = self.client_put("/json/users", dict())
|
2016-07-12 20:46:55 +02:00
|
|
|
self.assert_json_error(result, "Missing 'email' argument")
|
|
|
|
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", dict(
|
2016-07-12 20:46:55 +02:00
|
|
|
email='romeo@not-zulip.com',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assert_json_error(result, "Missing 'password' argument")
|
|
|
|
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", dict(
|
2016-07-12 20:46:55 +02:00
|
|
|
email='romeo@not-zulip.com',
|
|
|
|
password='xxxx',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assert_json_error(result, "Missing 'full_name' argument")
|
|
|
|
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", dict(
|
2016-07-12 20:46:55 +02:00
|
|
|
email='romeo@not-zulip.com',
|
|
|
|
password='xxxx',
|
|
|
|
full_name='Romeo Montague',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assert_json_error(result, "Missing 'short_name' argument")
|
|
|
|
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", dict(
|
2016-07-12 20:46:55 +02:00
|
|
|
email='broken',
|
|
|
|
password='xxxx',
|
|
|
|
full_name='Romeo Montague',
|
|
|
|
short_name='Romeo',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assert_json_error(result, "Bad name or username")
|
|
|
|
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", dict(
|
2016-07-12 20:46:55 +02:00
|
|
|
email='romeo@not-zulip.com',
|
|
|
|
password='xxxx',
|
|
|
|
full_name='Romeo Montague',
|
|
|
|
short_name='Romeo',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assert_json_error(result,
|
|
|
|
"Email 'romeo@not-zulip.com' does not belong to domain 'zulip.com'")
|
|
|
|
|
|
|
|
# HAPPY PATH STARTS HERE
|
|
|
|
valid_params = dict(
|
|
|
|
email='romeo@zulip.com',
|
|
|
|
password='xxxx',
|
|
|
|
full_name='Romeo Montague',
|
|
|
|
short_name='Romeo',
|
|
|
|
)
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", valid_params)
|
2016-07-12 20:46:55 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
new_user = get_user_profile_by_email('romeo@zulip.com')
|
|
|
|
self.assertEqual(new_user.full_name, 'Romeo Montague')
|
|
|
|
self.assertEqual(new_user.short_name, 'Romeo')
|
|
|
|
|
|
|
|
# One more error condition to test--we can't create
|
|
|
|
# the same user twice.
|
2016-07-20 21:57:47 +02:00
|
|
|
result = self.client_put("/json/users", valid_params)
|
2016-07-12 20:46:55 +02:00
|
|
|
self.assert_json_error(result,
|
|
|
|
"Email 'romeo@zulip.com' already in use")
|
|
|
|
|
2013-10-17 17:48:19 +02:00
|
|
|
class WorkerTest(TestCase):
|
2015-10-14 22:43:04 +02:00
|
|
|
class FakeClient(object):
|
2013-10-17 17:48:19 +02:00
|
|
|
def __init__(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
self.consumers = {} # type: Dict[str, Callable]
|
|
|
|
self.queue = [] # type: List[Tuple[str, Dict[str, Any]]]
|
2013-10-17 17:48:19 +02:00
|
|
|
|
|
|
|
def register_json_consumer(self, queue_name, callback):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (str, Callable) -> None
|
2013-10-17 17:48:19 +02:00
|
|
|
self.consumers[queue_name] = callback
|
|
|
|
|
|
|
|
def start_consuming(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-17 17:48:19 +02:00
|
|
|
for queue_name, data in self.queue:
|
|
|
|
callback = self.consumers[queue_name]
|
2013-10-30 22:03:50 +01:00
|
|
|
callback(data)
|
2013-10-17 17:48:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_UserActivityWorker(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-17 17:48:19 +02:00
|
|
|
fake_client = self.FakeClient()
|
|
|
|
|
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
UserActivity.objects.filter(
|
|
|
|
user_profile = user.id,
|
2013-12-03 20:31:47 +01:00
|
|
|
client = get_client('ios')
|
2013-10-17 17:48:19 +02:00
|
|
|
).delete()
|
|
|
|
|
|
|
|
data = dict(
|
|
|
|
user_profile_id = user.id,
|
2013-12-03 20:31:47 +01:00
|
|
|
client = 'ios',
|
2013-10-17 17:48:19 +02:00
|
|
|
time = time.time(),
|
|
|
|
query = 'send_message'
|
|
|
|
)
|
|
|
|
fake_client.queue.append(('user_activity', data))
|
|
|
|
|
|
|
|
with simulated_queue_client(lambda: fake_client):
|
|
|
|
worker = queue_processors.UserActivityWorker()
|
2015-11-24 07:01:35 +01:00
|
|
|
worker.setup()
|
2013-10-17 17:48:19 +02:00
|
|
|
worker.start()
|
|
|
|
activity_records = UserActivity.objects.filter(
|
|
|
|
user_profile = user.id,
|
2013-12-03 20:31:47 +01:00
|
|
|
client = get_client('ios')
|
2013-10-17 17:48:19 +02:00
|
|
|
)
|
|
|
|
self.assertTrue(len(activity_records), 1)
|
|
|
|
self.assertTrue(activity_records[0].count, 1)
|
|
|
|
|
2013-10-29 20:03:42 +01:00
|
|
|
def test_error_handling(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-29 20:03:42 +01:00
|
|
|
processed = []
|
|
|
|
|
2015-10-22 19:29:24 +02:00
|
|
|
@queue_processors.assign_queue('unreliable_worker')
|
|
|
|
class UnreliableWorker(queue_processors.QueueProcessingWorker):
|
2013-10-30 22:03:50 +01:00
|
|
|
def consume(self, data):
|
2016-07-30 06:16:35 +02:00
|
|
|
# type: (Mapping[str, Any]) -> None
|
|
|
|
if data["type"] == 'unexpected behaviour':
|
2015-10-22 19:29:24 +02:00
|
|
|
raise Exception('Worker task not performing as expected!')
|
2016-07-30 06:16:35 +02:00
|
|
|
processed.append(data["type"])
|
2013-10-29 20:03:42 +01:00
|
|
|
|
|
|
|
def _log_problem(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
|
2013-10-29 20:03:42 +01:00
|
|
|
# keep the tests quiet
|
|
|
|
pass
|
|
|
|
|
|
|
|
fake_client = self.FakeClient()
|
2015-10-22 19:29:24 +02:00
|
|
|
for msg in ['good', 'fine', 'unexpected behaviour', 'back to normal']:
|
2016-07-30 06:16:35 +02:00
|
|
|
fake_client.queue.append(('unreliable_worker', {'type': msg}))
|
2013-10-29 20:03:42 +01:00
|
|
|
|
2015-10-22 19:29:24 +02:00
|
|
|
fn = os.path.join(settings.QUEUE_ERROR_DIR, 'unreliable_worker.errors')
|
2013-10-29 20:03:42 +01:00
|
|
|
try:
|
|
|
|
os.remove(fn)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
with simulated_queue_client(lambda: fake_client):
|
2015-10-22 19:29:24 +02:00
|
|
|
worker = UnreliableWorker()
|
2015-11-24 07:01:35 +01:00
|
|
|
worker.setup()
|
2013-10-29 20:03:42 +01:00
|
|
|
worker.start()
|
|
|
|
|
|
|
|
self.assertEqual(processed, ['good', 'fine', 'back to normal'])
|
|
|
|
line = open(fn).readline().strip()
|
|
|
|
event = ujson.loads(line.split('\t')[1])
|
2016-07-30 06:16:35 +02:00
|
|
|
self.assertEqual(event["type"], 'unexpected behaviour')
|
2013-10-29 20:03:42 +01:00
|
|
|
|
2016-01-26 02:06:26 +01:00
|
|
|
def test_worker_noname(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-01-26 02:06:26 +01:00
|
|
|
class TestWorker(queue_processors.QueueProcessingWorker):
|
|
|
|
def __init__(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-01-26 02:06:26 +01:00
|
|
|
super(TestWorker, self).__init__()
|
|
|
|
def consume(self, data):
|
2016-07-30 06:16:35 +02:00
|
|
|
# type: (Mapping[str, Any]) -> None
|
2016-01-26 02:06:26 +01:00
|
|
|
pass
|
|
|
|
with self.assertRaises(queue_processors.WorkerDeclarationException):
|
|
|
|
TestWorker()
|
|
|
|
|
|
|
|
def test_worker_noconsume(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-01-26 02:06:26 +01:00
|
|
|
@queue_processors.assign_queue('test_worker')
|
|
|
|
class TestWorker(queue_processors.QueueProcessingWorker):
|
|
|
|
def __init__(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-01-26 02:06:26 +01:00
|
|
|
super(TestWorker, self).__init__()
|
|
|
|
|
|
|
|
with self.assertRaises(queue_processors.WorkerDeclarationException):
|
|
|
|
worker = TestWorker()
|
|
|
|
worker.consume({})
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class ActivityTest(ZulipTestCase):
|
2013-09-30 22:52:04 +02:00
|
|
|
def test_activity(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-30 22:52:04 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
client, _ = Client.objects.get_or_create(name='website')
|
2016-04-02 20:24:19 +02:00
|
|
|
query = '/json/users/me/pointer'
|
2013-09-30 22:52:04 +02:00
|
|
|
last_visit = datetime.datetime.now()
|
|
|
|
count=150
|
|
|
|
for user_profile in UserProfile.objects.all():
|
|
|
|
UserActivity.objects.get_or_create(
|
|
|
|
user_profile=user_profile,
|
|
|
|
client=client,
|
|
|
|
query=query,
|
|
|
|
count=count,
|
|
|
|
last_visit=last_visit
|
|
|
|
)
|
|
|
|
with queries_captured() as queries:
|
2016-07-28 00:38:45 +02:00
|
|
|
self.client_get('/activity')
|
2013-10-22 18:05:12 +02:00
|
|
|
|
2016-07-30 06:14:03 +02:00
|
|
|
self.assert_length(queries, 13)
|
2013-09-30 22:52:04 +02:00
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class DocPageTest(ZulipTestCase):
|
2016-08-18 18:09:47 +02:00
|
|
|
def _test(self, url, expected_content):
|
|
|
|
# type: (str, str) -> None
|
|
|
|
result = self.client_get(url)
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
self.assertIn(expected_content, str(result.content))
|
|
|
|
|
|
|
|
def test_doc_endpoints(self):
|
|
|
|
# type: () -> None
|
|
|
|
self._test('/api/', 'We hear you like APIs')
|
|
|
|
self._test('/api/endpoints/', 'pre-built API bindings for Python')
|
|
|
|
self._test('/apps/', 'Appsolutely')
|
|
|
|
self._test('/features/', 'Talk about multiple topics at once')
|
|
|
|
self._test('/hello/', 'workplace chat that actually improves your productivity')
|
|
|
|
self._test('/integrations/', 'require creating a Zulip bot')
|
|
|
|
self._test('/login/', '(Normal users)')
|
|
|
|
self._test('/register/', 'get started')
|
|
|
|
|
|
|
|
result = self.client_get('/new-user/')
|
|
|
|
self.assertEqual(result.status_code, 301)
|
|
|
|
self.assertIn('hello', result['Location'])
|
|
|
|
|
|
|
|
result = self.client_get('/robots.txt')
|
|
|
|
self.assertEqual(result.status_code, 301)
|
|
|
|
self.assertIn('static/robots.txt', result['Location'])
|
|
|
|
|
|
|
|
result = self.client_get('/static/robots.txt')
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
self.assertIn(
|
|
|
|
'Disallow: /',
|
|
|
|
''.join(str(x) for x in list(result.streaming_content))
|
|
|
|
)
|
|
|
|
|
2013-10-20 21:10:03 +02:00
|
|
|
class UserProfileTest(TestCase):
|
|
|
|
def test_get_emails_from_user_ids(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-20 21:10:03 +02:00
|
|
|
hamlet = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
othello = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
dct = get_emails_from_user_ids([hamlet.id, othello.id])
|
|
|
|
self.assertEqual(dct[hamlet.id], 'hamlet@zulip.com')
|
|
|
|
self.assertEqual(dct[othello.id], 'othello@zulip.com')
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class UserChangesTest(ZulipTestCase):
|
2013-08-08 16:49:32 +02:00
|
|
|
def test_update_api_key(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-08-08 16:49:32 +02:00
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
self.login(email)
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
old_api_key = user.api_key
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/me/api_key/regenerate')
|
2013-08-08 16:49:32 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
new_api_key = ujson.loads(result.content)['api_key']
|
|
|
|
self.assertNotEqual(old_api_key, new_api_key)
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(new_api_key, user.api_key)
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class ActivateTest(ZulipTestCase):
|
2013-11-15 18:57:44 +01:00
|
|
|
def test_basics(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-15 18:57:44 +01:00
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
2013-11-16 17:11:15 +01:00
|
|
|
do_deactivate_user(user)
|
2013-11-15 18:57:44 +01:00
|
|
|
self.assertFalse(user.is_active)
|
2013-11-16 17:11:15 +01:00
|
|
|
do_reactivate_user(user)
|
2013-11-15 18:57:44 +01:00
|
|
|
self.assertTrue(user.is_active)
|
|
|
|
|
2013-11-15 19:39:03 +01:00
|
|
|
def test_api(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-15 19:39:03 +01:00
|
|
|
admin = get_user_profile_by_email('othello@zulip.com')
|
2014-01-22 20:12:29 +01:00
|
|
|
do_change_is_admin(admin, True)
|
2013-11-15 19:39:03 +01:00
|
|
|
self.login('othello@zulip.com')
|
|
|
|
|
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
self.assertTrue(user.is_active)
|
|
|
|
|
2013-12-11 20:02:32 +01:00
|
|
|
result = self.client_delete('/json/users/hamlet@zulip.com')
|
2013-11-15 19:39:03 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
self.assertFalse(user.is_active)
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/hamlet@zulip.com/reactivate')
|
2013-11-15 19:39:03 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
user = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
self.assertTrue(user.is_active)
|
|
|
|
|
2016-07-13 05:24:11 +02:00
|
|
|
def test_api_with_nonexistent_user(self):
|
|
|
|
# type: () -> None
|
|
|
|
admin = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
do_change_is_admin(admin, True)
|
|
|
|
self.login('othello@zulip.com')
|
|
|
|
|
|
|
|
# Can not deactivate a user with the bot api
|
2014-02-11 17:14:33 +01:00
|
|
|
result = self.client_delete('/json/bots/hamlet@zulip.com')
|
|
|
|
self.assert_json_error(result, 'No such bot')
|
|
|
|
|
2016-07-13 05:24:11 +02:00
|
|
|
# Can not deactivate a nonexistent user.
|
|
|
|
result = self.client_delete('/json/users/nonexistent@zulip.com')
|
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
|
|
|
|
# Can not reactivate a nonexistent user.
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/nonexistent@zulip.com/reactivate')
|
2016-07-13 05:24:11 +02:00
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
|
2016-07-13 05:42:29 +02:00
|
|
|
def test_api_with_insufficient_permissions(self):
|
|
|
|
# type: () -> None
|
|
|
|
non_admin = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
do_change_is_admin(non_admin, False)
|
|
|
|
self.login('othello@zulip.com')
|
|
|
|
|
|
|
|
# Can not deactivate a user with the users api
|
|
|
|
result = self.client_delete('/json/users/hamlet@zulip.com')
|
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
|
|
|
# Can not reactivate a user
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/hamlet@zulip.com/reactivate')
|
2016-07-13 05:42:29 +02:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class BotTest(ZulipTestCase):
|
2013-07-03 21:34:32 +02:00
|
|
|
def assert_num_bots_equal(self, count):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (int) -> None
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get("/json/bots")
|
2013-07-03 21:34:32 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
json = ujson.loads(result.content)
|
|
|
|
self.assertEqual(count, len(json['bots']))
|
|
|
|
|
2014-02-11 18:43:30 +01:00
|
|
|
def create_bot(self, **extras):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (**Any) -> Dict[str, Any]
|
2013-07-03 21:34:32 +02:00
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2014-02-11 18:43:30 +01:00
|
|
|
bot_info.update(extras)
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2013-07-03 21:34:32 +02:00
|
|
|
self.assert_json_success(result)
|
2014-02-11 18:43:30 +01:00
|
|
|
return ujson.loads(result.content)
|
2013-07-03 21:34:32 +02:00
|
|
|
|
2013-07-03 21:54:10 +02:00
|
|
|
def deactivate_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 17:14:33 +01:00
|
|
|
result = self.client_delete("/json/bots/hambot-bot@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-07-13 18:31:07 +02:00
|
|
|
def test_add_bot_with_bad_username(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
bot_info = dict(
|
|
|
|
full_name='',
|
|
|
|
short_name='',
|
|
|
|
)
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2016-07-13 18:31:07 +02:00
|
|
|
self.assert_json_error(result, 'Bad name or username')
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
|
2013-07-03 21:34:32 +02:00
|
|
|
def test_add_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-03 21:34:32 +02:00
|
|
|
self.assert_num_bots_equal(0)
|
2016-06-15 23:47:22 +02:00
|
|
|
events = [] # type: List[Dict[str, Any]]
|
2014-02-26 00:12:14 +01:00
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.create_bot()
|
2013-07-03 21:34:32 +02:00
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
2014-02-26 00:12:14 +01:00
|
|
|
event = [e for e in events if e['event']['type'] == 'realm_bot'][0]
|
|
|
|
self.assertEqual(
|
|
|
|
dict(
|
|
|
|
type='realm_bot',
|
|
|
|
op='add',
|
|
|
|
bot=dict(email='hambot-bot@zulip.com',
|
|
|
|
full_name='The Bot of Hamlet',
|
|
|
|
api_key=result['api_key'],
|
|
|
|
avatar_url=result['avatar_url'],
|
|
|
|
default_sending_stream=None,
|
|
|
|
default_events_register_stream=None,
|
|
|
|
default_all_public_streams=False,
|
2014-02-27 00:01:18 +01:00
|
|
|
owner='hamlet@zulip.com',
|
2014-02-26 00:12:14 +01:00
|
|
|
)
|
|
|
|
),
|
|
|
|
event['event']
|
|
|
|
)
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
users_result = self.client_get('/json/users')
|
2016-07-13 04:28:54 +02:00
|
|
|
members = ujson.loads(users_result.content)['members']
|
|
|
|
bots = [m for m in members if m['email'] == 'hambot-bot@zulip.com']
|
|
|
|
self.assertEqual(len(bots), 1)
|
|
|
|
bot = bots[0]
|
|
|
|
self.assertEqual(bot['bot_owner'], 'hamlet@zulip.com')
|
|
|
|
|
2016-07-13 19:49:42 +02:00
|
|
|
def test_add_bot_with_username_in_use(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
bot_info = dict(
|
|
|
|
full_name='Duplicate',
|
|
|
|
short_name='hambot',
|
|
|
|
)
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2016-07-13 19:49:42 +02:00
|
|
|
self.assert_json_error(result, 'Username already in use')
|
|
|
|
|
2016-07-13 18:21:24 +02:00
|
|
|
def test_add_bot_with_user_avatar(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
with open(os.path.join(TEST_AVATAR_DIR, 'img.png'), 'rb') as fp:
|
|
|
|
self.create_bot(file=fp)
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.avatar_source, UserProfile.AVATAR_FROM_USER)
|
|
|
|
# TODO: check img.png was uploaded properly
|
|
|
|
|
2016-07-13 18:21:46 +02:00
|
|
|
def test_add_bot_with_too_many_files(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
with open(os.path.join(TEST_AVATAR_DIR, 'img.png'), 'rb') as fp1, \
|
|
|
|
open(os.path.join(TEST_AVATAR_DIR, 'img.gif'), 'rb') as fp2:
|
|
|
|
bot_info = dict(
|
|
|
|
full_name='whatever',
|
|
|
|
short_name='whatever',
|
|
|
|
file1=fp1,
|
|
|
|
file2=fp2,
|
|
|
|
)
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2016-07-13 18:21:46 +02:00
|
|
|
self.assert_json_error(result, 'You may only upload one file at a time')
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
|
2014-02-11 18:43:30 +01:00
|
|
|
def test_add_bot_with_default_sending_stream(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot(default_sending_stream='Denmark')
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertEqual(result['default_sending_stream'], 'Denmark')
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_sending_stream.name, 'Denmark')
|
|
|
|
|
2014-02-13 19:39:54 +01:00
|
|
|
def test_add_bot_with_default_sending_stream_not_subscribed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot(default_sending_stream='Rome')
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertEqual(result['default_sending_stream'], 'Rome')
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_sending_stream.name, 'Rome')
|
|
|
|
|
2016-06-26 14:19:18 +02:00
|
|
|
def test_bot_add_subscription(self):
|
|
|
|
# type: () -> None
|
|
|
|
"""
|
|
|
|
Calling POST /json/users/me/subscriptions should successfully add
|
|
|
|
streams, and a stream to the
|
|
|
|
list of subscriptions and confirm the right number of events
|
|
|
|
are generated.
|
|
|
|
When 'principals' has a bot, no notification message event or invitation email
|
|
|
|
is sent when add_subscriptions_backend is called in the above api call.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
|
|
|
|
# Normal user i.e. not a bot.
|
|
|
|
request_data = {
|
|
|
|
'principals': '["iago@zulip.com"]'
|
|
|
|
}
|
|
|
|
events = [] # type: List[Dict[str, Any]]
|
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.common_subscribe_to_streams("hamlet@zulip.com", ['Rome'], request_data)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
msg_event = [e for e in events if e['event']['type'] == 'message']
|
|
|
|
self.assert_length(msg_event, 1, exact=True) # Notification message event is sent.
|
|
|
|
|
|
|
|
# Create a bot.
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
# A bot
|
|
|
|
bot_request_data = {
|
|
|
|
'principals': '["hambot-bot@zulip.com"]'
|
|
|
|
}
|
|
|
|
events_bot = [] # type: List[Dict[str, Any]]
|
|
|
|
with tornado_redirected_to_list(events_bot):
|
|
|
|
result = self.common_subscribe_to_streams("hamlet@zulip.com", ['Rome'], bot_request_data)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
# No notification message event or invitation email is sent because of bot.
|
|
|
|
msg_event = [e for e in events_bot if e['event']['type'] == 'message']
|
|
|
|
self.assert_length(msg_event, 0, exact=True)
|
|
|
|
self.assertEqual(len(events_bot), len(events) - 1)
|
|
|
|
|
|
|
|
# Test runner automatically redirects all sent email to a dummy 'outbox'.
|
|
|
|
self.assertEqual(len(mail.outbox), 0)
|
|
|
|
|
2014-02-11 18:43:30 +01:00
|
|
|
def test_add_bot_with_default_sending_stream_private_allowed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_add_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
self.assert_num_bots_equal(0)
|
2016-06-15 23:47:22 +02:00
|
|
|
events = [] # type: List[Dict[str, Any]]
|
2014-02-26 00:12:14 +01:00
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.create_bot(default_sending_stream='Denmark')
|
2014-02-11 18:43:30 +01:00
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertEqual(result['default_sending_stream'], 'Denmark')
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_sending_stream.name, 'Denmark')
|
|
|
|
|
2014-02-26 00:12:14 +01:00
|
|
|
event = [e for e in events if e['event']['type'] == 'realm_bot'][0]
|
|
|
|
self.assertEqual(
|
|
|
|
dict(
|
|
|
|
type='realm_bot',
|
|
|
|
op='add',
|
|
|
|
bot=dict(email='hambot-bot@zulip.com',
|
|
|
|
full_name='The Bot of Hamlet',
|
|
|
|
api_key=result['api_key'],
|
|
|
|
avatar_url=result['avatar_url'],
|
|
|
|
default_sending_stream='Denmark',
|
|
|
|
default_events_register_stream=None,
|
|
|
|
default_all_public_streams=False,
|
2014-02-27 00:01:18 +01:00
|
|
|
owner='hamlet@zulip.com',
|
2014-02-26 00:12:14 +01:00
|
|
|
)
|
|
|
|
),
|
|
|
|
event['event']
|
|
|
|
)
|
|
|
|
self.assertEqual(event['users'], (user_profile.id,))
|
|
|
|
|
2014-02-11 18:43:30 +01:00
|
|
|
def test_add_bot_with_default_sending_stream_private_denied(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_remove_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
'default_sending_stream': 'Denmark',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-11 18:43:30 +01:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
|
|
|
def test_add_bot_with_default_events_register_stream(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot(default_events_register_stream='Denmark')
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertEqual(result['default_events_register_stream'], 'Denmark')
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_events_register_stream.name, 'Denmark')
|
|
|
|
|
|
|
|
def test_add_bot_with_default_events_register_stream_private_allowed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_add_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
self.assert_num_bots_equal(0)
|
2016-06-15 23:47:22 +02:00
|
|
|
events = [] # type: List[Dict[str, Any]]
|
2014-02-26 00:12:14 +01:00
|
|
|
with tornado_redirected_to_list(events):
|
|
|
|
result = self.create_bot(default_events_register_stream='Denmark')
|
2014-02-11 18:43:30 +01:00
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertEqual(result['default_events_register_stream'], 'Denmark')
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_events_register_stream.name, 'Denmark')
|
|
|
|
|
2014-02-26 00:12:14 +01:00
|
|
|
event = [e for e in events if e['event']['type'] == 'realm_bot'][0]
|
|
|
|
self.assertEqual(
|
|
|
|
dict(
|
|
|
|
type='realm_bot',
|
|
|
|
op='add',
|
|
|
|
bot=dict(email='hambot-bot@zulip.com',
|
|
|
|
full_name='The Bot of Hamlet',
|
|
|
|
api_key=result['api_key'],
|
|
|
|
avatar_url=result['avatar_url'],
|
|
|
|
default_sending_stream=None,
|
|
|
|
default_events_register_stream='Denmark',
|
|
|
|
default_all_public_streams=False,
|
2014-02-27 00:01:18 +01:00
|
|
|
owner='hamlet@zulip.com',
|
2014-02-26 00:12:14 +01:00
|
|
|
)
|
|
|
|
),
|
|
|
|
event['event']
|
|
|
|
)
|
|
|
|
self.assertEqual(event['users'], (user_profile.id,))
|
|
|
|
|
2014-02-11 18:43:30 +01:00
|
|
|
def test_add_bot_with_default_events_register_stream_private_denied(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_remove_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
'default_events_register_stream': 'Denmark',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-11 18:43:30 +01:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
|
|
|
def test_add_bot_with_default_all_public_streams(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-11 18:43:30 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
result = self.create_bot(default_all_public_streams=ujson.dumps(True))
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.assertTrue(result['default_all_public_streams'])
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.default_all_public_streams, True)
|
|
|
|
|
2013-07-03 21:54:10 +02:00
|
|
|
def test_deactivate_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
self.deactivate_bot()
|
|
|
|
# You can deactivate the same bot twice.
|
|
|
|
self.deactivate_bot()
|
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
|
|
|
|
def test_deactivate_bogus_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""Deleting a bogus bot will succeed silently."""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
2014-02-11 17:14:33 +01:00
|
|
|
result = self.client_delete("/json/bots/bogus-bot@zulip.com")
|
|
|
|
self.assert_json_error(result, 'No such bot')
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
def test_bot_deactivation_attacks(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""You cannot deactivate somebody else's bot."""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
# Have Othello try to deactivate both Hamlet and
|
|
|
|
# Hamlet's bot.
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("othello@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
|
2014-02-11 17:14:33 +01:00
|
|
|
# Can not deactivate a user as a bot
|
|
|
|
result = self.client_delete("/json/bots/hamlet@zulip.com")
|
|
|
|
self.assert_json_error(result, 'No such bot')
|
2013-07-03 21:54:10 +02:00
|
|
|
|
2014-02-11 17:14:33 +01:00
|
|
|
result = self.client_delete("/json/bots/hambot-bot@zulip.com")
|
2013-07-08 23:34:43 +02:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
2013-07-03 21:54:10 +02:00
|
|
|
|
|
|
|
# But we don't actually deactivate the other person's bot.
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-03 21:54:10 +02:00
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
2014-02-11 17:14:33 +01:00
|
|
|
# Can not deactivate a bot as a user
|
|
|
|
result = self.client_delete("/json/users/hambot-bot@zulip.com")
|
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
2013-07-19 17:45:06 +02:00
|
|
|
def test_bot_permissions(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-19 17:45:06 +02:00
|
|
|
self.assert_num_bots_equal(0)
|
|
|
|
self.create_bot()
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
|
|
|
# Have Othello try to mess with Hamlet's bots.
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("othello@zulip.com")
|
2013-07-19 17:45:06 +02:00
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots/hambot-bot@zulip.com/api_key/regenerate")
|
2013-07-19 17:45:06 +02:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
2013-07-23 15:57:32 +02:00
|
|
|
bot_info = {
|
|
|
|
'full_name': 'Fred',
|
|
|
|
}
|
2013-08-01 19:35:39 +02:00
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
2013-07-23 15:57:32 +02:00
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
2013-07-16 22:25:34 +02:00
|
|
|
def get_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> Dict[str, Any]
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get("/json/bots")
|
2013-07-16 22:25:34 +02:00
|
|
|
bots = ujson.loads(result.content)['bots']
|
|
|
|
return bots[0]
|
|
|
|
|
2013-07-19 17:45:06 +02:00
|
|
|
def test_update_api_key(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-19 17:45:06 +02:00
|
|
|
self.create_bot()
|
|
|
|
bot = self.get_bot()
|
|
|
|
old_api_key = bot['api_key']
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/bots/hambot-bot@zulip.com/api_key/regenerate')
|
2013-07-19 17:45:06 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
new_api_key = ujson.loads(result.content)['api_key']
|
|
|
|
self.assertNotEqual(old_api_key, new_api_key)
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual(new_api_key, bot['api_key'])
|
|
|
|
|
2016-07-13 16:51:00 +02:00
|
|
|
def test_update_api_key_for_invalid_user(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/bots/nonexistentuser@zulip.com/api_key/regenerate')
|
2016-07-13 16:51:00 +02:00
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
|
2013-07-16 22:25:34 +02:00
|
|
|
def test_patch_bot_full_name(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-16 22:25:34 +02:00
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2013-07-16 22:25:34 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'Fred',
|
|
|
|
}
|
2013-08-01 19:35:39 +02:00
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
2013-07-16 22:25:34 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
full_name = ujson.loads(result.content)['full_name']
|
|
|
|
self.assertEqual('Fred', full_name)
|
2013-10-21 18:54:57 +02:00
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Fred', bot['full_name'])
|
|
|
|
|
2016-07-14 00:26:49 +02:00
|
|
|
def test_patch_bot_avatar(self):
|
|
|
|
# type: () -> None
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2016-07-14 00:26:49 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.avatar_source, UserProfile.AVATAR_FROM_GRAVATAR)
|
|
|
|
|
|
|
|
# Try error case first (too many files):
|
|
|
|
with open(os.path.join(TEST_AVATAR_DIR, 'img.png'), 'rb') as fp1, \
|
|
|
|
open(os.path.join(TEST_AVATAR_DIR, 'img.gif'), 'rb') as fp2:
|
|
|
|
result = self.client_patch_multipart(
|
|
|
|
'/json/bots/hambot-bot@zulip.com',
|
|
|
|
dict(file1=fp1, file2=fp2))
|
|
|
|
self.assert_json_error(result, 'You may only upload one file at a time')
|
|
|
|
|
|
|
|
# HAPPY PATH
|
|
|
|
with open(os.path.join(TEST_AVATAR_DIR, 'img.png'), 'rb') as fp:
|
|
|
|
result = self.client_patch_multipart(
|
|
|
|
'/json/bots/hambot-bot@zulip.com',
|
|
|
|
dict(file=fp))
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
profile = get_user_profile_by_email('hambot-bot@zulip.com')
|
|
|
|
self.assertEqual(profile.avatar_source, UserProfile.AVATAR_FROM_USER)
|
|
|
|
# TODO: check img.png was uploaded properly
|
|
|
|
|
2014-02-13 19:39:54 +01:00
|
|
|
def test_patch_bot_to_stream(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_sending_stream = ujson.loads(result.content)['default_sending_stream']
|
|
|
|
self.assertEqual('Denmark', default_sending_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Denmark', bot['default_sending_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_to_stream_not_subscribed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': 'Rome',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_sending_stream = ujson.loads(result.content)['default_sending_stream']
|
|
|
|
self.assertEqual('Rome', default_sending_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Rome', bot['default_sending_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_to_stream_none(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': '',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_sending_stream = ujson.loads(result.content)['default_sending_stream']
|
|
|
|
self.assertEqual(None, default_sending_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual(None, bot['default_sending_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_to_stream_private_allowed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_add_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_sending_stream = ujson.loads(result.content)['default_sending_stream']
|
|
|
|
self.assertEqual('Denmark', default_sending_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Denmark', bot['default_sending_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_to_stream_private_denied(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_remove_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
|
|
|
def test_patch_bot_to_stream_not_found(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_sending_stream': 'missing',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_error(result, 'No such stream \'missing\'')
|
|
|
|
|
|
|
|
def test_patch_bot_events_register_stream(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_events_register_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_events_register_stream = ujson.loads(result.content)['default_events_register_stream']
|
|
|
|
self.assertEqual('Denmark', default_events_register_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Denmark', bot['default_events_register_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_events_register_stream_allowed(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_add_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_events_register_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_events_register_stream = ujson.loads(result.content)['default_events_register_stream']
|
|
|
|
self.assertEqual('Denmark', default_events_register_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Denmark', bot['default_events_register_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_events_register_stream_denied(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
do_remove_subscription(user_profile, stream)
|
|
|
|
do_make_stream_private(user_profile.realm, "Denmark")
|
|
|
|
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_events_register_stream': 'Denmark',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_error(result, 'Insufficient permission')
|
|
|
|
|
|
|
|
def test_patch_bot_events_register_stream_none(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_events_register_stream': '',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_events_register_stream = ujson.loads(result.content)['default_events_register_stream']
|
|
|
|
self.assertEqual(None, default_events_register_stream)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual(None, bot['default_events_register_stream'])
|
|
|
|
|
|
|
|
def test_patch_bot_events_register_stream_not_found(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_events_register_stream': 'missing',
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_error(result, 'No such stream \'missing\'')
|
|
|
|
|
|
|
|
def test_patch_bot_default_all_public_streams_true(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_all_public_streams': ujson.dumps(True),
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_events_register_stream = ujson.loads(result.content)['default_all_public_streams']
|
|
|
|
self.assertEqual(default_events_register_stream, True)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual(bot['default_all_public_streams'], True)
|
|
|
|
|
|
|
|
def test_patch_bot_default_all_public_streams_false(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-02-13 19:39:54 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2014-02-13 19:39:54 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'default_all_public_streams': ujson.dumps(False),
|
|
|
|
}
|
|
|
|
result = self.client_patch("/json/bots/hambot-bot@zulip.com", bot_info)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
default_events_register_stream = ujson.loads(result.content)['default_all_public_streams']
|
|
|
|
self.assertEqual(default_events_register_stream, False)
|
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual(bot['default_all_public_streams'], False)
|
|
|
|
|
2013-10-21 18:54:57 +02:00
|
|
|
def test_patch_bot_via_post(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-21 18:54:57 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'The Bot of Hamlet',
|
|
|
|
'short_name': 'hambot',
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots", bot_info)
|
2013-10-21 18:54:57 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'Fred',
|
|
|
|
'method': 'PATCH'
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/bots/hambot-bot@zulip.com", bot_info)
|
2013-10-21 18:54:57 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
full_name = ujson.loads(result.content)['full_name']
|
|
|
|
self.assertEqual('Fred', full_name)
|
2013-07-16 22:25:34 +02:00
|
|
|
|
|
|
|
bot = self.get_bot()
|
|
|
|
self.assertEqual('Fred', bot['full_name'])
|
|
|
|
|
|
|
|
def test_patch_bogus_bot(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""Deleting a bogus bot will succeed silently."""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-07-16 22:25:34 +02:00
|
|
|
self.create_bot()
|
|
|
|
bot_info = {
|
|
|
|
'full_name': 'Fred',
|
|
|
|
}
|
2013-08-01 19:35:39 +02:00
|
|
|
result = self.client_patch("/json/bots/nonexistent-bot@zulip.com", bot_info)
|
2013-07-16 22:25:34 +02:00
|
|
|
self.assert_json_error(result, 'No such user')
|
|
|
|
self.assert_num_bots_equal(1)
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class ChangeSettingsTest(ZulipTestCase):
|
2012-12-21 01:06:53 +01:00
|
|
|
|
|
|
|
def check_well_formed_change_settings_response(self, result):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (Dict[str, Any]) -> None
|
2012-12-21 01:06:53 +01:00
|
|
|
self.assertIn("full_name", result)
|
|
|
|
|
2016-06-15 19:32:16 +02:00
|
|
|
def check_for_toggle_param(self, pattern, param):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (str, str) -> None
|
2016-06-15 23:25:58 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-06-15 23:22:51 +02:00
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
json_result = self.client_post(pattern,
|
2016-06-15 19:32:16 +02:00
|
|
|
{param: ujson.dumps(True)})
|
|
|
|
self.assert_json_success(json_result)
|
2016-06-15 23:57:34 +02:00
|
|
|
# refetch user_profile object to correctly handle caching
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
2016-06-15 23:22:51 +02:00
|
|
|
self.assertEqual(getattr(user_profile, param), True)
|
2016-06-15 19:32:16 +02:00
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
json_result = self.client_post(pattern,
|
2016-06-15 19:32:16 +02:00
|
|
|
{param: ujson.dumps(False)})
|
|
|
|
self.assert_json_success(json_result)
|
2016-06-15 23:57:34 +02:00
|
|
|
# refetch user_profile object to correctly handle caching
|
2016-06-15 23:22:51 +02:00
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
self.assertEqual(getattr(user_profile, param), False)
|
2016-06-15 19:32:16 +02:00
|
|
|
|
2012-12-21 16:59:08 +01:00
|
|
|
def test_successful_change_settings(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2012-12-21 01:06:53 +01:00
|
|
|
"""
|
|
|
|
A call to /json/settings/change with valid parameters changes the user's
|
|
|
|
settings correctly and returns correct values.
|
|
|
|
"""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
json_result = self.client_post("/json/settings/change",
|
2016-07-23 22:01:47 +02:00
|
|
|
dict(
|
|
|
|
full_name='Foo Bar',
|
|
|
|
old_password=initial_password('hamlet@zulip.com'),
|
|
|
|
new_password='foobar1',
|
|
|
|
confirm_password='foobar1',
|
|
|
|
)
|
|
|
|
)
|
2012-12-21 01:06:53 +01:00
|
|
|
self.assert_json_success(json_result)
|
2013-06-18 23:55:55 +02:00
|
|
|
result = ujson.loads(json_result.content)
|
2012-12-21 01:06:53 +01:00
|
|
|
self.check_well_formed_change_settings_response(result)
|
2013-07-24 20:41:09 +02:00
|
|
|
self.assertEqual(get_user_profile_by_email("hamlet@zulip.com").
|
2012-12-21 01:06:53 +01:00
|
|
|
full_name, "Foo Bar")
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post('/accounts/logout/')
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com", "foobar1")
|
|
|
|
user_profile = get_user_profile_by_email('hamlet@zulip.com')
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertEqual(get_session_dict_user(self.client.session), user_profile.id)
|
2012-12-21 01:06:53 +01:00
|
|
|
|
2016-06-15 23:25:58 +02:00
|
|
|
# This is basically a don't-explode test.
|
2013-10-25 22:41:35 +02:00
|
|
|
def test_notify_settings(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-06-15 19:38:31 +02:00
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_desktop_notifications")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_stream_desktop_notifications")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_stream_sounds")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_sounds")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_offline_email_notifications")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_offline_push_notifications")
|
|
|
|
self.check_for_toggle_param("/json/notify_settings/change", "enable_digest_emails")
|
2013-10-25 22:41:35 +02:00
|
|
|
|
2013-12-03 21:01:37 +01:00
|
|
|
def test_ui_settings(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-06-15 19:43:48 +02:00
|
|
|
self.check_for_toggle_param("/json/ui_settings/change", "autoscroll_forever")
|
|
|
|
self.check_for_toggle_param("/json/ui_settings/change", "default_desktop_notifications")
|
2014-01-16 22:48:50 +01:00
|
|
|
|
2016-06-15 19:57:01 +02:00
|
|
|
def test_toggling_left_side_userlist(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-06-15 19:57:01 +02:00
|
|
|
self.check_for_toggle_param("/json/left_side_userlist", "left_side_userlist")
|
|
|
|
|
2016-06-15 20:01:24 +02:00
|
|
|
def test_time_setting(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-06-15 20:01:24 +02:00
|
|
|
self.check_for_toggle_param("/json/time_setting", "twenty_four_hour_time")
|
|
|
|
|
2016-06-15 20:03:28 +02:00
|
|
|
def test_enter_sends_setting(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-06-15 20:03:28 +02:00
|
|
|
self.check_for_toggle_param('/json/users/me/enter-sends', "enter_sends")
|
|
|
|
|
2012-12-21 01:06:53 +01:00
|
|
|
def test_mismatching_passwords(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2012-12-21 01:06:53 +01:00
|
|
|
"""
|
|
|
|
new_password and confirm_password must match
|
|
|
|
"""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/settings/change",
|
2016-07-23 22:01:47 +02:00
|
|
|
dict(
|
|
|
|
new_password="mismatched_password",
|
|
|
|
confirm_password="not_the_same",
|
|
|
|
)
|
|
|
|
)
|
2012-12-21 01:06:53 +01:00
|
|
|
self.assert_json_error(result,
|
|
|
|
"New password must match confirmation password!")
|
|
|
|
|
|
|
|
def test_wrong_old_password(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2012-12-21 01:06:53 +01:00
|
|
|
"""
|
|
|
|
new_password and confirm_password must match
|
|
|
|
"""
|
2013-07-24 20:41:09 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/settings/change",
|
2016-07-23 22:01:47 +02:00
|
|
|
dict(
|
|
|
|
old_password='bad_password',
|
|
|
|
new_password="ignored",
|
|
|
|
confirm_password="ignored",
|
|
|
|
)
|
|
|
|
)
|
2012-12-21 01:06:53 +01:00
|
|
|
self.assert_json_error(result, "Wrong password!")
|
|
|
|
|
2016-07-23 22:22:25 +02:00
|
|
|
def test_changing_nothing_returns_error(self):
|
2016-07-23 22:07:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""
|
2016-07-23 22:22:25 +02:00
|
|
|
We need to supply at least one non-empty parameter
|
|
|
|
to this API, or it should fail. (Eventually, we should
|
|
|
|
probably use a patch interface for these changes.)
|
2016-07-23 22:07:22 +02:00
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/settings/change",
|
2016-07-23 22:07:22 +02:00
|
|
|
dict(
|
|
|
|
old_password='ignored',
|
|
|
|
)
|
|
|
|
)
|
2016-07-23 22:22:25 +02:00
|
|
|
self.assert_json_error(result, "No new data supplied")
|
2016-07-23 22:07:22 +02:00
|
|
|
|
2016-07-31 10:02:42 +02:00
|
|
|
def test_change_default_language(self):
|
|
|
|
# type: () -> None
|
|
|
|
"""
|
|
|
|
Test changing the default language of the user.
|
|
|
|
"""
|
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
self.login(email)
|
|
|
|
german = "de"
|
|
|
|
data = dict(default_language=ujson.dumps(german))
|
|
|
|
result = self.client_post("/json/language_setting", data)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(user_profile.default_language, german)
|
|
|
|
|
|
|
|
# Test to make sure invalid languages are not accepted
|
|
|
|
# and saved in the db.
|
|
|
|
invalid_lang = "invalid_lang"
|
|
|
|
data = dict(default_language=ujson.dumps(invalid_lang))
|
|
|
|
result = self.client_post("/json/language_setting", data)
|
|
|
|
self.assert_json_error(result, "Invalid language '%s'" % (invalid_lang,))
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
self.assertNotEqual(user_profile.default_language, invalid_lang)
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class GetProfileTest(ZulipTestCase):
|
2013-01-22 20:07:51 +01:00
|
|
|
|
|
|
|
def common_update_pointer(self, email, pointer):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (text_type, int) -> None
|
2013-01-22 20:07:51 +01:00
|
|
|
self.login(email)
|
2016-04-02 20:24:19 +02:00
|
|
|
result = self.client_put("/json/users/me/pointer", {"pointer": pointer})
|
2013-01-22 20:07:51 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
def common_get_profile(self, email):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (str) -> Dict[text_type, Any]
|
2013-07-02 21:50:05 +02:00
|
|
|
user_profile = get_user_profile_by_email(email)
|
2013-07-02 18:13:26 +02:00
|
|
|
self.send_message(email, "Verona", Recipient.STREAM, "hello")
|
2013-01-22 20:07:51 +01:00
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get("/api/v1/users/me", **self.api_auth(email))
|
2013-01-22 20:07:51 +01:00
|
|
|
|
2013-07-02 16:15:10 +02:00
|
|
|
max_id = most_recent_message(user_profile).id
|
2013-01-22 20:07:51 +01:00
|
|
|
|
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-01-22 20:07:51 +01:00
|
|
|
|
|
|
|
self.assertIn("client_id", json)
|
|
|
|
self.assertIn("max_message_id", json)
|
|
|
|
self.assertIn("pointer", json)
|
|
|
|
|
2013-01-17 18:12:02 +01:00
|
|
|
self.assertEqual(json["max_message_id"], max_id)
|
2013-01-22 20:07:51 +01:00
|
|
|
return json
|
|
|
|
|
2013-09-28 01:05:08 +02:00
|
|
|
def test_cache_behavior(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-28 01:05:08 +02:00
|
|
|
with queries_captured() as queries:
|
|
|
|
with simulated_empty_cache() as cache_queries:
|
|
|
|
user_profile = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
|
2014-01-27 20:46:38 +01:00
|
|
|
self.assert_length(queries, 1)
|
|
|
|
self.assert_length(cache_queries, 1, exact=True)
|
2013-09-28 01:05:08 +02:00
|
|
|
self.assertEqual(user_profile.email, 'hamlet@zulip.com')
|
|
|
|
|
2013-01-22 20:07:51 +01:00
|
|
|
def test_api_get_empty_profile(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-01-22 20:07:51 +01:00
|
|
|
"""
|
2016-04-02 20:07:28 +02:00
|
|
|
Ensure GET /users/me returns a max message id and returns successfully
|
2013-01-22 20:07:51 +01:00
|
|
|
"""
|
2013-07-24 20:41:09 +02:00
|
|
|
json = self.common_get_profile("othello@zulip.com")
|
2013-01-17 18:12:02 +01:00
|
|
|
self.assertEqual(json["pointer"], -1)
|
2013-01-22 20:07:51 +01:00
|
|
|
|
|
|
|
def test_profile_with_pointer(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-01-22 20:07:51 +01:00
|
|
|
"""
|
2016-04-02 20:07:28 +02:00
|
|
|
Ensure GET /users/me returns a proper pointer id after the pointer is updated
|
2013-01-22 20:07:51 +01:00
|
|
|
"""
|
2013-08-19 21:05:23 +02:00
|
|
|
|
2013-08-28 21:29:55 +02:00
|
|
|
id1 = self.send_message("othello@zulip.com", "Verona", Recipient.STREAM)
|
|
|
|
id2 = self.send_message("othello@zulip.com", "Verona", Recipient.STREAM)
|
2013-08-19 21:05:23 +02:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
json = self.common_get_profile("hamlet@zulip.com")
|
2013-01-22 20:07:51 +01:00
|
|
|
|
2013-08-19 21:05:23 +02:00
|
|
|
self.common_update_pointer("hamlet@zulip.com", id2)
|
2013-07-24 20:41:09 +02:00
|
|
|
json = self.common_get_profile("hamlet@zulip.com")
|
2013-08-19 21:05:23 +02:00
|
|
|
self.assertEqual(json["pointer"], id2)
|
2013-01-22 20:07:51 +01:00
|
|
|
|
2013-08-19 21:05:23 +02:00
|
|
|
self.common_update_pointer("hamlet@zulip.com", id1)
|
2013-07-24 20:41:09 +02:00
|
|
|
json = self.common_get_profile("hamlet@zulip.com")
|
2013-08-19 21:05:23 +02:00
|
|
|
self.assertEqual(json["pointer"], id2) # pointer does not move backwards
|
|
|
|
|
2016-04-02 20:24:19 +02:00
|
|
|
result = self.client_put("/json/users/me/pointer", {"pointer": 99999999})
|
2013-08-19 21:05:23 +02:00
|
|
|
self.assert_json_error(result, "Invalid message ID")
|
2012-12-19 20:19:46 +01:00
|
|
|
|
2014-07-18 06:16:14 +02:00
|
|
|
def test_get_all_profiles_avatar_urls(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2014-07-18 06:16:14 +02:00
|
|
|
user_profile = get_user_profile_by_email('hamlet@zulip.com')
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get("/api/v1/users", **self.api_auth('hamlet@zulip.com'))
|
2014-07-18 06:16:14 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
json = ujson.loads(result.content)
|
|
|
|
|
|
|
|
for user in json['members']:
|
|
|
|
if user['email'] == 'hamlet@zulip.com':
|
|
|
|
self.assertEqual(
|
|
|
|
user['avatar_url'],
|
|
|
|
get_avatar_url(user_profile.avatar_source, user_profile.email),
|
|
|
|
)
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class UserPresenceTests(ZulipTestCase):
|
2013-02-11 17:23:01 +01:00
|
|
|
def test_get_empty(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/get_active_statuses")
|
2013-02-11 17:23:01 +01:00
|
|
|
|
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-11 17:23:01 +01:00
|
|
|
for email, presence in json['presences'].items():
|
|
|
|
self.assertEqual(presence, {})
|
|
|
|
|
|
|
|
def test_set_idle(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-07-24 20:41:09 +02:00
|
|
|
email = "hamlet@zulip.com"
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login(email)
|
2013-02-11 17:23:01 +01:00
|
|
|
client = 'website'
|
|
|
|
|
|
|
|
def test_result(result):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (HttpResponse) -> datetime.datetime
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assertEqual(json['presences'][email][client]['status'], 'idle')
|
|
|
|
self.assertIn('timestamp', json['presences'][email][client])
|
|
|
|
self.assertIsInstance(json['presences'][email][client]['timestamp'], int)
|
2016-01-25 01:27:18 +01:00
|
|
|
self.assertEqual(list(json['presences'].keys()), ['hamlet@zulip.com'])
|
2013-02-11 17:23:01 +01:00
|
|
|
return json['presences'][email][client]['timestamp']
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/users/me/presence", {'status': 'idle'})
|
2013-02-11 17:23:01 +01:00
|
|
|
test_result(result)
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/get_active_statuses", {})
|
2013-02-11 17:23:01 +01:00
|
|
|
timestamp = test_result(result)
|
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
email = "othello@zulip.com"
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login(email)
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/users/me/presence", {'status': 'idle'})
|
|
|
|
result = self.client_post("/json/get_active_statuses", {})
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assertEqual(json['presences'][email][client]['status'], 'idle')
|
2013-07-24 20:41:09 +02:00
|
|
|
self.assertEqual(json['presences']['hamlet@zulip.com'][client]['status'], 'idle')
|
2016-07-10 00:41:07 +02:00
|
|
|
self.assertEqual(sorted(json['presences'].keys()), ['hamlet@zulip.com', 'othello@zulip.com'])
|
2013-02-11 17:23:01 +01:00
|
|
|
newer_timestamp = json['presences'][email][client]['timestamp']
|
|
|
|
self.assertGreaterEqual(newer_timestamp, timestamp)
|
|
|
|
|
|
|
|
def test_set_active(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
2013-02-11 17:23:01 +01:00
|
|
|
client = 'website'
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/users/me/presence", {'status': 'idle'})
|
|
|
|
result = self.client_post("/json/get_active_statuses", {})
|
2013-02-11 17:23:01 +01:00
|
|
|
|
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-12-19 20:17:13 +01:00
|
|
|
self.assertEqual(json['presences']["hamlet@zulip.com"][client]['status'], 'idle')
|
2013-02-11 17:23:01 +01:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
email = "othello@zulip.com"
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("othello@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/users/me/presence", {'status': 'idle'})
|
|
|
|
result = self.client_post("/json/get_active_statuses", {})
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assertEqual(json['presences'][email][client]['status'], 'idle')
|
2013-07-24 20:41:09 +02:00
|
|
|
self.assertEqual(json['presences']['hamlet@zulip.com'][client]['status'], 'idle')
|
2013-02-11 17:23:01 +01:00
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/users/me/presence", {'status': 'active'})
|
|
|
|
result = self.client_post("/json/get_active_statuses", {})
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assertEqual(json['presences'][email][client]['status'], 'active')
|
2013-07-24 20:41:09 +02:00
|
|
|
self.assertEqual(json['presences']['hamlet@zulip.com'][client]['status'], 'idle')
|
2013-02-11 17:23:01 +01:00
|
|
|
|
2013-02-12 18:42:14 +01:00
|
|
|
def test_no_mit(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2016-07-27 02:09:10 +02:00
|
|
|
"""Zephyr mirror realms such as MIT never get a list of users"""
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("espuser@mit.edu")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/users/me/presence", {'status': 'idle'})
|
2013-02-12 18:42:14 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-02-12 18:42:14 +01:00
|
|
|
self.assertEqual(json['presences'], {})
|
|
|
|
|
2013-02-11 17:23:01 +01:00
|
|
|
def test_same_realm(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("espuser@mit.edu")
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/users/me/presence", {'status': 'idle'})
|
|
|
|
result = self.client_post("/accounts/logout/")
|
2013-02-11 17:23:01 +01:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
# Ensure we don't see hamlet@zulip.com information leakage
|
2013-12-19 20:17:13 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/users/me/presence", {'status': 'idle'})
|
2013-02-11 17:23:01 +01:00
|
|
|
self.assert_json_success(result)
|
2013-06-18 23:55:55 +02:00
|
|
|
json = ujson.loads(result.content)
|
2013-12-19 20:17:13 +01:00
|
|
|
self.assertEqual(json['presences']["hamlet@zulip.com"]["website"]['status'], 'idle')
|
2013-07-24 20:56:42 +02:00
|
|
|
# We only want @zulip.com emails
|
2013-02-11 17:23:01 +01:00
|
|
|
for email in json['presences'].keys():
|
2013-11-22 23:48:00 +01:00
|
|
|
self.assertEqual(split_email_to_domain(email), 'zulip.com')
|
2013-02-11 17:23:01 +01:00
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class AlertWordTests(ZulipTestCase):
|
2016-03-13 21:35:13 +01:00
|
|
|
interesting_alert_word_list = ['alert', 'multi-word word', u'☃']
|
2013-11-06 15:42:26 +01:00
|
|
|
|
2013-12-18 17:30:33 +01:00
|
|
|
def test_internal_endpoint(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-12-18 17:30:33 +01:00
|
|
|
email = "cordelia@zulip.com"
|
|
|
|
self.login(email)
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'alert_words': ujson.dumps(['milk', 'cookies'])
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/me/alert_words', params)
|
2013-12-18 17:30:33 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
words = user_alert_words(user)
|
|
|
|
self.assertEqual(words, ['milk', 'cookies'])
|
|
|
|
|
|
|
|
|
2013-09-03 22:41:17 +02:00
|
|
|
def test_default_no_words(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-06 15:42:26 +01:00
|
|
|
"""
|
|
|
|
Users start out with no alert words.
|
|
|
|
"""
|
2013-09-03 22:41:17 +02:00
|
|
|
email = "cordelia@zulip.com"
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
|
|
|
|
words = user_alert_words(user)
|
|
|
|
|
|
|
|
self.assertEqual(words, [])
|
|
|
|
|
|
|
|
def test_add_word(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-06 15:42:26 +01:00
|
|
|
"""
|
|
|
|
add_user_alert_words can add multiple alert words at once.
|
|
|
|
"""
|
2013-09-03 22:41:17 +02:00
|
|
|
email = "cordelia@zulip.com"
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
# Add several words, including multi-word and non-ascii words.
|
|
|
|
add_user_alert_words(user, self.interesting_alert_word_list)
|
2013-09-03 22:41:17 +02:00
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
words = user_alert_words(user)
|
|
|
|
self.assertEqual(words, self.interesting_alert_word_list)
|
2013-09-03 22:41:17 +02:00
|
|
|
|
|
|
|
def test_remove_word(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-06 15:42:26 +01:00
|
|
|
"""
|
|
|
|
Removing alert words works via remove_user_alert_words, even
|
|
|
|
for multi-word and non-ascii words.
|
|
|
|
"""
|
2013-09-03 22:41:17 +02:00
|
|
|
email = "cordelia@zulip.com"
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
add_user_alert_words(user, self.interesting_alert_word_list)
|
|
|
|
|
|
|
|
theoretical_remaining_alerts = self.interesting_alert_word_list[:]
|
2013-09-03 22:41:17 +02:00
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
for alert_word in self.interesting_alert_word_list:
|
|
|
|
remove_user_alert_words(user, alert_word)
|
|
|
|
theoretical_remaining_alerts.remove(alert_word)
|
|
|
|
actual_remaining_alerts = user_alert_words(user)
|
|
|
|
self.assertEqual(actual_remaining_alerts,
|
|
|
|
theoretical_remaining_alerts)
|
2013-09-03 22:41:17 +02:00
|
|
|
|
|
|
|
def test_realm_words(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-11-06 15:42:26 +01:00
|
|
|
"""
|
|
|
|
We can gather alert words for an entire realm via
|
|
|
|
alert_words_in_realm. Alerts added for one user do not impact other
|
|
|
|
users.
|
|
|
|
"""
|
2013-09-03 22:41:17 +02:00
|
|
|
email = "cordelia@zulip.com"
|
|
|
|
user1 = get_user_profile_by_email(email)
|
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
add_user_alert_words(user1, self.interesting_alert_word_list)
|
2013-09-03 22:41:17 +02:00
|
|
|
|
|
|
|
email = "othello@zulip.com"
|
|
|
|
user2 = get_user_profile_by_email(email)
|
|
|
|
add_user_alert_words(user2, ['another'])
|
|
|
|
|
|
|
|
realm_words = alert_words_in_realm(user2.realm)
|
|
|
|
self.assertEqual(len(realm_words), 2)
|
2016-01-25 01:27:18 +01:00
|
|
|
self.assertEqual(list(realm_words.keys()), [user1.id, user2.id])
|
2013-11-06 15:42:26 +01:00
|
|
|
self.assertEqual(realm_words[user1.id],
|
|
|
|
self.interesting_alert_word_list)
|
2013-10-09 20:48:05 +02:00
|
|
|
self.assertEqual(realm_words[user2.id], ['another'])
|
2013-09-03 22:41:17 +02:00
|
|
|
|
|
|
|
def test_json_list_default(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-03 22:41:17 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users/me/alert_words')
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
data = ujson.loads(result.content)
|
|
|
|
self.assertEqual(data['alert_words'], [])
|
|
|
|
|
|
|
|
def test_json_list_add(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-03 22:41:17 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
|
2016-04-01 21:14:10 +02:00
|
|
|
result = self.client_put('/json/users/me/alert_words', {'alert_words': ujson.dumps(['one', 'two', 'three'])})
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users/me/alert_words')
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
data = ujson.loads(result.content)
|
|
|
|
self.assertEqual(data['alert_words'], ['one', 'two', 'three'])
|
|
|
|
|
|
|
|
def test_json_list_remove(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-03 22:41:17 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
|
2016-04-01 21:14:10 +02:00
|
|
|
result = self.client_put('/json/users/me/alert_words', {'alert_words': ujson.dumps(['one', 'two', 'three'])})
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2013-12-11 20:02:32 +01:00
|
|
|
result = self.client_delete('/json/users/me/alert_words', {'alert_words': ujson.dumps(['one'])})
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users/me/alert_words')
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
data = ujson.loads(result.content)
|
|
|
|
self.assertEqual(data['alert_words'], ['two', 'three'])
|
|
|
|
|
|
|
|
def test_json_list_set(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-03 22:41:17 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
|
2016-04-01 21:14:10 +02:00
|
|
|
result = self.client_put('/json/users/me/alert_words', {'alert_words': ujson.dumps(['one', 'two', 'three'])})
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/users/me/alert_words', {'alert_words': ujson.dumps(['a', 'b', 'c'])})
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users/me/alert_words')
|
2013-09-03 22:41:17 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
data = ujson.loads(result.content)
|
|
|
|
self.assertEqual(data['alert_words'], ['a', 'b', 'c'])
|
|
|
|
|
2013-10-09 20:09:48 +02:00
|
|
|
def message_does_alert(self, user_profile, message):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: (UserProfile, text_type) -> bool
|
|
|
|
"""Send a bunch of messages as othello, so Hamlet is notified"""
|
2013-10-09 20:09:48 +02:00
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, message)
|
2016-06-15 23:50:52 +02:00
|
|
|
user_message = most_recent_usermessage(user_profile)
|
|
|
|
return 'has_alert_word' in user_message.flags_list()
|
2013-10-09 20:09:48 +02:00
|
|
|
|
|
|
|
def test_alert_flags(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-10-09 20:09:48 +02:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile_hamlet = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
|
2016-04-01 21:14:10 +02:00
|
|
|
result = self.client_put('/json/users/me/alert_words', {'alert_words': ujson.dumps(['one', 'two', 'three'])})
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/json/users/me/alert_words')
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
data = ujson.loads(result.content)
|
|
|
|
self.assertEqual(data['alert_words'], ['one', 'two', 'three'])
|
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
# Alerts in the middle of messages work.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Normal alert one time"))
|
2013-11-06 15:42:26 +01:00
|
|
|
# Alerts at the end of messages work.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Normal alert one"))
|
2013-11-06 15:42:26 +01:00
|
|
|
# Alerts at the beginning of messages work.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "two normal alerts"))
|
2013-11-06 15:42:26 +01:00
|
|
|
# Alerts with surrounding punctuation work.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "This one? should alert"))
|
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Definitely time for three."))
|
2013-11-06 15:42:26 +01:00
|
|
|
# Multiple alerts in a message work.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "One two three o'clock"))
|
2013-11-06 15:42:26 +01:00
|
|
|
# Alerts are case-insensitive.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "One o'clock"))
|
|
|
|
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Case of ONE, won't stop me"))
|
|
|
|
|
2013-11-06 15:42:26 +01:00
|
|
|
# We don't cause alerts for matches in URLs.
|
2013-10-09 20:09:48 +02:00
|
|
|
self.assertFalse(self.message_does_alert(user_profile_hamlet, "Don't alert on http://t.co/one/ urls"))
|
|
|
|
self.assertFalse(self.message_does_alert(user_profile_hamlet, "Don't alert on http://t.co/one urls"))
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class HomeTest(ZulipTestCase):
|
2016-07-29 21:06:22 +02:00
|
|
|
@slow('big method')
|
2016-07-16 03:56:45 +02:00
|
|
|
def test_home(self):
|
|
|
|
# type: () -> None
|
|
|
|
|
|
|
|
# Keep this list sorted!!!
|
|
|
|
html_bits = [
|
|
|
|
'Compose your message here...',
|
|
|
|
'Exclude messages with topic',
|
|
|
|
'Get started',
|
|
|
|
'Keyboard shortcuts',
|
|
|
|
'Loading...',
|
|
|
|
'Manage Streams',
|
|
|
|
'Narrow by topic',
|
|
|
|
'Next message',
|
|
|
|
'SHARE THE LOVE',
|
|
|
|
'Search streams',
|
|
|
|
'Welcome to Zulip',
|
|
|
|
'pygments.css',
|
|
|
|
'var page_params',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Keep this list sorted!!!
|
|
|
|
expected_keys = [
|
|
|
|
"alert_words",
|
|
|
|
"autoscroll_forever",
|
|
|
|
"avatar_url",
|
|
|
|
"bot_list",
|
|
|
|
"can_create_streams",
|
|
|
|
"cross_realm_user_emails",
|
|
|
|
"debug_mode",
|
|
|
|
"default_desktop_notifications",
|
|
|
|
"default_language",
|
2016-08-02 14:33:13 +02:00
|
|
|
"default_language_name",
|
2016-07-16 03:56:45 +02:00
|
|
|
"desktop_notifications_enabled",
|
|
|
|
"development_environment",
|
|
|
|
"domain",
|
|
|
|
"email",
|
|
|
|
"email_dict",
|
|
|
|
"enable_digest_emails",
|
|
|
|
"enable_offline_email_notifications",
|
|
|
|
"enable_offline_push_notifications",
|
|
|
|
"enter_sends",
|
|
|
|
"event_queue_id",
|
|
|
|
"first_in_realm",
|
|
|
|
"fullname",
|
|
|
|
"furthest_read_time",
|
|
|
|
"has_mobile_devices",
|
|
|
|
"have_initial_messages",
|
|
|
|
"initial_pointer",
|
|
|
|
"initial_presences",
|
|
|
|
"initial_servertime",
|
|
|
|
"is_admin",
|
2016-07-27 01:45:29 +02:00
|
|
|
"is_zephyr_mirror_realm",
|
2016-07-16 03:56:45 +02:00
|
|
|
"language_list",
|
2016-08-02 14:34:12 +02:00
|
|
|
"language_list_dbl_col",
|
2016-07-16 03:56:45 +02:00
|
|
|
"last_event_id",
|
|
|
|
"left_side_userlist",
|
|
|
|
"login_page",
|
|
|
|
"mandatory_topics",
|
|
|
|
"max_message_id",
|
|
|
|
"maxfilesize",
|
|
|
|
"muted_topics",
|
|
|
|
"name_changes_disabled",
|
|
|
|
"narrow",
|
|
|
|
"narrow_stream",
|
|
|
|
"needs_tutorial",
|
2016-07-19 01:37:21 +02:00
|
|
|
"neversubbed_info",
|
2016-07-16 03:56:45 +02:00
|
|
|
"notifications_stream",
|
|
|
|
"password_auth_enabled",
|
|
|
|
"people_list",
|
|
|
|
"poll_timeout",
|
2016-07-27 02:09:10 +02:00
|
|
|
"presence_disabled",
|
2016-07-16 03:56:45 +02:00
|
|
|
"product_name",
|
|
|
|
"prompt_for_invites",
|
|
|
|
"realm_allow_message_editing",
|
|
|
|
"realm_create_stream_by_admins_only",
|
2016-08-04 17:32:41 +02:00
|
|
|
"realm_default_language",
|
2016-07-16 03:56:45 +02:00
|
|
|
"realm_default_streams",
|
|
|
|
"realm_emoji",
|
|
|
|
"realm_filters",
|
|
|
|
"realm_invite_by_admins_only",
|
|
|
|
"realm_invite_required",
|
|
|
|
"realm_message_content_edit_limit_seconds",
|
|
|
|
"realm_name",
|
|
|
|
"realm_restricted_to_domain",
|
2016-08-14 01:52:56 +02:00
|
|
|
"realm_uri",
|
2016-07-16 03:56:45 +02:00
|
|
|
"referrals",
|
2016-07-19 06:44:48 +02:00
|
|
|
"save_stacktraces",
|
2016-07-05 13:05:51 +02:00
|
|
|
"server_generation",
|
2016-08-14 01:52:56 +02:00
|
|
|
"server_uri",
|
2016-07-19 06:31:33 +02:00
|
|
|
"share_the_love",
|
2016-07-16 03:56:45 +02:00
|
|
|
"show_digest_email",
|
|
|
|
"sounds_enabled",
|
|
|
|
"stream_desktop_notifications_enabled",
|
|
|
|
"stream_sounds_enabled",
|
|
|
|
"subbed_info",
|
|
|
|
"test_suite",
|
|
|
|
"twenty_four_hour_time",
|
|
|
|
"unread_count",
|
|
|
|
"unsubbed_info",
|
2016-08-19 00:28:28 +02:00
|
|
|
"user_id",
|
2016-07-16 03:56:45 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
|
|
|
|
# Verify fails if logged-out
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/')
|
2016-07-16 03:56:45 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
|
|
|
|
# Verify succeeds once logged-in
|
|
|
|
self.login(email)
|
|
|
|
with \
|
|
|
|
patch('zerver.lib.actions.request_event_queue', return_value=42), \
|
|
|
|
patch('zerver.lib.actions.get_user_events', return_value=[]):
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get('/', dict(stream='Denmark'))
|
2016-07-16 03:56:45 +02:00
|
|
|
html = result.content.decode('utf-8')
|
|
|
|
|
|
|
|
for html_bit in html_bits:
|
|
|
|
if html_bit not in html:
|
|
|
|
self.fail('%s not in result' % (html_bit,))
|
|
|
|
|
|
|
|
lines = html.split('\n')
|
|
|
|
page_params_line = [l for l in lines if l.startswith('var page_params')][0]
|
|
|
|
page_params_json = page_params_line.split(' = ')[1].rstrip(';')
|
|
|
|
page_params = ujson.loads(page_params_json)
|
|
|
|
|
|
|
|
actual_keys = sorted([str(k) for k in page_params.keys()])
|
|
|
|
self.assertEqual(actual_keys, expected_keys)
|
|
|
|
|
|
|
|
# TODO: Inspect the page_params data further.
|
|
|
|
# print(ujson.dumps(page_params, indent=2))
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class MutedTopicsTests(ZulipTestCase):
|
2013-09-10 00:06:24 +02:00
|
|
|
def test_json_set(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2013-09-10 00:06:24 +02:00
|
|
|
email = 'hamlet@zulip.com'
|
|
|
|
self.login(email)
|
|
|
|
|
|
|
|
url = '/json/set_muted_topics'
|
|
|
|
data = {'muted_topics': '[["stream", "topic"]]'}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post(url, data)
|
2013-09-10 00:06:24 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(ujson.loads(user.muted_topics), [["stream", "topic"]])
|
|
|
|
|
|
|
|
url = '/json/set_muted_topics'
|
|
|
|
data = {'muted_topics': '[["stream2", "topic2"]]'}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post(url, data)
|
2013-09-10 00:06:24 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
user = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(ujson.loads(user.muted_topics), [["stream2", "topic2"]])
|
|
|
|
|
2014-02-14 19:29:42 +01:00
|
|
|
class ExtractedRecipientsTest(TestCase):
|
|
|
|
def test_extract_recipients(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
|
|
|
|
2014-02-14 19:39:11 +01:00
|
|
|
# JSON list w/dups, empties, and trailing whitespace
|
2014-02-14 19:29:42 +01:00
|
|
|
s = ujson.dumps([' alice@zulip.com ', ' bob@zulip.com ', ' ', 'bob@zulip.com'])
|
2016-07-10 00:24:19 +02:00
|
|
|
self.assertEqual(sorted(extract_recipients(s)), ['alice@zulip.com', 'bob@zulip.com'])
|
2014-02-14 19:39:11 +01:00
|
|
|
|
|
|
|
# simple string with one name
|
2014-02-14 19:29:42 +01:00
|
|
|
s = 'alice@zulip.com '
|
2016-07-10 00:24:19 +02:00
|
|
|
self.assertEqual(extract_recipients(s), ['alice@zulip.com'])
|
2014-02-14 19:29:42 +01:00
|
|
|
|
2014-02-14 19:39:11 +01:00
|
|
|
# JSON-encoded string
|
|
|
|
s = '"alice@zulip.com"'
|
2016-07-10 00:24:19 +02:00
|
|
|
self.assertEqual(extract_recipients(s), ['alice@zulip.com'])
|
2014-02-14 19:39:11 +01:00
|
|
|
|
2014-02-14 19:56:55 +01:00
|
|
|
# bare comma-delimited string
|
|
|
|
s = 'bob@zulip.com, alice@zulip.com'
|
2016-07-10 00:24:19 +02:00
|
|
|
self.assertEqual(sorted(extract_recipients(s)), ['alice@zulip.com', 'bob@zulip.com'])
|
2014-02-14 19:56:55 +01:00
|
|
|
|
2014-02-14 19:39:11 +01:00
|
|
|
# JSON-encoded, comma-delimited string
|
|
|
|
s = '"bob@zulip.com,alice@zulip.com"'
|
2016-07-10 00:24:19 +02:00
|
|
|
self.assertEqual(sorted(extract_recipients(s)), ['alice@zulip.com', 'bob@zulip.com'])
|
2014-02-14 19:39:11 +01:00
|
|
|
|
2014-02-14 19:29:42 +01:00
|
|
|
|
2016-08-24 07:53:05 +02:00
|
|
|
# TODO: This class currently only tests the default-off
|
|
|
|
# SEND_MISSED_MESSAGE_EMAILS_AS_USER=True case. We should refactor it
|
|
|
|
# to test both cases (the False case being the most important).
|
2016-08-23 02:08:42 +02:00
|
|
|
class TestMissedMessages(ZulipTestCase):
|
2016-06-22 10:36:22 +02:00
|
|
|
def normalize_string(self, s):
|
|
|
|
# type: (text_type) -> text_type
|
|
|
|
s = s.strip()
|
|
|
|
return re.sub(r'\s+', ' ', s)
|
|
|
|
|
2016-08-24 07:53:05 +02:00
|
|
|
@override_settings(SEND_MISSED_MESSAGE_EMAILS_AS_USER=True)
|
2016-06-22 10:36:22 +02:00
|
|
|
@patch('zerver.lib.email_mirror.generate_random_token')
|
|
|
|
def test_extra_context_in_missed_stream_messages(self, mock_random_token):
|
|
|
|
# type: (MagicMock) -> None
|
2016-07-13 19:05:41 +02:00
|
|
|
tokens = [str(random.getrandbits(32)) for _ in range(30)]
|
2016-06-22 10:36:22 +02:00
|
|
|
mock_random_token.side_effect = tokens
|
|
|
|
|
2014-07-15 21:03:51 +02:00
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '0')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '1')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '2')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '3')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '4')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '5')
|
2015-02-21 02:46:19 +01:00
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '6')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '7')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '8')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '9')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '10')
|
|
|
|
self.send_message("othello@zulip.com", "Denmark", Recipient.STREAM, '11', subject='test2')
|
2014-07-15 21:03:51 +02:00
|
|
|
msg_id = self.send_message("othello@zulip.com", "denmark", Recipient.STREAM, '@**hamlet**')
|
|
|
|
|
2016-06-22 10:36:22 +02:00
|
|
|
othello = get_user_profile_by_email('othello@zulip.com')
|
2014-07-15 21:03:51 +02:00
|
|
|
hamlet = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
handle_missedmessage_emails(hamlet.id, [{'message_id': msg_id}])
|
|
|
|
|
2016-06-22 10:36:22 +02:00
|
|
|
msg = mail.outbox[0]
|
|
|
|
reply_to_addresses = [settings.EMAIL_GATEWAY_PATTERN % (u'mm' + t)
|
|
|
|
for t in tokens]
|
|
|
|
sender = 'Zulip <{}>'.format(settings.NOREPLY_EMAIL_ADDRESS)
|
2014-07-15 21:03:51 +02:00
|
|
|
|
|
|
|
self.assertEquals(len(mail.outbox), 1)
|
2016-08-12 21:07:25 +02:00
|
|
|
self.assertEqual(msg.from_email, '"%s" <%s>' % (othello.full_name, othello.email))
|
2016-06-22 10:36:22 +02:00
|
|
|
self.assertIn(msg.extra_headers['Reply-To'], reply_to_addresses)
|
|
|
|
self.assertEqual(msg.extra_headers['Sender'], sender)
|
2014-07-15 21:03:51 +02:00
|
|
|
self.assertIn(
|
2015-02-21 02:46:19 +01:00
|
|
|
'Denmark > test Othello, the Moor of Venice 1 2 3 4 5 6 7 8 9 10 @**hamlet**',
|
2016-06-22 10:36:22 +02:00
|
|
|
self.normalize_string(mail.outbox[0].body),
|
2014-07-15 21:03:51 +02:00
|
|
|
)
|
2015-10-15 16:13:52 +02:00
|
|
|
|
2016-08-24 07:53:05 +02:00
|
|
|
@override_settings(SEND_MISSED_MESSAGE_EMAILS_AS_USER=True)
|
2016-06-22 10:36:22 +02:00
|
|
|
@patch('zerver.lib.email_mirror.generate_random_token')
|
|
|
|
def test_extra_context_in_personal_missed_stream_messages(self, mock_random_token):
|
|
|
|
# type: (MagicMock) -> None
|
2016-07-13 19:05:41 +02:00
|
|
|
tokens = [str(random.getrandbits(32)) for _ in range(30)]
|
2016-06-22 10:36:22 +02:00
|
|
|
mock_random_token.side_effect = tokens
|
|
|
|
|
|
|
|
msg_id = self.send_message("othello@zulip.com", "hamlet@zulip.com",
|
|
|
|
Recipient.PERSONAL,
|
|
|
|
'Extremely personal message!')
|
|
|
|
|
|
|
|
othello = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
hamlet = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
handle_missedmessage_emails(hamlet.id, [{'message_id': msg_id}])
|
|
|
|
|
|
|
|
msg = mail.outbox[0]
|
|
|
|
reply_to_addresses = [settings.EMAIL_GATEWAY_PATTERN % (u'mm' + t)
|
|
|
|
for t in tokens]
|
|
|
|
sender = 'Zulip <{}>'.format(settings.NOREPLY_EMAIL_ADDRESS)
|
|
|
|
|
|
|
|
self.assertEquals(len(mail.outbox), 1)
|
2016-08-12 21:07:25 +02:00
|
|
|
self.assertEqual(msg.from_email, '"%s" <%s>' % (othello.full_name, othello.email))
|
2016-06-22 10:36:22 +02:00
|
|
|
self.assertIn(msg.extra_headers['Reply-To'], reply_to_addresses)
|
|
|
|
self.assertEqual(msg.extra_headers['Sender'], sender)
|
|
|
|
self.assertIn('You and Othello, the Moor of Venice Extremely personal message!',
|
|
|
|
self.normalize_string(msg.body))
|
|
|
|
|
2016-08-24 07:53:05 +02:00
|
|
|
@override_settings(SEND_MISSED_MESSAGE_EMAILS_AS_USER=True)
|
2016-06-22 10:36:22 +02:00
|
|
|
@patch('zerver.lib.email_mirror.generate_random_token')
|
|
|
|
def test_extra_context_in_huddle_missed_stream_messages(self, mock_random_token):
|
|
|
|
# type: (MagicMock) -> None
|
2016-07-13 19:05:41 +02:00
|
|
|
tokens = [str(random.getrandbits(32)) for _ in range(30)]
|
2016-06-22 10:36:22 +02:00
|
|
|
mock_random_token.side_effect = tokens
|
|
|
|
|
|
|
|
msg_id = self.send_message("othello@zulip.com",
|
|
|
|
["hamlet@zulip.com", "iago@zulip.com"],
|
|
|
|
Recipient.PERSONAL,
|
|
|
|
'Group personal message!')
|
|
|
|
|
|
|
|
othello = get_user_profile_by_email('othello@zulip.com')
|
|
|
|
hamlet = get_user_profile_by_email('hamlet@zulip.com')
|
|
|
|
handle_missedmessage_emails(hamlet.id, [{'message_id': msg_id}])
|
|
|
|
|
|
|
|
msg = mail.outbox[0]
|
|
|
|
reply_to_addresses = [settings.EMAIL_GATEWAY_PATTERN % (u'mm' + t)
|
|
|
|
for t in tokens]
|
|
|
|
sender = 'Zulip <{}>'.format(settings.NOREPLY_EMAIL_ADDRESS)
|
|
|
|
|
|
|
|
self.assertEquals(len(mail.outbox), 1)
|
2016-08-12 21:07:25 +02:00
|
|
|
self.assertEqual(msg.from_email, '"%s" <%s>' % (othello.full_name, othello.email))
|
2016-06-22 10:36:22 +02:00
|
|
|
self.assertIn(msg.extra_headers['Reply-To'], reply_to_addresses)
|
|
|
|
self.assertEqual(msg.extra_headers['Sender'], sender)
|
|
|
|
body = ('You and Iago, Othello, the Moor of Venice Othello,'
|
|
|
|
' the Moor of Venice Group personal message')
|
|
|
|
|
|
|
|
self.assertIn(body, self.normalize_string(msg.body))
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class TestOpenRealms(ZulipTestCase):
|
2015-10-15 16:13:52 +02:00
|
|
|
def test_open_realm_logic(self):
|
2016-06-15 23:47:22 +02:00
|
|
|
# type: () -> None
|
2015-10-15 16:13:52 +02:00
|
|
|
mit_realm = get_realm("mit.edu")
|
|
|
|
self.assertEquals(get_unique_open_realm(), None)
|
|
|
|
mit_realm.restricted_to_domain = False
|
|
|
|
mit_realm.save()
|
|
|
|
self.assertTrue(completely_open(mit_realm.domain))
|
|
|
|
self.assertEquals(get_unique_open_realm(), None)
|
2016-08-12 20:24:04 +02:00
|
|
|
with self.settings(SYSTEM_ONLY_REALMS={"zulip.com"}):
|
|
|
|
self.assertEquals(get_unique_open_realm(), mit_realm)
|
2015-10-15 16:13:52 +02:00
|
|
|
mit_realm.restricted_to_domain = True
|
|
|
|
mit_realm.save()
|