tests: add support for link-local addresses in getTestIp
Change-Id: If57cb93f1c25a18b680aef12895ee5924ca90cfa
diff --git a/tests/daemon/face/tcp-transport.t.cpp b/tests/daemon/face/tcp-transport.t.cpp
index bf04b63..dd3de57 100644
--- a/tests/daemon/face/tcp-transport.t.cpp
+++ b/tests/daemon/face/tcp-transport.t.cpp
@@ -36,7 +36,7 @@
BOOST_AUTO_TEST_CASE(StaticPropertiesLocalIpv4)
{
- auto address = getTestIp<AddressFamily::V4>(LoopbackAddress::Yes);
+ auto address = getTestIp(AddressFamily::V4, AddressScope::Loopback);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address);
@@ -52,7 +52,7 @@
BOOST_AUTO_TEST_CASE(StaticPropertiesLocalIpv6)
{
- auto address = getTestIp<AddressFamily::V6>(LoopbackAddress::Yes);
+ auto address = getTestIp(AddressFamily::V6, AddressScope::Loopback);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address);
@@ -68,7 +68,7 @@
BOOST_AUTO_TEST_CASE(StaticPropertiesNonLocalIpv4)
{
- auto address = getTestIp<AddressFamily::V4>(LoopbackAddress::No);
+ auto address = getTestIp(AddressFamily::V4, AddressScope::Global);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address);
@@ -86,7 +86,7 @@
BOOST_AUTO_TEST_CASE(StaticPropertiesNonLocalIpv6)
{
- auto address = getTestIp<AddressFamily::V6>(LoopbackAddress::No);
+ auto address = getTestIp(AddressFamily::V6, AddressScope::Global);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address);
@@ -104,7 +104,7 @@
BOOST_AUTO_TEST_CASE(PersistencyChange)
{
- auto address = getTestIp<AddressFamily::V4>();
+ auto address = getTestIp(AddressFamily::V4);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address);
@@ -115,7 +115,7 @@
BOOST_AUTO_TEST_CASE(PermanentReconnect)
{
- auto address = getTestIp<AddressFamily::V4>();
+ auto address = getTestIp(AddressFamily::V4);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address, ndn::nfd::FACE_PERSISTENCY_PERMANENT);
@@ -140,7 +140,7 @@
// when persistency is changed out of permanent while transport is DOWN,
// the transport immediately goes into FAILED state
- auto address = getTestIp<AddressFamily::V4>();
+ auto address = getTestIp(AddressFamily::V4);
SKIP_IF_IP_UNAVAILABLE(address);
initialize(address, ndn::nfd::FACE_PERSISTENCY_PERMANENT);
@@ -206,7 +206,7 @@
BOOST_AUTO_TEST_CASE(PermanentReconnectWithExponentialBackoff)
{
- auto address = getTestIp<AddressFamily::V4>();
+ auto address = getTestIp(AddressFamily::V4);
SKIP_IF_IP_UNAVAILABLE(address);
tcp::endpoint remoteEp(address, 7070);