|
@@ -104,7 +104,7 @@ class TestBoB(unittest.TestCase):
|
|
self.assertEqual(bob.msgq_socket_file, None)
|
|
self.assertEqual(bob.msgq_socket_file, None)
|
|
self.assertEqual(bob.cc_session, None)
|
|
self.assertEqual(bob.cc_session, None)
|
|
self.assertEqual(bob.ccs, None)
|
|
self.assertEqual(bob.ccs, None)
|
|
- self.assertEqual(bob.processes, {})
|
|
|
|
|
|
+ self.assertEqual(bob.components, {})
|
|
self.assertEqual(bob.dead_processes, {})
|
|
self.assertEqual(bob.dead_processes, {})
|
|
self.assertEqual(bob.runnable, False)
|
|
self.assertEqual(bob.runnable, False)
|
|
self.assertEqual(bob.uid, None)
|
|
self.assertEqual(bob.uid, None)
|
|
@@ -122,7 +122,7 @@ class TestBoB(unittest.TestCase):
|
|
self.assertEqual(bob.msgq_socket_file, "alt_socket_file")
|
|
self.assertEqual(bob.msgq_socket_file, "alt_socket_file")
|
|
self.assertEqual(bob.cc_session, None)
|
|
self.assertEqual(bob.cc_session, None)
|
|
self.assertEqual(bob.ccs, None)
|
|
self.assertEqual(bob.ccs, None)
|
|
- self.assertEqual(bob.processes, {})
|
|
|
|
|
|
+ self.assertEqual(bob.components, {})
|
|
self.assertEqual(bob.dead_processes, {})
|
|
self.assertEqual(bob.dead_processes, {})
|
|
self.assertEqual(bob.runnable, False)
|
|
self.assertEqual(bob.runnable, False)
|
|
self.assertEqual(bob.uid, None)
|
|
self.assertEqual(bob.uid, None)
|
|
@@ -221,7 +221,7 @@ class MockBob(BoB):
|
|
self.dhcp6 = False
|
|
self.dhcp6 = False
|
|
self.dhcp4 = False
|
|
self.dhcp4 = False
|
|
self.c_channel_env = {}
|
|
self.c_channel_env = {}
|
|
- self.processes = { }
|
|
|
|
|
|
+ self.components = { }
|
|
self.creator = False
|
|
self.creator = False
|
|
|
|
|
|
class MockSockCreator(isc.bind10.component.Component):
|
|
class MockSockCreator(isc.bind10.component.Component):
|
|
@@ -351,58 +351,58 @@ class MockBob(BoB):
|
|
# in case he forgets to update the tests.
|
|
# in case he forgets to update the tests.
|
|
def stop_msgq(self):
|
|
def stop_msgq(self):
|
|
if self.msgq:
|
|
if self.msgq:
|
|
- del self.processes[2]
|
|
|
|
|
|
+ del self.components[2]
|
|
self.msgq = False
|
|
self.msgq = False
|
|
|
|
|
|
def stop_cfgmgr(self):
|
|
def stop_cfgmgr(self):
|
|
if self.cfgmgr:
|
|
if self.cfgmgr:
|
|
- del self.processes[3]
|
|
|
|
|
|
+ del self.components[3]
|
|
self.cfgmgr = False
|
|
self.cfgmgr = False
|
|
|
|
|
|
def stop_auth(self):
|
|
def stop_auth(self):
|
|
if self.auth:
|
|
if self.auth:
|
|
- del self.processes[5]
|
|
|
|
|
|
+ del self.components[5]
|
|
self.auth = False
|
|
self.auth = False
|
|
|
|
|
|
def stop_resolver(self):
|
|
def stop_resolver(self):
|
|
if self.resolver:
|
|
if self.resolver:
|
|
- del self.processes[6]
|
|
|
|
|
|
+ del self.components[6]
|
|
self.resolver = False
|
|
self.resolver = False
|
|
|
|
|
|
def stop_xfrout(self):
|
|
def stop_xfrout(self):
|
|
if self.xfrout:
|
|
if self.xfrout:
|
|
- del self.processes[7]
|
|
|
|
|
|
+ del self.components[7]
|
|
self.xfrout = False
|
|
self.xfrout = False
|
|
|
|
|
|
def stop_xfrin(self):
|
|
def stop_xfrin(self):
|
|
if self.xfrin:
|
|
if self.xfrin:
|
|
- del self.processes[8]
|
|
|
|
|
|
+ del self.components[8]
|
|
self.xfrin = False
|
|
self.xfrin = False
|
|
|
|
|
|
def stop_zonemgr(self):
|
|
def stop_zonemgr(self):
|
|
if self.zonemgr:
|
|
if self.zonemgr:
|
|
- del self.processes[9]
|
|
|
|
|
|
+ del self.components[9]
|
|
self.zonemgr = False
|
|
self.zonemgr = False
|
|
|
|
|
|
def stop_stats(self):
|
|
def stop_stats(self):
|
|
if self.stats:
|
|
if self.stats:
|
|
- del self.processes[10]
|
|
|
|
|
|
+ del self.components[10]
|
|
self.stats = False
|
|
self.stats = False
|
|
|
|
|
|
def stop_stats_httpd(self):
|
|
def stop_stats_httpd(self):
|
|
if self.stats_httpd:
|
|
if self.stats_httpd:
|
|
- del self.processes[11]
|
|
|
|
|
|
+ del self.components[11]
|
|
self.stats_httpd = False
|
|
self.stats_httpd = False
|
|
|
|
|
|
def stop_cmdctl(self):
|
|
def stop_cmdctl(self):
|
|
if self.cmdctl:
|
|
if self.cmdctl:
|
|
- del self.processes[12]
|
|
|
|
|
|
+ del self.components[12]
|
|
self.cmdctl = False
|
|
self.cmdctl = False
|
|
|
|
|
|
class TestStartStopProcessesBob(unittest.TestCase):
|
|
class TestStartStopProcessesBob(unittest.TestCase):
|
|
"""
|
|
"""
|
|
- Check that the start_all_processes method starts the right combination
|
|
|
|
- of processes and that the right processes are started and stopped
|
|
|
|
|
|
+ Check that the start_all_components method starts the right combination
|
|
|
|
+ of components and that the right components are started and stopped
|
|
according to changes in configuration.
|
|
according to changes in configuration.
|
|
"""
|
|
"""
|
|
def check_environment_unchanged(self):
|
|
def check_environment_unchanged(self):
|
|
@@ -436,7 +436,7 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
def check_started_none(self, bob):
|
|
def check_started_none(self, bob):
|
|
"""
|
|
"""
|
|
Check that the situation is according to configuration where no servers
|
|
Check that the situation is according to configuration where no servers
|
|
- should be started. Some processes still need to be running.
|
|
|
|
|
|
+ should be started. Some components still need to be running.
|
|
"""
|
|
"""
|
|
self.check_started(bob, True, False, False)
|
|
self.check_started(bob, True, False, False)
|
|
self.check_environment_unchanged()
|
|
self.check_environment_unchanged()
|
|
@@ -451,14 +451,14 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
|
|
|
|
def check_started_auth(self, bob):
|
|
def check_started_auth(self, bob):
|
|
"""
|
|
"""
|
|
- Check the set of processes needed to run auth only is started.
|
|
|
|
|
|
+ Check the set of components needed to run auth only is started.
|
|
"""
|
|
"""
|
|
self.check_started(bob, True, True, False)
|
|
self.check_started(bob, True, True, False)
|
|
self.check_environment_unchanged()
|
|
self.check_environment_unchanged()
|
|
|
|
|
|
def check_started_resolver(self, bob):
|
|
def check_started_resolver(self, bob):
|
|
"""
|
|
"""
|
|
- Check the set of processes needed to run resolver only is started.
|
|
|
|
|
|
+ Check the set of components needed to run resolver only is started.
|
|
"""
|
|
"""
|
|
self.check_started(bob, True, False, True)
|
|
self.check_started(bob, True, False, True)
|
|
self.check_environment_unchanged()
|
|
self.check_environment_unchanged()
|
|
@@ -476,65 +476,65 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
self.assertEqual(v6==True, v6found==1)
|
|
self.assertEqual(v6==True, v6found==1)
|
|
self.check_environment_unchanged()
|
|
self.check_environment_unchanged()
|
|
|
|
|
|
- # Checks the processes started when starting neither auth nor resolver
|
|
|
|
|
|
+ # Checks the components started when starting neither auth nor resolver
|
|
# is specified.
|
|
# is specified.
|
|
def test_start_none(self):
|
|
def test_start_none(self):
|
|
# Create BoB and ensure correct initialization
|
|
# Create BoB and ensure correct initialization
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes and check what was started
|
|
|
|
|
|
+ # Start components and check what was started
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_resolver = False
|
|
bob.cfg_start_resolver = False
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
self.check_started_none(bob)
|
|
self.check_started_none(bob)
|
|
|
|
|
|
- # Checks the processes started when starting only the auth process
|
|
|
|
|
|
+ # Checks the components started when starting only the auth process
|
|
def test_start_auth(self):
|
|
def test_start_auth(self):
|
|
# Create BoB and ensure correct initialization
|
|
# Create BoB and ensure correct initialization
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes and check what was started
|
|
|
|
|
|
+ # Start components and check what was started
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_resolver = False
|
|
bob.cfg_start_resolver = False
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
|
|
|
|
self.check_started_auth(bob)
|
|
self.check_started_auth(bob)
|
|
|
|
|
|
- # Checks the processes started when starting only the resolver process
|
|
|
|
|
|
+ # Checks the components started when starting only the resolver process
|
|
def test_start_resolver(self):
|
|
def test_start_resolver(self):
|
|
# Create BoB and ensure correct initialization
|
|
# Create BoB and ensure correct initialization
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes and check what was started
|
|
|
|
|
|
+ # Start components and check what was started
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_resolver = True
|
|
bob.cfg_start_resolver = True
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
|
|
|
|
self.check_started_resolver(bob)
|
|
self.check_started_resolver(bob)
|
|
|
|
|
|
- # Checks the processes started when starting both auth and resolver process
|
|
|
|
|
|
+ # Checks the components started when starting both auth and resolver process
|
|
def test_start_both(self):
|
|
def test_start_both(self):
|
|
# Create BoB and ensure correct initialization
|
|
# Create BoB and ensure correct initialization
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes and check what was started
|
|
|
|
|
|
+ # Start components and check what was started
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_resolver = True
|
|
bob.cfg_start_resolver = True
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
|
|
|
|
self.check_started_both(bob)
|
|
self.check_started_both(bob)
|
|
|
|
|
|
def test_config_start(self):
|
|
def test_config_start(self):
|
|
"""
|
|
"""
|
|
- Test that the configuration starts and stops processes according
|
|
|
|
|
|
+ Test that the configuration starts and stops components according
|
|
to configuration changes.
|
|
to configuration changes.
|
|
"""
|
|
"""
|
|
|
|
|
|
@@ -542,12 +542,12 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes (nothing much should be started, as in
|
|
|
|
|
|
+ # Start components (nothing much should be started, as in
|
|
# test_start_none)
|
|
# test_start_none)
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_auth = False
|
|
bob.cfg_start_resolver = False
|
|
bob.cfg_start_resolver = False
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
bob.runnable = True
|
|
bob.runnable = True
|
|
self.check_started_none(bob)
|
|
self.check_started_none(bob)
|
|
|
|
|
|
@@ -607,11 +607,11 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
self.check_preconditions(bob)
|
|
self.check_preconditions(bob)
|
|
|
|
|
|
- # Start processes (both)
|
|
|
|
|
|
+ # Start components (both)
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_auth = True
|
|
bob.cfg_start_resolver = True
|
|
bob.cfg_start_resolver = True
|
|
|
|
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
bob.runnable = True
|
|
bob.runnable = True
|
|
self.check_started_both(bob)
|
|
self.check_started_both(bob)
|
|
|
|
|
|
@@ -627,7 +627,7 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
|
|
|
|
def test_config_not_started_early(self):
|
|
def test_config_not_started_early(self):
|
|
"""
|
|
"""
|
|
- Test that processes are not started by the config handler before
|
|
|
|
|
|
+ Test that components are not started by the config handler before
|
|
startup.
|
|
startup.
|
|
"""
|
|
"""
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
@@ -641,7 +641,7 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
|
|
|
|
bob.config_handler({'start_auth': True, 'start_resolver': True})
|
|
bob.config_handler({'start_auth': True, 'start_resolver': True})
|
|
|
|
|
|
- # Checks that DHCP (v4 and v6) processes are started when expected
|
|
|
|
|
|
+ # Checks that DHCP (v4 and v6) components are started when expected
|
|
def test_start_dhcp(self):
|
|
def test_start_dhcp(self):
|
|
|
|
|
|
# Create BoB and ensure correct initialization
|
|
# Create BoB and ensure correct initialization
|
|
@@ -655,7 +655,7 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
# v4 and v6 disabled
|
|
# v4 and v6 disabled
|
|
bob.cfg_start_dhcp6 = False
|
|
bob.cfg_start_dhcp6 = False
|
|
bob.cfg_start_dhcp4 = False
|
|
bob.cfg_start_dhcp4 = False
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
self.check_started_dhcp(bob, False, False)
|
|
self.check_started_dhcp(bob, False, False)
|
|
|
|
|
|
def test_start_dhcp_v6only(self):
|
|
def test_start_dhcp_v6only(self):
|
|
@@ -670,7 +670,7 @@ class TestStartStopProcessesBob(unittest.TestCase):
|
|
# v6 only enabled
|
|
# v6 only enabled
|
|
bob.cfg_start_dhcp6 = True
|
|
bob.cfg_start_dhcp6 = True
|
|
bob.cfg_start_dhcp4 = False
|
|
bob.cfg_start_dhcp4 = False
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
self.check_started_dhcp(bob, False, True)
|
|
self.check_started_dhcp(bob, False, True)
|
|
|
|
|
|
# uncomment when dhcpv4 becomes implemented
|
|
# uncomment when dhcpv4 becomes implemented
|
|
@@ -831,7 +831,7 @@ class TestPIDFile(unittest.TestCase):
|
|
class TestBrittle(unittest.TestCase):
|
|
class TestBrittle(unittest.TestCase):
|
|
def test_brittle_disabled(self):
|
|
def test_brittle_disabled(self):
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
bob.runnable = True
|
|
bob.runnable = True
|
|
|
|
|
|
bob.reap_children()
|
|
bob.reap_children()
|
|
@@ -844,7 +844,7 @@ class TestBrittle(unittest.TestCase):
|
|
|
|
|
|
def test_brittle_enabled(self):
|
|
def test_brittle_enabled(self):
|
|
bob = MockBob()
|
|
bob = MockBob()
|
|
- bob.start_all_processes()
|
|
|
|
|
|
+ bob.start_all_components()
|
|
bob.runnable = True
|
|
bob.runnable = True
|
|
|
|
|
|
bob.brittle = True
|
|
bob.brittle = True
|