blob: d23cb38ea4789c82915de5148b611944631877c3 [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
Junxiao Shi25467942017-06-30 02:53:14 +000022#include "net/network-monitor.hpp"
Davide Pesavento2bf35a62017-04-02 00:41:06 -040023
24#include "boost-test.hpp"
25#include <boost/asio/io_service.hpp>
26
27namespace ndn {
Junxiao Shi25467942017-06-30 02:53:14 +000028namespace net {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040029namespace tests {
30
Junxiao Shi25467942017-06-30 02:53:14 +000031BOOST_AUTO_TEST_SUITE(Net)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040032BOOST_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([&] {
Davide Pesavento2bf35a62017-04-02 00:41:06 -040060 // make sure the test case terminates even if we have zero interfaces
61 io.post([&] { nm.reset(); });
62 });
63
64 io.run();
Davide Pesavento2bf35a62017-04-02 00:41:06 -040065 BOOST_CHECK(true); // if we got this far, the test passed
66}
67
68BOOST_AUTO_TEST_SUITE_END() // TestNetworkMonitor
Junxiao Shi25467942017-06-30 02:53:14 +000069BOOST_AUTO_TEST_SUITE_END() // Net
Davide Pesavento2bf35a62017-04-02 00:41:06 -040070
71} // namespace tests
Junxiao Shi25467942017-06-30 02:53:14 +000072} // namespace net
Davide Pesavento2bf35a62017-04-02 00:41:06 -040073} // namespace ndn