當前位置: 首頁>>代碼示例>>Python>>正文


Python ClcPublicIp._add_publicip_to_server方法代碼示例

本文整理匯總了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')
開發者ID:cgeers,項目名稱:clc-ansible-module,代碼行數:13,代碼來源:test_clc_publicip.py

示例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
     )
開發者ID:bjfelton,項目名稱:clc-ansible-module,代碼行數:19,代碼來源:test_clc_publicip.py


注:本文中的clc_ansible_module.clc_publicip.ClcPublicIp._add_publicip_to_server方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。