本文整理汇总了Python中instance.tests.models.factories.instance.OpenEdXInstanceFactory.log方法的典型用法代码示例。如果您正苦于以下问题:Python OpenEdXInstanceFactory.log方法的具体用法?Python OpenEdXInstanceFactory.log怎么用?Python OpenEdXInstanceFactory.log使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类instance.tests.models.factories.instance.OpenEdXInstanceFactory
的用法示例。
在下文中一共展示了OpenEdXInstanceFactory.log方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_log_text
# 需要导入模块: from instance.tests.models.factories.instance import OpenEdXInstanceFactory [as 别名]
# 或者: from instance.tests.models.factories.instance.OpenEdXInstanceFactory import log [as 别名]
def test_log_text(self):
"""
Check `log_text` output for combination of instance & server logs
"""
instance = OpenEdXInstanceFactory()
server = OpenStackServerFactory(instance=instance)
with freeze_time("2015-08-05 18:07:00"):
instance.log('info', 'Line #1, on instance')
with freeze_time("2015-08-05 18:07:01"):
server.log('info', 'Line #2, on server')
with freeze_time("2015-08-05 18:07:02"):
instance.log('debug', 'Line #3, on instance (debug, not published by default)')
with freeze_time("2015-08-05 18:07:03"):
instance.log('info', 'Line #4, on instance')
with freeze_time("2015-08-05 18:07:04"):
instance.log('warn', 'Line #5, on instance (warn)')
with freeze_time("2015-08-05 18:07:05"):
server.log('info', 'Line #6, on server')
with freeze_time("2015-08-05 18:07:06"):
server.log('exception', 'Line #7, on server (exception)')
self.assertEqual(instance.log_text, (
"2015-08-05 18:07:00 [info] Line #1, on instance\n"
"2015-08-05 18:07:01 [info] Line #2, on server\n"
"2015-08-05 18:07:03 [info] Line #4, on instance\n"
"2015-08-05 18:07:04 [warn] Line #5, on instance (warn)\n"
"2015-08-05 18:07:05 [info] Line #6, on server\n"
"2015-08-05 18:07:06 [exception] Line #7, on server (exception)\n"))