summaryrefslogtreecommitdiff
path: root/Lib/test/test_io.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-05-23 03:45:09 +0200
committerGitHub <noreply@github.com>2019-05-23 03:45:09 +0200
commitbc2aa816620c5e02ad8e94d8514b7e8f3f551ca1 (patch)
treebf5c847dda365eab94373bc06262d2092dd9077e /Lib/test/test_io.py
parent0a8e57248b913851640c64375600f05157c997df (diff)
downloadcpython-git-bc2aa816620c5e02ad8e94d8514b7e8f3f551ca1.tar.gz
bpo-18748: _pyio.IOBase emits unraisable exception (GH-13512)
In development (-X dev) mode and in a debug build, IOBase finalizer of the _pyio module now logs the exception if the close() method fails. The exception is ignored silently by default in release build. test_io: test_error_through_destructor() now uses support.catch_unraisable_exception() rather than capturing stderr.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r--Lib/test/test_io.py64
1 files changed, 27 insertions, 37 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index dc44e506b1..2c3bf89066 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -67,9 +67,9 @@ MEMORY_SANITIZER = (
'--with-memory-sanitizer' in _config_args
)
-# Does io.IOBase logs unhandled exceptions on calling close()?
-# They are silenced by default in release build.
-DESTRUCTOR_LOG_ERRORS = (hasattr(sys, "gettotalrefcount") or sys.flags.dev_mode)
+# Does io.IOBase finalizer log the exception if the close() method fails?
+# The exception is ignored silently by default in release build.
+IOBASE_EMITS_UNRAISABLE = (hasattr(sys, "gettotalrefcount") or sys.flags.dev_mode)
def _default_chunk_size():
@@ -1098,23 +1098,18 @@ class CommonBufferedTests:
# Test that the exception state is not modified by a destructor,
# even if close() fails.
rawio = self.CloseFailureIO()
- def f():
- self.tp(rawio).xyzzy
- with support.captured_output("stderr") as s:
- self.assertRaises(AttributeError, f)
- s = s.getvalue().strip()
- if s:
- # The destructor *may* have printed an unraisable error, check it
- lines = s.splitlines()
- if DESTRUCTOR_LOG_ERRORS:
- self.assertEqual(len(lines), 5)
- self.assertTrue(lines[0].startswith("Exception ignored in: "), lines)
- self.assertEqual(lines[1], "Traceback (most recent call last):", lines)
- self.assertEqual(lines[4], 'OSError:', lines)
- else:
- self.assertEqual(len(lines), 1)
- self.assertTrue(lines[-1].startswith("Exception OSError: "), lines)
- self.assertTrue(lines[-1].endswith(" ignored"), lines)
+ try:
+ with support.catch_unraisable_exception() as cm:
+ with self.assertRaises(AttributeError):
+ self.tp(rawio).xyzzy
+
+ if not IOBASE_EMITS_UNRAISABLE:
+ self.assertIsNone(cm.unraisable)
+ elif cm.unraisable is not None:
+ self.assertEqual(cm.unraisable.exc_type, OSError)
+ finally:
+ # Explicitly break reference cycle
+ cm = None
def test_repr(self):
raw = self.MockRawIO()
@@ -2859,23 +2854,18 @@ class TextIOWrapperTest(unittest.TestCase):
# Test that the exception state is not modified by a destructor,
# even if close() fails.
rawio = self.CloseFailureIO()
- def f():
- self.TextIOWrapper(rawio).xyzzy
- with support.captured_output("stderr") as s:
- self.assertRaises(AttributeError, f)
- s = s.getvalue().strip()
- if s:
- # The destructor *may* have printed an unraisable error, check it
- lines = s.splitlines()
- if DESTRUCTOR_LOG_ERRORS:
- self.assertEqual(len(lines), 5)
- self.assertTrue(lines[0].startswith("Exception ignored in: "), lines)
- self.assertEqual(lines[1], "Traceback (most recent call last):", lines)
- self.assertEqual(lines[4], 'OSError:', lines)
- else:
- self.assertEqual(len(lines), 1)
- self.assertTrue(lines[-1].startswith("Exception OSError: "), lines)
- self.assertTrue(lines[-1].endswith(" ignored"), lines)
+ try:
+ with support.catch_unraisable_exception() as cm:
+ with self.assertRaises(AttributeError):
+ self.TextIOWrapper(rawio).xyzzy
+
+ if not IOBASE_EMITS_UNRAISABLE:
+ self.assertIsNone(cm.unraisable)
+ elif cm.unraisable is not None:
+ self.assertEqual(cm.unraisable.exc_type, OSError)
+ finally:
+ # Explicitly break reference cycle
+ cm = None
# Systematic tests of the text I/O API