blob: dfd5431dee86ea5b1278b3ec8958e74f61790136 [file] [log] [blame]
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001import test.support, unittest
Florent Xicluna8fbddf12010-03-17 20:29:51 +00002from test.support import TESTFN, unlink, unload
Brett Cannonafbdc132012-04-14 15:06:17 -04003import importlib, os, sys
Neal Norwitz40d37812005-10-02 01:48:49 +00004
5class CodingTest(unittest.TestCase):
6 def test_bad_coding(self):
7 module_name = 'bad_coding'
Neal Norwitzdb83eb32005-12-18 05:29:30 +00008 self.verify_bad_module(module_name)
9
10 def test_bad_coding2(self):
11 module_name = 'bad_coding2'
12 self.verify_bad_module(module_name)
13
14 def verify_bad_module(self, module_name):
Neal Norwitz40d37812005-10-02 01:48:49 +000015 self.assertRaises(SyntaxError, __import__, 'test.' + module_name)
16
17 path = os.path.dirname(__file__)
18 filename = os.path.join(path, module_name + '.py')
Florent Xicluna8fbddf12010-03-17 20:29:51 +000019 with open(filename, "rb") as fp:
20 bytes = fp.read()
Benjamin Petersonf5b52242009-03-02 23:31:26 +000021 self.assertRaises(SyntaxError, compile, bytes, filename, 'exec')
Neal Norwitz40d37812005-10-02 01:48:49 +000022
Neal Norwitzf7f28fc2007-08-11 21:31:25 +000023 def test_exec_valid_coding(self):
24 d = {}
25 exec('# coding: cp949\na = 5\n', d)
26 self.assertEqual(d['a'], 5)
27
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +000028 def test_file_parse(self):
29 # issue1134: all encodings outside latin-1 and utf-8 fail on
30 # multiline strings and long lines (>512 columns)
Florent Xicluna8fbddf12010-03-17 20:29:51 +000031 unload(TESTFN)
32 sys.path.insert(0, os.curdir)
Amaury Forgeot d'Arcdd9e3b82007-11-16 00:56:23 +000033 filename = TESTFN + ".py"
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +000034 f = open(filename, "w")
35 try:
36 f.write("# -*- coding: cp1252 -*-\n")
37 f.write("'''A short string\n")
38 f.write("'''\n")
39 f.write("'A very long string %s'\n" % ("X" * 1000))
40 f.close()
41
Brett Cannonafbdc132012-04-14 15:06:17 -040042 importlib.invalidate_caches()
Amaury Forgeot d'Arcdd9e3b82007-11-16 00:56:23 +000043 __import__(TESTFN)
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +000044 finally:
45 f.close()
Florent Xicluna8fbddf12010-03-17 20:29:51 +000046 unlink(filename)
47 unlink(filename + "c")
48 unload(TESTFN)
49 del sys.path[0]
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +000050
Benjamin Peterson0289b152009-06-28 17:22:03 +000051 def test_error_from_string(self):
52 # See http://bugs.python.org/issue6289
53 input = "# coding: ascii\n\N{SNOWMAN}".encode('utf-8')
Florent Xicluna8fbddf12010-03-17 20:29:51 +000054 with self.assertRaises(SyntaxError) as c:
Benjamin Peterson0289b152009-06-28 17:22:03 +000055 compile(input, "<string>", "exec")
Florent Xicluna8fbddf12010-03-17 20:29:51 +000056 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 Peterson0289b152009-06-28 17:22:03 +000060
Neal Norwitz40d37812005-10-02 01:48:49 +000061def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +000062 test.support.run_unittest(CodingTest)
Neal Norwitz40d37812005-10-02 01:48:49 +000063
64if __name__ == "__main__":
65 test_main()