-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-117968: Add tests for the part of the PyRun family of the C API #117982
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
serhiy-storchaka
merged 45 commits into
python:main
from
serhiy-storchaka:test-capi-pyrun
Apr 17, 2024
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
9635b76
check if gobals is null
ngr-ilmarh 3e97671
make NULL check earlier
ngr-ilmarh 348d895
Merge branch 'main' into fix-issue-116180
259034c
PEP-7
ngr-ilmarh 85d9f47
Merge branch 'main' into fix-issue-116180
cf578bd
Merge branch 'main' into fix-issue-116180
bba6927
Merge branch 'main' into fix-issue-116180
1b5fe4c
Squashed commit of the following:
ngr-ilmarh a016a54
Squashed commit of the following:
ngr-ilmarh 173b9ce
Merge branch 'fix-issue-116180' of https://github.com/NGRsoftlab/cpyt…
ngr-ilmarh 86c6e57
Merge branch 'main' into fix-issue-116180
ngr-ilmarh 7503772
change if null to assert
ngr-ilmarh f175046
Revert "change if null to assert"
ngr-ilmarh dcab696
bring back error message instead of assert
ngr-ilmarh 9532797
return error instead of segfault and test it
ngr-ilmarh ee0fd8a
Merge branch 'python:main' into fix-issue-116180
7eca26f
Merge branch 'python:main' into fix-issue-116180
08b5c3a
Update Python/pythonrun.c
23b9fe6
Update Modules/_testcapi/pyrun.c
acc7eb3
Merge branch 'python:main' into fix-issue-116180
09c71a9
Merge branch 'python:main' into fix-issue-116180
806d21c
refactor unittests through helper
ngr-ilmarh 907c86d
fix closeit test when expect exception global == NULL
ngr-ilmarh af9e9fc
Merge branch 'python:main' into fix-issue-116180
56f0d3c
refactor python test, add some error handling to module init
ngr-ilmarh b1d7ab2
fix lost bracket
ngr-ilmarh f8e29ce
cleanup (and rename)
ngr-ilmarh efe064d
make windows build tests
ngr-ilmarh 8f33e7a
Merge branch 'python:main' into fix-issue-116180
296705a
next round of refactoring
ngr-ilmarh cd58eb6
Merge branch 'python:main' into fix-issue-116180
c461bd9
Merge branch 'python:main' into fix-issue-116180
7db13d0
Merge branch 'python:main' into fix-issue-116180
eef557c
Globals must be dict. Fix filename encoding and file closing in the w…
serhiy-storchaka 66646e9
Merge branch 'python:main' into fix-issue-116180
45cab7f
Skip tests with undecodable filename if not supported.
serhiy-storchaka 1716ac6
Add a test for PyRun_StringFlags(). Test globals at the lower level.
serhiy-storchaka 1a9532c
Pass filename as bytes.
serhiy-storchaka 6f0a0a4
Merge branch 'main' into fix-issue-116180
2607806
Merge branch 'python:main' into fix-issue-116180
7f4c496
Merge branch 'main' into fix-issue-116180
5974757
Merge branch 'python:main' into fix-issue-116180
2b4ba12
Update Lib/test/test_capi/test_pyrun.py
serhiy-storchaka 474d0bd
Only tests.
serhiy-storchaka c8f9b4b
Remove the "Py" prefix.
serhiy-storchaka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,104 @@ | ||
import os | ||
import unittest | ||
from collections import UserDict | ||
from test.support import import_helper | ||
from test.support.os_helper import unlink, TESTFN, TESTFN_UNDECODABLE | ||
|
||
NULL = None | ||
_testcapi = import_helper.import_module('_testcapi') | ||
Py_single_input = _testcapi.Py_single_input | ||
Py_file_input = _testcapi.Py_file_input | ||
Py_eval_input = _testcapi.Py_eval_input | ||
|
||
|
||
class CAPITest(unittest.TestCase): | ||
# TODO: Test the following functions: | ||
# | ||
# PyRun_SimpleStringFlags | ||
# PyRun_AnyFileExFlags | ||
# PyRun_SimpleFileExFlags | ||
# PyRun_InteractiveOneFlags | ||
# PyRun_InteractiveOneObject | ||
# PyRun_InteractiveLoopFlags | ||
# PyRun_String (may be a macro) | ||
# PyRun_AnyFile (may be a macro) | ||
# PyRun_AnyFileEx (may be a macro) | ||
# PyRun_AnyFileFlags (may be a macro) | ||
# PyRun_SimpleString (may be a macro) | ||
# PyRun_SimpleFile (may be a macro) | ||
# PyRun_SimpleFileEx (may be a macro) | ||
# PyRun_InteractiveOne (may be a macro) | ||
# PyRun_InteractiveLoop (may be a macro) | ||
# PyRun_File (may be a macro) | ||
# PyRun_FileEx (may be a macro) | ||
# PyRun_FileFlags (may be a macro) | ||
|
||
def test_run_stringflags(self): | ||
# Test PyRun_StringFlags(). | ||
def run(s, *args): | ||
return _testcapi.run_stringflags(s, Py_file_input, *args) | ||
source = b'a\n' | ||
|
||
self.assertIsNone(run(b'a\n', dict(a=1))) | ||
self.assertIsNone(run(b'a\n', dict(a=1), {})) | ||
self.assertIsNone(run(b'a\n', {}, dict(a=1))) | ||
self.assertIsNone(run(b'a\n', {}, UserDict(a=1))) | ||
|
||
self.assertRaises(NameError, run, b'a\n', {}) | ||
self.assertRaises(NameError, run, b'a\n', {}, {}) | ||
self.assertRaises(TypeError, run, b'a\n', dict(a=1), []) | ||
self.assertRaises(TypeError, run, b'a\n', dict(a=1), 1) | ||
|
||
self.assertIsNone(run(b'\xc3\xa4\n', {'\xe4': 1})) | ||
self.assertRaises(SyntaxError, run, b'\xe4\n', {}) | ||
|
||
# CRASHES run(b'a\n', NULL) | ||
# CRASHES run(b'a\n', NULL, {}) | ||
# CRASHES run(b'a\n', NULL, dict(a=1)) | ||
# CRASHES run(b'a\n', UserDict()) | ||
# CRASHES run(b'a\n', UserDict(), {}) | ||
# CRASHES run(b'a\n', UserDict(), dict(a=1)) | ||
|
||
# CRASHES run(NULL, {}) | ||
|
||
def test_run_fileexflags(self): | ||
# Test PyRun_FileExFlags(). | ||
filename = os.fsencode(TESTFN) | ||
with open(filename, 'wb') as fp: | ||
fp.write(b'a\n') | ||
self.addCleanup(unlink, filename) | ||
def run(*args): | ||
return _testcapi.run_fileexflags(filename, Py_file_input, *args) | ||
|
||
self.assertIsNone(run(dict(a=1))) | ||
self.assertIsNone(run(dict(a=1), {})) | ||
self.assertIsNone(run({}, dict(a=1))) | ||
self.assertIsNone(run({}, UserDict(a=1))) | ||
self.assertIsNone(run(dict(a=1), {}, 1)) # closeit = True | ||
|
||
self.assertRaises(NameError, run, {}) | ||
self.assertRaises(NameError, run, {}, {}) | ||
self.assertRaises(TypeError, run, dict(a=1), []) | ||
self.assertRaises(TypeError, run, dict(a=1), 1) | ||
|
||
# CRASHES run(NULL) | ||
# CRASHES run(NULL, {}) | ||
# CRASHES run(NULL, dict(a=1)) | ||
# CRASHES run(UserDict()) | ||
# CRASHES run(UserDict(), {}) | ||
# CRASHES run(UserDict(), dict(a=1)) | ||
|
||
@unittest.skipUnless(TESTFN_UNDECODABLE, 'only works if there are undecodable paths') | ||
def test_run_fileexflags_with_undecodable_filename(self): | ||
run = _testcapi.run_fileexflags | ||
try: | ||
with open(TESTFN_UNDECODABLE, 'wb') as fp: | ||
fp.write(b'a\n') | ||
self.addCleanup(unlink, TESTFN_UNDECODABLE) | ||
except OSError: | ||
self.skipTest('undecodable paths are not supported') | ||
self.assertIsNone(run(TESTFN_UNDECODABLE, Py_file_input, dict(a=1))) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains hidden or 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 hidden or 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 hidden or 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,112 @@ | ||
#include "parts.h" | ||
#include "util.h" | ||
|
||
#include <stdio.h> | ||
#include <errno.h> | ||
|
||
|
||
static PyObject * | ||
run_stringflags(PyObject *mod, PyObject *pos_args) | ||
{ | ||
const char *str; | ||
Py_ssize_t size; | ||
int start; | ||
PyObject *globals = NULL; | ||
PyObject *locals = NULL; | ||
PyCompilerFlags flags = _PyCompilerFlags_INIT; | ||
PyCompilerFlags *pflags = NULL; | ||
int cf_flags = 0; | ||
int cf_feature_version = 0; | ||
|
||
if (!PyArg_ParseTuple(pos_args, "z#iO|Oii", | ||
&str, &size, &start, &globals, &locals, | ||
&cf_flags, &cf_feature_version)) { | ||
return NULL; | ||
} | ||
|
||
NULLABLE(globals); | ||
NULLABLE(locals); | ||
if (cf_flags || cf_feature_version) { | ||
flags.cf_flags = cf_flags; | ||
flags.cf_feature_version = cf_feature_version; | ||
pflags = &flags; | ||
} | ||
|
||
return PyRun_StringFlags(str, start, globals, locals, pflags); | ||
} | ||
|
||
static PyObject * | ||
run_fileexflags(PyObject *mod, PyObject *pos_args) | ||
{ | ||
PyObject *result = NULL; | ||
const char *filename = NULL; | ||
Py_ssize_t filename_size; | ||
int start; | ||
PyObject *globals = NULL; | ||
PyObject *locals = NULL; | ||
int closeit = 0; | ||
PyCompilerFlags flags = _PyCompilerFlags_INIT; | ||
PyCompilerFlags *pflags = NULL; | ||
int cf_flags = 0; | ||
int cf_feature_version = 0; | ||
|
||
FILE *fp = NULL; | ||
|
||
if (!PyArg_ParseTuple(pos_args, "z#iO|Oiii", | ||
&filename, &filename_size, &start, &globals, &locals, | ||
&closeit, &cf_flags, &cf_feature_version)) { | ||
return NULL; | ||
} | ||
|
||
NULLABLE(globals); | ||
NULLABLE(locals); | ||
if (cf_flags || cf_feature_version) { | ||
flags.cf_flags = cf_flags; | ||
flags.cf_feature_version = cf_feature_version; | ||
pflags = &flags; | ||
} | ||
|
||
fp = fopen(filename, "r"); | ||
if (fp == NULL) { | ||
PyErr_SetFromErrnoWithFilename(PyExc_OSError, filename); | ||
return NULL; | ||
} | ||
|
||
result = PyRun_FileExFlags(fp, filename, start, globals, locals, closeit, pflags); | ||
|
||
#if !defined(__wasi__) | ||
/* The behavior of fileno() after fclose() is undefined. */ | ||
if (closeit && result && fileno(fp) >= 0) { | ||
PyErr_SetString(PyExc_AssertionError, "File was not closed after excution"); | ||
Py_DECREF(result); | ||
fclose(fp); | ||
return NULL; | ||
} | ||
#endif | ||
if (!closeit && fileno(fp) < 0) { | ||
PyErr_SetString(PyExc_AssertionError, "Bad file descriptor after excution"); | ||
Py_XDECREF(result); | ||
return NULL; | ||
} | ||
|
||
if (!closeit) { | ||
fclose(fp); /* don't need open file any more*/ | ||
} | ||
|
||
return result; | ||
} | ||
|
||
static PyMethodDef test_methods[] = { | ||
{"run_stringflags", run_stringflags, METH_VARARGS}, | ||
{"run_fileexflags", run_fileexflags, METH_VARARGS}, | ||
{NULL}, | ||
}; | ||
|
||
int | ||
_PyTestCapi_Init_Run(PyObject *mod) | ||
{ | ||
if (PyModule_AddFunctions(mod, test_methods) < 0) { | ||
return -1; | ||
} | ||
return 0; | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @serhiy-storchaka,
It seems that the
fileno(fp) >= 0
check isn't very portable, because on some systems (I reproduced it on Oracle Solaris, SmartOS and OpenBSD),fileno
returns a positive value (and not-1
like on Linux) even for closedfp
. I guess that the__wasi__
preprocessor check might be there for similar reason?That causes the
self.assertIsNone(run(dict(a=1), {}, 1)) # closeit = True
line above to fail.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. I will try to make it safer in #118230.