1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/env python
from socket import gaierror
def test_client_bind_int():
from circuits.net.sockets import Client
class TestClient(Client):
def _create_socket(self):
return None
client = TestClient(1234)
assert client._bind[1] == 1234
def test_client_bind_int_gaierror(monkeypatch):
from circuits.net import sockets
def broken_gethostname():
raise gaierror()
monkeypatch.setattr(sockets, 'gethostname', broken_gethostname)
class TestClient(sockets.Client):
def _create_socket(self):
return None
client = TestClient(1234)
assert client._bind == ('0.0.0.0', 1234)
def test_client_bind_str():
from circuits.net.sockets import Client
class TestClient(Client):
def _create_socket(self):
return None
client = TestClient('0.0.0.0:1234')
assert client._bind == ('0.0.0.0', 1234)
|