当前位置: 首页>>代码示例>>Python>>正文


Python StringIO.fileno方法代码示例

本文整理汇总了Python中supervisor.compat.StringIO.fileno方法的典型用法代码示例。如果您正苦于以下问题:Python StringIO.fileno方法的具体用法?Python StringIO.fileno怎么用?Python StringIO.fileno使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在supervisor.compat.StringIO的用法示例。


在下文中一共展示了StringIO.fileno方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_main_noprofile

# 需要导入模块: from supervisor.compat import StringIO [as 别名]
# 或者: from supervisor.compat.StringIO import fileno [as 别名]
 def test_main_noprofile(self):
     from supervisor.supervisord import main
     conf = os.path.join(
         os.path.abspath(os.path.dirname(__file__)), 'fixtures',
         'donothing.conf')
     new_stdout = StringIO()
     new_stdout.fileno = lambda: 1
     old_stdout = sys.stdout
     tempdir = tempfile.mkdtemp()
     try:
         log = os.path.join(tempdir, 'log')
         pid = os.path.join(tempdir, 'pid')
         sys.stdout = new_stdout
         main(args=['-c', conf, '-l', log, '-j', pid, '-n'],
              test=True)
     finally:
         sys.stdout = old_stdout
         shutil.rmtree(tempdir)
     output = new_stdout.getvalue()
     self.assertTrue(output.find('supervisord started') != 1, output)
开发者ID:alexsilva,项目名称:supervisor,代码行数:22,代码来源:test_supervisord.py

示例2: test_main_profile

# 需要导入模块: from supervisor.compat import StringIO [as 别名]
# 或者: from supervisor.compat.StringIO import fileno [as 别名]
 def test_main_profile(self):
     from supervisor.supervisord import main
     conf = os.path.join(
         os.path.abspath(os.path.dirname(__file__)), 'fixtures',
         'donothing.conf')
     new_stdout = StringIO()
     new_stdout.fileno = lambda: 1
     old_stdout = sys.stdout
     try:
         tempdir = tempfile.mkdtemp()
         log = os.path.join(tempdir, 'log')
         pid = os.path.join(tempdir, 'pid')
         sys.stdout = new_stdout
         main(args=['-c', conf, '-l', log, '-j', pid, '-n',
                    '--profile_options=cumulative,calls'], test=True)
     finally:
         sys.stdout = old_stdout
         shutil.rmtree(tempdir)
     output = new_stdout.getvalue()
     self.assertTrue('cumulative time, call count' in output, output)
开发者ID:Supervisor,项目名称:supervisor,代码行数:22,代码来源:test_supervisord.py


注:本文中的supervisor.compat.StringIO.fileno方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。