blob: b6d733074955863bd5e218dae6be24c275f741d6 [file] [log] [blame]
Davide Pesavento2bf35a62017-04-02 00:41:06 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2017 Regents of the University of California.
4 *
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#include "util/network-monitor.hpp"
23
24#include "boost-test.hpp"
25#include <boost/asio/io_service.hpp>
26
27namespace ndn {
28namespace util {
29namespace tests {
30
31BOOST_AUTO_TEST_SUITE(Util)
32BOOST_AUTO_TEST_SUITE(TestNetworkMonitor)
33
Junxiao Shif4c1eb32017-05-30 17:05:10 +000034#define NM_REQUIRE_CAP(capability) \
35 do { \
36 if ((nm->getCapabilities() & NetworkMonitor::CAP_ ## capability) == 0) { \
37 BOOST_WARN_MESSAGE(false, "skipping assertions that require " #capability " capability"); \
38 return; \
39 } \
40 } while (false)
41
Davide Pesavento2bf35a62017-04-02 00:41:06 -040042BOOST_AUTO_TEST_CASE(DestructWithoutRun)
43{
44 boost::asio::io_service io;
45 auto nm = make_unique<NetworkMonitor>(io);
46 nm.reset();
47 BOOST_CHECK(true); // if we got this far, the test passed
48}
49
50BOOST_AUTO_TEST_CASE(DestructWhileEnumerating)
51{
Davide Pesavento2bf35a62017-04-02 00:41:06 -040052 boost::asio::io_service io;
53 auto nm = make_unique<NetworkMonitor>(io);
Junxiao Shif4c1eb32017-05-30 17:05:10 +000054 NM_REQUIRE_CAP(ENUM);
Davide Pesavento2bf35a62017-04-02 00:41:06 -040055
56 nm->onInterfaceAdded.connect([&] (const shared_ptr<NetworkInterface>&) {
57 io.post([&] { nm.reset(); });
58 });
59 nm->onEnumerationCompleted.connect([&] {
60 BOOST_CHECK_EQUAL(nm->listNetworkInterfaces().size(), 0);
61 // make sure the test case terminates even if we have zero interfaces
62 io.post([&] { nm.reset(); });
63 });
64
65 io.run();
Davide Pesavento2bf35a62017-04-02 00:41:06 -040066 BOOST_CHECK(true); // if we got this far, the test passed
67}
68
69BOOST_AUTO_TEST_SUITE_END() // TestNetworkMonitor
70BOOST_AUTO_TEST_SUITE_END() // Util
71
72} // namespace tests
73} // namespace util
74} // namespace ndn