本文整理汇总了Python中nailgun.network.checker.NetworkCheck.check_network_address_spaces_intersection方法的典型用法代码示例。如果您正苦于以下问题:Python NetworkCheck.check_network_address_spaces_intersection方法的具体用法?Python NetworkCheck.check_network_address_spaces_intersection怎么用?Python NetworkCheck.check_network_address_spaces_intersection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nailgun.network.checker.NetworkCheck
的用法示例。
在下文中一共展示了NetworkCheck.check_network_address_spaces_intersection方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_check_configuration_nova_network
# 需要导入模块: from nailgun.network.checker import NetworkCheck [as 别名]
# 或者: from nailgun.network.checker.NetworkCheck import check_network_address_spaces_intersection [as 别名]
def test_check_configuration_nova_network(self):
checker = NetworkCheck(self.task, {})
checker.net_provider = 'nova-network'
checker.neutron_check_network_address_spaces_intersection = MagicMock()
checker.neutron_check_segmentation_ids = MagicMock()
checker.neutron_check_l3_addresses_not_match_subnet_and_broadcast = \
MagicMock()
checker.check_public_floating_ranges_intersection = MagicMock()
checker.check_network_address_spaces_intersection = MagicMock()
checker.check_networks_amount = MagicMock()
checker.check_vlan_ids_range_and_intersection = MagicMock()
checker.check_network_classes_exclude_loopback = MagicMock()
checker.check_network_addresses_not_match_subnet_and_broadcast = \
MagicMock()
checker.check_configuration()
not_called = [
'neutron_check_network_address_spaces_intersection',
'neutron_check_segmentation_ids',
'neutron_check_l3_addresses_not_match_subnet_and_broadcast'
]
for method in not_called:
mocked = getattr(checker, method)
self.assertFalse(mocked.called)
called = [
'check_public_floating_ranges_intersection',
'check_network_address_spaces_intersection',
'check_networks_amount',
'check_vlan_ids_range_and_intersection',
'check_network_classes_exclude_loopback',
'check_network_addresses_not_match_subnet_and_broadcast'
]
for method in called:
mocked = getattr(checker, method)
mocked.assert_any_call()