2002-08-14 22:28:54 -03:00
|
|
|
"""test script for a few new invalid token catches"""
|
|
|
|
|
2019-05-18 15:27:17 -03:00
|
|
|
import sys
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2020-07-06 09:29:49 -03:00
|
|
|
from test.support import os_helper
|
2019-05-18 15:27:17 -03:00
|
|
|
from test.support import script_helper
|
2023-04-19 13:18:16 -03:00
|
|
|
from test.support import warnings_helper
|
2019-05-18 15:27:17 -03:00
|
|
|
import unittest
|
2002-08-14 22:28:54 -03:00
|
|
|
|
|
|
|
class EOFTestCase(unittest.TestCase):
|
2021-01-20 17:38:47 -04:00
|
|
|
def test_EOF_single_quote(self):
|
|
|
|
expect = "unterminated string literal (detected at line 1) (<string>, line 1)"
|
|
|
|
for quote in ("'", "\""):
|
|
|
|
try:
|
|
|
|
eval(f"""{quote}this is a test\
|
|
|
|
""")
|
|
|
|
except SyntaxError as msg:
|
|
|
|
self.assertEqual(str(msg), expect)
|
|
|
|
self.assertEqual(msg.offset, 1)
|
|
|
|
else:
|
|
|
|
raise support.TestFailed
|
2002-08-14 22:28:54 -03:00
|
|
|
|
|
|
|
def test_EOFS(self):
|
2021-01-20 17:38:47 -04:00
|
|
|
expect = ("unterminated triple-quoted string literal (detected at line 1) (<string>, line 1)")
|
2002-08-14 22:28:54 -03:00
|
|
|
try:
|
|
|
|
eval("""'''this is a test""")
|
2007-01-10 12:19:56 -04:00
|
|
|
except SyntaxError as msg:
|
2005-10-20 16:59:25 -03:00
|
|
|
self.assertEqual(str(msg), expect)
|
2021-01-20 17:38:47 -04:00
|
|
|
self.assertEqual(msg.offset, 1)
|
2002-08-14 22:28:54 -03:00
|
|
|
else:
|
2008-05-20 18:35:26 -03:00
|
|
|
raise support.TestFailed
|
2002-08-14 22:28:54 -03:00
|
|
|
|
2021-06-12 14:53:49 -03:00
|
|
|
def test_EOFS_with_file(self):
|
|
|
|
expect = ("(<string>, line 1)")
|
|
|
|
with os_helper.temp_dir() as temp_dir:
|
|
|
|
file_name = script_helper.make_script(temp_dir, 'foo', """'''this is \na \ntest""")
|
|
|
|
rc, out, err = script_helper.assert_python_failure(file_name)
|
|
|
|
self.assertIn(b'unterminated triple-quoted string literal (detected at line 3)', err)
|
|
|
|
|
2023-04-19 13:18:16 -03:00
|
|
|
@warnings_helper.ignore_warnings(category=SyntaxWarning)
|
2020-05-07 23:38:44 -03:00
|
|
|
def test_eof_with_line_continuation(self):
|
|
|
|
expect = "unexpected EOF while parsing (<string>, line 1)"
|
|
|
|
try:
|
2023-04-19 13:18:16 -03:00
|
|
|
compile('"\\Xhh" \\', '<string>', 'exec')
|
2020-05-07 23:38:44 -03:00
|
|
|
except SyntaxError as msg:
|
|
|
|
self.assertEqual(str(msg), expect)
|
|
|
|
else:
|
|
|
|
raise support.TestFailed
|
|
|
|
|
2019-05-18 15:27:17 -03:00
|
|
|
def test_line_continuation_EOF(self):
|
2020-01-09 13:07:32 -04:00
|
|
|
"""A continuation at the end of input must be an error; bpo2180."""
|
2019-05-18 15:27:17 -03:00
|
|
|
expect = 'unexpected EOF while parsing (<string>, line 1)'
|
|
|
|
with self.assertRaises(SyntaxError) as excinfo:
|
|
|
|
exec('x = 5\\')
|
|
|
|
self.assertEqual(str(excinfo.exception), expect)
|
|
|
|
with self.assertRaises(SyntaxError) as excinfo:
|
|
|
|
exec('\\')
|
|
|
|
self.assertEqual(str(excinfo.exception), expect)
|
|
|
|
|
|
|
|
@unittest.skipIf(not sys.executable, "sys.executable required")
|
|
|
|
def test_line_continuation_EOF_from_file_bpo2180(self):
|
|
|
|
"""Ensure tok_nextc() does not add too many ending newlines."""
|
2020-07-06 09:29:49 -03:00
|
|
|
with os_helper.temp_dir() as temp_dir:
|
2019-05-18 15:27:17 -03:00
|
|
|
file_name = script_helper.make_script(temp_dir, 'foo', '\\')
|
|
|
|
rc, out, err = script_helper.assert_python_failure(file_name)
|
|
|
|
self.assertIn(b'unexpected EOF while parsing', err)
|
2021-03-28 19:48:05 -03:00
|
|
|
self.assertIn(b'line 1', err)
|
2020-06-15 21:27:33 -03:00
|
|
|
self.assertIn(b'\\', err)
|
2019-05-18 15:27:17 -03:00
|
|
|
|
|
|
|
file_name = script_helper.make_script(temp_dir, 'foo', 'y = 6\\')
|
|
|
|
rc, out, err = script_helper.assert_python_failure(file_name)
|
|
|
|
self.assertIn(b'unexpected EOF while parsing', err)
|
2021-03-28 19:48:05 -03:00
|
|
|
self.assertIn(b'line 1', err)
|
2020-06-15 21:27:33 -03:00
|
|
|
self.assertIn(b'y = 6\\', err)
|
2019-05-18 15:27:17 -03:00
|
|
|
|
2002-08-14 22:28:54 -03:00
|
|
|
if __name__ == "__main__":
|
2015-04-13 17:00:43 -03:00
|
|
|
unittest.main()
|