本文整理汇总了Python中ikalog.utils.IkaUtils.copy_context方法的典型用法代码示例。如果您正苦于以下问题:Python IkaUtils.copy_context方法的具体用法?Python IkaUtils.copy_context怎么用?Python IkaUtils.copy_context使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ikalog.utils.IkaUtils
的用法示例。
在下文中一共展示了IkaUtils.copy_context方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_copy_context
# 需要导入模块: from ikalog.utils import IkaUtils [as 别名]
# 或者: from ikalog.utils.IkaUtils import copy_context [as 别名]
def test_copy_context(self):
mock_context = {
'engine': {
'engine': self,
'source_file': 'video.mp4',
'service': {'call_plugins_later': self.test_copy_context},
},
'game': {
'map': 'kinmedai',
'rule': 'area',
}}
copied_context = IkaUtils.copy_context(mock_context)
copied_context['engine']['source_file'] = 'movie.ts'
copied_context['game']['map'] = 'hokke'
copied_context['game']['rule'] = 'nawabari'
self.assertEqual('video.mp4', mock_context['engine']['source_file'])
self.assertEqual('movie.ts', copied_context['engine']['source_file'])
self.assertIsNotNone(mock_context['engine']['engine'])
self.assertIsNotNone(
mock_context['engine']['service'].get('call_plugins_later'))
self.assertEqual('kinmedai', mock_context['game']['map'])
self.assertEqual('area', mock_context['game']['rule'])
self.assertIsNone(copied_context['engine']['engine'])
self.assertIsNone(
copied_context['engine']['service'].get('call_plugins_later'))
self.assertEqual('hokke', copied_context['game']['map'])
self.assertEqual('nawabari', copied_context['game']['rule'])