You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
865 B
Python
40 lines
865 B
Python
#!/usr/bin/python
|
|
from gevent import monkey
|
|
monkey.patch_all()
|
|
|
|
|
|
try:
|
|
import httplib
|
|
except ImportError:
|
|
from http import client as httplib
|
|
import socket
|
|
|
|
|
|
import gevent.testing as greentest
|
|
|
|
|
|
@greentest.skipUnless(
|
|
hasattr(socket, 'ssl'),
|
|
"Needs socket.ssl (Python 2)"
|
|
)
|
|
@greentest.skipWithoutExternalNetwork("Tries to access amazon.com")
|
|
class AmazonHTTPSTests(greentest.TestCase):
|
|
|
|
__timeout__ = 30
|
|
|
|
def test_amazon_response(self):
|
|
conn = httplib.HTTPSConnection('sdb.amazonaws.com')
|
|
conn.request('GET', '/')
|
|
conn.getresponse()
|
|
|
|
def test_str_and_repr(self):
|
|
conn = socket.socket()
|
|
conn.connect(('sdb.amazonaws.com', 443))
|
|
ssl_conn = socket.ssl(conn) # pylint:disable=no-member
|
|
assert str(ssl_conn)
|
|
assert repr(ssl_conn)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
greentest.main()
|