• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python test_support.captured_stderr函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中test.test_support.captured_stderr函数的典型用法代码示例。如果您正苦于以下问题:Python captured_stderr函数的具体用法?Python captured_stderr怎么用?Python captured_stderr使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: test_broken_getattr_handling

    def test_broken_getattr_handling(self):
        """
        Test subiterator with a broken getattr implementation
        """
        class Broken:
            def __iter__(self):
                return self
            def next(self):
                return 1
            def __getattr__(self, attr):
                1//0

        def g():
            yield from Broken()

        with self.assertRaises(ZeroDivisionError):
            gi = g()
            self.assertEqual(next(gi), 1)
            gi.send(1)

        with self.assertRaises(ZeroDivisionError):
            gi = g()
            self.assertEqual(next(gi), 1)
            gi.throw(AttributeError)

        with captured_stderr() as output:
            gi = g()
            self.assertEqual(next(gi), 1)
            gi.close()
开发者ID:naftaliharris,项目名称:python2.8,代码行数:29,代码来源:test_pep380.py


示例2: test_cannot_insert_duplicate_row

 def test_cannot_insert_duplicate_row(self):
     """Inserting a duplicate rows shouldn't work."""
     self.model_class.objects.create(f1='a', f2='b')
     self.ut.field_defs = (self.f1, self.f2)
     with captured_stderr():
         with self.assertRaises(IntegrityError):
             self.model_class.objects.create(f1='a', f2='b')
开发者ID:brad,项目名称:django-mutant,代码行数:7,代码来源:test_model_defs.py


示例3: test_unraisable

    def test_unraisable(self):
        # Issue #22836: PyErr_WriteUnraisable() should give sensible reports
        class BrokenDel:
            def __del__(self):
                exc = ValueError("del is broken")
                # In Python 3, the following line would be in the report:
                raise exc

        class BrokenRepr(BrokenDel):
            def __repr__(self):
                raise AttributeError("repr() is broken")

        class BrokenExceptionDel:
            def __del__(self):
                exc = BrokenStrException()
                # In Python 3, the following line would be in the report:
                raise exc

        for test_class in (BrokenDel, BrokenRepr, BrokenExceptionDel):
            obj = test_class()
            with captured_stderr() as stderr:
                del obj
            report = stderr.getvalue()
            self.assertRegexpMatches(report, "Exception.* ignored")
            if test_class is BrokenRepr:
                self.assertIn("<object repr() failed>", report)
            else:
                self.assertIn("__del__", report)
            if test_class is BrokenExceptionDel:
                self.assertIn("BrokenStrException", report)
                self.assertIn("<exception repr() failed>", report)
            else:
                self.assertIn("ValueError", report)
                self.assertIn("del is broken", report)
            self.assertTrue(report.endswith("\n"))
开发者ID:naftaliharris,项目名称:python2.8,代码行数:35,代码来源:test_exceptions.py


示例4: test_cannot_create_unique

 def test_cannot_create_unique(self):
     """Creating a unique key on a table with duplicate rows
     shouldn't work"""
     self.model_class.objects.create(f1='a', f2='b')
     self.model_class.objects.create(f1='a', f2='b')
     with captured_stderr():
         with self.assertRaises(IntegrityError):
             self.ut.field_defs = (self.f1, self.f2)
开发者ID:brad,项目名称:django-mutant,代码行数:8,代码来源:test_model_defs.py


示例5: test_cannot_remove_unique

 def test_cannot_remove_unique(self):
     """Removing a unique constraint that cause duplicate rows shouldn't
     work."""
     self.ut.field_defs = (self.f1, self.f2)
     self.model_class.objects.create(f1='a', f2='b')
     self.model_class.objects.create(f1='a', f2='c')
     with captured_stderr():
         with self.assertRaises(IntegrityError):
             self.ut.field_defs.remove(self.f2)
开发者ID:brad,项目名称:django-mutant,代码行数:9,代码来源:test_model_defs.py


示例6: test_unicode_args

 def test_unicode_args(self):
     e = RuntimeError(u"Drink \u2615")  # coffee emoji
     # Can take the repr of any object
     self.assertEqual(repr(e), "RuntimeError(u'Drink \u2615',)")
     # Cannot of course turn a non-ascii Unicode object into a str, even if it's an exception object
     with self.assertRaises(UnicodeEncodeError) as cm:
         str(e)
     self.assertEqual(
         str(cm.exception), "'ascii' codec can't encode character u'\u2615' in position 6: ordinal not in range(128)"
     )
     # But the exception hook, via Py#displayException, does not fail when attempting to __str__ the exception args
     with test_support.captured_stderr() as s:
         sys.excepthook(RuntimeError, u"Drink \u2615", None)
     self.assertEqual(s.getvalue(), "RuntimeError\n")
     # It is fine with ascii values, of course
     with test_support.captured_stderr() as s:
         sys.excepthook(RuntimeError, u"Drink java", None)
     self.assertEqual(s.getvalue(), "RuntimeError: Drink java\n")
开发者ID:jythontools,项目名称:jython,代码行数:18,代码来源:test_exceptions_jy.py


示例7: test_apropos_with_bad_package

 def test_apropos_with_bad_package(self):
     # Issue 7425 - pydoc -k failed when bad package on path
     pkgdir = os.path.join(TESTFN, "syntaxerr")
     os.mkdir(pkgdir)
     badsyntax = os.path.join(pkgdir, "__init__") + os.extsep + "py"
     with open(badsyntax, 'w') as f:
         f.write("invalid python syntax = $1\n")
     with self.restrict_walk_packages(path=[TESTFN]):
         with captured_stdout() as out:
             with captured_stderr() as err:
                 pydoc.apropos('xyzzy')
         # No result, no error
         self.assertEqual(out.getvalue(), '')
         self.assertEqual(err.getvalue(), '')
         # The package name is still matched
         with captured_stdout() as out:
             with captured_stderr() as err:
                 pydoc.apropos('syntaxerr')
         self.assertEqual(out.getvalue().strip(), 'syntaxerr')
         self.assertEqual(err.getvalue(), '')
开发者ID:EitanEliahu,项目名称:freeablo-windows-build,代码行数:20,代码来源:test_pydoc.py


示例8: _test_suggest

    def _test_suggest(self, code, exc_typ, globals=None):
        if globals is None: globals = {}

        sporktools._World.interp.create_link = mock_idle.Func("LINK")

        with self.assertRaises(exc_typ) as cm:
            exec code in globals
        tb = sys.exc_traceback
        import traceback
        filename = traceback.extract_tb(tb)[-1][0]
        with captured_stderr() as err:
            Suggest.exception_suggest(exc_typ, cm.exception, tb, code, filename)
        return err.getvalue().strip()
开发者ID:alonti,项目名称:idlespork,代码行数:13,代码来源:test_suggest.py


示例9: test_apropos_with_unreadable_dir

 def test_apropos_with_unreadable_dir(self):
     # Issue 7367 - pydoc -k failed when unreadable dir on path
     self.unreadable_dir = os.path.join(TESTFN, "unreadable")
     os.mkdir(self.unreadable_dir, 0)
     self.addCleanup(os.rmdir, self.unreadable_dir)
     # Note, on Windows the directory appears to be still
     #   readable so this is not really testing the issue there
     with self.restrict_walk_packages(path=[TESTFN]):
         with captured_stdout() as out:
             with captured_stderr() as err:
                 pydoc.apropos('SOMEKEY')
     # No result, no error
     self.assertEqual(out.getvalue(), '')
     self.assertEqual(err.getvalue(), '')
开发者ID:EitanEliahu,项目名称:freeablo-windows-build,代码行数:14,代码来源:test_pydoc.py


示例10: test_badisinstance

    def test_badisinstance(self):
        # Bug #2542: if issubclass(e, MyException) raises an exception,
        # it should be ignored
        class Meta(type):
            def __subclasscheck__(cls, subclass):
                raise ValueError()

        class MyException(Exception):
            __metaclass__ = Meta
            pass

        with captured_stderr() as stderr:
            try:
                raise KeyError()
            except MyException, e:
                self.fail("exception should not be a MyException")
            except KeyError:
                pass
开发者ID:naftaliharris,项目名称:python2.8,代码行数:18,代码来源:test_exceptions.py


示例11: test_unhandled

 def test_unhandled(self):
     # Check for sensible reporting of unhandled exceptions
     for exc_type in (ValueError, BrokenStrException):
         try:
             exc = exc_type("test message")
             # The following line is included in the traceback report:
             raise exc
         except exc_type:
             with captured_stderr() as stderr:
                 sys.__excepthook__(*sys.exc_info())
         report = stderr.getvalue()
         self.assertIn("test_exceptions.py", report)
         self.assertIn("raise exc", report)
         self.assertIn(exc_type.__name__, report)
         if exc_type is BrokenStrException:
             self.assertIn("<exception str() failed>", report)
         else:
             self.assertIn("test message", report)
         self.assertTrue(report.endswith("\n"))
开发者ID:naftaliharris,项目名称:python2.8,代码行数:19,代码来源:test_exceptions.py


示例12: test_issue31285

    def test_issue31285(self):
        # warn_explicit() shouldn't raise a SystemError in case the return
        # value of get_source() has a bad splitlines() method.
        class BadLoader:
            def get_source(self, fullname):
                class BadSource(str):
                    def splitlines(self):
                        return 42
                return BadSource('spam')

        wmod = self.module
        with original_warnings.catch_warnings(module=wmod):
            wmod.filterwarnings('default', category=UserWarning)

            with test_support.captured_stderr() as stderr:
                wmod.warn_explicit(
                    'foo', UserWarning, 'bar', 1,
                    module_globals={'__loader__': BadLoader(),
                                    '__name__': 'foobar'})
            self.assertIn('UserWarning: foo', stderr.getvalue())
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:20,代码来源:test_warnings.py


示例13: test_delegation_of_close_to_non_generator

 def test_delegation_of_close_to_non_generator(self):
     """
     Test delegation of close() to non-generator
     """
     trace = []
     def g():
         try:
             trace.append("starting g")
             yield from range(3)
             trace.append("g should not be here")
         finally:
             trace.append("finishing g")
     gi = g()
     next(gi)
     with captured_stderr() as output:
         gi.close()
     self.assertEqual(output.getvalue(), '')
     self.assertEqual(trace,[
         "starting g",
         "finishing g",
     ])
开发者ID:naftaliharris,项目名称:python2.8,代码行数:21,代码来源:test_pep380.py


示例14: testInfiniteRecursion

    def testInfiniteRecursion(self):
        def f():
            return f()
        self.assertRaises(RuntimeError, f)

        def g():
            try:
                return g()
            except ValueError:
                return -1

        # The test prints an unraisable recursion error when
        # doing "except ValueError", this is because subclass
        # checking has recursion checking too.
        with captured_stderr():
            try:
                g()
            except RuntimeError:
                pass
            except:
                self.fail("Should have raised KeyError")
            else:
                self.fail("Should have raised KeyError")
开发者ID:naftaliharris,项目名称:python2.8,代码行数:23,代码来源:test_exceptions.py


示例15: captured_stderr

            __metaclass__ = Meta
            pass

        with captured_stderr() as stderr:
            try:
                raise KeyError()
            except MyException, e:
                self.fail("exception should not be a MyException")
            except KeyError:
                pass
            except:
                self.fail("Should have raised KeyError")
            else:
                self.fail("Should have raised KeyError")

        with captured_stderr() as stderr:
            def g():
                try:
                    return g()
                except RuntimeError:
                    return sys.exc_info()
            e, v, tb = g()
            self.assertTrue(e is RuntimeError, e)
            self.assertIn("maximum recursion depth exceeded", str(v))

    def test_new_returns_invalid_instance(self):
        # See issue #11627.
        class MyException(Exception):
            def __new__(cls, *args):
                return object()
开发者ID:naftaliharris,项目名称:python2.8,代码行数:30,代码来源:test_exceptions.py


示例16: test_run_show

 def test_run_show(self):
     with captured_stderr() as f:
         run.idle_showwarning_subproc('Test', UserWarning, 'test_warning.py', 99, f, 'Line of code')
         self.assertEqual(idlemsg.splitlines(), f.getvalue().splitlines())
开发者ID:webiumsk,项目名称:WOT-0.9.15-CT,代码行数:4,代码来源:test_warning.py


示例17: test_main_exception_fixed_reps

 def test_main_exception_fixed_reps(self):
     with captured_stderr() as error_stringio:
         s = self.run_main(switches=['-n1', '1.0/0.0'])
     self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError')
开发者ID:AtomicConductor,项目名称:conductor_client,代码行数:4,代码来源:test_timeit.py


示例18: test_shell_show

 def test_shell_show(self):
     with captured_stderr() as f:
         shell.idle_showwarning("Test", UserWarning, "test_warning.py", 99, f, "Line of code")
         self.assertEqual(shellmsg.splitlines(), f.getvalue().splitlines())
开发者ID:webiumsk,项目名称:WOT-0.9.12-CT,代码行数:4,代码来源:test_warning.py


示例19: test_run_show

 def test_run_show(self):
     with captured_stderr() as f:
         run.idle_showwarning_subproc(
                 'Test', UserWarning, 'test_warning.py', 99, f, 'Line of code')
         # The following uses .splitlines to erase line-ending differences
         self.assertEqual(idlemsg.splitlines(), f.getvalue().splitlines())
开发者ID:AtomicConductor,项目名称:conductor_client,代码行数:6,代码来源:test_warning.py


示例20: test_shell_show

 def test_shell_show(self):
     with captured_stderr() as f:
         shell.idle_showwarning(
                 'Test', UserWarning, 'test_warning.py', 99, f, 'Line of code')
         self.assertEqual(shellmsg.splitlines(), f.getvalue().splitlines())
开发者ID:AtomicConductor,项目名称:conductor_client,代码行数:5,代码来源:test_warning.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python test_support.captured_stdout函数代码示例发布时间:2022-05-27
下一篇:
Python test_support.captured_output函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap