Davide Pesavento | 248d6bd | 2014-03-09 10:24:08 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology |
| 9 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Davide Pesavento | 248d6bd | 2014-03-09 10:24:08 +0100 | [diff] [blame] | 24 | |
| 25 | #include "core/network-interface.hpp" |
| 26 | #include "tests/test-common.hpp" |
| 27 | |
| 28 | #include <boost/foreach.hpp> |
| 29 | |
| 30 | namespace nfd { |
| 31 | namespace tests { |
| 32 | |
| 33 | BOOST_FIXTURE_TEST_SUITE(CoreNetworkInterface, BaseFixture) |
| 34 | |
| 35 | BOOST_AUTO_TEST_CASE(ListNetworkInterfaces) |
| 36 | { |
| 37 | std::list< shared_ptr<NetworkInterfaceInfo> > netifs; |
| 38 | BOOST_CHECK_NO_THROW(netifs = listNetworkInterfaces()); |
| 39 | |
| 40 | BOOST_FOREACH(shared_ptr<NetworkInterfaceInfo> netif, netifs) |
| 41 | { |
| 42 | BOOST_TEST_MESSAGE(netif->index << ": " << netif->name); |
| 43 | BOOST_TEST_MESSAGE("\tether " << netif->etherAddress); |
| 44 | BOOST_FOREACH(boost::asio::ip::address_v4 address, netif->ipv4Addresses) |
| 45 | BOOST_TEST_MESSAGE("\tinet " << address); |
| 46 | BOOST_FOREACH(boost::asio::ip::address_v6 address, netif->ipv6Addresses) |
| 47 | BOOST_TEST_MESSAGE("\tinet6 " << address); |
| 48 | BOOST_TEST_MESSAGE("\tloopback : " << netif->isLoopback()); |
| 49 | BOOST_TEST_MESSAGE("\tmulticast : " << netif->isMulticastCapable()); |
| 50 | BOOST_TEST_MESSAGE("\tup : " << netif->isUp()); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | BOOST_AUTO_TEST_SUITE_END() |
| 55 | |
| 56 | } // namespace tests |
| 57 | } // namespace nfd |