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


Python LogCapture.addOptions方法代码示例

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


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

示例1: test_clears_all_existing_log_handlers

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_clears_all_existing_log_handlers(self):
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser, {})
        options, args = parser.parse_args(['--logging-clear-handlers'])
        c.configure(options, Config())
        eq_(c.clear, True)

        def mktest():
            class TC(unittest.TestCase):
                def runTest(self):
                    pass
            test = TC()
            return test

        logging.getLogger().addHandler(StreamHandler(sys.stdout))
        log = logging.getLogger("dummy")
        log.addHandler(StreamHandler(sys.stdout))

        c.start()
        c.beforeTest(mktest())
        c.end()

        if py27:
            expect = ["<class 'nose.plugins.logcapture.MyMemoryHandler'>"]
        else:
            expect = ['nose.plugins.logcapture.MyMemoryHandler']
        eq_([str(c.__class__) for c in logging.getLogger().handlers],
            expect)
        eq_([str(c.__class__) for c in logging.getLogger("dummy").handlers],
            [])
开发者ID:DerrickRice,项目名称:nose,代码行数:33,代码来源:test_logcapture_plugin.py

示例2: test_unicode_messages_handled

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_unicode_messages_handled(self):
        msg = u'Ivan Krsti\u0107'
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser, {})
        options, args = parser.parse_args([])
        c.configure(options, Config())
        c.start()
        log = logging.getLogger("foobar.something")
        log.debug(msg)
        log.debug("ordinary string log")
        c.end()

        class Dummy:
            pass
        test = Dummy() 
        try:
            raise Exception(msg)
        except:
            err = sys.exc_info()
        (ec, ev, tb) = c.formatError(test, err)
        print ev
        if UNICODE_STRINGS:
            assert msg in ev
        else:
            assert msg.encode('utf-8') in ev
开发者ID:DerrickRice,项目名称:nose,代码行数:28,代码来源:test_logcapture_plugin.py

示例3: test_logging_datefmt_option

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_logging_datefmt_option(self):
     env = {'NOSE_LOGDATEFMT': '%H:%M:%S'}
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, env)
     options, args = parser.parse_args(['logging_datefmt'])
     c.configure(options, Config())
     eq_('%H:%M:%S', c.logdatefmt)
开发者ID:DerrickRice,项目名称:nose,代码行数:10,代码来源:test_logcapture_plugin.py

示例4: test_logging_format_option

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_logging_format_option(self):
     env = {'NOSE_LOGFORMAT': '++%(message)s++'}
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, env)
     options, args = parser.parse_args(['logging_format'])
     c.configure(options, Config())
     eq_('++%(message)s++', c.logformat)
开发者ID:DerrickRice,项目名称:nose,代码行数:10,代码来源:test_logcapture_plugin.py

示例5: test_default_options

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_default_options(self):
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser)

        options, args = parser.parse_args(['default_options'])
        c.configure(options, Config())
        assert c.enabled
        eq_(LogCapture.logformat, c.logformat)
        eq_(LogCapture.clear, c.clear)
        eq_(LogCapture.filters, c.filters)
开发者ID:DerrickRice,项目名称:nose,代码行数:13,代码来源:test_logcapture_plugin.py

示例6: test_captures_logging

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_captures_logging(self):
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, {})
     options, args = parser.parse_args([])
     c.configure(options, Config())
     c.start()
     log = logging.getLogger("foobar.something")
     log.debug("Hello")
     c.end()
     eq_(1, len(c.handler.buffer))
     eq_("foobar.something: DEBUG: Hello", c.handler.buffer[0])
开发者ID:DerrickRice,项目名称:nose,代码行数:14,代码来源:test_logcapture_plugin.py

示例7: test_loglevel

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_loglevel(self):
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, {})
     options, args = parser.parse_args(['--logging-level', 'INFO'])
     c.configure(options, Config())
     c.start()
     log = logging.getLogger("loglevel")
     log.debug("Hello")
     log.info("Goodbye")
     c.end()
     records = c.formatLogRecords()
     eq_(1, len(c.handler.buffer))
     eq_("loglevel: INFO: Goodbye", c.handler.buffer[0])
     eq_("loglevel: INFO: Goodbye", records[0])
开发者ID:DerrickRice,项目名称:nose,代码行数:17,代码来源:test_logcapture_plugin.py

示例8: test_logging

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
def test_logging():
    c = LogCapture()
    parser = OptionParser()
    c.addOptions(parser, {})
    logger = klogger.get_logger("foo")
    logger = klogger.get_module_logger(__name__)
    c.start()

    logger.info("Goodbye")

    c.end()
    records = c.formatLogRecords()
    eq_("Goodbye", c.handler.buffer[0].msg)
    eq_("test.helpers.klogger_test", c.handler.buffer[0].name)
    eq_("test.helpers.klogger_test: INFO: Goodbye", records[0])
开发者ID:ashpool,项目名称:ketchlip,代码行数:17,代码来源:klogger_test.py

示例9: test_consistent_mutables

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_consistent_mutables(self):
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser)
     c.start()
     log = logging.getLogger("mutable")
     mutable = { 'value': 1 }
     log.debug("%r", mutable)
     repr_1 = repr(mutable)
     mutable['value'] = 2
     log.debug("%r", mutable)
     repr_2 = repr(mutable)
     c.end()
     records = c.formatLogRecords()
     eq_("mutable: DEBUG: %s" % (repr_1,), records[0])
     eq_("mutable: DEBUG: %s" % (repr_2,), records[1])
开发者ID:DerrickRice,项目名称:nose,代码行数:18,代码来源:test_logcapture_plugin.py

示例10: test_disable_option

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_disable_option(self):
        parser = OptionParser()
        c = LogCapture()
        c.addOptions(parser)
        options, args = parser.parse_args(['test_can_be_disabled_long',
                                           '--nologcapture'])
        c.configure(options, Config())
        assert not c.enabled

        env = {'NOSE_NOLOGCAPTURE': 1}
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser, env)
        options, args = parser.parse_args(['test_can_be_disabled'])
        c.configure(options, Config())
        assert not c.enabled
开发者ID:DerrickRice,项目名称:nose,代码行数:18,代码来源:test_logcapture_plugin.py

示例11: test_logging_filter_exclude_and_include

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_logging_filter_exclude_and_include(self):
     env = {'NOSE_LOGFILTER': 'foo,-foo.bar'}
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, env)
     options, args = parser.parse_args(['foo'])
     print options, args
     c.configure(options, Config())
     c.start()
     for name in ['foo.yes', 'foo.bar', 'foo.bar.no', 'blah']:
         log = logging.getLogger(name)
         log.info("Hello %s" % name)
     c.end()
     records = c.formatLogRecords()
     eq_(1, len(records))
     assert records[0].startswith('foo.yes:'), records[0]
开发者ID:DerrickRice,项目名称:nose,代码行数:18,代码来源:test_logcapture_plugin.py

示例12: test_logging_filter_exclude

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
 def test_logging_filter_exclude(self):
     env = {'NOSE_LOGFILTER': '-foo,-bar'}
     c = LogCapture()
     parser = OptionParser()
     c.addOptions(parser, env)
     options, args = parser.parse_args(['foo'])
     print options, args
     c.configure(options, Config())
     c.start()
     for name in ['foobar.something', 'foo', 'foo.x', 'abara', 'bar.quux']:
         log = logging.getLogger(name)
         log.info("Hello %s" % name)
     c.end()
     records = c.formatLogRecords()
     eq_(2, len(records))
     assert records[0].startswith('foobar.something:'), records[0]
     assert records[1].startswith('abara:'), records[1]
开发者ID:DerrickRice,项目名称:nose,代码行数:19,代码来源:test_logcapture_plugin.py

示例13: test_non_propagating_loggers_handled

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_non_propagating_loggers_handled(self):
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser, {})
        options, args = parser.parse_args([])
        c.configure(options, Config())

        logger = logging.getLogger('foo.yes')
        logger.propagate = False

        c.start()
        logger.debug("test message")
        c.end()

        records = c.formatLogRecords()
        eq_(1, len(records))
        assert records[0].startswith('foo.yes:'), records[0]
开发者ID:Averroes,项目名称:nose,代码行数:19,代码来源:test_logcapture_plugin.py

示例14: test_capture_data

# 需要导入模块: from nose.plugins.logcapture import LogCapture [as 别名]
# 或者: from nose.plugins.logcapture.LogCapture import addOptions [as 别名]
    def test_capture_data(self):
        c = LogCapture()
        parser = OptionParser()
        c.addOptions(parser, {})
        options, args = parser.parse_args([])
        c.configure(options, Config())
        c.start()

        def mktest():
            class TC(unittest.TestCase):
                def runTest(self):
                    pass
            test = TC()
            return test
        test = mktest()

        c.beforeTest(test)

        assert hasattr(test, 'logCaptureData')
        eq_(test.logCaptureData.isFinished(), False)
        eq_(test.logCaptureData.getText(), "")

        log = logging.getLogger("foobar.something")
        log.debug("ordinary string log")

        eq_(test.logCaptureData.getText(),
                "foobar.something: DEBUG: ordinary string log")
        eq_(len(test.logCaptureData.getRecords()), 1)
        eq_(test.logCaptureData.isFinished(), False)

        c.afterTest(test)
        
        eq_(test.logCaptureData.isFinished(), True)

        log.debug("NOT PRESENT")

        eq_(test.logCaptureData.getText(),
                "foobar.something: DEBUG: ordinary string log")
        eq_(len(test.logCaptureData.getRecords()), 1)
        eq_(test.logCaptureData._handler, None) # eh. whitebox.

        c.end()
开发者ID:DerrickRice,项目名称:nose,代码行数:44,代码来源:test_logcapture_plugin.py


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