mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
zephyr: Fix compute_mit_user_fullname for py3dns returning bytes.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
766467c5e3
commit
498c6c485e
@@ -10,7 +10,7 @@ def compute_mit_user_fullname(email: str) -> str:
|
||||
match_user = re.match(r"^([a-zA-Z0-9_.-]+)(\|.+)?@mit\.edu$", email.lower())
|
||||
if match_user and match_user.group(2) is None:
|
||||
answer = DNS.dnslookup(f"{match_user.group(1)}.passwd.ns.athena.mit.edu", DNS.Type.TXT)
|
||||
hesiod_name = answer[0][0].split(":")[4].split(",")[0].strip()
|
||||
hesiod_name = answer[0][0].decode().split(":")[4].split(",")[0].strip()
|
||||
if hesiod_name != "":
|
||||
return hesiod_name
|
||||
elif match_user:
|
||||
|
@@ -39,7 +39,7 @@ class MITNameTest(ZulipTestCase):
|
||||
with mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[
|
||||
["starnine:*:84233:101:Athena Consulting Exchange User,,,:/mit/starnine:/bin/bash"]
|
||||
[b"starnine:*:84233:101:Athena Consulting Exchange User,,,:/mit/starnine:/bin/bash"]
|
||||
],
|
||||
):
|
||||
self.assertEqual(
|
||||
@@ -48,7 +48,7 @@ class MITNameTest(ZulipTestCase):
|
||||
)
|
||||
with mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["sipbexch:*:87824:101:Exch Sipb,,,:/mit/sipbexch:/bin/athena/bash"]],
|
||||
return_value=[[b"sipbexch:*:87824:101:Exch Sipb,,,:/mit/sipbexch:/bin/athena/bash"]],
|
||||
):
|
||||
self.assertEqual(compute_mit_user_fullname("sipbexch@mit.edu"), "Exch Sipb")
|
||||
|
||||
@@ -73,7 +73,7 @@ class MITNameTest(ZulipTestCase):
|
||||
self.assertRaises(ValidationError, email_is_not_mit_mailing_list, "ec-discuss@mit.edu")
|
||||
|
||||
def test_notmailinglist(self) -> None:
|
||||
with mock.patch("DNS.dnslookup", return_value=[["POP IMAP.EXCHANGE.MIT.EDU starnine"]]):
|
||||
with mock.patch("DNS.dnslookup", return_value=[[b"POP IMAP.EXCHANGE.MIT.EDU starnine"]]):
|
||||
email_is_not_mit_mailing_list("sipbexch@mit.edu")
|
||||
|
||||
|
||||
|
@@ -1054,7 +1054,7 @@ class MessagePOSTTest(ZulipTestCase):
|
||||
with mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[
|
||||
["starnine:*:84233:101:Athena Consulting Exchange User,,,:/mit/starnine:/bin/bash"]
|
||||
[b"starnine:*:84233:101:Athena Consulting Exchange User,,,:/mit/starnine:/bin/bash"]
|
||||
],
|
||||
):
|
||||
result1 = self.api_post(
|
||||
@@ -1064,7 +1064,7 @@ class MessagePOSTTest(ZulipTestCase):
|
||||
|
||||
with mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["espuser:*:95494:101:Esp Classroom,,,:/mit/espuser:/bin/athena/bash"]],
|
||||
return_value=[[b"espuser:*:95494:101:Esp Classroom,,,:/mit/espuser:/bin/athena/bash"]],
|
||||
):
|
||||
result2 = self.api_post(
|
||||
self.mit_user("espuser"), "/api/v1/messages", msg, subdomain="zephyr"
|
||||
|
@@ -50,7 +50,7 @@ class MirroredMessageUsersTest(ZulipTestCase):
|
||||
|
||||
@mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
return_value=[[b"sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
)
|
||||
def test_zephyr_mirror_new_recipient(self, ignored: object) -> None:
|
||||
"""Test mirror dummy user creation for direct message recipients"""
|
||||
@@ -80,7 +80,7 @@ class MirroredMessageUsersTest(ZulipTestCase):
|
||||
|
||||
@mock.patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
return_value=[[b"sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
)
|
||||
def test_zephyr_mirror_new_sender(self, ignored: object) -> None:
|
||||
"""Test mirror dummy user creation for sender when sending to stream"""
|
||||
|
@@ -4136,7 +4136,7 @@ class UserSignUpTest(ZulipTestCase):
|
||||
|
||||
@patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
return_value=[[b"sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
)
|
||||
def test_registration_of_mirror_dummy_user(self, ignored: Any) -> None:
|
||||
password = "test"
|
||||
@@ -4217,7 +4217,7 @@ class UserSignUpTest(ZulipTestCase):
|
||||
|
||||
@patch(
|
||||
"DNS.dnslookup",
|
||||
return_value=[["sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
return_value=[[b"sipbtest:*:20922:101:Fred Sipb,,,:/mit/sipbtest:/bin/athena/tcsh"]],
|
||||
)
|
||||
def test_registration_of_active_mirror_dummy_user(self, ignored: Any) -> None:
|
||||
"""
|
||||
|
Reference in New Issue
Block a user