forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-87092: Expose assembler to unit tests
- Loading branch information
1 parent
f51084e
commit 11de296
Showing
11 changed files
with
339 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
|
||
import ast | ||
import types | ||
|
||
from test.support.bytecode_helper import AssemblerTestCase, CfgOptimizationTestCase | ||
|
||
from _testinternalcapi import compiler_codegen, optimize_cfg | ||
|
||
# Tests for the code-object creation stage of the compiler. | ||
|
||
class IsolatedAssembleTests(AssemblerTestCase): | ||
|
||
def complete_metadata(self, metadata, filename="myfile.py"): | ||
if metadata is None: | ||
metadata = {} | ||
for key in ['name', 'qualname']: | ||
metadata.setdefault(key, key) | ||
for key in ['consts']: | ||
metadata.setdefault(key, []) | ||
for key in ['names', 'varnames', 'cellvars', 'freevars']: | ||
metadata.setdefault(key, {}) | ||
for key in ['argcount', 'posonlyargcount', 'kwonlyargcount']: | ||
metadata.setdefault(key, 0) | ||
metadata.setdefault('firstlineno', 1) | ||
metadata.setdefault('filename', filename) | ||
return metadata | ||
|
||
def assemble_test(self, insts, metadata, expected): | ||
co = self.get_code_object(metadata['filename'], insts, metadata) | ||
self.assertIsInstance(co, types.CodeType) | ||
|
||
expected_metadata = {} | ||
for key, value in metadata.items(): | ||
if isinstance(value, list): | ||
expected_metadata[key] = tuple(value) | ||
elif isinstance(value, dict): | ||
expected_metadata[key] = tuple(value.keys()) | ||
else: | ||
expected_metadata[key] = value | ||
|
||
for key, value in expected_metadata.items(): | ||
self.assertEqual(getattr(co, "co_" + key), value) | ||
|
||
f = types.FunctionType(co, {}) | ||
for args, res in expected.items(): | ||
self.assertEqual(f(*args), res) | ||
|
||
def test_simple_expr(self): | ||
metadata = { | ||
'filename' : 'avg.py', | ||
'name' : 'avg', | ||
'qualname' : 'stats.avg', | ||
'consts' : [2], | ||
'argcount' : 2, | ||
'varnames' : {'x' : 0, 'y' : 1}, | ||
} | ||
metadata = self.complete_metadata(metadata) | ||
|
||
# code for "return (x+y)/2" | ||
insts = [ | ||
('RESUME', 0), | ||
('LOAD_FAST', 0, 1), # 'x' | ||
('LOAD_FAST', 1, 1), # 'y' | ||
('BINARY_OP', 0, 1), # '+' | ||
('LOAD_CONST', 0, 1), # 2 | ||
('BINARY_OP', 11, 1), # '/' | ||
('RETURN_VALUE', 1), | ||
] | ||
insts = self.complete_insts_info(insts) | ||
expected = {(3, 4) : 3.5, (-100, 200) : 50, (10, 18) : 14} | ||
self.assemble_test(insts, metadata, expected) | ||
|
||
def xtest_for_loop(self): | ||
snippet = "for x in l:\n\tprint(x)" | ||
filename = "myfile.py" | ||
self.assemble_test(filename, snippet) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.