summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_api.py
diff options
context:
space:
mode:
authorSteven Karas <steven.karas@gmail.com>2022-07-19 05:51:04 +0300
committerGitHub <noreply@github.com>2022-07-18 22:51:04 -0400
commitd875b02835fb9b1480a95c5245040eb31a384357 (patch)
tree22ef95ec26af351bf867c3912a325309b337d6ac /pyflakes/test/test_api.py
parent44ef321b0e608c61182ecf5d88f9edeececa5403 (diff)
downloadpyflakes-d875b02835fb9b1480a95c5245040eb31a384357.tar.gz
fix syntax error reporting from stdin (#357) (#716)
In b73a3d12, there was an assumption that text is None only if there was an encoding error with the file. However this was the case for all pythons before 3.9 when reading code from stdin. This takes care to correctly report as much context as possible, so errors aren't silently dropped with the unhelpful "problem decoding source" message.
Diffstat (limited to 'pyflakes/test/test_api.py')
-rw-r--r--pyflakes/test/test_api.py52
1 files changed, 51 insertions, 1 deletions
diff --git a/pyflakes/test/test_api.py b/pyflakes/test/test_api.py
index d0795a0..524f96f 100644
--- a/pyflakes/test/test_api.py
+++ b/pyflakes/test/test_api.py
@@ -15,6 +15,7 @@ from pyflakes.messages import UnusedImport
from pyflakes.reporter import Reporter
from pyflakes.api import (
main,
+ check,
checkPath,
checkRecursive,
iterSourceCode,
@@ -255,6 +256,17 @@ class TestReporter(TestCase):
"bad line of source\n"),
err.getvalue())
+ def test_syntaxErrorNoText(self):
+ """
+ C{syntaxError} doesn't include text or nonsensical offsets if C{text} is C{None}.
+
+ This typically happens when reporting syntax errors from stdin.
+ """
+ err = io.StringIO()
+ reporter = Reporter(None, err)
+ reporter.syntaxError('<stdin>', 'a problem', 0, 0, None)
+ self.assertEqual(("<stdin>:1:1: a problem\n"), err.getvalue())
+
def test_multiLineSyntaxError(self):
"""
If there's a multi-line syntax error, then we only report the last
@@ -606,7 +618,8 @@ x = "%s"
""" % SNOWMAN).encode('utf-8')
with self.makeTempFile(source) as sourcePath:
self.assertHasErrors(
- sourcePath, [f"{sourcePath}: problem decoding source\n"])
+ sourcePath,
+ [f"{sourcePath}:1:1: 'ascii' codec can't decode byte 0xe2 in position 21: ordinal not in range(128)\n"]) # noqa: E501
def test_misencodedFileUTF16(self):
"""
@@ -648,6 +661,43 @@ x = "%s"
finally:
shutil.rmtree(tempdir)
+ def test_stdinReportsErrors(self):
+ """
+ L{check} reports syntax errors from stdin
+ """
+ source = "max(1 for i in range(10), key=lambda x: x+1)\n"
+ err = io.StringIO()
+ count = withStderrTo(err, check, source, "<stdin>")
+ self.assertEqual(count, 1)
+ errlines = err.getvalue().split("\n")[:-1]
+
+ if PYPY:
+ expected_error = [
+ "<stdin>:1:3: Generator expression must be parenthesized if not sole argument", # noqa: E501
+ "max(1 for i in range(10), key=lambda x: x+1)",
+ " ^",
+ ]
+ elif sys.version_info >= (3, 9):
+ expected_error = [
+ "<stdin>:1:5: Generator expression must be parenthesized",
+ "max(1 for i in range(10), key=lambda x: x+1)",
+ " ^",
+ ]
+ elif sys.version_info >= (3, 8):
+ expected_error = [
+ "<stdin>:1:5: Generator expression must be parenthesized",
+ ]
+ elif sys.version_info >= (3, 7):
+ expected_error = [
+ "<stdin>:1:4: Generator expression must be parenthesized",
+ ]
+ elif sys.version_info >= (3, 6):
+ expected_error = [
+ "<stdin>:1:4: Generator expression must be parenthesized if not sole argument", # noqa: E501
+ ]
+
+ self.assertEqual(errlines, expected_error)
+
class IntegrationTests(TestCase):
"""