本文整理汇总了Python中clc_ansible_module.clc_publicip.ClcPublicIp._add_publicip_to_server方法的典型用法代码示例。如果您正苦于以下问题:Python ClcPublicIp._add_publicip_to_server方法的具体用法?Python ClcPublicIp._add_publicip_to_server怎么用?Python ClcPublicIp._add_publicip_to_server使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clc_ansible_module.clc_publicip.ClcPublicIp
的用法示例。
在下文中一共展示了ClcPublicIp._add_publicip_to_server方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_add_publicip_to_server_exception
# 需要导入模块: from clc_ansible_module.clc_publicip import ClcPublicIp [as 别名]
# 或者: from clc_ansible_module.clc_publicip.ClcPublicIp import _add_publicip_to_server [as 别名]
def test_add_publicip_to_server_exception(self, mock_clc_sdk):
error = CLCException("Failed")
error.response_text = 'Mock failure message'
mock_server = mock.MagicMock()
mock_server.id = 'TESTSVR1'
mock_server.data = {'details': {'ipAddresses': [{'internal': '1.2.3.4'}]}}
mock_server.PublicIPs().Add.side_effect = error
under_test = ClcPublicIp(self.module)
under_test._add_publicip_to_server(mock_server, 'ports')
self.module.fail_json.assert_called_once_with(
msg='Failed to add public ip to the server : TESTSVR1. Mock failure message')
示例2: test_ensure_add_public_ip_to_server_calls_sdk_add_with_expected_args
# 需要导入模块: from clc_ansible_module.clc_publicip import ClcPublicIp [as 别名]
# 或者: from clc_ansible_module.clc_publicip.ClcPublicIp import _add_publicip_to_server [as 别名]
def test_ensure_add_public_ip_to_server_calls_sdk_add_with_expected_args(self):
mock_server = mock.MagicMock()
private_ip = '2.4.6.0.1'
ports = [{'protocol': 'UDP', 'port': 8675309}]
ports_with_icmp = [{'protocol': 'UDP', 'port': 8675309}]
ports_with_icmp.insert(0, {'protocol': 'ICMP', 'port': 0})
restrictions = [{'cidr': 'cider'}]
under_test = ClcPublicIp(self.module)
under_test._add_publicip_to_server( server=mock_server,
private_ip=private_ip,
ports_to_expose=ports,
source_restrictions=restrictions)
mock_server.PublicIPs().Add.assert_called_once_with(
ports=ports_with_icmp
, private_ip=private_ip
, source_restrictions=restrictions
)