当前位置: 首页>>代码示例>>Python>>正文


Python GuiOps.allocate_eip_from_lp方法代码示例

本文整理汇总了Python中guiops.guiops.GuiOps.allocate_eip_from_lp方法的典型用法代码示例。如果您正苦于以下问题:Python GuiOps.allocate_eip_from_lp方法的具体用法?Python GuiOps.allocate_eip_from_lp怎么用?Python GuiOps.allocate_eip_from_lp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在guiops.guiops.GuiOps的用法示例。


在下文中一共展示了GuiOps.allocate_eip_from_lp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: ElasticIPsOperationsSequence

# 需要导入模块: from guiops.guiops import GuiOps [as 别名]
# 或者: from guiops.guiops.GuiOps import allocate_eip_from_lp [as 别名]
class ElasticIPsOperationsSequence(GuiOps):

    def __init__(self):
        parser = Option_parser()
        self.console_url = parser.parse_options()['console_url']
        self.webdriver_url = parser.parse_options()['web_driver']
        self.account = parser.parse_options()['account']
        self.user = parser.parse_options()['user_name']
        self.password = parser.parse_options()['password']
        self.sauce = parser.parse_options()['sauce']
        self.browser = parser.parse_options()['browser']
        self.version = parser.parse_options()['version']
        self.platform = parser.parse_options()['platform']
        self.tester = GuiOps(console_url=self.console_url, webdriver_url=self.webdriver_url,
                             sauce=self.sauce, browser=self.browser, version=self.version, platform=self.platform)

    def elastic_ip_ops_test(self):
        self.tester.login(self.account, self.user, self.password)
        self.elastic_ip_single_allocate_release_test_from_lp()
        self.elastic_ips_multi_allocate_release_test_from_dashboard()
        self.tester.logout()
        self.tester.exit_browser()

    def elastic_ip_single_allocate_release_test_from_lp(self):
        elastic_ips = self.tester.allocate_eip_from_lp(1)
        self.tester.release_eip_from_eip_lp(elastic_ips[0])

    def elastic_ips_multi_allocate_release_test_from_dashboard(self):
        elastic_ips = self.tester.allocate_eip_from_dashboard(2)
        released_ips = self.tester.release_eips_from_eip_lp(elastic_ips)
        assert elastic_ips == released_ips
开发者ID:datatonic,项目名称:eucaconsole,代码行数:33,代码来源:elastic_ips.py

示例2: ElasticIPsOperationsSequence

# 需要导入模块: from guiops.guiops import GuiOps [as 别名]
# 或者: from guiops.guiops.GuiOps import allocate_eip_from_lp [as 别名]
class ElasticIPsOperationsSequence(GuiOps):

    def __init__(self):
        parser = Option_parser()
        self.console_url = parser.parse_options()['console_url']
        self.webdriver_url = parser.parse_options()['web_driver']
        self.account = parser.parse_options()['account']
        self.user = parser.parse_options()['user_name']
        self.password = parser.parse_options()['password']
        self.sauce = parser.parse_options()['sauce']
        self.browser = parser.parse_options()['browser']
        self.version = parser.parse_options()['version']
        self.platform = parser.parse_options()['platform']
        self.tester = GuiOps(console_url=self.console_url, webdriver_url=self.webdriver_url,
                             sauce=self.sauce, browser=self.browser, version=self.version, platform=self.platform)
        self.tester.zoom_out()

    def elastic_ip_ops_test(self):
        self.tester.login(self.account, self.user, self.password)
        self.elastic_ip_single_allocate_release_test_from_lp()
        self.elastic_ips_multi_allocate_release_test_from_dashboard()
        self.elastic_ips_associate_disassociate_ip()
        self.tester.logout()
        self.tester.exit_browser()

    def elastic_ip_single_allocate_release_test_from_lp(self):
        elastic_ips = self.tester.allocate_eip_from_lp(1)
        self.tester.release_eip_from_eip_lp(elastic_ips[0])

    def elastic_ips_multi_allocate_release_test_from_dashboard(self):
        elastic_ips = self.tester.allocate_eip_from_dashboard(2)
        released_ips = self.tester.release_eips_from_eip_lp(elastic_ips)
        assert elastic_ips == released_ips

    def elastic_ips_associate_disassociate_ip(self):
        elastic_ip = self.tester.allocate_eip_from_dashboard(1)
        elastic_ip = str(elastic_ip[0])
        launch_instance = self.tester.launch_instance_from_dashboard(instance_type="m1.medium")
        instance_id = launch_instance['instance_id']
        self.tester.associate_eip_from_eip_lp(elastic_ip, instance_id)
        self.tester.disassociate_eip_from_eip_lp(elastic_ip, instance_id)
        self.tester.associate_eip_from_eip_detail_page(elastic_ip, instance_id)
        self.tester.disassociate_eip_from_eip_detail_page(elastic_ip, instance_id)
        self.tester.associate_eip_from_instances_lp(elastic_ip, instance_id)
        self.tester.disassociate_eip_from_instances_lp(elastic_ip, instance_id)
        self.tester.associate_eip_from_instance_detail_page(elastic_ip, instance_id)
        self.tester.disassociate_eip_from_instance_detail_page(elastic_ip, instance_id)
        self.tester.terminate_instance_from_view_page(instance_id)
        self.tester.release_eip_from_eip_lp(elastic_ip)
开发者ID:,项目名称:,代码行数:51,代码来源:


注:本文中的guiops.guiops.GuiOps.allocate_eip_from_lp方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。