blob: b30663ab2be8754fa30efe42b5eeea2bf1ea12f4 [file] [log] [blame]
Davide Pesavento8de8a8b2022-05-12 01:26:43 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2022, 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 * The University of Memphis.
10 *
11 * This file is part of NLSR (Named-data Link State Routing).
12 * See AUTHORS.md for complete list of NLSR authors and contributors.
13 *
14 * NLSR is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NLSR_TESTS_IO_FIXTURE_HPP
27#define NLSR_TESTS_IO_FIXTURE_HPP
28
29#include "tests/clock-fixture.hpp"
30
31#include <boost/asio/io_service.hpp>
32
33namespace nlsr {
34namespace test {
35
36class IoFixture : public ClockFixture
37{
38private:
39 void
40 afterTick() final
41 {
42 if (m_io.stopped()) {
43#if BOOST_VERSION >= 106600
44 m_io.restart();
45#else
46 m_io.reset();
47#endif
48 }
49 m_io.poll();
50 }
51
52protected:
53 boost::asio::io_service m_io;
54};
55
56} // namespace test
57} // namespace nlsr
58
59#endif // NLSR_TESTS_IO_FIXTURE_HPP