mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-28 08:48:53 +00:00
22 lines
684 B
Python
22 lines
684 B
Python
|
|
from allmydata.util import iputil, testutil
|
|
|
|
from twisted.trial import unittest
|
|
import re
|
|
|
|
DOTTED_QUAD_RE=re.compile("^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$")
|
|
|
|
class ListAddresses(testutil.SignalMixin, unittest.TestCase):
|
|
def test_get_local_ip_for(self):
|
|
addr = iputil.get_local_ip_for('127.0.0.1')
|
|
self.failUnless(DOTTED_QUAD_RE.match(addr))
|
|
|
|
def test_list_async(self):
|
|
d = iputil.get_local_addresses_async()
|
|
def _check(addresses):
|
|
self.failUnless(len(addresses) >= 1) # always have localhost
|
|
self.failUnless("127.0.0.1" in addresses, addresses)
|
|
d.addCallbacks(_check)
|
|
return d
|
|
test_list_async.timeout=2
|