123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- # Copyright 2021 The Matrix.org Foundation C.I.C.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import os.path
- import urllib
- from unittest.mock import Mock, patch
- from twisted.trial import unittest
- from sydent.util.emailutils import sendEmail
- from tests.utils import make_sydent
- class TestTemplate(unittest.TestCase):
- def setUp(self):
- # Create a new sydent
- config = {
- "general": {
- "templates.path": os.path.join(
- os.path.dirname(os.path.dirname(__file__)), "res"
- ),
- },
- }
- self.sydent = make_sydent(test_config=config)
- def test_jinja_vector_invite(self):
- substitutions = {
- "address": "foo@example.com",
- "medium": "email",
- "room_alias": "#somewhere:exmaple.org",
- "room_avatar_url": "mxc://example.org/s0meM3dia",
- "room_id": "!something:example.org",
- "room_name": "Bob's Emporium of Messages",
- "sender": "@bob:example.com",
- "sender_avatar_url": "mxc://example.org/an0th3rM3dia",
- "sender_display_name": "<Bob Smith>",
- "bracketed_verified_sender": "Bob Smith",
- "bracketed_room_name": "Bob's Emporium of Messages",
- "to": "person@test.test",
- "token": "a_token",
- "ephemeral_private_key": "mystery_key",
- "web_client_location": "https://app.element.io",
- "room_type": "",
- }
- # self.sydent.config.email.invite_template is deprecated
- if self.sydent.config.email.invite_template is None:
- templateFile = self.sydent.get_branded_template(
- "vector-im",
- "invite_template.eml",
- )
- else:
- templateFile = self.sydent.config.email.invite_template
- with patch("sydent.util.emailutils.smtplib") as smtplib:
- sendEmail(self.sydent, templateFile, "test@test.com", substitutions)
- smtp = smtplib.SMTP.return_value
- email_contents = smtp.sendmail.call_args[0][2].decode("utf-8")
- # test url input is encoded
- self.assertIn(urllib.parse.quote("mxc://example.org/s0meM3dia"), email_contents)
- # test html input is escaped
- self.assertIn("Bob's Emporium of Messages", email_contents)
- # test safe values are not escaped
- self.assertIn("<Bob Smith>", email_contents)
- # test our link is as expected
- expected_url = (
- "https://app.element.io/#/room/"
- + urllib.parse.quote("!something:example.org")
- + "?email="
- + urllib.parse.quote("test@test.com")
- + "&signurl=https%3A%2F%2Fvector.im%2F_matrix%2Fidentity%2Fapi%2Fv1%2Fsign-ed25519%3Ftoken%3D"
- + urllib.parse.quote("a_token")
- + "%26private_key%3D"
- + urllib.parse.quote("mystery_key")
- + "&room_name="
- + urllib.parse.quote("Bob's Emporium of Messages")
- + "&room_avatar_url="
- + urllib.parse.quote("mxc://example.org/s0meM3dia")
- + "&inviter_name="
- + urllib.parse.quote("<Bob Smith>")
- + "&guest_access_token=&guest_user_id=&room_type="
- )
- text = email_contents.splitlines()
- link = text[19]
- self.assertEqual(link, expected_url)
- def test_jinja_matrix_invite(self):
- substitutions = {
- "address": "foo@example.com",
- "medium": "email",
- "room_alias": "#somewhere:exmaple.org",
- "room_avatar_url": "mxc://example.org/s0meM3dia",
- "room_id": "!something:example.org",
- "room_name": "Bob's Emporium of Messages",
- "sender": "@bob:example.com",
- "sender_avatar_url": "mxc://example.org/an0th3rM3dia",
- "sender_display_name": "<Bob Smith>",
- "bracketed_verified_sender": "Bob Smith",
- "bracketed_room_name": "Bob's Emporium of Messages",
- "to": "person@test.test",
- "token": "a_token",
- "ephemeral_private_key": "mystery_key",
- "web_client_location": "https://matrix.org",
- "room_type": "",
- }
- # self.sydent.config.email.invite_template is deprecated
- if self.sydent.config.email.invite_template is None:
- templateFile = self.sydent.get_branded_template(
- "matrix-org",
- "invite_template.eml",
- )
- else:
- templateFile = self.sydent.config.email.invite_template
- with patch("sydent.util.emailutils.smtplib") as smtplib:
- sendEmail(self.sydent, templateFile, "test@test.com", substitutions)
- smtp = smtplib.SMTP.return_value
- email_contents = smtp.sendmail.call_args[0][2].decode("utf-8")
- # test url input is encoded
- self.assertIn(urllib.parse.quote("mxc://example.org/s0meM3dia"), email_contents)
- # test html input is escaped
- self.assertIn("Bob's Emporium of Messages", email_contents)
- # test safe values are not escaped
- self.assertIn("<Bob Smith>", email_contents)
- # test our link is as expected
- expected_url = (
- "https://matrix.org/#/room/"
- + urllib.parse.quote("!something:example.org")
- + "?email="
- + urllib.parse.quote("test@test.com")
- + "&signurl=https%3A%2F%2Fmatrix.org%2F_matrix%2Fidentity%2Fapi%2Fv1%2Fsign-ed25519%3Ftoken%3D"
- + urllib.parse.quote("a_token")
- + "%26private_key%3D"
- + urllib.parse.quote("mystery_key")
- + "&room_name="
- + urllib.parse.quote("Bob's Emporium of Messages")
- + "&room_avatar_url="
- + urllib.parse.quote("mxc://example.org/s0meM3dia")
- + "&inviter_name="
- + urllib.parse.quote("<Bob Smith>")
- + "&guest_access_token=&guest_user_id=&room_type="
- )
- text = email_contents.splitlines()
- link = text[22]
- self.assertEqual(link, expected_url)
- def test_jinja_matrix_verification(self):
- substitutions = {
- "address": "foo@example.com",
- "medium": "email",
- "to": "person@test.test",
- "token": "<<token>>",
- "link": "https://link_test.com",
- }
- templateFile = self.sydent.get_branded_template(
- "matrix-org",
- "verification_template.eml",
- )
- with patch("sydent.util.emailutils.smtplib") as smtplib:
- sendEmail(self.sydent, templateFile, "test@test.com", substitutions)
- smtp = smtplib.SMTP.return_value
- email_contents = smtp.sendmail.call_args[0][2].decode("utf-8")
- # test html input is escaped
- self.assertIn("<<token>>", email_contents)
- # test safe values are not escaped
- self.assertIn("<<token>>", email_contents)
- @patch(
- "sydent.util.emailutils.generateAlphanumericTokenOfLength",
- Mock(return_value="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
- )
- def test_jinja_vector_verification(self):
- substitutions = {
- "address": "foo@example.com",
- "medium": "email",
- "to": "person@test.test",
- "link": "https://link_test.com",
- }
- templateFile = self.sydent.get_branded_template(
- "vector-im",
- "verification_template.eml",
- )
- with patch("sydent.util.emailutils.smtplib") as smtplib:
- sendEmail(self.sydent, templateFile, "test@test.com", substitutions)
- smtp = smtplib.SMTP.return_value
- email_contents = smtp.sendmail.call_args[0][2].decode("utf-8")
- path = os.path.join(
- self.sydent.config.general.templates_path,
- "vector_verification_sample.txt",
- )
- with open(path, "r") as file:
- expected_text = file.read()
- # remove the email headers as they are variable
- email_contents = email_contents[email_contents.index("Hello") :]
- # test all ouput is as expected
- self.assertEqual(email_contents, expected_text)
|