blob: eb23e5b87941db5cafab21960fe777a178f6e6c0 [file] [log] [blame]
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento2bf35a62017-04-02 00:41:06 -04003 * Copyright (c) 2013-2017 Regents of the University of California.
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -08004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#define BOOST_TEST_MAIN 1
23#define BOOST_TEST_DYN_LINK 1
24#define BOOST_TEST_MODULE ndn-cxx Integrated Tests (Network Monitor)
25
Junxiao Shi25467942017-06-30 02:53:14 +000026#include "net/network-monitor.hpp"
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080027
Junxiao Shi25467942017-06-30 02:53:14 +000028#include "net/network-address.hpp"
29#include "net/network-interface.hpp"
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080030#include "util/time.hpp"
31
Junxiao Shi25467942017-06-30 02:53:14 +000032#include "net/detail/link-type-helper.hpp"
Alexander Afanasyev5bcee102017-03-27 22:28:29 -050033
Davide Pesavento537dc3a2016-02-18 19:35:26 +010034#include "boost-test.hpp"
35
36#include <boost/asio/io_service.hpp>
37#include <iostream>
38
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080039namespace ndn {
Junxiao Shi25467942017-06-30 02:53:14 +000040namespace net {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040041namespace tests {
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080042
Davide Pesavento2bf35a62017-04-02 00:41:06 -040043BOOST_AUTO_TEST_SUITE(TestNetworkMonitor)
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080044
Davide Pesavento2bf35a62017-04-02 00:41:06 -040045static std::ostream&
Junxiao Shi2dc416d2017-07-03 04:46:16 +000046logEvent(const shared_ptr<const NetworkInterface>& ni = nullptr, std::ostream& os = std::cout)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040047{
48 os << '[' << time::toIsoString(time::system_clock::now()) << "] ";
49 if (ni != nullptr)
50 os << ni->getName() << ": ";
51 return os;
52}
53
54BOOST_AUTO_TEST_CASE(Signals)
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080055{
56 boost::asio::io_service io;
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080057 NetworkMonitor monitor(io);
58
Junxiao Shif4c1eb32017-05-30 17:05:10 +000059 std::cout << "capabilities=" << monitor.getCapabilities() << std::endl;
60
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080061 monitor.onNetworkStateChanged.connect([] {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040062 logEvent() << "onNetworkStateChanged" << std::endl;
63 });
64
65 monitor.onEnumerationCompleted.connect([&monitor] {
66 logEvent() << "onEnumerationCompleted" << std::endl;
67 for (const auto& ni : monitor.listNetworkInterfaces()) {
68 std::cout << *ni;
69 }
70 });
71
Junxiao Shi2dc416d2017-07-03 04:46:16 +000072 monitor.onInterfaceAdded.connect([] (const shared_ptr<const NetworkInterface>& ni) {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040073 logEvent(ni) << "onInterfaceAdded\n" << *ni;
Alexander Afanasyev5bcee102017-03-27 22:28:29 -050074 logEvent(ni) << "link-type: " << detail::getLinkType(ni->getName()) << "\n";
Davide Pesavento2bf35a62017-04-02 00:41:06 -040075
76 ni->onAddressAdded.connect([ni] (const NetworkAddress& address) {
77 logEvent(ni) << "onAddressAdded " << address << std::endl;
Junxiao Shi2dc416d2017-07-03 04:46:16 +000078 });
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080079
Davide Pesavento2bf35a62017-04-02 00:41:06 -040080 ni->onAddressRemoved.connect([ni] (const NetworkAddress& address) {
81 logEvent(ni) << "onAddressRemoved " << address << std::endl;
82 });
83
84 ni->onStateChanged.connect([ni] (InterfaceState oldState, InterfaceState newState) {
85 logEvent(ni) << "onStateChanged " << oldState << " -> " << newState << std::endl;
Alexander Afanasyev5bcee102017-03-27 22:28:29 -050086 logEvent(ni) << "link-type: " << detail::getLinkType(ni->getName()) << "\n";
Davide Pesavento2bf35a62017-04-02 00:41:06 -040087 });
88
89 ni->onMtuChanged.connect([ni] (uint32_t oldMtu, uint32_t newMtu) {
90 logEvent(ni) << "onMtuChanged " << oldMtu << " -> " << newMtu << std::endl;
91 });
92 }); // monitor.onInterfaceAdded.connect
93
Junxiao Shi2dc416d2017-07-03 04:46:16 +000094 monitor.onInterfaceRemoved.connect([] (const shared_ptr<const NetworkInterface>& ni) {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040095 logEvent(ni) << "onInterfaceRemoved" << std::endl;
96 });
97
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080098 io.run();
99}
100
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400101BOOST_AUTO_TEST_SUITE_END() // TestNetworkMonitor
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -0800102
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400103} // namespace tests
Junxiao Shi25467942017-06-30 02:53:14 +0000104} // namespace net
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -0800105} // namespace ndn