Browse Source

[213] Cleanups

Michal 'vorner' Vaner 13 years ago
parent
commit
9f854755d1
2 changed files with 9 additions and 6 deletions
  1. 7 4
      src/bin/bind10/bind10_src.py.in
  2. 2 2
      src/bin/bind10/tests/bind10_test.py.in

+ 7 - 4
src/bin/bind10/bind10_src.py.in

@@ -392,11 +392,15 @@ class BoB:
             self.processes[pid].kill(True)
             self.processes[pid].kill(True)
         self.processes = {}
         self.processes = {}
 
 
-    def read_bind10_config(self):
+    def _read_bind10_config(self):
         """
         """
             Reads the parameters associated with the BoB module itself.
             Reads the parameters associated with the BoB module itself.
 
 
             This means the list of components we should start now.
             This means the list of components we should start now.
+
+            This could easily be combined into start_all_processes, but
+            it stays because of historical reasons and because the tests
+            replace the method sometimes.
         """
         """
         logger.info(BIND10_READING_BOSS_CONFIGURATION)
         logger.info(BIND10_READING_BOSS_CONFIGURATION)
 
 
@@ -673,13 +677,12 @@ class BoB:
 
 
         # Connect to the msgq. This is not a process, so it's not handled
         # Connect to the msgq. This is not a process, so it's not handled
         # inside the configurator.
         # inside the configurator.
-        c_channel_env = self.c_channel_env
-        self.start_ccsession(c_channel_env)
+        self.start_ccsession(self.c_channel_env)
 
 
         # Extract the parameters associated with Bob.  This can only be
         # Extract the parameters associated with Bob.  This can only be
         # done after the CC Session is started.  Note that the logging
         # done after the CC Session is started.  Note that the logging
         # configuration may override the "-v" switch set on the command line.
         # configuration may override the "-v" switch set on the command line.
-        self.read_bind10_config()
+        self._read_bind10_config()
 
 
         # TODO: Return the dropping of privileges
         # TODO: Return the dropping of privileges
 
 

+ 2 - 2
src/bin/bind10/tests/bind10_test.py.in

@@ -244,7 +244,7 @@ class MockBob(BoB):
     def stop_creator(self, kill=False):
     def stop_creator(self, kill=False):
         self.creator = False
         self.creator = False
 
 
-    def read_bind10_config(self):
+    def _read_bind10_config(self):
         # Configuration options are set directly
         # Configuration options are set directly
         pass
         pass
 
 
@@ -945,7 +945,7 @@ class TestBossComponents(unittest.TestCase):
         # Start it
         # Start it
         bob._component_configurator.reconfigure = self.__unary_hook
         bob._component_configurator.reconfigure = self.__unary_hook
         # We need to return the original read_bind10_config
         # We need to return the original read_bind10_config
-        bob.read_bind10_config = lambda: BoB.read_bind10_config(bob)
+        bob._read_bind10_config = lambda: BoB._read_bind10_config(bob)
         # And provide a session to read the data from
         # And provide a session to read the data from
         class CC:
         class CC:
             pass
             pass