tests: Revert changes to s_normalUid/s_normalGid in MgmtGeneralConfigSection test suite

If changes to s_normalUid/s_normalGid are not reverted, the subsequent call
to PrivilegeHelper::drop() will throw exception if test cases run by an
unprivileged user.

Change-Id: I27e8b159d61e1b5f6dd21879f36ed63667f5c045
Refs: #2521
diff --git a/core/privilege-helper.hpp b/core/privilege-helper.hpp
index 6af2333..380dc64 100644
--- a/core/privilege-helper.hpp
+++ b/core/privilege-helper.hpp
@@ -71,7 +71,7 @@
   static void
   raise();
 
-private:
+PUBLIC_WITH_TESTS_ELSE_PRIVATE:
 #ifdef HAVE_PRIVILEGE_DROP_AND_ELEVATE
   static uid_t s_normalUid;
   static gid_t s_normalGid;
diff --git a/tests/daemon/mgmt/general-config-section.cpp b/tests/daemon/mgmt/general-config-section.cpp
index 29e5e7a..b18e274 100644
--- a/tests/daemon/mgmt/general-config-section.cpp
+++ b/tests/daemon/mgmt/general-config-section.cpp
@@ -1,12 +1,12 @@
 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
 /**
- * Copyright (c) 2014,  Regents of the University of California,
- *                      Arizona Board of Regents,
- *                      Colorado State University,
- *                      University Pierre & Marie Curie, Sorbonne University,
- *                      Washington University in St. Louis,
- *                      Beijing Institute of Technology,
- *                      The University of Memphis
+ * Copyright (c) 2014-2015,  Regents of the University of California,
+ *                           Arizona Board of Regents,
+ *                           Colorado State University,
+ *                           University Pierre & Marie Curie, Sorbonne University,
+ *                           Washington University in St. Louis,
+ *                           Beijing Institute of Technology,
+ *                           The University of Memphis.
  *
  * This file is part of NFD (Named Data Networking Forwarding Daemon).
  * See AUTHORS.md for complete list of NFD authors and contributors.
@@ -24,13 +24,25 @@
  */
 
 #include "mgmt/general-config-section.hpp"
+#include "core/privilege-helper.hpp"
 
 #include "tests/test-common.hpp"
 
 namespace nfd {
 namespace tests {
 
-BOOST_FIXTURE_TEST_SUITE(MgmtGeneralConfigSection, BaseFixture)
+class GeneralConfigSectionFixture : public BaseFixture
+{
+public:
+  ~GeneralConfigSectionFixture()
+  {
+    // revert changes to s_normalUid/s_normalGid, if any
+    PrivilegeHelper::s_normalUid = ::geteuid();
+    PrivilegeHelper::s_normalGid = ::getegid();
+  }
+};
+
+BOOST_FIXTURE_TEST_SUITE(MgmtGeneralConfigSection, GeneralConfigSectionFixture)
 
 BOOST_AUTO_TEST_CASE(UserAndGroupConfig)
 {