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


Python host.Host类代码示例

本文整理汇总了Python中hm.model.host.Host的典型用法代码示例。如果您正苦于以下问题:Python Host类的具体用法?Python Host怎么用?Python Host使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: setUp

    def setUp(self):
        self.config = {
            "MONGO_DATABASE": "machine_restore_test",
            "RPAAS_SERVICE_NAME": "test_rpaas_machine_restore",
            "RESTORE_MACHINE_RUN_INTERVAL": 2,
            "HOST_MANAGER": "fake"
        }

        self.storage = storage.MongoDBStorage(self.config)
        colls = self.storage.db.collection_names(False)
        for coll in colls:
            self.storage.db.drop_collection(coll)

        now = datetime.datetime.utcnow()
        tasks = [
            {"_id": "restore_10.1.1.1", "host": "10.1.1.1", "instance": "foo",
             "created": now - datetime.timedelta(minutes=8)},
            {"_id": "restore_10.2.2.2", "host": "10.2.2.2", "instance": "bar",
             "created": now - datetime.timedelta(minutes=3)},
            {"_id": "restore_10.3.3.3", "host": "10.3.3.3", "instance": "foo",
             "created": now - datetime.timedelta(minutes=5)},
            {"_id": "restore_10.4.4.4", "host": "10.4.4.4", "instance": "foo",
             "created": now - datetime.timedelta(minutes=10)},
            {"_id": "restore_10.5.5.5", "host": "10.5.5.5", "instance": "bar",
             "created": now - datetime.timedelta(minutes=15)},
        ]
        FakeManager.host_id = 0
        FakeManager.hosts = ['10.1.1.1', '10.2.2.2', '10.3.3.3', '10.4.4.4', '10.5.5.5']

        for task in tasks:
            Host.create("fake", task['instance'], self.config)
            self.storage.store_task(task)

        redis.StrictRedis().delete("restore_machine:last_run")
开发者ID:ricobl,项目名称:rpaas,代码行数:34,代码来源:test_healing.py

示例2: test_storage_use_uri_conf

 def test_storage_use_uri_conf(self):
     conf = {
         "DBAAS_MONGODB_ENDPOINT": "mongodb://127.0.0.1:27017/some_other_db",
         "MONGO_URI": "mongodb://127.0.0.1:27017/ignored",
     }
     storage.MongoDBStorage(conf)._hosts_collection().remove()
     host_config = {
         "HOST_ID": "fake-id-x"
     }
     host_config.update(conf)
     h1 = Host.create('fake', 'my-group1', host_config)
     stor = h1.storage()
     self.assertEqual(stor.mongo_database, "some_other_db")
     self.assertEqual(stor.db.name, "some_other_db")
     h1.destroy()
     db_host = Host.find('fake-id-x')
     self.assertIsNone(db_host)
     conf = {
         "MONGO_URI": "mongodb://127.0.0.1:27017/now_used",
     }
     storage.MongoDBStorage(conf)._hosts_collection().remove()
     host_config = {
         "HOST_ID": "fake-id-x"
     }
     host_config.update(conf)
     h1 = Host.create('fake', 'my-group1', host_config)
     stor = h1.storage()
     self.assertEqual(stor.mongo_database, "now_used")
     self.assertEqual(stor.db.name, "now_used")
     h1.destroy()
     db_host = Host.find('fake-id-x')
     self.assertIsNone(db_host)
开发者ID:digideskio,项目名称:hm,代码行数:32,代码来源:test_host.py

示例3: test_restore_log_and_raises_exception_on_error

 def test_restore_log_and_raises_exception_on_error(self, log):
     host = Host.create('fake', 'my-group', {"HOST_ID": "explode"})
     self.assertEqual(host.id, "explode")
     self.assertRaises(Exception, host.restore)
     self.assertEqual(log.call_args, call("Error trying to restore host 'explode' "
                                          "in 'fake': failure to restore"))
     db_host = Host.find('explode')
     self.assertEqual(db_host.id, "explode")
开发者ID:digideskio,项目名称:hm,代码行数:8,代码来源:test_host.py

示例4: test_destroy_ignores_manager_error

 def test_destroy_ignores_manager_error(self, log):
     host = Host.create('fake', 'my-group', {"HOST_ID": "explode"})
     self.assertEqual(host.id, "explode")
     host.destroy()
     self.assertEqual(log.call_args, call("Error trying to destroy host 'explode' "
                                          "in 'fake': failure to destroy"))
     db_host = Host.find('explode')
     self.assertIsNone(db_host)
开发者ID:digideskio,项目名称:hm,代码行数:8,代码来源:test_host.py

示例5: test_remove_host

 def test_remove_host(self):
     h1 = Host('x', 'x.me.com')
     h2 = Host('y', 'y.me.com')
     lb = LoadBalancer.create('fake', 'my-lb', {'LB_ID': 'explode'})
     lb.add_host(h1)
     lb.add_host(h2)
     lb.remove_host(h1)
     self.assertItemsEqual(lb.hosts, [h2])
     db_lb = LoadBalancer.find('my-lb')
     self.assertItemsEqual([h.to_json() for h in db_lb.hosts], [h2.to_json()])
开发者ID:digideskio,项目名称:hm,代码行数:10,代码来源:test_load_balancer.py

示例6: test_create_alternatives

 def test_create_alternatives(self):
     conf = {"HM_ALTERNATIVE_CONFIG_COUNT": "3"}
     conf.update({"HOST_ID": "fake-1"})
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.alternative_id, 0)
     conf.update({"HOST_ID": "fake-2"})
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.alternative_id, 1)
     conf.update({"HOST_ID": "fake-3"})
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.alternative_id, 2)
     conf.update({"HOST_ID": "fake-4"})
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.alternative_id, 0)
     conf.update({"HOST_ID": "fake-5"})
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.alternative_id, 1)
     conf.update({"HOST_ID": "fake-6"})
     host = Host.create('fake', 'another-group', conf)
     self.assertEqual(host.alternative_id, 0)
     hosts = Host.list(filters={'alternative_id': 0})
     self.assertEqual(len(hosts), 3)
     hosts = Host.list(filters={'alternative_id': 1})
     self.assertEqual(len(hosts), 2)
     hosts = Host.list(filters={'alternative_id': 2})
     self.assertEqual(len(hosts), 1)
开发者ID:digideskio,项目名称:hm,代码行数:26,代码来源:test_host.py

示例7: test_storage_use_database_conf

 def test_storage_use_database_conf(self):
     storage.MongoDBStorage({"MONGO_DATABASE": "alternative_host_manager"})._hosts_collection().remove()
     h1 = Host.create('fake', 'my-group1', {
         "HOST_ID": "fake-id-x", "MONGO_DATABASE": "alternative_host_manager"
     })
     stor = h1.storage()
     self.assertEqual(stor.mongo_database, "alternative_host_manager")
     self.assertEqual(stor.db.name, "alternative_host_manager")
     h1.destroy()
     db_host = Host.find('fake-id-x')
     self.assertIsNone(db_host)
开发者ID:digideskio,项目名称:hm,代码行数:11,代码来源:test_host.py

示例8: _restore_machine

 def _restore_machine(self, task, config, healthcheck_timeout):
     retry_failure_delay = int(self.config.get("RESTORE_MACHINE_FAILURE_DELAY", 5))
     restore_dry_mode = self.config.get("RESTORE_MACHINE_DRY_MODE", False)
     retry_failure_query = {"_id": {"$regex": "restore_.+"}, "last_attempt": {"$ne": None}}
     if task['instance'] not in self._failure_instances(retry_failure_query, retry_failure_delay):
         host = self.storage.find_host_id(task['host'])
         if not restore_dry_mode:
             Host.from_dict({"_id": host['_id'], "dns_name": task['host'],
                             "manager": host['manager']}, conf=config).restore()
             self.nginx_manager.wait_healthcheck(task['host'], timeout=healthcheck_timeout)
         self.storage.remove_task({"_id": task['_id']})
开发者ID:vierno,项目名称:rpaas,代码行数:11,代码来源:tasks.py

示例9: test_add_host

 def test_add_host(self):
     h1 = Host('x', 'x.me.com')
     h2 = Host('y', 'y.me.com')
     conf = {'LB_ID': 'explode'}
     lb = LoadBalancer.create('fake', 'my-lb', conf)
     lb.add_host(h1)
     lb.add_host(h2)
     self.assertItemsEqual(lb.hosts, [h1, h2])
     db_lb = LoadBalancer.find('my-lb', conf)
     self.assertEqual(db_lb.hosts[0].config, conf)
     self.assertEqual(db_lb.hosts[1].config, conf)
     self.assertItemsEqual([h.to_json() for h in db_lb.hosts], [h1.to_json(), h2.to_json()])
开发者ID:digideskio,项目名称:hm,代码行数:12,代码来源:test_load_balancer.py

示例10: test_list

 def test_list(self):
     h1 = Host.create('fake', 'my-group1', {"HOST_ID": "fake-id-1"})
     h2 = Host.create('fake', 'my-group1', {"HOST_ID": "fake-id-2"})
     h3 = Host.create('fake', 'my-group2', {"HOST_ID": "fake-id-3"})
     conf = {'MY_CONF': 1}
     hosts = Host.list(conf=conf)
     self.assertDictEqual(hosts[0].config, conf)
     self.assertDictEqual(hosts[1].config, conf)
     self.assertDictEqual(hosts[2].config, conf)
     self.assertItemsEqual([h.to_json() for h in hosts], [h1.to_json(), h2.to_json(), h3.to_json()])
     hosts = Host.list({'group': 'my-group1'})
     self.assertItemsEqual([h.to_json() for h in hosts], [h1.to_json(), h2.to_json()])
开发者ID:digideskio,项目名称:hm,代码行数:12,代码来源:test_host.py

示例11: test_create

 def test_create(self):
     conf = {"HOST_ID": "fake-id"}
     host = Host.create('fake', 'my-group', conf)
     self.assertEqual(host.id, "fake-id")
     self.assertEqual(host.dns_name, "fake-id.my-group.com")
     self.assertEqual(host.manager, "fake")
     self.assertEqual(host.group, "my-group")
     self.assertEqual(host.config, conf)
     self.assertEqual(host.alternative_id, 0)
     db_host = Host.find('fake-id', conf=conf)
     self.assertEqual(db_host.id, "fake-id")
     self.assertEqual(db_host.dns_name, "fake-id.my-group.com")
     self.assertEqual(db_host.manager, "fake")
     self.assertEqual(db_host.group, "my-group")
     self.assertEqual(db_host.config, conf)
     self.assertEqual(db_host.alternative_id, 0)
开发者ID:digideskio,项目名称:hm,代码行数:16,代码来源:test_host.py

示例12: _add_host

 def _add_host(self, lb):
     host = Host.create(self.host_manager_name, lb.name, self.config)
     try:
         lb.add_host(host)
         self.hc.add_url(lb.name, host.dns_name)
         binding_data = self.storage.find_binding(lb.name)
         if not binding_data:
             return
         self.nginx_manager.wait_healthcheck(host.dns_name, timeout=300)
         cert, key = binding_data.get("cert"), binding_data.get("key")
         if cert and key:
             self.nginx_manager.update_certificate(host.dns_name, cert, key)
         paths = binding_data.get("paths") or []
         for path_data in paths:
             self.nginx_manager.update_binding(
                 host.dns_name, path_data.get("path"), path_data.get("destination"), path_data.get("content")
             )
     except:
         exc_info = sys.exc_info()
         rollback = self._get_conf("RPAAS_ROLLBACK_ON_ERROR", "0") in ("True", "true", "1")
         if not rollback:
             raise
         try:
             host.destroy()
         except Exception as e:
             logging.error("Error in rollback trying to destroy host: {}".format(e))
         try:
             lb.remove_host(host)
         except Exception as e:
             logging.error("Error in rollback trying to remove from load balancer: {}".format(e))
         try:
             self.hc.remove_url(lb.name, host.dns_name)
         except Exception as e:
             logging.error("Error in rollback trying to remove healthcheck: {}".format(e))
         raise exc_info[0], exc_info[1], exc_info[2]
开发者ID:vfiebig,项目名称:rpaas,代码行数:35,代码来源:tasks.py

示例13: run

 def run(self, config, name):
     self.init_config(config)
     healthcheck_timeout = int(self._get_conf("RPAAS_HEALTHCHECK_TIMEOUT", 600))
     host = Host.create(self.host_manager_name, name, self.config)
     lb = None
     try:
         lb = LoadBalancer.create(self.lb_manager_name, name, self.config)
         lb.add_host(host)
         self.nginx_manager.wait_healthcheck(host.dns_name, timeout=healthcheck_timeout)
         self.hc.create(name)
         self.hc.add_url(name, host.dns_name)
         self.storage.remove_task(name)
     except:
         exc_info = sys.exc_info()
         rollback = self._get_conf("RPAAS_ROLLBACK_ON_ERROR", "0") in ("True", "true", "1")
         if not rollback:
             raise
         try:
             if lb is not None:
                 lb.destroy()
         except Exception as e:
             logging.error("Error in rollback trying to destroy load balancer: {}".format(e))
         try:
             host.destroy()
         except Exception as e:
             logging.error("Error in rollback trying to destroy host: {}".format(e))
         try:
             self.hc.destroy(name)
         except Exception as e:
             logging.error("Error in rollback trying to remove healthcheck: {}".format(e))
         raise exc_info[0], exc_info[1], exc_info[2]
开发者ID:carriercomm,项目名称:rpaas,代码行数:31,代码来源:tasks.py

示例14: _restore_machine

 def _restore_machine(self, task, config, healthcheck_timeout):
     retry_failure_delay = int(self.config.get("RESTORE_MACHINE_FAILURE_DELAY", 5))
     restore_dry_mode = self.config.get("RESTORE_MACHINE_DRY_MODE", False) in ("True", "true", "1")
     retry_failure_query = {"_id": {"$regex": "restore_.+"}, "last_attempt": {"$ne": None}}
     if task['instance'] not in self._failure_instances(retry_failure_query, retry_failure_delay):
         host = self.storage.find_host_id(task['host'])
         if not restore_dry_mode:
             healing_id = self.storage.store_healing(task['instance'], task['host'])
             try:
                 Host.from_dict({"_id": host['_id'], "dns_name": task['host'],
                                 "manager": host['manager']}, conf=config).restore()
                 Host.from_dict({"_id": host['_id'], "dns_name": task['host'],
                                 "manager": host['manager']}, conf=config).start()
                 self.nginx_manager.wait_healthcheck(task['host'], timeout=healthcheck_timeout)
                 self.storage.update_healing(healing_id, "success")
             except Exception as e:
                 self.storage.update_healing(healing_id, str(e.message))
                 raise e
         self.storage.remove_task({"_id": task['_id']})
开发者ID:tsuru,项目名称:rpaas,代码行数:19,代码来源:tasks.py

示例15: from_dict

 def from_dict(cls, dict, conf=None):
     if dict is None:
         return None
     dict['name'] = dict['_id']
     del dict['_id']
     dict['conf'] = conf
     hosts_data = dict.get('hosts', None)
     if hosts_data:
         dict['hosts'] = [Host.from_dict(h, conf=conf) for h in hosts_data]
     return cls(**dict)
开发者ID:carriercomm,项目名称:hm,代码行数:10,代码来源:load_balancer.py


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