diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-29 14:08:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-29 14:08:23 (GMT) |
commit | d751c2eafcc0204c98f90b4c528d97b0bd2274e0 (patch) | |
tree | f599a1ef0596a55b7da9b0af3745cc4c103f75ca /Demo | |
parent | 8042e2819227af0653f4e5b172a3bd372dde4a92 (diff) | |
download | cpython-d751c2eafcc0204c98f90b4c528d97b0bd2274e0.zip cpython-d751c2eafcc0204c98f90b4c528d97b0bd2274e0.tar.gz cpython-d751c2eafcc0204c98f90b4c528d97b0bd2274e0.tar.bz2 |
test_unparse.py: Do roundtrip testing for all Python files in Lib and Lib/test.
Diffstat (limited to 'Demo')
-rw-r--r-- | Demo/parser/test_unparse.py | 54 |
1 files changed, 46 insertions, 8 deletions
diff --git a/Demo/parser/test_unparse.py b/Demo/parser/test_unparse.py index b0a773d..6c060f3 100644 --- a/Demo/parser/test_unparse.py +++ b/Demo/parser/test_unparse.py @@ -1,11 +1,20 @@ import unittest import test.support - import io +import os +import tokenize import ast -import _ast import unparse +def read_pyfile(filename): + """Read and return the contents of a Python source file (as a + string), taking into account the file encoding.""" + with open(filename, "rb") as pyfile: + encoding = tokenize.detect_encoding(pyfile.readline)[0] + with open(filename, "r", encoding=encoding) as pyfile: + source = pyfile.read() + return source + for_else = """\ def f(): for x in range(10): @@ -55,16 +64,20 @@ class_decorator = """\ class Foo: pass """ -class UnparseTestCase(unittest.TestCase): - # Tests for specific bugs found in earlier versions of unparse +class ASTTestCase(unittest.TestCase): + def assertASTEqual(self, ast1, ast2): + self.assertEqual(ast.dump(ast1), ast.dump(ast2)) def check_roundtrip(self, code1, filename="internal"): - ast1 = compile(code1, filename, "exec", _ast.PyCF_ONLY_AST) + ast1 = compile(code1, filename, "exec", ast.PyCF_ONLY_AST) unparse_buffer = io.StringIO() unparse.Unparser(ast1, unparse_buffer) code2 = unparse_buffer.getvalue() - ast2 = compile(code2, filename, "exec", _ast.PyCF_ONLY_AST) - self.assertEqual(ast.dump(ast1), ast.dump(ast2)) + ast2 = compile(code2, filename, "exec", ast.PyCF_ONLY_AST) + self.assertASTEqual(ast1, ast2) + +class UnparseTestCase(ASTTestCase): + # Tests for specific bugs found in earlier versions of unparse def test_del_statement(self): self.check_roundtrip("del x, y, z") @@ -143,8 +156,33 @@ class UnparseTestCase(unittest.TestCase): def test_class_decorators(self): self.check_roundtrip(class_decorator) + +class DirectoryTestCase(ASTTestCase): + """Test roundtrip behaviour on all files in Lib and Lib/test.""" + + # test directories, relative to the root of the distribution + test_directories = 'Lib', os.path.join('Lib', 'test') + + def test_files(self): + # get names of files to test + dist_dir = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir) + + names = [] + for d in self.test_directories: + test_dir = os.path.join(dist_dir, d) + for n in os.listdir(test_dir): + if n.endswith('.py') and not n.startswith('bad'): + names.append(os.path.join(test_dir, n)) + + for filename in names: + if test.support.verbose: + print('Testing %s' % filename) + source = read_pyfile(filename) + self.check_roundtrip(source) + + def test_main(): - test.support.run_unittest(UnparseTestCase) + test.support.run_unittest(UnparseTestCase, DirectoryTestCase) if __name__ == '__main__': test_main() |