2020-06-05 06:55:20 +02:00
|
|
|
from datetime import datetime, timedelta, timezone
|
2020-05-26 07:16:25 +02:00
|
|
|
from unittest import mock
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2020-06-11 00:54:34 +02:00
|
|
|
from django.http import HttpResponse
|
2020-03-31 12:01:48 +02:00
|
|
|
from django.utils.timezone import now as timezone_now
|
2017-02-10 21:52:14 +01:00
|
|
|
|
2020-07-17 12:56:06 +02:00
|
|
|
from corporate.lib.stripe import add_months, update_sponsorship_status
|
2020-07-03 20:21:13 +02:00
|
|
|
from corporate.models import Customer, CustomerPlan, LicenseLedger, get_customer_by_realm
|
2021-03-19 16:57:23 +01:00
|
|
|
from zerver.lib.actions import (
|
|
|
|
do_create_multiuse_invite_link,
|
|
|
|
do_send_realm_reactivation_email,
|
|
|
|
do_set_realm_property,
|
|
|
|
)
|
2017-11-16 00:55:49 +01:00
|
|
|
from zerver.lib.test_classes import ZulipTestCase
|
2021-06-17 23:20:42 +02:00
|
|
|
from zerver.lib.test_helpers import reset_emails_in_zulip_realm
|
2020-07-17 12:56:06 +02:00
|
|
|
from zerver.models import (
|
|
|
|
MultiuseInvite,
|
|
|
|
PreregistrationUser,
|
|
|
|
Realm,
|
|
|
|
UserMessage,
|
|
|
|
UserProfile,
|
|
|
|
get_realm,
|
|
|
|
)
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-02-10 21:52:14 +01:00
|
|
|
|
2019-03-08 13:02:10 +01:00
|
|
|
class TestSupportEndpoint(ZulipTestCase):
|
|
|
|
def test_search(self) -> None:
|
2020-03-12 14:17:25 +01:00
|
|
|
reset_emails_in_zulip_realm()
|
|
|
|
|
2021-03-19 17:56:06 +01:00
|
|
|
def assert_user_details_in_html_response(
|
|
|
|
html_response: str, full_name: str, email: str, role: str
|
|
|
|
) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
'<span class="label">user</span>\n',
|
2021-03-19 17:56:06 +01:00
|
|
|
f"<h3>{full_name}</h3>",
|
|
|
|
f"<b>Email</b>: {email}",
|
2021-04-21 00:46:14 +02:00
|
|
|
"<b>Is active</b>: True<br />",
|
|
|
|
f"<b>Role</b>: {role}<br />",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
2021-03-19 17:56:06 +01:00
|
|
|
html_response,
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-03-19 17:56:06 +01:00
|
|
|
def check_hamlet_user_query_result(result: HttpResponse) -> None:
|
|
|
|
assert_user_details_in_html_response(
|
2021-03-19 19:15:35 +01:00
|
|
|
result, "King Hamlet", self.example_email("hamlet"), "Member"
|
2021-03-19 17:56:06 +01:00
|
|
|
)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
2021-04-01 17:28:27 +02:00
|
|
|
f"<b>Admins</b>: {self.example_email('iago')}\n",
|
|
|
|
f"<b>Owners</b>: {self.example_email('desdemona')}\n",
|
|
|
|
'class="copy-button" data-copytext="{}">'.format(self.example_email("iago")),
|
|
|
|
'class="copy-button" data-copytext="{}">'.format(
|
|
|
|
self.example_email("desdemona")
|
2021-03-19 19:15:35 +01:00
|
|
|
),
|
2021-03-19 16:50:50 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
|
|
|
|
2021-03-19 17:56:06 +01:00
|
|
|
def check_othello_user_query_result(result: HttpResponse) -> None:
|
|
|
|
assert_user_details_in_html_response(
|
2021-03-19 19:15:35 +01:00
|
|
|
result, "Othello, the Moor of Venice", self.example_email("othello"), "Member"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2020-10-30 20:23:20 +01:00
|
|
|
|
2021-03-19 17:56:06 +01:00
|
|
|
def check_polonius_user_query_result(result: HttpResponse) -> None:
|
2021-03-19 19:15:35 +01:00
|
|
|
assert_user_details_in_html_response(
|
|
|
|
result, "Polonius", self.example_email("polonius"), "Guest"
|
|
|
|
)
|
2021-03-19 17:56:06 +01:00
|
|
|
|
2019-06-12 16:09:24 +02:00
|
|
|
def check_zulip_realm_query_result(result: HttpResponse) -> None:
|
2019-07-24 07:22:48 +02:00
|
|
|
zulip_realm = get_realm("zulip")
|
2021-04-16 20:17:48 +02:00
|
|
|
first_human_user = zulip_realm.get_first_human_user()
|
|
|
|
assert first_human_user is not None
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
2021-04-16 20:17:48 +02:00
|
|
|
f"<b>First human user</b>: {first_human_user.delivery_email}\n",
|
2021-02-12 08:19:30 +01:00
|
|
|
f'<input type="hidden" name="realm_id" value="{zulip_realm.id}"',
|
2021-02-12 08:20:45 +01:00
|
|
|
"Zulip Dev</h3>",
|
2021-02-12 08:19:30 +01:00
|
|
|
'<option value="1" selected>Self hosted</option>',
|
|
|
|
'<option value="2" >Limited</option>',
|
|
|
|
'input type="number" name="discount" value="None"',
|
|
|
|
'<option value="active" selected>Active</option>',
|
|
|
|
'<option value="deactivated" >Deactivated</option>',
|
|
|
|
'scrub-realm-button">',
|
|
|
|
'data-string-id="zulip"',
|
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2019-06-12 16:09:24 +02:00
|
|
|
def check_lear_realm_query_result(result: HttpResponse) -> None:
|
2019-07-24 07:22:48 +02:00
|
|
|
lear_realm = get_realm("lear")
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
f'<input type="hidden" name="realm_id" value="{lear_realm.id}"',
|
2021-02-12 08:20:45 +01:00
|
|
|
"Lear & Co.</h3>",
|
2021-02-12 08:19:30 +01:00
|
|
|
'<option value="1" selected>Self hosted</option>',
|
|
|
|
'<option value="2" >Limited</option>',
|
|
|
|
'input type="number" name="discount" value="None"',
|
|
|
|
'<option value="active" selected>Active</option>',
|
|
|
|
'<option value="deactivated" >Deactivated</option>',
|
|
|
|
'scrub-realm-button">',
|
|
|
|
'data-string-id="lear"',
|
2021-02-12 08:20:45 +01:00
|
|
|
"<b>Name</b>: Zulip Standard",
|
|
|
|
"<b>Status</b>: Active",
|
|
|
|
"<b>Billing schedule</b>: Annual",
|
|
|
|
"<b>Licenses</b>: 2/10 (Manual)",
|
|
|
|
"<b>Price per license</b>: $80.0",
|
|
|
|
"<b>Next invoice date</b>: 02 January 2017",
|
2021-02-12 08:19:30 +01:00
|
|
|
'<option value="send_invoice" selected>',
|
|
|
|
'<option value="charge_automatically" >',
|
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
|
|
|
|
|
|
|
def check_preregistration_user_query_result(
|
|
|
|
result: HttpResponse, email: str, invite: bool = False
|
|
|
|
) -> None:
|
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
'<span class="label">preregistration user</span>\n',
|
2021-02-12 08:20:45 +01:00
|
|
|
f"<b>Email</b>: {email}",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
if invite:
|
|
|
|
self.assert_in_success_response(['<span class="label">invite</span>'], result)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
2021-04-01 16:56:37 +02:00
|
|
|
"<b>Expires in</b>: 1\xa0week, 3\xa0days",
|
2021-02-12 08:20:45 +01:00
|
|
|
"<b>Status</b>: Link has never been clicked",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
self.assert_in_success_response([], result)
|
|
|
|
else:
|
|
|
|
self.assert_not_in_success_response(['<span class="label">invite</span>'], result)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
2021-04-01 16:56:37 +02:00
|
|
|
[
|
|
|
|
"<b>Expires in</b>: 1\xa0day",
|
|
|
|
"<b>Status</b>: Link has never been clicked",
|
|
|
|
],
|
2021-02-12 08:19:30 +01:00
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
|
|
|
def check_realm_creation_query_result(result: HttpResponse, email: str) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
'<span class="label">preregistration user</span>\n',
|
|
|
|
'<span class="label">realm creation</span>\n',
|
2021-02-12 08:20:45 +01:00
|
|
|
"<b>Link</b>: http://testserver/accounts/do_confirm/",
|
2021-04-01 16:56:37 +02:00
|
|
|
"<b>Expires in</b>: 1\xa0day",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
|
|
|
def check_multiuse_invite_link_query_result(result: HttpResponse) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
'<span class="label">multiuse invite</span>\n',
|
2021-02-12 08:20:45 +01:00
|
|
|
"<b>Link</b>: http://zulip.testserver/join/",
|
2021-04-01 16:56:37 +02:00
|
|
|
"<b>Expires in</b>: 1\xa0week, 3\xa0days",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
|
|
|
def check_realm_reactivation_link_query_result(result: HttpResponse) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
[
|
|
|
|
'<span class="label">realm reactivation</span>\n',
|
2021-02-12 08:20:45 +01:00
|
|
|
"<b>Link</b>: http://zulip.testserver/reactivate/",
|
|
|
|
"<b>Expires in</b>: 1\xa0day",
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
|
|
|
result,
|
|
|
|
)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("cordelia")
|
2019-03-08 13:02:10 +01:00
|
|
|
|
|
|
|
result = self.client_get("/activity/support")
|
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-03-19 16:57:23 +01:00
|
|
|
do_set_realm_property(
|
2021-03-01 11:33:24 +01:00
|
|
|
get_realm("zulip"),
|
|
|
|
"email_address_visibility",
|
|
|
|
Realm.EMAIL_ADDRESS_VISIBILITY_NOBODY,
|
|
|
|
acting_user=None,
|
2021-03-19 16:57:23 +01:00
|
|
|
)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
customer = Customer.objects.create(realm=get_realm("lear"), stripe_customer_id="cus_123")
|
2020-07-03 20:21:13 +02:00
|
|
|
now = datetime(2016, 1, 2, tzinfo=timezone.utc)
|
2021-02-12 08:19:30 +01:00
|
|
|
plan = CustomerPlan.objects.create(
|
|
|
|
customer=customer,
|
|
|
|
billing_cycle_anchor=now,
|
|
|
|
billing_schedule=CustomerPlan.ANNUAL,
|
|
|
|
tier=CustomerPlan.STANDARD,
|
|
|
|
price_per_license=8000,
|
|
|
|
next_invoice_date=add_months(now, 12),
|
|
|
|
)
|
|
|
|
LicenseLedger.objects.create(
|
|
|
|
licenses=10,
|
|
|
|
licenses_at_next_renewal=10,
|
|
|
|
event_time=timezone_now(),
|
|
|
|
is_renewal=True,
|
|
|
|
plan=plan,
|
|
|
|
)
|
2020-07-03 20:21:13 +02:00
|
|
|
|
2019-03-08 13:02:10 +01:00
|
|
|
result = self.client_get("/activity/support")
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
['<input type="text" name="q" class="input-xxlarge search-query"'], result
|
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-03-19 19:15:35 +01:00
|
|
|
result = self.client_get("/activity/support", {"q": self.example_email("hamlet")})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_hamlet_user_query_result(result)
|
2021-03-19 16:50:50 +01:00
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
|
|
|
|
result = self.client_get("/activity/support", {"q": self.example_email("polonius")})
|
|
|
|
check_polonius_user_query_result(result)
|
2019-06-12 16:09:24 +02:00
|
|
|
check_zulip_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
|
|
|
result = self.client_get("/activity/support", {"q": "lear"})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_lear_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
|
|
|
result = self.client_get("/activity/support", {"q": "http://lear.testserver"})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_lear_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
with self.settings(REALM_HOSTS={"zulip": "localhost"}):
|
2019-03-08 13:02:10 +01:00
|
|
|
result = self.client_get("/activity/support", {"q": "http://localhost"})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_zulip_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
|
|
|
result = self.client_get("/activity/support", {"q": "hamlet@zulip.com, lear"})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_hamlet_user_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
check_lear_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2020-10-30 20:23:20 +01:00
|
|
|
result = self.client_get("/activity/support", {"q": "King hamlet,lear"})
|
|
|
|
check_hamlet_user_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
check_lear_realm_query_result(result)
|
|
|
|
|
|
|
|
result = self.client_get("/activity/support", {"q": "Othello, the Moor of Venice"})
|
|
|
|
check_othello_user_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
|
2019-03-08 13:02:10 +01:00
|
|
|
result = self.client_get("/activity/support", {"q": "lear, Hamlet <hamlet@zulip.com>"})
|
2019-06-12 16:09:24 +02:00
|
|
|
check_hamlet_user_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
check_lear_realm_query_result(result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-04-01 16:56:37 +02:00
|
|
|
with mock.patch(
|
2021-06-17 23:37:52 +02:00
|
|
|
"analytics.views.support.timezone_now",
|
2021-06-17 23:12:21 +02:00
|
|
|
return_value=timezone_now() - timedelta(minutes=50),
|
2021-04-01 16:56:37 +02:00
|
|
|
):
|
|
|
|
self.client_post("/accounts/home/", {"email": self.nonreg_email("test")})
|
|
|
|
self.login("iago")
|
|
|
|
result = self.client_get("/activity/support", {"q": self.nonreg_email("test")})
|
|
|
|
check_preregistration_user_query_result(result, self.nonreg_email("test"))
|
|
|
|
check_zulip_realm_query_result(result)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2021-04-01 16:56:37 +02:00
|
|
|
stream_ids = [self.get_stream_id("Denmark")]
|
|
|
|
invitee_emails = [self.nonreg_email("test1")]
|
|
|
|
self.client_post(
|
|
|
|
"/json/invites",
|
|
|
|
{
|
|
|
|
"invitee_emails": invitee_emails,
|
|
|
|
"stream_ids": orjson.dumps(stream_ids).decode(),
|
|
|
|
"invite_as": PreregistrationUser.INVITE_AS["MEMBER"],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
result = self.client_get("/activity/support", {"q": self.nonreg_email("test1")})
|
|
|
|
check_preregistration_user_query_result(result, self.nonreg_email("test1"), invite=True)
|
|
|
|
check_zulip_realm_query_result(result)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2021-04-01 16:56:37 +02:00
|
|
|
email = self.nonreg_email("alice")
|
|
|
|
self.client_post("/new/", {"email": email})
|
|
|
|
result = self.client_get("/activity/support", {"q": email})
|
|
|
|
check_realm_creation_query_result(result, email)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2021-04-01 16:56:37 +02:00
|
|
|
do_create_multiuse_invite_link(self.example_user("hamlet"), invited_as=1)
|
|
|
|
result = self.client_get("/activity/support", {"q": "zulip"})
|
|
|
|
check_multiuse_invite_link_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
|
|
|
MultiuseInvite.objects.all().delete()
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2020-12-04 11:46:51 +01:00
|
|
|
do_send_realm_reactivation_email(get_realm("zulip"), acting_user=None)
|
2021-04-01 16:56:37 +02:00
|
|
|
result = self.client_get("/activity/support", {"q": "zulip"})
|
|
|
|
check_realm_reactivation_link_query_result(result)
|
|
|
|
check_zulip_realm_query_result(result)
|
2019-09-18 15:04:36 +02:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
@mock.patch("analytics.views.support.update_billing_method_of_current_plan")
|
2020-08-18 13:48:11 +02:00
|
|
|
def test_change_billing_method(self, m: mock.Mock) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-08-18 13:48:11 +02:00
|
|
|
self.login_user(cordelia)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{cordelia.realm_id}", "plan_type": "2"}
|
|
|
|
)
|
2020-08-18 13:48:11 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
self.login_user(iago)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{"realm_id": f"{iago.realm_id}", "billing_method": "charge_automatically"},
|
|
|
|
)
|
2020-12-04 11:29:02 +01:00
|
|
|
m.assert_called_once_with(get_realm("zulip"), charge_automatically=True, acting_user=iago)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["Billing method of zulip updated to charge automatically"], result
|
|
|
|
)
|
2020-08-18 13:48:11 +02:00
|
|
|
|
|
|
|
m.reset_mock()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{iago.realm_id}", "billing_method": "send_invoice"}
|
|
|
|
)
|
2020-12-04 11:29:02 +01:00
|
|
|
m.assert_called_once_with(get_realm("zulip"), charge_automatically=False, acting_user=iago)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["Billing method of zulip updated to pay by invoice"], result
|
|
|
|
)
|
2020-08-18 13:48:11 +02:00
|
|
|
|
2019-03-08 13:02:10 +01:00
|
|
|
def test_change_plan_type(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(cordelia)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{cordelia.realm_id}", "plan_type": "2"}
|
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
2019-07-24 07:22:48 +02:00
|
|
|
iago = self.example_user("iago")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(iago)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.do_change_plan_type") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{iago.realm_id}", "plan_type": "2"}
|
|
|
|
)
|
2020-12-04 10:54:15 +01:00
|
|
|
m.assert_called_once_with(get_realm("zulip"), 2, acting_user=iago)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["Plan type of zulip changed from self hosted to limited"], result
|
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
|
|
|
def test_attach_discount(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
lear_realm = get_realm("lear")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(cordelia)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "discount": "25"}
|
|
|
|
)
|
2019-03-08 13:02:10 +01:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
2020-12-04 11:08:10 +01:00
|
|
|
iago = self.example_user("iago")
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.attach_discount_to_realm") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "discount": "25"}
|
|
|
|
)
|
2020-12-04 11:08:10 +01:00
|
|
|
m.assert_called_once_with(get_realm("lear"), 25, acting_user=iago)
|
2020-12-04 15:16:40 +01:00
|
|
|
self.assert_in_success_response(["Discount of lear changed to 25% from 0%"], result)
|
2019-03-08 13:02:10 +01:00
|
|
|
|
2020-06-09 12:24:32 +02:00
|
|
|
def test_change_sponsorship_status(self) -> None:
|
|
|
|
lear_realm = get_realm("lear")
|
|
|
|
self.assertIsNone(get_customer_by_realm(lear_realm))
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-06-09 12:24:32 +02:00
|
|
|
self.login_user(cordelia)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "sponsorship_pending": "true"}
|
|
|
|
)
|
2020-06-09 12:24:32 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
self.login_user(iago)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "sponsorship_pending": "true"}
|
|
|
|
)
|
2020-08-18 14:10:53 +02:00
|
|
|
self.assert_in_success_response(["lear marked as pending sponsorship."], result)
|
2020-06-09 12:24:32 +02:00
|
|
|
customer = get_customer_by_realm(lear_realm)
|
2021-02-12 08:19:30 +01:00
|
|
|
assert customer is not None
|
2020-06-09 12:24:32 +02:00
|
|
|
self.assertTrue(customer.sponsorship_pending)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "sponsorship_pending": "false"}
|
|
|
|
)
|
2020-08-18 14:10:53 +02:00
|
|
|
self.assert_in_success_response(["lear is no longer pending sponsorship."], result)
|
2020-06-09 12:24:32 +02:00
|
|
|
customer = get_customer_by_realm(lear_realm)
|
2021-02-12 08:19:30 +01:00
|
|
|
assert customer is not None
|
2020-06-09 12:24:32 +02:00
|
|
|
self.assertFalse(customer.sponsorship_pending)
|
|
|
|
|
2020-07-17 12:56:06 +02:00
|
|
|
def test_approve_sponsorship(self) -> None:
|
|
|
|
lear_realm = get_realm("lear")
|
2020-12-04 12:14:51 +01:00
|
|
|
update_sponsorship_status(lear_realm, True, acting_user=None)
|
2020-07-17 12:56:06 +02:00
|
|
|
king_user = self.lear_user("king")
|
|
|
|
king_user.role = UserProfile.ROLE_REALM_OWNER
|
|
|
|
king_user.save()
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-07-17 12:56:06 +02:00
|
|
|
self.login_user(cordelia)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{"realm_id": f"{lear_realm.id}", "approve_sponsorship": "approve_sponsorship"},
|
|
|
|
)
|
2020-07-17 12:56:06 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
self.login_user(iago)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{"realm_id": f"{lear_realm.id}", "approve_sponsorship": "approve_sponsorship"},
|
|
|
|
)
|
2020-08-18 14:10:53 +02:00
|
|
|
self.assert_in_success_response(["Sponsorship approved for lear"], result)
|
2020-07-17 12:56:06 +02:00
|
|
|
lear_realm.refresh_from_db()
|
|
|
|
self.assertEqual(lear_realm.plan_type, Realm.STANDARD_FREE)
|
|
|
|
customer = get_customer_by_realm(lear_realm)
|
2021-02-12 08:19:30 +01:00
|
|
|
assert customer is not None
|
2020-07-17 12:56:06 +02:00
|
|
|
self.assertFalse(customer.sponsorship_pending)
|
|
|
|
messages = UserMessage.objects.filter(user_profile=king_user)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertIn(
|
|
|
|
"request for sponsored hosting has been approved", messages[0].message.content
|
|
|
|
)
|
2021-05-17 05:41:32 +02:00
|
|
|
self.assert_length(messages, 1)
|
2020-07-17 12:56:06 +02:00
|
|
|
|
2019-04-19 15:19:49 +02:00
|
|
|
def test_activate_or_deactivate_realm(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
lear_realm = get_realm("lear")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(cordelia)
|
2019-04-19 15:19:49 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "status": "deactivated"}
|
|
|
|
)
|
2019-04-19 15:19:49 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2019-04-19 15:19:49 +02:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.do_deactivate_realm") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "status": "deactivated"}
|
|
|
|
)
|
2021-04-02 17:11:25 +02:00
|
|
|
m.assert_called_once_with(lear_realm, acting_user=self.example_user("iago"))
|
2020-08-18 14:10:53 +02:00
|
|
|
self.assert_in_success_response(["lear deactivated"], result)
|
2019-04-19 15:19:49 +02:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.do_send_realm_reactivation_email") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "status": "active"}
|
|
|
|
)
|
2020-12-04 11:46:51 +01:00
|
|
|
m.assert_called_once_with(lear_realm, acting_user=self.example_user("iago"))
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["Realm reactivation email sent to admins of lear"], result
|
|
|
|
)
|
2019-04-19 15:19:49 +02:00
|
|
|
|
2020-11-17 19:18:22 +01:00
|
|
|
def test_change_subdomain(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
lear_realm = get_realm("lear")
|
2020-11-17 19:18:22 +01:00
|
|
|
self.login_user(cordelia)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "new_subdomain": "new_name"}
|
|
|
|
)
|
2020-11-17 19:18:22 +01:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2020-11-17 19:18:22 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "new_subdomain": "new-name"}
|
|
|
|
)
|
2020-11-17 19:18:22 +01:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/activity/support?q=new-name")
|
|
|
|
realm_id = lear_realm.id
|
2021-02-12 08:20:45 +01:00
|
|
|
lear_realm = get_realm("new-name")
|
2020-11-17 19:18:22 +01:00
|
|
|
self.assertEqual(lear_realm.id, realm_id)
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assertTrue(Realm.objects.filter(string_id="lear").exists())
|
|
|
|
self.assertTrue(Realm.objects.filter(string_id="lear")[0].deactivated)
|
2020-11-17 19:18:22 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "new_subdomain": "new-name"}
|
|
|
|
)
|
|
|
|
self.assert_in_success_response(
|
|
|
|
["Subdomain unavailable. Please choose a different one."], result
|
|
|
|
)
|
|
|
|
|
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "new_subdomain": "zulip"}
|
|
|
|
)
|
|
|
|
self.assert_in_success_response(
|
|
|
|
["Subdomain unavailable. Please choose a different one."], result
|
|
|
|
)
|
|
|
|
|
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "new_subdomain": "lear"}
|
|
|
|
)
|
|
|
|
self.assert_in_success_response(
|
|
|
|
["Subdomain unavailable. Please choose a different one."], result
|
|
|
|
)
|
2020-12-18 20:17:20 +01:00
|
|
|
|
2020-08-13 13:20:18 +02:00
|
|
|
def test_downgrade_realm(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-08-13 13:20:18 +02:00
|
|
|
self.login_user(cordelia)
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{cordelia.realm_id}", "plan_type": "2"}
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
self.login_user(iago)
|
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.downgrade_at_the_end_of_billing_cycle") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{
|
|
|
|
"realm_id": f"{iago.realm_id}",
|
|
|
|
"downgrade_method": "downgrade_at_billing_cycle_end",
|
|
|
|
},
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
m.assert_called_once_with(get_realm("zulip"))
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["zulip marked for downgrade at the end of billing cycle"], result
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
|
2021-06-17 23:12:21 +02:00
|
|
|
with mock.patch(
|
2021-06-17 23:37:52 +02:00
|
|
|
"analytics.views.support.downgrade_now_without_creating_additional_invoices"
|
2021-06-17 23:12:21 +02:00
|
|
|
) as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{
|
|
|
|
"realm_id": f"{iago.realm_id}",
|
|
|
|
"downgrade_method": "downgrade_now_without_additional_licenses",
|
|
|
|
},
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
m.assert_called_once_with(get_realm("zulip"))
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["zulip downgraded without creating additional invoices"], result
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
|
2021-06-17 23:12:21 +02:00
|
|
|
with mock.patch(
|
2021-06-17 23:37:52 +02:00
|
|
|
"analytics.views.support.downgrade_now_without_creating_additional_invoices"
|
2021-06-17 23:12:21 +02:00
|
|
|
) as m1:
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.void_all_open_invoices", return_value=1) as m2:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support",
|
|
|
|
{
|
|
|
|
"realm_id": f"{iago.realm_id}",
|
|
|
|
"downgrade_method": "downgrade_now_void_open_invoices",
|
|
|
|
},
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
m1.assert_called_once_with(get_realm("zulip"))
|
|
|
|
m2.assert_called_once_with(get_realm("zulip"))
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_in_success_response(
|
|
|
|
["zulip downgraded and voided 1 open invoices"], result
|
|
|
|
)
|
2020-08-13 13:20:18 +02:00
|
|
|
|
2019-04-19 18:17:41 +02:00
|
|
|
def test_scrub_realm(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
lear_realm = get_realm("lear")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(cordelia)
|
2019-04-19 18:17:41 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "discount": "25"}
|
|
|
|
)
|
2019-04-19 18:17:41 +02:00
|
|
|
self.assertEqual(result.status_code, 302)
|
|
|
|
self.assertEqual(result["Location"], "/login/")
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2019-04-19 18:17:41 +02:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.do_scrub_realm") as m:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/activity/support", {"realm_id": f"{lear_realm.id}", "scrub_realm": "scrub_realm"}
|
|
|
|
)
|
2020-06-29 12:28:21 +02:00
|
|
|
m.assert_called_once_with(lear_realm, acting_user=self.example_user("iago"))
|
2020-08-18 14:10:53 +02:00
|
|
|
self.assert_in_success_response(["lear scrubbed"], result)
|
2019-04-19 18:17:41 +02:00
|
|
|
|
2021-06-17 23:37:52 +02:00
|
|
|
with mock.patch("analytics.views.support.do_scrub_realm") as m:
|
2020-07-27 20:21:41 +02:00
|
|
|
result = self.client_post("/activity/support", {"realm_id": f"{lear_realm.id}"})
|
|
|
|
self.assert_json_error(result, "Invalid parameters")
|
2019-04-19 18:17:41 +02:00
|
|
|
m.assert_not_called()
|