ソースを参照

Add (failing) test for email recipient with delimiter

See #121
Bryan J Swift 11年前
コミット
299aba3e4c
1個のファイルの変更10行の追加0行の削除
  1. 10
    0
      tests.py

+ 10
- 0
tests.py ファイルの表示

@@ -199,6 +199,16 @@ class MailTests(unittest.TestCase):
199 199
         s.quit()
200 200
         self.assertEmailReceived(subject)
201 201
 
202
+    def test_smtps_delimiter_to(self):
203
+        """Email sent to address with delimiter is delivered"""
204
+        import smtplib
205
+        msg, subject = new_message(TEST_ADDRESS, 'root+foo@sovereign.local')
206
+        s = smtplib.SMTP_SSL(TEST_SERVER, 465)
207
+        s.login(TEST_ADDRESS, TEST_PASSWORD)
208
+        s.sendmail(TEST_ADDRESS, ['root+foo@sovereign.local'], msg)
209
+        s.quit()
210
+        self.assertEmailReceived(subject)
211
+
202 212
     def test_smtps_requires_auth(self):
203 213
         """SMTPS with no authentication is rejected"""
204 214
         import smtplib

読み込み中…
キャンセル
保存