2014-01-31 21:08:40 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-11-01 17:15:05 +01:00
|
|
|
from __future__ import absolute_import
|
2014-07-03 18:18:00 +02:00
|
|
|
from django.conf import settings
|
2016-06-04 20:14:05 +02:00
|
|
|
from django.http import HttpResponse
|
2014-01-31 21:08:40 +01:00
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
from zilencer.models import Deployment
|
|
|
|
|
2016-07-29 18:16:54 +02:00
|
|
|
from zerver.views import get_invitee_emails_set
|
2014-01-31 21:08:40 +01:00
|
|
|
from zerver.models import (
|
2015-10-13 22:54:35 +02:00
|
|
|
get_realm, get_user_profile_by_email,
|
2015-10-26 16:49:22 +01:00
|
|
|
PreregistrationUser, Realm, Recipient, ScheduledJob, UserProfile, UserMessage,
|
2014-01-31 21:08:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
from zerver.lib.actions import (
|
|
|
|
create_stream_if_needed,
|
|
|
|
do_add_subscription,
|
|
|
|
set_default_streams,
|
|
|
|
)
|
|
|
|
|
2016-08-04 17:32:41 +02:00
|
|
|
from zerver.lib.actions import do_set_realm_default_language
|
2014-01-31 21:08:40 +01:00
|
|
|
from zerver.lib.digest import send_digest_email
|
|
|
|
from zerver.lib.notifications import enqueue_welcome_emails, one_click_unsubscribe_link
|
2016-08-23 02:08:42 +02:00
|
|
|
from zerver.lib.test_helpers import ZulipTestCase, find_key_by_email, queries_captured
|
2014-01-31 21:08:40 +01:00
|
|
|
from zerver.lib.test_runner import slow
|
2015-08-19 20:53:55 +02:00
|
|
|
from zerver.lib.session_user import get_session_dict_user
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import ujson
|
|
|
|
|
2016-01-24 03:39:44 +01:00
|
|
|
from six.moves import urllib
|
2015-11-01 17:15:05 +01:00
|
|
|
from six.moves import range
|
2016-03-11 10:57:29 +01:00
|
|
|
import six
|
2016-06-04 20:14:05 +02:00
|
|
|
from six import text_type
|
2014-01-31 21:08:40 +01:00
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class PublicURLTest(ZulipTestCase):
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Account creation URLs are accessible even when not logged in. Authenticated
|
|
|
|
URLs redirect to a page.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def fetch(self, method, urls, expected_status):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: (str, List[str], int) -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
for url in urls:
|
2016-07-28 00:30:22 +02:00
|
|
|
response = getattr(self.client, method)(url) # e.g. self.client_post(url) if method is "post"
|
2014-01-31 21:08:40 +01:00
|
|
|
self.assertEqual(response.status_code, expected_status,
|
|
|
|
msg="Expected %d, received %d for %s to %s" % (
|
|
|
|
expected_status, response.status_code, method, url))
|
|
|
|
|
|
|
|
def test_public_urls(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Test which views are accessible when not logged in.
|
|
|
|
"""
|
|
|
|
# FIXME: We should also test the Tornado URLs -- this codepath
|
|
|
|
# can't do so because this Django test mechanism doesn't go
|
|
|
|
# through Tornado.
|
|
|
|
get_urls = {200: ["/accounts/home/", "/accounts/login/"],
|
|
|
|
302: ["/"],
|
|
|
|
401: ["/api/v1/streams/Denmark/members",
|
|
|
|
"/api/v1/users/me/subscriptions",
|
|
|
|
"/api/v1/messages",
|
2016-04-01 21:57:42 +02:00
|
|
|
"/json/messages",
|
2016-04-17 14:47:43 +02:00
|
|
|
"/json/streams",
|
2014-01-31 21:08:40 +01:00
|
|
|
],
|
|
|
|
}
|
|
|
|
post_urls = {200: ["/accounts/login/"],
|
|
|
|
302: ["/accounts/logout/"],
|
2016-04-17 14:47:12 +02:00
|
|
|
401: ["/json/messages",
|
2014-01-31 21:08:40 +01:00
|
|
|
"/json/invite_users",
|
|
|
|
"/json/settings/change",
|
|
|
|
"/json/subscriptions/remove",
|
|
|
|
"/json/subscriptions/exists",
|
|
|
|
"/json/subscriptions/property",
|
|
|
|
"/json/get_subscribers",
|
|
|
|
"/json/fetch_api_key",
|
2015-11-30 21:39:40 +01:00
|
|
|
"/json/users/me/subscriptions",
|
2014-01-31 21:08:40 +01:00
|
|
|
"/api/v1/users/me/subscriptions",
|
|
|
|
],
|
|
|
|
400: ["/api/v1/send_message",
|
|
|
|
"/api/v1/external/github",
|
|
|
|
"/api/v1/fetch_api_key",
|
|
|
|
],
|
|
|
|
}
|
2016-04-02 20:24:19 +02:00
|
|
|
put_urls = {401: ["/json/users/me/pointer"],
|
|
|
|
}
|
2016-03-11 10:57:29 +01:00
|
|
|
for status_code, url_set in six.iteritems(get_urls):
|
2014-01-31 21:08:40 +01:00
|
|
|
self.fetch("get", url_set, status_code)
|
2016-03-11 10:57:29 +01:00
|
|
|
for status_code, url_set in six.iteritems(post_urls):
|
2014-01-31 21:08:40 +01:00
|
|
|
self.fetch("post", url_set, status_code)
|
2016-04-02 20:24:19 +02:00
|
|
|
for status_code, url_set in six.iteritems(put_urls):
|
|
|
|
self.fetch("put", url_set, status_code)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
2015-10-02 13:23:26 +02:00
|
|
|
def test_get_gcid_when_not_configured(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2015-10-02 13:23:26 +02:00
|
|
|
with self.settings(GOOGLE_CLIENT_ID=None):
|
2016-07-28 00:38:45 +02:00
|
|
|
resp = self.client_get("/api/v1/fetch_google_client_id")
|
2015-10-02 13:23:26 +02:00
|
|
|
self.assertEquals(400, resp.status_code,
|
|
|
|
msg="Expected 400, received %d for GET /api/v1/fetch_google_client_id" % resp.status_code,
|
|
|
|
)
|
|
|
|
data = ujson.loads(resp.content)
|
|
|
|
self.assertEqual('error', data['result'])
|
|
|
|
|
|
|
|
def test_get_gcid_when_configured(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2015-10-02 13:23:26 +02:00
|
|
|
with self.settings(GOOGLE_CLIENT_ID="ABCD"):
|
2016-07-28 00:38:45 +02:00
|
|
|
resp = self.client_get("/api/v1/fetch_google_client_id")
|
2015-10-02 13:23:26 +02:00
|
|
|
self.assertEquals(200, resp.status_code,
|
|
|
|
msg="Expected 200, received %d for GET /api/v1/fetch_google_client_id" % resp.status_code,
|
|
|
|
)
|
|
|
|
data = ujson.loads(resp.content)
|
|
|
|
self.assertEqual('success', data['result'])
|
|
|
|
self.assertEqual('ABCD', data['google_client_id'])
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class LoginTest(ZulipTestCase):
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Logging in, registration, and logging out.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def test_login(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
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)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_login_bad_password(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2016-06-27 20:45:41 +02:00
|
|
|
self.login("hamlet@zulip.com", password="wrongpassword", fails=True)
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertIsNone(get_session_dict_user(self.client.session))
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_login_nonexist_user(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2016-06-27 20:36:04 +02:00
|
|
|
result = self.login_with_return("xxx@zulip.com", "xxx")
|
2016-07-12 15:41:45 +02:00
|
|
|
self.assert_in_response("Please enter a correct email and password", result)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_register(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm("zulip.com")
|
2015-11-01 17:15:05 +01:00
|
|
|
streams = ["stream_%s" % i for i in range(40)]
|
2014-01-31 21:08:40 +01:00
|
|
|
for stream in streams:
|
|
|
|
create_stream_if_needed(realm, stream)
|
|
|
|
|
|
|
|
set_default_streams(realm, streams)
|
|
|
|
with queries_captured() as queries:
|
|
|
|
self.register("test", "test")
|
|
|
|
# Ensure the number of queries we make is not O(streams)
|
2014-03-02 06:46:54 +01:00
|
|
|
self.assert_length(queries, 67)
|
2014-01-31 21:08:40 +01:00
|
|
|
user_profile = get_user_profile_by_email('test@zulip.com')
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertEqual(get_session_dict_user(self.client.session), user_profile.id)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_register_deactivated(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
If you try to register for a deactivated realm, you get a clear error
|
|
|
|
page.
|
|
|
|
"""
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm("zulip.com")
|
2014-01-31 21:08:40 +01:00
|
|
|
realm.deactivated = True
|
|
|
|
realm.save(update_fields=["deactivated"])
|
|
|
|
|
|
|
|
result = self.register("test", "test")
|
2016-07-12 23:15:27 +02:00
|
|
|
self.assert_in_response("has been deactivated", result)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
with self.assertRaises(UserProfile.DoesNotExist):
|
|
|
|
get_user_profile_by_email('test@zulip.com')
|
|
|
|
|
|
|
|
def test_login_deactivated(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
If you try to log in to a deactivated realm, you get a clear error page.
|
|
|
|
"""
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm("zulip.com")
|
2014-01-31 21:08:40 +01:00
|
|
|
realm.deactivated = True
|
|
|
|
realm.save(update_fields=["deactivated"])
|
|
|
|
|
2016-06-27 20:36:04 +02:00
|
|
|
result = self.login_with_return("hamlet@zulip.com")
|
2016-07-12 23:15:27 +02:00
|
|
|
self.assert_in_response("has been deactivated", result)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_logout(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
self.login("hamlet@zulip.com")
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post('/accounts/logout/')
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertIsNone(get_session_dict_user(self.client.session))
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_non_ascii_login(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
You can log in even if your password contain non-ASCII characters.
|
|
|
|
"""
|
|
|
|
email = "test@zulip.com"
|
2015-11-01 17:15:05 +01:00
|
|
|
password = u"hümbüǵ"
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Registering succeeds.
|
|
|
|
self.register("test", password)
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertEqual(get_session_dict_user(self.client.session), user_profile.id)
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post('/accounts/logout/')
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertIsNone(get_session_dict_user(self.client.session))
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Logging in succeeds.
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post('/accounts/logout/')
|
2014-01-31 21:08:40 +01:00
|
|
|
self.login(email, password)
|
2015-08-19 20:53:55 +02:00
|
|
|
self.assertEqual(get_session_dict_user(self.client.session), user_profile.id)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_register_first_user_with_invites(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
The first user in a realm has a special step in their signup workflow
|
2016-06-02 21:15:37 +02:00
|
|
|
for inviting other users. Do as realistic an end-to-end test as we can
|
2014-01-31 21:08:40 +01:00
|
|
|
without Tornado running.
|
|
|
|
"""
|
|
|
|
username = "user1"
|
|
|
|
password = "test"
|
|
|
|
domain = "test.com"
|
|
|
|
email = "user1@test.com"
|
|
|
|
|
|
|
|
# Create a new realm to ensure that we're the first user in it.
|
2015-08-21 18:37:30 +02:00
|
|
|
Realm.objects.create(domain=domain, name="Test Inc.")
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Start the signup process by supplying an email address.
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/accounts/home/', {'email': email})
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Check the redirect telling you to check your mail for a confirmation
|
|
|
|
# link.
|
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
self.assertTrue(result["Location"].endswith(
|
2015-08-19 21:49:10 +02:00
|
|
|
"/accounts/send_confirm/%s@%s" % (username, domain)))
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(result["Location"])
|
2016-07-12 15:41:45 +02:00
|
|
|
self.assert_in_response("Check your email so we can get started.", result)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Visit the confirmation link.
|
|
|
|
from django.core.mail import outbox
|
|
|
|
for message in reversed(outbox):
|
|
|
|
if email in message.to:
|
2014-07-03 18:18:00 +02:00
|
|
|
confirmation_link_pattern = re.compile(settings.EXTERNAL_HOST + "(\S+)>")
|
2014-01-31 21:08:40 +01:00
|
|
|
confirmation_url = confirmation_link_pattern.search(
|
|
|
|
message.body).groups()[0]
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise ValueError("Couldn't find a confirmation email.")
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(confirmation_url)
|
2014-01-31 21:08:40 +01:00
|
|
|
self.assertEquals(result.status_code, 200)
|
|
|
|
|
|
|
|
# Pick a password and agree to the ToS.
|
|
|
|
result = self.submit_reg_form_for_user(username, password, domain)
|
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
self.assertTrue(result["Location"].endswith("/invite/"))
|
|
|
|
|
2016-06-02 21:15:37 +02:00
|
|
|
# Invite other users to join you.
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(result["Location"])
|
2016-07-12 15:41:45 +02:00
|
|
|
self.assert_in_response("You're the first one here!", result)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# Reset the outbox for our invites.
|
|
|
|
outbox.pop()
|
|
|
|
|
|
|
|
invitees = ['alice@' + domain, 'bob@' + domain]
|
|
|
|
params = {
|
|
|
|
'invitee_emails': ujson.dumps(invitees)
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/bulk_invite_users', params)
|
2014-01-31 21:08:40 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
# We really did email these users, and they have PreregistrationUser
|
|
|
|
# objects.
|
|
|
|
email_recipients = [message.recipients()[0] for message in outbox]
|
|
|
|
self.assertEqual(len(outbox), len(invitees))
|
2016-07-10 20:43:58 +02:00
|
|
|
self.assertEqual(sorted(email_recipients), sorted(invitees))
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(len(invitees), PreregistrationUser.objects.filter(
|
|
|
|
referred_by=user_profile).count())
|
|
|
|
|
|
|
|
# After this we start manipulating browser information, so stop here.
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class InviteUserTest(ZulipTestCase):
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def invite(self, users, streams):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: (str, List[text_type]) -> HttpResponse
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Invites the specified users to Zulip with the specified streams.
|
|
|
|
|
|
|
|
users should be a string containing the users to invite, comma or
|
|
|
|
newline separated.
|
|
|
|
|
|
|
|
streams should be a list of strings.
|
|
|
|
"""
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
return self.client_post("/json/invite_users",
|
2014-01-31 21:08:40 +01:00
|
|
|
{"invitee_emails": users,
|
|
|
|
"stream": streams})
|
|
|
|
|
|
|
|
def check_sent_emails(self, correct_recipients):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: (List[str]) -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
from django.core.mail import outbox
|
|
|
|
self.assertEqual(len(outbox), len(correct_recipients))
|
|
|
|
email_recipients = [email.recipients()[0] for email in outbox]
|
2016-07-10 20:43:58 +02:00
|
|
|
self.assertEqual(sorted(email_recipients), sorted(correct_recipients))
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
def test_bulk_invite_users(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
|
|
|
"""The bulk_invite_users code path is for the first user in a realm."""
|
2014-01-31 21:08:40 +01:00
|
|
|
self.login('hamlet@zulip.com')
|
|
|
|
invitees = ['alice@zulip.com', 'bob@zulip.com']
|
|
|
|
params = {
|
|
|
|
'invitee_emails': ujson.dumps(invitees)
|
|
|
|
}
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/json/bulk_invite_users', params)
|
2014-01-31 21:08:40 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
self.check_sent_emails(invitees)
|
|
|
|
|
|
|
|
def test_successful_invite_user(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
A call to /json/invite_users with valid parameters causes an invitation
|
|
|
|
email to be sent.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
invitee = "alice-test@zulip.com"
|
|
|
|
self.assert_json_success(self.invite(invitee, ["Denmark"]))
|
|
|
|
self.assertTrue(find_key_by_email(invitee))
|
|
|
|
self.check_sent_emails([invitee])
|
|
|
|
|
2016-07-29 18:16:54 +02:00
|
|
|
def test_successful_invite_user_with_name(self):
|
|
|
|
# type: () -> None
|
|
|
|
"""
|
|
|
|
A call to /json/invite_users with valid parameters causes an invitation
|
|
|
|
email to be sent.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
email = "alice-test@zulip.com"
|
|
|
|
invitee = "Alice Test <{}>".format(email)
|
|
|
|
self.assert_json_success(self.invite(invitee, ["Denmark"]))
|
|
|
|
self.assertTrue(find_key_by_email(email))
|
|
|
|
self.check_sent_emails([email])
|
|
|
|
|
|
|
|
def test_successful_invite_user_with_name_and_normal_one(self):
|
|
|
|
# type: () -> None
|
|
|
|
"""
|
|
|
|
A call to /json/invite_users with valid parameters causes an invitation
|
|
|
|
email to be sent.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
email = "alice-test@zulip.com"
|
|
|
|
email2 = "bob-test@zulip.com"
|
|
|
|
invitee = "Alice Test <{}>, {}".format(email, email2)
|
|
|
|
self.assert_json_success(self.invite(invitee, ["Denmark"]))
|
|
|
|
self.assertTrue(find_key_by_email(email))
|
|
|
|
self.assertTrue(find_key_by_email(email2))
|
|
|
|
self.check_sent_emails([email, email2])
|
|
|
|
|
2015-10-26 16:49:22 +01:00
|
|
|
def test_invite_user_signup_initial_history(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2015-10-26 16:49:22 +01:00
|
|
|
"""
|
|
|
|
Test that a new user invited to a stream receives some initial
|
|
|
|
history but only from public streams.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
private_stream_name = "Secret"
|
|
|
|
(stream, _) = create_stream_if_needed(user_profile.realm, private_stream_name, invite_only=True)
|
|
|
|
do_add_subscription(user_profile, stream)
|
|
|
|
public_msg_id = self.send_message("hamlet@zulip.com", "Denmark", Recipient.STREAM,
|
|
|
|
"Public topic", "Public message")
|
|
|
|
secret_msg_id = self.send_message("hamlet@zulip.com", private_stream_name, Recipient.STREAM,
|
|
|
|
"Secret topic", "Secret message")
|
|
|
|
invitee = "alice-test@zulip.com"
|
|
|
|
self.assert_json_success(self.invite(invitee, [private_stream_name, "Denmark"]))
|
|
|
|
self.assertTrue(find_key_by_email(invitee))
|
|
|
|
|
|
|
|
self.submit_reg_form_for_user("alice-test", "password")
|
|
|
|
invitee_profile = get_user_profile_by_email(invitee)
|
|
|
|
invitee_msg_ids = [um.message_id for um in
|
|
|
|
UserMessage.objects.filter(user_profile=invitee_profile)]
|
|
|
|
self.assertTrue(public_msg_id in invitee_msg_ids)
|
|
|
|
self.assertFalse(secret_msg_id in invitee_msg_ids)
|
|
|
|
|
2014-01-31 21:08:40 +01:00
|
|
|
def test_multi_user_invite(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Invites multiple users with a variety of delimiters.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
# Intentionally use a weird string.
|
|
|
|
self.assert_json_success(self.invite(
|
|
|
|
"""bob-test@zulip.com, carol-test@zulip.com,
|
|
|
|
dave-test@zulip.com
|
|
|
|
|
|
|
|
|
|
|
|
earl-test@zulip.com""", ["Denmark"]))
|
|
|
|
for user in ("bob", "carol", "dave", "earl"):
|
2015-12-01 17:11:16 +01:00
|
|
|
self.assertTrue(find_key_by_email("%s-test@zulip.com" % (user,)))
|
2014-01-31 21:08:40 +01:00
|
|
|
self.check_sent_emails(["bob-test@zulip.com", "carol-test@zulip.com",
|
|
|
|
"dave-test@zulip.com", "earl-test@zulip.com"])
|
|
|
|
|
|
|
|
def test_missing_or_invalid_params(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Tests inviting with various missing or invalid parameters.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_json_error(
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/invite_users", {"invitee_emails": "foo@zulip.com"}),
|
2014-01-31 21:08:40 +01:00
|
|
|
"You must specify at least one stream for invitees to join.")
|
|
|
|
|
|
|
|
for address in ("noatsign.com", "outsideyourdomain@example.net"):
|
|
|
|
self.assert_json_error(
|
|
|
|
self.invite(address, ["Denmark"]),
|
|
|
|
"Some emails did not validate, so we didn't send any invitations.")
|
|
|
|
self.check_sent_emails([])
|
|
|
|
|
|
|
|
def test_invalid_stream(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Tests inviting to a non-existent stream.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_json_error(self.invite("iago-test@zulip.com", ["NotARealStream"]),
|
|
|
|
"Stream does not exist: NotARealStream. No invites were sent.")
|
|
|
|
self.check_sent_emails([])
|
|
|
|
|
|
|
|
def test_invite_existing_user(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
If you invite an address already using Zulip, no invitation is sent.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
self.assert_json_error(
|
2016-07-28 00:30:22 +02:00
|
|
|
self.client_post("/json/invite_users",
|
2014-01-31 21:08:40 +01:00
|
|
|
{"invitee_emails": "hamlet@zulip.com",
|
|
|
|
"stream": ["Denmark"]}),
|
|
|
|
"We weren't able to invite anyone.")
|
|
|
|
self.assertRaises(PreregistrationUser.DoesNotExist,
|
|
|
|
lambda: PreregistrationUser.objects.get(
|
|
|
|
email="hamlet@zulip.com"))
|
|
|
|
self.check_sent_emails([])
|
|
|
|
|
|
|
|
def test_invite_some_existing_some_new(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
If you invite a mix of already existing and new users, invitations are
|
|
|
|
only sent to the new users.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
existing = ["hamlet@zulip.com", "othello@zulip.com"]
|
|
|
|
new = ["foo-test@zulip.com", "bar-test@zulip.com"]
|
|
|
|
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post("/json/invite_users",
|
2014-01-31 21:08:40 +01:00
|
|
|
{"invitee_emails": "\n".join(existing + new),
|
|
|
|
"stream": ["Denmark"]})
|
|
|
|
self.assert_json_error(result,
|
|
|
|
"Some of those addresses are already using Zulip, \
|
|
|
|
so we didn't send them an invitation. We did send invitations to everyone else!")
|
|
|
|
|
|
|
|
# We only created accounts for the new users.
|
|
|
|
for email in existing:
|
|
|
|
self.assertRaises(PreregistrationUser.DoesNotExist,
|
|
|
|
lambda: PreregistrationUser.objects.get(
|
|
|
|
email=email))
|
|
|
|
for email in new:
|
|
|
|
self.assertTrue(PreregistrationUser.objects.get(email=email))
|
|
|
|
|
|
|
|
# We only sent emails to the new users.
|
|
|
|
self.check_sent_emails(new)
|
|
|
|
|
|
|
|
def test_invite_outside_domain_in_closed_realm(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
In a realm with `restricted_to_domain = True`, you can't invite people
|
|
|
|
with a different domain from that of the realm or your e-mail address.
|
|
|
|
"""
|
2015-10-13 22:54:35 +02:00
|
|
|
zulip_realm = get_realm("zulip.com")
|
2014-01-31 21:08:40 +01:00
|
|
|
zulip_realm.restricted_to_domain = True
|
|
|
|
zulip_realm.save()
|
|
|
|
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
external_address = "foo@example.com"
|
|
|
|
|
|
|
|
self.assert_json_error(
|
|
|
|
self.invite(external_address, ["Denmark"]),
|
|
|
|
"Some emails did not validate, so we didn't send any invitations.")
|
|
|
|
|
|
|
|
def test_invite_outside_domain_in_open_realm(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
In a realm with `restricted_to_domain = False`, you can invite people
|
|
|
|
with a different domain from that of the realm or your e-mail address.
|
|
|
|
"""
|
2015-10-13 22:54:35 +02:00
|
|
|
zulip_realm = get_realm("zulip.com")
|
2014-01-31 21:08:40 +01:00
|
|
|
zulip_realm.restricted_to_domain = False
|
|
|
|
zulip_realm.save()
|
|
|
|
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
external_address = "foo@example.com"
|
|
|
|
|
|
|
|
self.assert_json_success(self.invite(external_address, ["Denmark"]))
|
|
|
|
self.check_sent_emails([external_address])
|
|
|
|
|
|
|
|
def test_invite_with_non_ascii_streams(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
Inviting someone to streams with non-ASCII characters succeeds.
|
|
|
|
"""
|
|
|
|
self.login("hamlet@zulip.com")
|
|
|
|
invitee = "alice-test@zulip.com"
|
|
|
|
|
2015-11-01 17:15:05 +01:00
|
|
|
stream_name = u"hümbüǵ"
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm("zulip.com")
|
2014-01-31 21:08:40 +01:00
|
|
|
stream, _ = create_stream_if_needed(realm, stream_name)
|
|
|
|
|
|
|
|
# Make sure we're subscribed before inviting someone.
|
|
|
|
do_add_subscription(
|
|
|
|
get_user_profile_by_email("hamlet@zulip.com"),
|
|
|
|
stream, no_log=True)
|
|
|
|
|
|
|
|
self.assert_json_success(self.invite(invitee, [stream_name]))
|
|
|
|
|
2016-07-29 18:16:54 +02:00
|
|
|
class InviteeEmailsParserTests(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.email1 = "email1@zulip.com"
|
|
|
|
self.email2 = "email2@zulip.com"
|
|
|
|
self.email3 = "email3@zulip.com"
|
|
|
|
|
|
|
|
def test_if_emails_separated_by_commas_are_parsed_and_striped_correctly(self):
|
|
|
|
emails_raw = "{} ,{}, {}".format(self.email1, self.email2, self.email3)
|
|
|
|
expected_set = {self.email1, self.email2, self.email3}
|
|
|
|
self.assertEqual(get_invitee_emails_set(emails_raw), expected_set)
|
|
|
|
|
|
|
|
def test_if_emails_separated_by_newlines_are_parsed_and_striped_correctly(self):
|
|
|
|
emails_raw = "{}\n {}\n {} ".format(self.email1, self.email2, self.email3)
|
|
|
|
expected_set = {self.email1, self.email2, self.email3}
|
|
|
|
self.assertEqual(get_invitee_emails_set(emails_raw), expected_set)
|
|
|
|
|
|
|
|
def test_if_emails_from_email_client_separated_by_newlines_are_parsed_correctly(self):
|
|
|
|
emails_raw = "Email One <{}>\nEmailTwo<{}>\nEmail Three<{}>".format(self.email1, self.email2, self.email3)
|
|
|
|
expected_set = {self.email1, self.email2, self.email3}
|
|
|
|
self.assertEqual(get_invitee_emails_set(emails_raw), expected_set)
|
|
|
|
|
|
|
|
def test_if_emails_in_mixed_style_are_parsed_correctly(self):
|
|
|
|
emails_raw = "Email One <{}>,EmailTwo<{}>\n{}".format(self.email1, self.email2, self.email3)
|
|
|
|
expected_set = {self.email1, self.email2, self.email3}
|
|
|
|
self.assertEqual(get_invitee_emails_set(emails_raw), expected_set)
|
|
|
|
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class EmailUnsubscribeTests(ZulipTestCase):
|
2014-01-31 21:08:40 +01:00
|
|
|
def test_missedmessage_unsubscribe(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
We provide one-click unsubscribe links in missed message
|
|
|
|
e-mails that you can click even when logged out to update your
|
|
|
|
email notification settings.
|
|
|
|
"""
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
user_profile.enable_offline_email_notifications = True
|
|
|
|
user_profile.save()
|
|
|
|
|
|
|
|
unsubscribe_link = one_click_unsubscribe_link(user_profile,
|
|
|
|
"missed_messages")
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(urllib.parse.urlparse(unsubscribe_link).path)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
# Circumvent user_profile caching.
|
|
|
|
user_profile = UserProfile.objects.get(email="hamlet@zulip.com")
|
|
|
|
self.assertFalse(user_profile.enable_offline_email_notifications)
|
|
|
|
|
|
|
|
def test_welcome_unsubscribe(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
We provide one-click unsubscribe links in welcome e-mails that you can
|
|
|
|
click even when logged out to stop receiving them.
|
|
|
|
"""
|
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
|
|
|
|
# Simulate a new user signing up, which enqueues 2 welcome e-mails.
|
|
|
|
enqueue_welcome_emails(email, "King Hamlet")
|
|
|
|
self.assertEqual(2, len(ScheduledJob.objects.filter(
|
|
|
|
type=ScheduledJob.EMAIL, filter_string__iexact=email)))
|
|
|
|
|
|
|
|
# Simulate unsubscribing from the welcome e-mails.
|
|
|
|
unsubscribe_link = one_click_unsubscribe_link(user_profile, "welcome")
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(urllib.parse.urlparse(unsubscribe_link).path)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# The welcome email jobs are no longer scheduled.
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
self.assertEqual(0, len(ScheduledJob.objects.filter(
|
|
|
|
type=ScheduledJob.EMAIL, filter_string__iexact=email)))
|
|
|
|
|
|
|
|
def test_digest_unsubscribe(self):
|
2016-06-04 20:14:05 +02:00
|
|
|
# type: () -> None
|
2014-01-31 21:08:40 +01:00
|
|
|
"""
|
|
|
|
We provide one-click unsubscribe links in digest e-mails that you can
|
|
|
|
click even when logged out to stop receiving them.
|
|
|
|
|
|
|
|
Unsubscribing from these emails also dequeues any digest email jobs that
|
|
|
|
have been queued.
|
|
|
|
"""
|
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
user_profile = get_user_profile_by_email("hamlet@zulip.com")
|
|
|
|
self.assertTrue(user_profile.enable_digest_emails)
|
|
|
|
|
|
|
|
# Enqueue a fake digest email.
|
|
|
|
send_digest_email(user_profile, "", "")
|
|
|
|
self.assertEqual(1, len(ScheduledJob.objects.filter(
|
|
|
|
type=ScheduledJob.EMAIL, filter_string__iexact=email)))
|
|
|
|
|
|
|
|
# Simulate unsubscribing from digest e-mails.
|
|
|
|
unsubscribe_link = one_click_unsubscribe_link(user_profile, "digest")
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(urllib.parse.urlparse(unsubscribe_link).path)
|
2014-01-31 21:08:40 +01:00
|
|
|
|
|
|
|
# The setting is toggled off, and scheduled jobs have been removed.
|
|
|
|
self.assertEqual(result.status_code, 200)
|
|
|
|
# Circumvent user_profile caching.
|
|
|
|
user_profile = UserProfile.objects.get(email="hamlet@zulip.com")
|
|
|
|
self.assertFalse(user_profile.enable_digest_emails)
|
|
|
|
self.assertEqual(0, len(ScheduledJob.objects.filter(
|
|
|
|
type=ScheduledJob.EMAIL, filter_string__iexact=email)))
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class RealmCreationTest(ZulipTestCase):
|
2016-06-03 01:02:58 +02:00
|
|
|
|
|
|
|
def test_create_realm(self):
|
|
|
|
# type: () -> None
|
|
|
|
username = "user1"
|
|
|
|
password = "test"
|
|
|
|
domain = "test.com"
|
|
|
|
email = "user1@test.com"
|
|
|
|
|
|
|
|
# Make sure the realm does not exist
|
|
|
|
self.assertIsNone(get_realm("test.com"))
|
|
|
|
|
|
|
|
with self.settings(OPEN_REALM_CREATION=True):
|
|
|
|
# Create new realm with the email
|
2016-07-28 00:30:22 +02:00
|
|
|
result = self.client_post('/create_realm/', {'email': email})
|
2016-06-03 01:02:58 +02:00
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
self.assertTrue(result["Location"].endswith(
|
|
|
|
"/accounts/send_confirm/%s@%s" % (username, domain)))
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(result["Location"])
|
2016-07-12 15:41:45 +02:00
|
|
|
self.assert_in_response("Check your email so we can get started.", result)
|
2016-06-03 01:02:58 +02:00
|
|
|
|
|
|
|
# Visit the confirmation link.
|
|
|
|
from django.core.mail import outbox
|
|
|
|
for message in reversed(outbox):
|
|
|
|
if email in message.to:
|
|
|
|
confirmation_link_pattern = re.compile(settings.EXTERNAL_HOST + "(\S+)>")
|
|
|
|
confirmation_url = confirmation_link_pattern.search(
|
|
|
|
message.body).groups()[0]
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise ValueError("Couldn't find a confirmation email.")
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(confirmation_url)
|
2016-06-03 01:02:58 +02:00
|
|
|
self.assertEquals(result.status_code, 200)
|
|
|
|
|
|
|
|
result = self.submit_reg_form_for_user(username, password, domain)
|
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
|
|
|
|
# Make sure the realm is created
|
|
|
|
realm = get_realm("test.com")
|
|
|
|
|
|
|
|
self.assertIsNotNone(realm)
|
|
|
|
self.assertEqual(realm.domain, domain)
|
|
|
|
self.assertEqual(get_user_profile_by_email(email).realm, realm)
|
|
|
|
|
|
|
|
self.assertTrue(result["Location"].endswith("/invite/"))
|
|
|
|
|
2016-07-28 00:38:45 +02:00
|
|
|
result = self.client_get(result["Location"])
|
2016-07-12 15:41:45 +02:00
|
|
|
self.assert_in_response("You're the first one here!", result)
|
2016-08-04 17:32:41 +02:00
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class UserSignUpTest(ZulipTestCase):
|
2016-08-04 17:32:41 +02:00
|
|
|
|
|
|
|
def test_user_default_language(self):
|
|
|
|
"""
|
|
|
|
Check if the default language of new user is the default language
|
|
|
|
of the realm.
|
|
|
|
"""
|
|
|
|
username = "newguy"
|
|
|
|
email = "newguy@zulip.com"
|
|
|
|
domain = "zulip.com"
|
|
|
|
password = "newpassword"
|
|
|
|
realm = get_realm(domain)
|
|
|
|
do_set_realm_default_language(realm, "de")
|
|
|
|
|
|
|
|
result = self.client_post('/accounts/home/', {'email': email})
|
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
self.assertTrue(result["Location"].endswith(
|
|
|
|
"/accounts/send_confirm/%s@%s" % (username, domain)))
|
|
|
|
result = self.client_get(result["Location"])
|
|
|
|
self.assert_in_response("Check your email so we can get started.", result)
|
|
|
|
|
|
|
|
# Visit the confirmation link.
|
|
|
|
from django.core.mail import outbox
|
|
|
|
for message in reversed(outbox):
|
|
|
|
if email in message.to:
|
|
|
|
confirmation_link_pattern = re.compile(settings.EXTERNAL_HOST + "(\S+)>")
|
|
|
|
confirmation_url = confirmation_link_pattern.search(
|
|
|
|
message.body).groups()[0]
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise ValueError("Couldn't find a confirmation email.")
|
|
|
|
|
|
|
|
result = self.client_get(confirmation_url)
|
|
|
|
self.assertEquals(result.status_code, 200)
|
|
|
|
# Pick a password and agree to the ToS.
|
|
|
|
result = self.submit_reg_form_for_user(username, password, domain)
|
|
|
|
self.assertEquals(result.status_code, 302)
|
|
|
|
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
self.assertEqual(user_profile.default_language, realm.default_language)
|
|
|
|
outbox.pop()
|