Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a997d29 | 2017-08-24 20:16:59 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD 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 | * NFD 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 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 24 | */ |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #include "core/config-file.hpp" |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 27 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 28 | #include "tests/test-common.hpp" |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 29 | |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 30 | #include <boost/property_tree/info_parser.hpp> |
Davide Pesavento | a997d29 | 2017-08-24 20:16:59 -0400 | [diff] [blame] | 31 | #include <fstream> |
| 32 | #include <sstream> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 33 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 34 | namespace nfd { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 35 | namespace tests { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 36 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 37 | BOOST_FIXTURE_TEST_SUITE(TestConfigFile, BaseFixture) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 38 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 39 | static const std::string CONFIG = R"CONFIG( |
| 40 | a |
| 41 | { |
| 42 | akey avalue |
| 43 | } |
| 44 | b |
| 45 | { |
| 46 | bkey bvalue |
| 47 | } |
| 48 | )CONFIG"; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 49 | |
| 50 | // counts of the respective section counts in config_example.info |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 51 | const int CONFIG_N_A_SECTIONS = 1; |
| 52 | const int CONFIG_N_B_SECTIONS = 1; |
| 53 | |
| 54 | class DummySubscriber |
| 55 | { |
| 56 | public: |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 57 | DummySubscriber(ConfigFile& config, int nASections, int nBSections, bool expectDryRun) |
| 58 | : m_nASections(nASections) |
| 59 | , m_nBSections(nBSections) |
| 60 | , m_nRemainingACallbacks(nASections) |
| 61 | , m_nRemainingBCallbacks(nBSections) |
| 62 | , m_expectDryRun(expectDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 63 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
| 67 | onA(const ConfigSection& section, bool isDryRun) |
| 68 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 69 | BOOST_CHECK_EQUAL(isDryRun, m_expectDryRun); |
| 70 | --m_nRemainingACallbacks; |
| 71 | } |
| 72 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 73 | void |
| 74 | onB(const ConfigSection& section, bool isDryRun) |
| 75 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 76 | BOOST_CHECK_EQUAL(isDryRun, m_expectDryRun); |
| 77 | --m_nRemainingBCallbacks; |
| 78 | } |
| 79 | |
| 80 | bool |
| 81 | allCallbacksFired() const |
| 82 | { |
| 83 | return m_nRemainingACallbacks == 0 && |
| 84 | m_nRemainingBCallbacks == 0; |
| 85 | } |
| 86 | |
| 87 | bool |
| 88 | noCallbacksFired() const |
| 89 | { |
| 90 | return m_nRemainingACallbacks == m_nASections && |
| 91 | m_nRemainingBCallbacks == m_nBSections; |
| 92 | } |
| 93 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 94 | private: |
| 95 | int m_nASections; |
| 96 | int m_nBSections; |
| 97 | int m_nRemainingACallbacks; |
| 98 | int m_nRemainingBCallbacks; |
| 99 | bool m_expectDryRun; |
| 100 | }; |
| 101 | |
| 102 | class DummyAllSubscriber : public DummySubscriber |
| 103 | { |
| 104 | public: |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 105 | explicit |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 106 | DummyAllSubscriber(ConfigFile& config, bool expectDryRun = false) |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 107 | : DummySubscriber(config, CONFIG_N_A_SECTIONS, CONFIG_N_B_SECTIONS, expectDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 108 | { |
| 109 | config.addSectionHandler("a", bind(&DummySubscriber::onA, this, _1, _2)); |
| 110 | config.addSectionHandler("b", bind(&DummySubscriber::onB, this, _1, _2)); |
| 111 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | class DummyOneSubscriber : public DummySubscriber |
| 115 | { |
| 116 | public: |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 117 | DummyOneSubscriber(ConfigFile& config, const std::string& sectionName, bool expectDryRun = false) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 118 | : DummySubscriber(config, |
| 119 | (sectionName == "a"), |
| 120 | (sectionName == "b"), |
| 121 | expectDryRun) |
| 122 | { |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 123 | if (sectionName == "a") { |
| 124 | config.addSectionHandler(sectionName, bind(&DummySubscriber::onA, this, _1, _2)); |
| 125 | } |
| 126 | else if (sectionName == "b") { |
| 127 | config.addSectionHandler(sectionName, bind(&DummySubscriber::onB, this, _1, _2)); |
| 128 | } |
| 129 | else { |
| 130 | BOOST_FAIL("Test setup error: Unexpected section name '" << sectionName << "'"); |
| 131 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 132 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | class DummyNoSubscriber : public DummySubscriber |
| 136 | { |
| 137 | public: |
| 138 | DummyNoSubscriber(ConfigFile& config, bool expectDryRun) |
| 139 | : DummySubscriber(config, 0, 0, expectDryRun) |
| 140 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 141 | } |
| 142 | }; |
| 143 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 144 | BOOST_AUTO_TEST_CASE(ParseFromStream) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 145 | { |
| 146 | ConfigFile file; |
| 147 | DummyAllSubscriber sub(file); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 148 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 149 | std::ifstream input("tests/core/config_example.info"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 150 | BOOST_REQUIRE(input.is_open()); |
| 151 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 152 | file.parse(input, false, "config_example.info"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 153 | BOOST_CHECK(sub.allCallbacksFired()); |
| 154 | } |
| 155 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 156 | BOOST_AUTO_TEST_CASE(ParseFromEmptyStream) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 157 | { |
| 158 | ConfigFile file; |
| 159 | DummyAllSubscriber sub(file); |
| 160 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 161 | std::istringstream input; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 162 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 163 | file.parse(input, false, "empty"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 164 | BOOST_CHECK(sub.noCallbacksFired()); |
| 165 | } |
| 166 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 167 | BOOST_AUTO_TEST_CASE(ParseFromStreamDryRun) |
| 168 | { |
| 169 | ConfigFile file; |
| 170 | DummyAllSubscriber sub(file, true); |
| 171 | |
| 172 | std::ifstream input("tests/core/config_example.info"); |
| 173 | BOOST_REQUIRE(input.is_open()); |
| 174 | |
| 175 | file.parse(input, true, "tests/core/config_example.info"); |
| 176 | BOOST_CHECK(sub.allCallbacksFired()); |
| 177 | } |
| 178 | |
| 179 | BOOST_AUTO_TEST_CASE(ParseFromConfigSection) |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 180 | { |
| 181 | ConfigFile file; |
| 182 | DummyAllSubscriber sub(file); |
| 183 | |
| 184 | std::istringstream input(CONFIG); |
| 185 | ConfigSection section; |
| 186 | boost::property_tree::read_info(input, section); |
| 187 | |
| 188 | file.parse(section, false, "dummy-config"); |
| 189 | BOOST_CHECK(sub.allCallbacksFired()); |
| 190 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 191 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 192 | BOOST_AUTO_TEST_CASE(ParseFromString) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 193 | { |
| 194 | ConfigFile file; |
| 195 | DummyAllSubscriber sub(file); |
| 196 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 197 | file.parse(CONFIG, false, "dummy-config"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 198 | BOOST_CHECK(sub.allCallbacksFired()); |
| 199 | } |
| 200 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 201 | BOOST_AUTO_TEST_CASE(ParseFromEmptyString) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 202 | { |
| 203 | ConfigFile file; |
| 204 | DummyAllSubscriber sub(file); |
| 205 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 206 | file.parse("", false, "empty"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 207 | BOOST_CHECK(sub.noCallbacksFired()); |
| 208 | } |
| 209 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 210 | BOOST_AUTO_TEST_CASE(ParseFromMalformedString) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 211 | { |
| 212 | ConfigFile file; |
| 213 | DummyAllSubscriber sub(file); |
| 214 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 215 | const std::string malformed = R"CONFIG( |
| 216 | a |
| 217 | { |
| 218 | akey avalue |
| 219 | } |
| 220 | b |
| 221 | bkey bvalue |
| 222 | } |
| 223 | )CONFIG"; |
| 224 | |
| 225 | BOOST_CHECK_THROW(file.parse(malformed, false, "dummy-config"), ConfigFile::Error); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 226 | BOOST_CHECK(sub.noCallbacksFired()); |
| 227 | } |
| 228 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 229 | BOOST_AUTO_TEST_CASE(ParseFromStringDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 230 | { |
| 231 | ConfigFile file; |
| 232 | DummyAllSubscriber sub(file, true); |
| 233 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 234 | file.parse(CONFIG, true, "dummy-config"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 235 | BOOST_CHECK(sub.allCallbacksFired()); |
| 236 | } |
| 237 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 238 | BOOST_AUTO_TEST_CASE(ParseFromFilename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 239 | { |
| 240 | ConfigFile file; |
| 241 | DummyAllSubscriber sub(file); |
| 242 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 243 | file.parse("tests/core/config_example.info", false); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 244 | BOOST_CHECK(sub.allCallbacksFired()); |
| 245 | } |
| 246 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 247 | BOOST_AUTO_TEST_CASE(ParseFromFilenameNonExistent) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 248 | { |
| 249 | ConfigFile file; |
| 250 | DummyAllSubscriber sub(file); |
| 251 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 252 | BOOST_CHECK_THROW(file.parse("i_made_this_up.info", false), ConfigFile::Error); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 253 | BOOST_CHECK(sub.noCallbacksFired()); |
| 254 | } |
| 255 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 256 | BOOST_AUTO_TEST_CASE(ParseFromFilenameMalformed) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 257 | { |
| 258 | ConfigFile file; |
| 259 | DummyAllSubscriber sub(file); |
| 260 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 261 | BOOST_CHECK_THROW(file.parse("tests/core/config_malformed.info", false), ConfigFile::Error); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 262 | BOOST_CHECK(sub.noCallbacksFired()); |
| 263 | } |
| 264 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 265 | BOOST_AUTO_TEST_CASE(ParseFromFilenameDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 266 | { |
| 267 | ConfigFile file; |
| 268 | DummyAllSubscriber sub(file, true); |
| 269 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 270 | file.parse("tests/core/config_example.info", true); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 271 | BOOST_CHECK(sub.allCallbacksFired()); |
| 272 | } |
| 273 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 274 | BOOST_AUTO_TEST_CASE(ReplaceSubscriber) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 275 | { |
| 276 | ConfigFile file; |
| 277 | DummyAllSubscriber sub1(file); |
| 278 | DummyAllSubscriber sub2(file); |
| 279 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 280 | file.parse(CONFIG, false, "dummy-config"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 281 | |
| 282 | BOOST_CHECK(sub1.noCallbacksFired()); |
| 283 | BOOST_CHECK(sub2.allCallbacksFired()); |
| 284 | } |
| 285 | |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 286 | class MissingCallbackFixture : public BaseFixture |
| 287 | { |
| 288 | public: |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 289 | void |
| 290 | checkMissingHandler(const std::string& filename, |
| 291 | const std::string& sectionName, |
| 292 | const ConfigSection& section, |
| 293 | bool isDryRun) |
| 294 | { |
| 295 | m_missingFired = true; |
| 296 | } |
| 297 | |
| 298 | protected: |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 299 | bool m_missingFired = false; |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 300 | }; |
| 301 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 302 | BOOST_FIXTURE_TEST_CASE(UncoveredSections, MissingCallbackFixture) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 303 | { |
| 304 | ConfigFile file; |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 305 | BOOST_REQUIRE_THROW(file.parse(CONFIG, false, "dummy-config"), ConfigFile::Error); |
| 306 | |
| 307 | ConfigFile permissiveFile(bind(&MissingCallbackFixture::checkMissingHandler, |
| 308 | this, _1, _2, _3, _4)); |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 309 | DummyOneSubscriber subA(permissiveFile, "a"); |
| 310 | |
| 311 | BOOST_REQUIRE_NO_THROW(permissiveFile.parse(CONFIG, false, "dummy-config")); |
| 312 | BOOST_CHECK(subA.allCallbacksFired()); |
| 313 | BOOST_CHECK(m_missingFired); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 314 | } |
| 315 | |
Davide Pesavento | 8524437 | 2018-02-03 19:10:55 -0500 | [diff] [blame] | 316 | BOOST_AUTO_TEST_CASE(CoveredByPartialSubscribers) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 317 | { |
| 318 | ConfigFile file; |
| 319 | DummyOneSubscriber subA(file, "a"); |
| 320 | DummyOneSubscriber subB(file, "b"); |
| 321 | |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 322 | file.parse(CONFIG, false, "dummy-config"); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 323 | |
| 324 | BOOST_CHECK(subA.allCallbacksFired()); |
| 325 | BOOST_CHECK(subB.allCallbacksFired()); |
| 326 | } |
| 327 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 328 | BOOST_AUTO_TEST_SUITE_END() |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 329 | |
| 330 | } // namespace tests |
| 331 | } // namespace nfd |