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 | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 43 | GeneralConfigSectionFixture() |
| 44 | { |
| 45 | setConfigFile(configFile); |
| 46 | } |
| 47 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 48 | #ifdef HAVE_PRIVILEGE_DROP_AND_ELEVATE |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 49 | ~GeneralConfigSectionFixture() |
| 50 | { |
| 51 | // revert changes to s_normalUid/s_normalGid, if any |
| 52 | PrivilegeHelper::s_normalUid = ::geteuid(); |
| 53 | PrivilegeHelper::s_normalGid = ::getegid(); |
| 54 | } |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 55 | #endif // HAVE_PRIVILEGE_DROP_AND_ELEVATE |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 56 | |
| 57 | protected: |
| 58 | ConfigFile configFile; |
Alexander Afanasyev | 4d384fc | 2015-02-13 19:01:38 -0800 | [diff] [blame] | 59 | }; |
| 60 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 61 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 62 | BOOST_FIXTURE_TEST_SUITE(TestGeneralConfigSection, GeneralConfigSectionFixture) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 63 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 64 | BOOST_AUTO_TEST_CASE(EmptyConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 65 | { |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 66 | const std::string CONFIG = R"CONFIG( |
| 67 | general |
| 68 | { |
| 69 | } |
| 70 | )CONFIG"; |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 71 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 72 | configFile.parse(CONFIG, true, "test-general-config-section"); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 73 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 74 | BOOST_CHECK_EQUAL(PrivilegeHelper::s_normalUid, PrivilegeHelper::s_privilegedUid); |
| 75 | BOOST_CHECK_EQUAL(PrivilegeHelper::s_normalGid, PrivilegeHelper::s_privilegedGid); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 76 | } |
| 77 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 78 | #ifdef HAVE_PRIVILEGE_DROP_AND_ELEVATE |
| 79 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 80 | BOOST_AUTO_TEST_CASE(UserConfig) |
| 81 | { |
| 82 | const std::string CONFIG = R"CONFIG( |
| 83 | general |
| 84 | { |
| 85 | user daemon |
| 86 | } |
| 87 | )CONFIG"; |
| 88 | |
| 89 | configFile.parse(CONFIG, true, "test-general-config-section"); |
| 90 | |
| 91 | BOOST_CHECK_NE(PrivilegeHelper::s_normalUid, PrivilegeHelper::s_privilegedUid); |
| 92 | BOOST_CHECK_EQUAL(PrivilegeHelper::s_normalGid, PrivilegeHelper::s_privilegedGid); |
| 93 | } |
| 94 | |
| 95 | BOOST_AUTO_TEST_CASE(GroupConfig) |
| 96 | { |
| 97 | const std::string CONFIG = R"CONFIG( |
| 98 | general |
| 99 | { |
| 100 | group daemon |
| 101 | } |
| 102 | )CONFIG"; |
| 103 | |
| 104 | configFile.parse(CONFIG, true, "test-general-config-section"); |
| 105 | |
| 106 | BOOST_CHECK_EQUAL(PrivilegeHelper::s_normalUid, PrivilegeHelper::s_privilegedUid); |
| 107 | BOOST_CHECK_NE(PrivilegeHelper::s_normalGid, PrivilegeHelper::s_privilegedGid); |
| 108 | } |
| 109 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 110 | BOOST_AUTO_TEST_CASE(UserAndGroupConfig) |
| 111 | { |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 112 | const std::string CONFIG = R"CONFIG( |
| 113 | general |
| 114 | { |
| 115 | user daemon |
| 116 | group daemon |
| 117 | } |
| 118 | )CONFIG"; |
Weiwei Liu | f5aee94 | 2016-03-19 07:00:42 +0000 | [diff] [blame] | 119 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 120 | configFile.parse(CONFIG, true, "test-general-config-section"); |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 121 | |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 122 | BOOST_CHECK_NE(PrivilegeHelper::s_normalUid, PrivilegeHelper::s_privilegedUid); |
| 123 | BOOST_CHECK_NE(PrivilegeHelper::s_normalGid, PrivilegeHelper::s_privilegedGid); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 124 | } |
| 125 | |
Alexander Afanasyev | 66c569d | 2015-08-09 23:45:13 -0700 | [diff] [blame] | 126 | #endif // HAVE_PRIVILEGE_DROP_AND_ELEVATE |
| 127 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 128 | BOOST_AUTO_TEST_CASE(InvalidUserConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 129 | { |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 130 | const std::string CONFIG = R"CONFIG( |
| 131 | general |
| 132 | { |
| 133 | user |
| 134 | } |
| 135 | )CONFIG"; |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 136 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 137 | BOOST_CHECK_EXCEPTION(configFile.parse(CONFIG, true, "test-general-config-section"), |
| 138 | ConfigFile::Error, |
| 139 | [] (const ConfigFile::Error& e) { |
| 140 | return std::strcmp(e.what(), |
| 141 | "Invalid value for \"user\" in \"general\" section") == 0; |
| 142 | }); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 143 | } |
| 144 | |
Steve DiBenedetto | b4336c2 | 2014-10-06 12:14:06 -0600 | [diff] [blame] | 145 | BOOST_AUTO_TEST_CASE(InvalidGroupConfig) |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 146 | { |
Davide Pesavento | 7015694 | 2018-09-15 18:40:21 -0400 | [diff] [blame] | 147 | const std::string CONFIG = R"CONFIG( |
| 148 | general |
| 149 | { |
| 150 | group |
| 151 | } |
| 152 | )CONFIG"; |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 153 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 154 | BOOST_CHECK_EXCEPTION(configFile.parse(CONFIG, true, "test-general-config-section"), |
| 155 | ConfigFile::Error, |
| 156 | [] (const ConfigFile::Error& e) { |
| 157 | return std::strcmp(e.what(), |
| 158 | "Invalid value for \"group\" in \"general\" section") == 0; |
| 159 | }); |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 160 | } |
| 161 | |
Davide Pesavento | 231ddd7 | 2016-09-02 22:20:00 +0000 | [diff] [blame] | 162 | BOOST_AUTO_TEST_SUITE_END() // TestGeneralConfigSection |
| 163 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 164 | |
| 165 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 166 | } // namespace general |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 167 | } // namespace nfd |