Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -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. |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [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/>. |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 24 | */ |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 25 | |
| 26 | #include "mgmt/general-config-section.hpp" |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 27 | #include "core/config-file.hpp" |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 28 | #include "core/privilege-helper.hpp" |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 29 | |
| 30 | #include "tests/test-common.hpp" |
| 31 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 32 | #include <cstring> |
| 33 | |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 34 | namespace nfd { |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 35 | namespace general { |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 36 | namespace tests { |
| 37 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 38 | using namespace nfd::tests; |
| 39 | |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 40 | class GeneralConfigSectionFixture : public BaseFixture |
| 41 | { |
| 42 | public: |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 43 | #ifdef HAVE_PRIVILEGE_DROP_AND_ELEVATE |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 44 | ~GeneralConfigSectionFixture() |
| 45 | { |
| 46 | // revert changes to s_normalUid/s_normalGid, if any |
| 47 | PrivilegeHelper::s_normalUid = ::geteuid(); |
| 48 | PrivilegeHelper::s_normalGid = ::getegid(); |
| 49 | } |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 50 | #endif // HAVE_PRIVILEGE_DROP_AND_ELEVATE |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 51 | }; |
| 52 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 53 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 54 | BOOST_FIXTURE_TEST_SUITE(TestGeneralConfigSection, GeneralConfigSectionFixture) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 55 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 56 | BOOST_AUTO_TEST_CASE(DefaultConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 57 | { |
| 58 | const std::string CONFIG = |
| 59 | "general\n" |
| 60 | "{\n" |
| 61 | "}\n"; |
| 62 | |
| 63 | ConfigFile configFile; |
| 64 | |
| 65 | general::setConfigFile(configFile); |
| 66 | BOOST_CHECK_NO_THROW(configFile.parse(CONFIG, true, "test-general-config-section")); |
| 67 | } |
| 68 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 69 | #ifdef HAVE_PRIVILEGE_DROP_AND_ELEVATE |
| 70 | |
| 71 | BOOST_AUTO_TEST_CASE(UserAndGroupConfig) |
| 72 | { |
Weiwei Liu | f5aee94 | 2016-03-19 07:00:42 +0000 | [diff] [blame] | 73 | SKIP_IF_NOT_SUPERUSER(); |
| 74 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 75 | const std::string CONFIG = |
| 76 | "general\n" |
| 77 | "{\n" |
| 78 | " user nobody\n" |
| 79 | " group nogroup\n" |
| 80 | "}\n"; |
| 81 | |
| 82 | ConfigFile configFile; |
| 83 | |
| 84 | general::setConfigFile(configFile); |
| 85 | BOOST_CHECK_NO_THROW(configFile.parse(CONFIG, true, "test-general-config-section")); |
| 86 | } |
| 87 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 88 | BOOST_AUTO_TEST_CASE(NoUserConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 89 | { |
Weiwei Liu | f5aee94 | 2016-03-19 07:00:42 +0000 | [diff] [blame] | 90 | SKIP_IF_NOT_SUPERUSER(); |
| 91 | |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 92 | const std::string CONFIG = |
| 93 | "general\n" |
| 94 | "{\n" |
| 95 | " group nogroup\n" |
| 96 | "}\n"; |
| 97 | |
| 98 | ConfigFile configFile; |
| 99 | |
| 100 | general::setConfigFile(configFile); |
| 101 | BOOST_CHECK_NO_THROW(configFile.parse(CONFIG, true, "test-general-config-section")); |
| 102 | } |
| 103 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 104 | BOOST_AUTO_TEST_CASE(NoGroupConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 105 | { |
| 106 | const std::string CONFIG = |
| 107 | "general\n" |
| 108 | "{\n" |
| 109 | " user nobody\n" |
| 110 | "}\n"; |
| 111 | |
| 112 | ConfigFile configFile; |
| 113 | |
| 114 | general::setConfigFile(configFile); |
| 115 | BOOST_CHECK_NO_THROW(configFile.parse(CONFIG, true, "test-general-config-section")); |
| 116 | } |
| 117 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 118 | #endif // HAVE_PRIVILEGE_DROP_AND_ELEVATE |
| 119 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 120 | BOOST_AUTO_TEST_CASE(InvalidUserConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 121 | { |
| 122 | const std::string CONFIG = |
| 123 | "general\n" |
| 124 | "{\n" |
| 125 | " user\n" |
| 126 | "}\n"; |
| 127 | |
| 128 | ConfigFile configFile; |
| 129 | general::setConfigFile(configFile); |
| 130 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 131 | BOOST_CHECK_EXCEPTION(configFile.parse(CONFIG, true, "test-general-config-section"), |
| 132 | ConfigFile::Error, |
| 133 | [] (const ConfigFile::Error& e) { |
| 134 | return std::strcmp(e.what(), |
| 135 | "Invalid value for \"user\" in \"general\" section") == 0; |
| 136 | }); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 137 | } |
| 138 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 139 | BOOST_AUTO_TEST_CASE(InvalidGroupConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 140 | { |
| 141 | const std::string CONFIG = |
| 142 | "general\n" |
| 143 | "{\n" |
| 144 | " group\n" |
| 145 | "}\n"; |
| 146 | |
| 147 | ConfigFile configFile; |
| 148 | general::setConfigFile(configFile); |
| 149 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 150 | BOOST_CHECK_EXCEPTION(configFile.parse(CONFIG, true, "test-general-config-section"), |
| 151 | ConfigFile::Error, |
| 152 | [] (const ConfigFile::Error& e) { |
| 153 | return std::strcmp(e.what(), |
| 154 | "Invalid value for \"group\" in \"general\" section") == 0; |
| 155 | }); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 156 | } |
| 157 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 158 | BOOST_AUTO_TEST_SUITE_END() // TestGeneralConfigSection |
| 159 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 160 | |
| 161 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 162 | } // namespace general |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 163 | } // namespace nfd |