blob: b370e27161cee65b51cd0f33e258ff52b474b8c5 [file] [log] [blame]
Skip Montanaro8c913372002-08-15 01:28:54 +00001"""test script for a few new invalid token catches"""
2
Anthony Sottileabea73b2019-05-18 11:27:17 -07003import sys
Benjamin Petersonee8712c2008-05-20 21:35:26 +00004from test import support
Hai Shideb01622020-07-06 20:29:49 +08005from test.support import os_helper
Anthony Sottileabea73b2019-05-18 11:27:17 -07006from test.support import script_helper
7import unittest
Skip Montanaro8c913372002-08-15 01:28:54 +00008
9class EOFTestCase(unittest.TestCase):
Batuhan Taskayaa698d522021-01-21 00:38:47 +030010 def test_EOF_single_quote(self):
11 expect = "unterminated string literal (detected at line 1) (<string>, line 1)"
12 for quote in ("'", "\""):
13 try:
14 eval(f"""{quote}this is a test\
15 """)
16 except SyntaxError as msg:
17 self.assertEqual(str(msg), expect)
18 self.assertEqual(msg.offset, 1)
19 else:
20 raise support.TestFailed
Skip Montanaro8c913372002-08-15 01:28:54 +000021
22 def test_EOFS(self):
Batuhan Taskayaa698d522021-01-21 00:38:47 +030023 expect = ("unterminated triple-quoted string literal (detected at line 1) (<string>, line 1)")
Skip Montanaro8c913372002-08-15 01:28:54 +000024 try:
25 eval("""'''this is a test""")
Guido van Rossumb940e112007-01-10 16:19:56 +000026 except SyntaxError as msg:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000027 self.assertEqual(str(msg), expect)
Batuhan Taskayaa698d522021-01-21 00:38:47 +030028 self.assertEqual(msg.offset, 1)
Skip Montanaro8c913372002-08-15 01:28:54 +000029 else:
Benjamin Petersonee8712c2008-05-20 21:35:26 +000030 raise support.TestFailed
Skip Montanaro8c913372002-08-15 01:28:54 +000031
Pablo Galindodb9163c2020-05-08 03:38:44 +010032 def test_eof_with_line_continuation(self):
33 expect = "unexpected EOF while parsing (<string>, line 1)"
34 try:
35 compile('"\\xhh" \\', '<string>', 'exec', dont_inherit=True)
36 except SyntaxError as msg:
37 self.assertEqual(str(msg), expect)
38 else:
39 raise support.TestFailed
40
Anthony Sottileabea73b2019-05-18 11:27:17 -070041 def test_line_continuation_EOF(self):
Daniel Hahler2f65aa42020-01-09 18:07:32 +010042 """A continuation at the end of input must be an error; bpo2180."""
Anthony Sottileabea73b2019-05-18 11:27:17 -070043 expect = 'unexpected EOF while parsing (<string>, line 1)'
44 with self.assertRaises(SyntaxError) as excinfo:
45 exec('x = 5\\')
46 self.assertEqual(str(excinfo.exception), expect)
47 with self.assertRaises(SyntaxError) as excinfo:
48 exec('\\')
49 self.assertEqual(str(excinfo.exception), expect)
50
51 @unittest.skipIf(not sys.executable, "sys.executable required")
52 def test_line_continuation_EOF_from_file_bpo2180(self):
53 """Ensure tok_nextc() does not add too many ending newlines."""
Hai Shideb01622020-07-06 20:29:49 +080054 with os_helper.temp_dir() as temp_dir:
Anthony Sottileabea73b2019-05-18 11:27:17 -070055 file_name = script_helper.make_script(temp_dir, 'foo', '\\')
56 rc, out, err = script_helper.assert_python_failure(file_name)
57 self.assertIn(b'unexpected EOF while parsing', err)
Lysandros Nikolaou113e2b02020-06-16 03:27:33 +030058 self.assertIn(b'line 2', err)
59 self.assertIn(b'\\', err)
Anthony Sottileabea73b2019-05-18 11:27:17 -070060
61 file_name = script_helper.make_script(temp_dir, 'foo', 'y = 6\\')
62 rc, out, err = script_helper.assert_python_failure(file_name)
63 self.assertIn(b'unexpected EOF while parsing', err)
Lysandros Nikolaou113e2b02020-06-16 03:27:33 +030064 self.assertIn(b'line 2', err)
65 self.assertIn(b'y = 6\\', err)
Anthony Sottileabea73b2019-05-18 11:27:17 -070066
Skip Montanaro8c913372002-08-15 01:28:54 +000067if __name__ == "__main__":
Zachary Ware38c707e2015-04-13 15:00:43 -050068 unittest.main()