moto/tests/test_core/test_socket.py

48 lines
1.2 KiB
Python
Raw Normal View History

2019-07-03 01:21:19 +00:00
import unittest
from moto import mock_dynamodb2_deprecated, mock_dynamodb2
import socket
from six import PY3
class TestSocketPair(unittest.TestCase):
@mock_dynamodb2_deprecated
def test_asyncio_deprecated(self):
if PY3:
self.assertIn(
2019-10-31 15:44:26 +00:00
"moto.packages.httpretty.core.fakesock.socket",
2019-07-03 01:21:19 +00:00
str(socket.socket),
2019-10-31 15:44:26 +00:00
"Our mock should be present",
2019-07-03 01:21:19 +00:00
)
import asyncio
2019-10-31 15:44:26 +00:00
2019-07-03 01:21:19 +00:00
self.assertIsNotNone(asyncio.get_event_loop())
@mock_dynamodb2_deprecated
def test_socket_pair_deprecated(self):
# In Python2, the fakesocket is not set, for some reason.
if PY3:
self.assertIn(
2019-10-31 15:44:26 +00:00
"moto.packages.httpretty.core.fakesock.socket",
2019-07-03 01:21:19 +00:00
str(socket.socket),
2019-10-31 15:44:26 +00:00
"Our mock should be present",
2019-07-03 01:21:19 +00:00
)
a, b = socket.socketpair()
self.assertIsNotNone(a)
self.assertIsNotNone(b)
if a:
a.close()
if b:
b.close()
@mock_dynamodb2
def test_socket_pair(self):
a, b = socket.socketpair()
self.assertIsNotNone(a)
self.assertIsNotNone(b)
if a:
a.close()
if b:
b.close()