Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 1 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 2 | import test.support, unittest |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 3 | from test.support import TESTFN, unlink, unload |
Amaury Forgeot d'Arc | 65f9ace | 2007-11-15 23:19:43 +0000 | [diff] [blame] | 4 | import os, sys |
Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 5 | |
| 6 | class CodingTest(unittest.TestCase): |
| 7 | def test_bad_coding(self): |
| 8 | module_name = 'bad_coding' |
Neal Norwitz | db83eb3 | 2005-12-18 05:29:30 +0000 | [diff] [blame] | 9 | self.verify_bad_module(module_name) |
| 10 | |
| 11 | def test_bad_coding2(self): |
| 12 | module_name = 'bad_coding2' |
| 13 | self.verify_bad_module(module_name) |
| 14 | |
| 15 | def verify_bad_module(self, module_name): |
Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 16 | self.assertRaises(SyntaxError, __import__, 'test.' + module_name) |
| 17 | |
| 18 | path = os.path.dirname(__file__) |
| 19 | filename = os.path.join(path, module_name + '.py') |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 20 | with open(filename, "rb") as fp: |
| 21 | bytes = fp.read() |
Benjamin Peterson | f5b5224 | 2009-03-02 23:31:26 +0000 | [diff] [blame] | 22 | self.assertRaises(SyntaxError, compile, bytes, filename, 'exec') |
Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 23 | |
Neal Norwitz | f7f28fc | 2007-08-11 21:31:25 +0000 | [diff] [blame] | 24 | def test_exec_valid_coding(self): |
| 25 | d = {} |
| 26 | exec('# coding: cp949\na = 5\n', d) |
| 27 | self.assertEqual(d['a'], 5) |
| 28 | |
Amaury Forgeot d'Arc | 65f9ace | 2007-11-15 23:19:43 +0000 | [diff] [blame] | 29 | def test_file_parse(self): |
| 30 | # issue1134: all encodings outside latin-1 and utf-8 fail on |
| 31 | # multiline strings and long lines (>512 columns) |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 32 | unload(TESTFN) |
| 33 | sys.path.insert(0, os.curdir) |
Amaury Forgeot d'Arc | dd9e3b8 | 2007-11-16 00:56:23 +0000 | [diff] [blame] | 34 | filename = TESTFN + ".py" |
Amaury Forgeot d'Arc | 65f9ace | 2007-11-15 23:19:43 +0000 | [diff] [blame] | 35 | f = open(filename, "w") |
| 36 | try: |
| 37 | f.write("# -*- coding: cp1252 -*-\n") |
| 38 | f.write("'''A short string\n") |
| 39 | f.write("'''\n") |
| 40 | f.write("'A very long string %s'\n" % ("X" * 1000)) |
| 41 | f.close() |
| 42 | |
Amaury Forgeot d'Arc | dd9e3b8 | 2007-11-16 00:56:23 +0000 | [diff] [blame] | 43 | __import__(TESTFN) |
Amaury Forgeot d'Arc | 65f9ace | 2007-11-15 23:19:43 +0000 | [diff] [blame] | 44 | finally: |
| 45 | f.close() |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 46 | unlink(filename) |
| 47 | unlink(filename + "c") |
| 48 | unload(TESTFN) |
| 49 | del sys.path[0] |
Amaury Forgeot d'Arc | 65f9ace | 2007-11-15 23:19:43 +0000 | [diff] [blame] | 50 | |
Benjamin Peterson | 0289b15 | 2009-06-28 17:22:03 +0000 | [diff] [blame] | 51 | def test_error_from_string(self): |
| 52 | # See http://bugs.python.org/issue6289 |
| 53 | input = "# coding: ascii\n\N{SNOWMAN}".encode('utf-8') |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 54 | with self.assertRaises(SyntaxError) as c: |
Benjamin Peterson | 0289b15 | 2009-06-28 17:22:03 +0000 | [diff] [blame] | 55 | compile(input, "<string>", "exec") |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame^] | 56 | expected = "'ascii' codec can't decode byte 0xe2 in position 16: " \ |
| 57 | "ordinal not in range(128)" |
| 58 | self.assertTrue(c.exception.args[0].startswith(expected)) |
| 59 | |
Benjamin Peterson | 0289b15 | 2009-06-28 17:22:03 +0000 | [diff] [blame] | 60 | |
Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 61 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 62 | test.support.run_unittest(CodingTest) |
Neal Norwitz | 40d3781 | 2005-10-02 01:48:49 +0000 | [diff] [blame] | 63 | |
| 64 | if __name__ == "__main__": |
| 65 | test_main() |