本文整理汇总了Python中slimta.relay.smtp.lmtpclient.LmtpRelayClient._disconnect方法的典型用法代码示例。如果您正苦于以下问题:Python LmtpRelayClient._disconnect方法的具体用法?Python LmtpRelayClient._disconnect怎么用?Python LmtpRelayClient._disconnect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类slimta.relay.smtp.lmtpclient.LmtpRelayClient
的用法示例。
在下文中一共展示了LmtpRelayClient._disconnect方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_disconnect_failure
# 需要导入模块: from slimta.relay.smtp.lmtpclient import LmtpRelayClient [as 别名]
# 或者: from slimta.relay.smtp.lmtpclient.LmtpRelayClient import _disconnect [as 别名]
def test_disconnect_failure(self):
self.sock.sendall(b'QUIT\r\n')
self.sock.recv(IsA(int)).AndRaise(socket_error(None, None))
self.sock.close()
self.mox.ReplayAll()
client = LmtpRelayClient('addr', self.queue, socket_creator=self._socket_creator, ehlo_as='there')
client._connect()
client._disconnect()
示例2: test_disconnect
# 需要导入模块: from slimta.relay.smtp.lmtpclient import LmtpRelayClient [as 别名]
# 或者: from slimta.relay.smtp.lmtpclient.LmtpRelayClient import _disconnect [as 别名]
def test_disconnect(self):
self.sock.sendall(b'QUIT\r\n')
self.sock.recv(IsA(int)).AndReturn(b'221 Goodbye\r\n')
self.sock.close()
self.mox.ReplayAll()
client = LmtpRelayClient('addr', self.queue, socket_creator=self._socket_creator, ehlo_as='there')
client._connect()
client._disconnect()