本文整理汇总了Python中salt.state.HighState.get_tops方法的典型用法代码示例。如果您正苦于以下问题:Python HighState.get_tops方法的具体用法?Python HighState.get_tops怎么用?Python HighState.get_tops使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类salt.state.HighState
的用法示例。
在下文中一共展示了HighState.get_tops方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_ordered_merge
# 需要导入模块: from salt.state import HighState [as 别名]
# 或者: from salt.state.HighState import get_tops [as 别名]
def test_ordered_merge(self):
'''
Test to see if the merger respects environment
ordering
'''
config = self._make_default_config()
config['top_file_merging_strategy'] = 'merge'
config['env_order'] = ['b', 'a', 'c']
with patch('salt.fileclient.FSClient.envs', MagicMock(return_value=['a', 'b', 'c'])):
highstate = HighState(config)
ret = highstate.get_tops()
self.assertEqual(ret, OrderedDict([('a', [{}]), ('c', [{}]), ('b', [{}])]))
示例2: test_merge_strategy_same
# 需要导入模块: from salt.state import HighState [as 别名]
# 或者: from salt.state.HighState import get_tops [as 别名]
def test_merge_strategy_same(self):
'''
Test to see if the top file that corresponds
to the requested env is the one that is used
by the state system
'''
config = self._make_default_config()
config['top_file_merging_strategy'] = 'same'
config['environment'] = 'b'
highstate = HighState(config)
ret = highstate.get_tops()
self.assertEqual(ret, OrderedDict([('b', [{}])]))