本文整理匯總了Python中botocore.awsrequest.AWSHTTPConnection._tunnel方法的典型用法代碼示例。如果您正苦於以下問題:Python AWSHTTPConnection._tunnel方法的具體用法?Python AWSHTTPConnection._tunnel怎麽用?Python AWSHTTPConnection._tunnel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類botocore.awsrequest.AWSHTTPConnection
的用法示例。
在下文中一共展示了AWSHTTPConnection._tunnel方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_tunnel_uses_std_lib
# 需要導入模塊: from botocore.awsrequest import AWSHTTPConnection [as 別名]
# 或者: from botocore.awsrequest.AWSHTTPConnection import _tunnel [as 別名]
def test_tunnel_uses_std_lib(self):
s = FakeSocket(b'HTTP/1.1 200 OK\r\n')
conn = AWSHTTPConnection('s3.amazonaws.com', 443)
conn.sock = s
# Test that the standard library method was used by patching out
# the ``_tunnel`` method and seeing if the std lib method was called.
with patch('urllib3.connection.HTTPConnection._tunnel') as mock_tunnel:
conn._tunnel()
self.assertTrue(mock_tunnel.called)