@@ -1170,6 +1170,8 @@ def auth_buggy(challenge=None):
1170
1170
finally :
1171
1171
smtp .close ()
1172
1172
1173
+ # TODO: RUSTPYTHON
1174
+ @unittest .expectedFailure
1173
1175
@hashlib_helper .requires_hashdigest ('md5' , openssl = True )
1174
1176
def testAUTH_CRAM_MD5 (self ):
1175
1177
self .serv .add_feature ("AUTH CRAM-MD5" )
@@ -1179,6 +1181,8 @@ def testAUTH_CRAM_MD5(self):
1179
1181
self .assertEqual (resp , (235 , b'Authentication Succeeded' ))
1180
1182
smtp .close ()
1181
1183
1184
+ # TODO: RUSTPYTHON
1185
+ @unittest .expectedFailure
1182
1186
@hashlib_helper .requires_hashdigest ('md5' , openssl = True )
1183
1187
def testAUTH_multiple (self ):
1184
1188
# Test that multiple authentication methods are tried.
@@ -1189,6 +1193,8 @@ def testAUTH_multiple(self):
1189
1193
self .assertEqual (resp , (235 , b'Authentication Succeeded' ))
1190
1194
smtp .close ()
1191
1195
1196
+ # TODO: RUSTPYTHON
1197
+ @unittest .expectedFailure
1192
1198
def test_auth_function (self ):
1193
1199
supported = {'PLAIN' , 'LOGIN' }
1194
1200
try :
@@ -1453,6 +1459,8 @@ def test_send_unicode_with_SMTPUTF8_via_low_level_API(self):
1453
1459
self .assertIn ('SMTPUTF8' , self .serv .last_mail_options )
1454
1460
self .assertEqual (self .serv .last_rcpt_options , [])
1455
1461
1462
+ # TODO: RUSTPYTHON
1463
+ @unittest .expectedFailure
1456
1464
def test_send_message_uses_smtputf8_if_addrs_non_ascii (self ):
1457
1465
msg = EmailMessage ()
1458
1466
msg ['From' ] = "Páolo <főo@bar.com>"
0 commit comments