本文整理匯總了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
)