本文整理汇总了Python中slimta.smtp.client.Client.auth方法的典型用法代码示例。如果您正苦于以下问题:Python Client.auth方法的具体用法?Python Client.auth怎么用?Python Client.auth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类slimta.smtp.client.Client
的用法示例。
在下文中一共展示了Client.auth方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_auth_force_mechanism
# 需要导入模块: from slimta.smtp.client import Client [as 别名]
# 或者: from slimta.smtp.client.Client import auth [as 别名]
def test_auth_force_mechanism(self):
self.sock.sendall(b"AUTH PLAIN AHRlc3RAZXhhbXBsZS5jb20AYXNkZg==\r\n")
self.sock.recv(IsA(int)).AndReturn(b"535 Nope!\r\n")
self.mox.ReplayAll()
client = Client(self.sock)
reply = client.auth("[email protected]", "asdf", mechanism=b"PLAIN")
self.assertEqual("535", reply.code)
self.assertEqual("5.0.0 Nope!", reply.message)
self.assertEqual(b"AUTH", reply.command)
示例2: test_auth
# 需要导入模块: from slimta.smtp.client import Client [as 别名]
# 或者: from slimta.smtp.client.Client import auth [as 别名]
def test_auth(self):
self.sock.sendall(b"AUTH PLAIN AHRlc3RAZXhhbXBsZS5jb20AYXNkZg==\r\n")
self.sock.recv(IsA(int)).AndReturn(b"235 Ok\r\n")
self.mox.ReplayAll()
client = Client(self.sock)
client.extensions.add("AUTH", b"PLAIN")
reply = client.auth("[email protected]", "asdf")
self.assertEqual("235", reply.code)
self.assertEqual("2.0.0 Ok", reply.message)
self.assertEqual(b"AUTH", reply.command)
示例3: test_auth
# 需要导入模块: from slimta.smtp.client import Client [as 别名]
# 或者: from slimta.smtp.client.Client import auth [as 别名]
def test_auth(self):
sock = self.mox.CreateMock(SSLSocket)
sock.fileno = lambda: -1
sock.getpeername = lambda: ('test', 0)
sock.sendall(b'AUTH PLAIN AHRlc3RAZXhhbXBsZS5jb20AYXNkZg==\r\n')
sock.recv(IsA(int)).AndReturn(b'235 Ok\r\n')
self.mox.ReplayAll()
client = Client(sock)
client.extensions.add('AUTH', 'PLAIN')
reply = client.auth('[email protected]', 'asdf')
self.assertEqual('235', reply.code)
self.assertEqual('2.0.0 Ok', reply.message)
self.assertEqual(b'AUTH', reply.command)