Alexander Afanasyev | 4ffcff2 | 2014-09-02 15:39:20 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 28229df | 2020-01-04 15:11:25 -0500 | [diff] [blame^] | 2 | /* |
| 3 | * Copyright (c) 2014-2020, Regents of the University of California, |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -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 | 4ffcff2 | 2014-09-02 15:39:20 -0700 | [diff] [blame] | 10 | * |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 11 | * This file is part of NDNS (Named Data Networking Domain Name Service) and is |
| 12 | * based on the code written as part of NFD (Named Data Networking Daemon). |
Alexander Afanasyev | 4ffcff2 | 2014-09-02 15:39:20 -0700 | [diff] [blame] | 13 | * See AUTHORS.md for complete list of NDNS authors and contributors. |
| 14 | * |
| 15 | * NDNS is free software: you can redistribute it and/or modify it under the terms |
| 16 | * of the GNU General Public License as published by the Free Software Foundation, |
| 17 | * either version 3 of the License, or (at your option) any later version. |
| 18 | * |
| 19 | * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 20 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 21 | * PURPOSE. See the GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License along with |
| 24 | * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 25 | */ |
| 26 | |
Davide Pesavento | 28229df | 2020-01-04 15:11:25 -0500 | [diff] [blame^] | 27 | #define BOOST_TEST_MODULE NDNS Unit Tests |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | c7c9900 | 2015-10-09 17:27:30 -0700 | [diff] [blame] | 29 | #include <boost/version.hpp> |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 30 | |
| 31 | #if BOOST_VERSION >= 106200 |
| 32 | // Boost.Test v3.3 (Boost 1.62) natively supports multi-logger output |
| 33 | #include "boost-test.hpp" |
| 34 | #else |
Davide Pesavento | 28229df | 2020-01-04 15:11:25 -0500 | [diff] [blame^] | 35 | #define BOOST_TEST_ALTERNATIVE_INIT_API |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 36 | #define BOOST_TEST_NO_MAIN |
| 37 | #include "boost-test.hpp" |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 38 | #include "boost-multi-log-formatter.hpp" |
| 39 | |
| 40 | #include <boost/program_options/options_description.hpp> |
| 41 | #include <boost/program_options/variables_map.hpp> |
| 42 | #include <boost/program_options/parsers.hpp> |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 43 | |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 44 | #include <fstream> |
| 45 | #include <iostream> |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 46 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 47 | static bool |
| 48 | init_tests() |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 49 | { |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 50 | init_unit_test(); |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 51 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 52 | namespace po = boost::program_options; |
| 53 | namespace ut = boost::unit_test; |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 54 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 55 | po::options_description extraOptions; |
| 56 | std::string logger; |
| 57 | std::string outputFile = "-"; |
| 58 | extraOptions.add_options() |
| 59 | ("log_format2", po::value<std::string>(&logger), "Type of second log formatter: HRF or XML") |
| 60 | ("log_sink2", po::value<std::string>(&outputFile)->default_value(outputFile), "Second log sink, - for stdout") |
| 61 | ; |
| 62 | po::variables_map vm; |
| 63 | try { |
| 64 | po::store(po::command_line_parser(ut::framework::master_test_suite().argc, |
| 65 | ut::framework::master_test_suite().argv) |
| 66 | .options(extraOptions) |
| 67 | .run(), |
| 68 | vm); |
| 69 | po::notify(vm); |
| 70 | } |
| 71 | catch (const std::exception& e) { |
| 72 | std::cerr << "ERROR: " << e.what() << "\n" |
| 73 | << extraOptions << std::endl; |
| 74 | return false; |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 75 | } |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 76 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 77 | if (vm.count("log_format2") == 0) { |
| 78 | // second logger is not configured |
| 79 | return true; |
Alexander Afanasyev | aa46c27 | 2016-03-09 12:54:12 -0800 | [diff] [blame] | 80 | } |
| 81 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 82 | std::shared_ptr<ut::unit_test_log_formatter> formatter; |
| 83 | if (logger == "XML") { |
| 84 | formatter = std::make_shared<ut::output::xml_log_formatter>(); |
| 85 | } |
| 86 | else if (logger == "HRF") { |
| 87 | formatter = std::make_shared<ut::output::compiler_log_formatter>(); |
| 88 | } |
| 89 | else { |
| 90 | std::cerr << "ERROR: only HRF or XML log formatter can be specified" << std::endl; |
| 91 | return false; |
| 92 | } |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 93 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 94 | std::shared_ptr<std::ostream> output; |
| 95 | if (outputFile == "-") { |
| 96 | output = std::shared_ptr<std::ostream>(&std::cout, std::bind([]{})); |
| 97 | } |
| 98 | else { |
| 99 | output = std::make_shared<std::ofstream>(outputFile.c_str()); |
| 100 | } |
Alexander Afanasyev | 59a42ec | 2014-09-02 18:21:16 -0700 | [diff] [blame] | 101 | |
Alexander Afanasyev | fde570c | 2016-12-19 16:02:55 -0800 | [diff] [blame] | 102 | auto multiFormatter = new ut::output::multi_log_formatter; |
| 103 | multiFormatter->add(formatter, output); |
| 104 | ut::unit_test_log.set_formatter(multiFormatter); |
| 105 | |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | int |
| 110 | main(int argc, char* argv[]) |
| 111 | { |
| 112 | return ::boost::unit_test::unit_test_main(&init_tests, argc, argv); |
| 113 | } |
| 114 | |
| 115 | #endif // BOOST_VERSION >= 106200 |