本文整理汇总了Python中trove.guestagent.models.AgentHeartBeat类的典型用法代码示例。如果您正苦于以下问题:Python AgentHeartBeat类的具体用法?Python AgentHeartBeat怎么用?Python AgentHeartBeat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AgentHeartBeat类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_find_by_instance_id
def test_find_by_instance_id(self):
"""
Test to retrieve a guest agents by it's id
"""
# create a unique record
instance_id = str(uuid.uuid4())
heartbeat = AgentHeartBeat.create(
instance_id=instance_id, guest_agent_version="1.2.3")
self.assertIsNotNone(heartbeat)
self.assertIsNotNone(heartbeat.id)
self.assertIsNotNone(heartbeat.instance_id)
self.assertEqual(instance_id, heartbeat.instance_id)
self.assertIsNotNone(heartbeat.updated_at)
self.assertIsNotNone(heartbeat.guest_agent_version)
self.assertEqual("1.2.3", heartbeat.guest_agent_version)
# retrieve the record
heartbeat_found = AgentHeartBeat.find_by_instance_id(
instance_id=instance_id)
self.assertIsNotNone(heartbeat_found)
self.assertEqual(heartbeat.id, heartbeat_found.id)
self.assertEqual(heartbeat.instance_id, heartbeat_found.instance_id)
self.assertEqual(heartbeat.updated_at, heartbeat_found.updated_at)
self.assertEqual(heartbeat.guest_agent_version,
heartbeat_found.guest_agent_version)
开发者ID:magictour,项目名称:trove,代码行数:25,代码来源:test_agent_heartbeats_models.py
示例2: update_db
def update_db():
status = InstanceServiceStatus.find_by(instance_id=self.id)
if instance_name.endswith('GUEST_ERROR'):
status.status = rd_instance.ServiceStatuses.FAILED
else:
status.status = rd_instance.ServiceStatuses.RUNNING
status.save()
AgentHeartBeat.create(instance_id=self.id)
开发者ID:paramtech,项目名称:tesora-trove,代码行数:8,代码来源:guestagent.py
示例3: test_save_invalid_model_error
def test_save_invalid_model_error(self):
"""
Test the save failure of an agent heartbeat record
"""
instance_id = str(uuid.uuid4())
heartbeat = AgentHeartBeat.create(
instance_id=instance_id)
with patch.object(AgentHeartBeat, 'is_valid', return_value=False):
self.assertRaises(exception.InvalidModelError, heartbeat.save)
开发者ID:Hopebaytech,项目名称:trove,代码行数:9,代码来源:test_agent_heartbeats_models.py
示例4: test_find_all_by_version
def test_find_all_by_version(self):
"""
Test to retrieve all guest agents with a particular version
"""
# create some unique records with the same version
version = str(uuid.uuid4())
for x in xrange(5):
instance_id = str(uuid.uuid4())
heartbeat = AgentHeartBeat.create(
instance_id=instance_id,
guest_agent_version=version,
deleted=0)
self.assertIsNotNone(heartbeat)
# get all guests by version
heartbeats = AgentHeartBeat.find_all_by_version(version)
self.assertIsNotNone(heartbeats)
self.assertEqual(5, heartbeats.count())
开发者ID:magictour,项目名称:trove,代码行数:19,代码来源:test_agent_heartbeats_models.py
示例5: test_update_heartbeat
def test_update_heartbeat(self):
"""
Test to show the upgrade scenario that will be used by conductor
"""
# create a unique record
instance_id = str(uuid.uuid4())
heartbeat = AgentHeartBeat.create(
instance_id=instance_id, guest_agent_version="1.2.3")
self.assertIsNotNone(heartbeat)
self.assertIsNotNone(heartbeat.id)
self.assertIsNotNone(heartbeat.instance_id)
self.assertEqual(instance_id, heartbeat.instance_id)
self.assertIsNotNone(heartbeat.updated_at)
self.assertIsNotNone(heartbeat.guest_agent_version)
self.assertEqual("1.2.3", heartbeat.guest_agent_version)
# retrieve the record
heartbeat_found = AgentHeartBeat.find_by_instance_id(
instance_id=instance_id)
self.assertIsNotNone(heartbeat_found)
self.assertEqual(heartbeat.id, heartbeat_found.id)
self.assertEqual(heartbeat.instance_id, heartbeat_found.instance_id)
self.assertEqual(heartbeat.updated_at, heartbeat_found.updated_at)
self.assertEqual(heartbeat.guest_agent_version,
heartbeat_found.guest_agent_version)
# update
AgentHeartBeat().update(id=heartbeat_found.id,
instance_id=instance_id,
guest_agent_version="1.2.3")
# retrieve the record
updated_heartbeat = AgentHeartBeat.find_by_instance_id(
instance_id=instance_id)
self.assertIsNotNone(updated_heartbeat)
self.assertEqual(heartbeat.id, updated_heartbeat.id)
self.assertEqual(heartbeat.instance_id, updated_heartbeat.instance_id)
self.assertEqual(heartbeat.guest_agent_version,
updated_heartbeat.guest_agent_version)
self.assertEqual(heartbeat.updated_at, updated_heartbeat.updated_at)
开发者ID:magictour,项目名称:trove,代码行数:41,代码来源:test_agent_heartbeats_models.py
示例6: test_find_all_by_version_none
def test_find_all_by_version_none(self):
"""
Test to retrieve all guest agents with a None version
"""
heartbeats = None
exception_raised = False
try:
heartbeats = AgentHeartBeat.find_all_by_version(None)
except exception.ModelNotFoundError:
exception_raised = True
self.assertIsNone(heartbeats)
self.assertTrue(exception_raised)
开发者ID:magictour,项目名称:trove,代码行数:13,代码来源:test_agent_heartbeats_models.py
示例7: test_find_by_instance_id_none
def test_find_by_instance_id_none(self):
"""
Test to retrieve a guest agents when id is None
"""
heartbeat_found = None
exception_raised = False
try:
heartbeat_found = AgentHeartBeat.find_by_instance_id(
instance_id=None)
except exception.ModelNotFoundError:
exception_raised = True
self.assertIsNone(heartbeat_found)
self.assertTrue(exception_raised)
开发者ID:magictour,项目名称:trove,代码行数:14,代码来源:test_agent_heartbeats_models.py
示例8: test_find_all_by_version_not_found
def test_find_all_by_version_not_found(self):
"""
Test to retrieve all guest agents with a non-existing version
"""
version = str(uuid.uuid4())
exception_raised = False
heartbeats = None
try:
heartbeats = AgentHeartBeat.find_all_by_version(version)
except exception.ModelNotFoundError:
exception_raised = True
self.assertIsNone(heartbeats)
self.assertTrue(exception_raised)
开发者ID:magictour,项目名称:trove,代码行数:14,代码来源:test_agent_heartbeats_models.py
示例9: test_create
def test_create(self):
"""
Test the creation of a new agent heartbeat record
"""
instance_id = str(uuid.uuid4())
heartbeat = AgentHeartBeat.create(
instance_id=instance_id)
self.assertIsNotNone(heartbeat)
self.assertIsNotNone(heartbeat.id)
self.assertIsNotNone(heartbeat.instance_id)
self.assertEqual(instance_id,
heartbeat.instance_id)
self.assertIsNotNone(heartbeat.updated_at)
self.assertIsNone(heartbeat.guest_agent_version)
开发者ID:magictour,项目名称:trove,代码行数:15,代码来源:test_agent_heartbeats_models.py
示例10: test_find_by_instance_id_not_found
def test_find_by_instance_id_not_found(self, mock_logging):
"""
Test to retrieve a guest agents when id is not found
"""
instance_id = str(uuid.uuid4())
heartbeat_found = None
exception_raised = False
try:
heartbeat_found = AgentHeartBeat.find_by_instance_id(
instance_id=instance_id)
except exception.ModelNotFoundError:
exception_raised = True
self.assertIsNone(heartbeat_found)
self.assertTrue(exception_raised)
开发者ID:magictour,项目名称:trove,代码行数:15,代码来源:test_agent_heartbeats_models.py
注:本文中的trove.guestagent.models.AgentHeartBeat类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论