本文整理汇总了Python中MilkCheck.Engine.BaseEntity.BaseEntity._lookup_variable方法的典型用法代码示例。如果您正苦于以下问题:Python BaseEntity._lookup_variable方法的具体用法?Python BaseEntity._lookup_variable怎么用?Python BaseEntity._lookup_variable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MilkCheck.Engine.BaseEntity.BaseEntity
的用法示例。
在下文中一共展示了BaseEntity._lookup_variable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_lookup_variables2
# 需要导入模块: from MilkCheck.Engine.BaseEntity import BaseEntity [as 别名]
# 或者: from MilkCheck.Engine.BaseEntity.BaseEntity import _lookup_variable [as 别名]
def test_lookup_variables2(self):
'''Test variables resolution through multiple entities'''
service = BaseEntity('test_service')
service.add_var('VAR', 'test')
group = BaseEntity('group_service')
group.add_var('GVAR', 'group')
service.parent = group
self.assertEqual(service._lookup_variable('VAR'), 'test')
self.assertEqual(service._lookup_variable('GVAR'), 'group')
示例2: test_lookup_variables4
# 需要导入模块: from MilkCheck.Engine.BaseEntity import BaseEntity [as 别名]
# 或者: from MilkCheck.Engine.BaseEntity.BaseEntity import _lookup_variable [as 别名]
def test_lookup_variables4(self):
'''Test variables resolution with a var referencing a property'''
service = BaseEntity('test_service')
service.add_var('VAR', 'test')
group = BaseEntity('group_service')
group.add_var('GVAR', 'group')
service.parent = group
self.assertEqual(service._lookup_variable('GVAR'), 'group')
self.assertEqual(service._lookup_variable('TARGET'), None)
self.assertEqual(service._lookup_variable('NAME'), 'test_service')
示例3: test_remove_variable
# 需要导入模块: from MilkCheck.Engine.BaseEntity import BaseEntity [as 别名]
# 或者: from MilkCheck.Engine.BaseEntity.BaseEntity import _lookup_variable [as 别名]
def test_remove_variable(self):
'''Remove a variable, defined or not, is fine.'''
svc = BaseEntity('test_var')
svc.add_var('var', 'foo')
self.assertEqual(svc._lookup_variable('var'), 'foo')
# Remove it
svc.remove_var('var')
self.assertRaises(UndefinedVariableError, svc._lookup_variable, 'var')
# Remove it again does not raise an exception.
svc.remove_var('var')
self.assertRaises(UndefinedVariableError, svc._lookup_variable, 'var')
示例4: test_lookup_variables1
# 需要导入模块: from MilkCheck.Engine.BaseEntity import BaseEntity [as 别名]
# 或者: from MilkCheck.Engine.BaseEntity.BaseEntity import _lookup_variable [as 别名]
def test_lookup_variables1(self):
'''Test variables resolution through a single entity'''
service = BaseEntity('test_service')
service.add_var('VAR', 'test')
self.assertEqual(service._lookup_variable('VAR'), 'test')
示例5: test_lookup_global_variables
# 需要导入模块: from MilkCheck.Engine.BaseEntity import BaseEntity [as 别名]
# 或者: from MilkCheck.Engine.BaseEntity.BaseEntity import _lookup_variable [as 别名]
def test_lookup_global_variables(self):
'''Test global variables resolution'''
service = BaseEntity('test_service')
service_manager_self().add_var('MGRVAR', 'test')
self.assertEqual(service._lookup_variable('MGRVAR'), 'test')