def test_build_pxe_network_config(self): self.flags(pxe_network_config=True, group="baremetal") net = utils.get_test_network_info(1) config = pxe.build_pxe_network_config(net) self.assertIn("eth0:off", config) self.assertNotIn("eth1", config) net = utils.get_test_network_info(2) config = pxe.build_pxe_network_config(net) self.assertIn("eth0:off", config) self.assertIn("eth1:off", config)
def test_build_pxe_network_config(self): self.flags( pxe_network_config=True, group='baremetal', ) net = utils.get_test_network_info(1) config = pxe.build_pxe_network_config(net) self.assertIn('eth0:off', config) self.assertNotIn('eth1', config) net = utils.get_test_network_info(2) config = pxe.build_pxe_network_config(net) self.assertIn('eth0:off', config) self.assertIn('eth1:off', config)
def test_build_pxe_network_config(self): self.flags( pxe_network_config=True, group='baremetal', ) net = utils.get_test_network_info(1, legacy_model=False) config = pxe.build_pxe_network_config(net) self.assertIn('eth0:off', config) self.assertNotIn('eth1', config) net = utils.get_test_network_info(2, legacy_model=False) config = pxe.build_pxe_network_config(net) self.assertIn('eth0:off', config) self.assertIn('eth1:off', config)