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