[3.12] C API tests: use special markers to test that output parameters were set (GH-109014) (#109023)

[3.12] C API tests: use special markers to test that output parameters were set (GH-109014).
(cherry picked from commit bf414b7fcb)
This commit is contained in:
Serhiy Storchaka 2023-09-08 16:09:49 +03:00 committed by GitHub
parent db55cfcbab
commit e65401d245
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 50 additions and 20 deletions

View file

@ -1,4 +1,5 @@
#include "parts.h" #include "parts.h"
#include "util.h"
static Py_ssize_t static Py_ssize_t
get_code_extra_index(PyInterpreterState* interp) { get_code_extra_index(PyInterpreterState* interp) {
@ -74,7 +75,7 @@ test_code_extra(PyObject* self, PyObject *Py_UNUSED(callable))
} }
// Check the value is initially NULL // Check the value is initially NULL
void *extra; void *extra = UNINITIALIZED_PTR;
int res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra); int res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra);
if (res < 0) { if (res < 0) {
goto finally; goto finally;
@ -87,6 +88,7 @@ test_code_extra(PyObject* self, PyObject *Py_UNUSED(callable))
goto finally; goto finally;
} }
// Assert it was set correctly // Assert it was set correctly
extra = UNINITIALIZED_PTR;
res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra); res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra);
if (res < 0) { if (res < 0) {
goto finally; goto finally;

View file

@ -212,7 +212,7 @@ dict_items(PyObject *self, PyObject *obj)
static PyObject * static PyObject *
dict_next(PyObject *self, PyObject *args) dict_next(PyObject *self, PyObject *args)
{ {
PyObject *mapping, *key, *value; PyObject *mapping, *key = UNINITIALIZED_PTR, *value = UNINITIALIZED_PTR;
Py_ssize_t pos; Py_ssize_t pos;
if (!PyArg_ParseTuple(args, "On", &mapping, &pos)) { if (!PyArg_ParseTuple(args, "On", &mapping, &pos)) {
return NULL; return NULL;
@ -222,6 +222,8 @@ dict_next(PyObject *self, PyObject *args)
if (rc != 0) { if (rc != 0) {
return Py_BuildValue("inOO", rc, pos, key, value); return Py_BuildValue("inOO", rc, pos, key, value);
} }
assert(key == UNINITIALIZED_PTR);
assert(value == UNINITIALIZED_PTR);
if (PyErr_Occurred()) { if (PyErr_Occurred()) {
return NULL; return NULL;
} }

View file

@ -121,12 +121,15 @@ _testcapi_exc_set_object_fetch_impl(PyObject *module, PyObject *exc,
PyObject *obj) PyObject *obj)
/*[clinic end generated code: output=7a5ff5f6d3cf687f input=77ec686f1f95fa38]*/ /*[clinic end generated code: output=7a5ff5f6d3cf687f input=77ec686f1f95fa38]*/
{ {
PyObject *type; PyObject *type = UNINITIALIZED_PTR;
PyObject *value; PyObject *value = UNINITIALIZED_PTR;
PyObject *tb; PyObject *tb = UNINITIALIZED_PTR;
PyErr_SetObject(exc, obj); PyErr_SetObject(exc, obj);
PyErr_Fetch(&type, &value, &tb); PyErr_Fetch(&type, &value, &tb);
assert(type != UNINITIALIZED_PTR);
assert(value != UNINITIALIZED_PTR);
assert(tb != UNINITIALIZED_PTR);
Py_XDECREF(type); Py_XDECREF(type);
Py_XDECREF(tb); Py_XDECREF(tb);
return value; return value;
@ -245,7 +248,7 @@ _testcapi_set_exc_info_impl(PyObject *module, PyObject *new_type,
PyObject *new_value, PyObject *new_tb) PyObject *new_value, PyObject *new_tb)
/*[clinic end generated code: output=b55fa35dec31300e input=ea9f19e0f55fe5b3]*/ /*[clinic end generated code: output=b55fa35dec31300e input=ea9f19e0f55fe5b3]*/
{ {
PyObject *type, *value, *tb; PyObject *type = UNINITIALIZED_PTR, *value = UNINITIALIZED_PTR, *tb = UNINITIALIZED_PTR;
PyErr_GetExcInfo(&type, &value, &tb); PyErr_GetExcInfo(&type, &value, &tb);
Py_INCREF(new_type); Py_INCREF(new_type);

View file

@ -491,7 +491,7 @@ static PyObject *
unicode_aswidecharstring(PyObject *self, PyObject *args) unicode_aswidecharstring(PyObject *self, PyObject *args)
{ {
PyObject *unicode, *result; PyObject *unicode, *result;
Py_ssize_t size = 100; Py_ssize_t size = UNINITIALIZED_SIZE;
wchar_t *buffer; wchar_t *buffer;
if (!PyArg_ParseTuple(args, "O", &unicode)) if (!PyArg_ParseTuple(args, "O", &unicode))
@ -499,8 +499,10 @@ unicode_aswidecharstring(PyObject *self, PyObject *args)
NULLABLE(unicode); NULLABLE(unicode);
buffer = PyUnicode_AsWideCharString(unicode, &size); buffer = PyUnicode_AsWideCharString(unicode, &size);
if (buffer == NULL) if (buffer == NULL) {
assert(size == UNINITIALIZED_SIZE);
return NULL; return NULL;
}
result = PyUnicode_FromWideChar(buffer, size + 1); result = PyUnicode_FromWideChar(buffer, size + 1);
PyMem_Free(buffer); PyMem_Free(buffer);
@ -625,15 +627,17 @@ unicode_asutf8andsize(PyObject *self, PyObject *args)
PyObject *unicode; PyObject *unicode;
Py_ssize_t buflen; Py_ssize_t buflen;
const char *s; const char *s;
Py_ssize_t size = -100; Py_ssize_t size = UNINITIALIZED_SIZE;
if (!PyArg_ParseTuple(args, "On", &unicode, &buflen)) if (!PyArg_ParseTuple(args, "On", &unicode, &buflen))
return NULL; return NULL;
NULLABLE(unicode); NULLABLE(unicode);
s = PyUnicode_AsUTF8AndSize(unicode, &size); s = PyUnicode_AsUTF8AndSize(unicode, &size);
if (s == NULL) if (s == NULL) {
assert(size == UNINITIALIZED_SIZE);
return NULL; return NULL;
}
return Py_BuildValue("(y#n)", s, buflen, size); return Py_BuildValue("(y#n)", s, buflen, size);
} }
@ -735,7 +739,7 @@ unicode_decodeutf7stateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
Py_ssize_t consumed; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors)) if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors))
@ -743,6 +747,7 @@ unicode_decodeutf7stateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeUTF7Stateful(data, size, errors, &consumed); result = PyUnicode_DecodeUTF7Stateful(data, size, errors, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(Nn)", result, consumed); return Py_BuildValue("(Nn)", result, consumed);
@ -769,7 +774,7 @@ unicode_decodeutf8stateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
Py_ssize_t consumed = 123456789; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors)) if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors))
@ -777,6 +782,7 @@ unicode_decodeutf8stateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeUTF8Stateful(data, size, errors, &consumed); result = PyUnicode_DecodeUTF8Stateful(data, size, errors, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(Nn)", result, consumed); return Py_BuildValue("(Nn)", result, consumed);
@ -797,7 +803,7 @@ unicode_decodeutf32(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
int byteorder; int byteorder = UNINITIALIZED_INT;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors)) if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors))
@ -817,8 +823,8 @@ unicode_decodeutf32stateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
int byteorder; int byteorder = UNINITIALIZED_INT;
Py_ssize_t consumed; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors)) if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors))
@ -826,6 +832,7 @@ unicode_decodeutf32stateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeUTF32Stateful(data, size, errors, &byteorder, &consumed); result = PyUnicode_DecodeUTF32Stateful(data, size, errors, &byteorder, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(iNn)", byteorder, result, consumed); return Py_BuildValue("(iNn)", byteorder, result, consumed);
@ -846,7 +853,7 @@ unicode_decodeutf16(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
int byteorder = 0; int byteorder = UNINITIALIZED_INT;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors)) if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors))
@ -866,8 +873,8 @@ unicode_decodeutf16stateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
int byteorder; int byteorder = UNINITIALIZED_INT;
Py_ssize_t consumed; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors)) if (!PyArg_ParseTuple(args, "iy#|z", &byteorder, &data, &size, &errors))
@ -875,6 +882,7 @@ unicode_decodeutf16stateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeUTF16Stateful(data, size, errors, &byteorder, &consumed); result = PyUnicode_DecodeUTF16Stateful(data, size, errors, &byteorder, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(iNn)", byteorder, result, consumed); return Py_BuildValue("(iNn)", byteorder, result, consumed);
@ -1028,7 +1036,7 @@ unicode_decodembcsstateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
Py_ssize_t consumed; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors)) if (!PyArg_ParseTuple(args, "y#|z", &data, &size, &errors))
@ -1036,6 +1044,7 @@ unicode_decodembcsstateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeMBCSStateful(data, size, errors, &consumed); result = PyUnicode_DecodeMBCSStateful(data, size, errors, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(Nn)", result, consumed); return Py_BuildValue("(Nn)", result, consumed);
@ -1049,7 +1058,7 @@ unicode_decodecodepagestateful(PyObject *self, PyObject *args)
const char *data; const char *data;
Py_ssize_t size; Py_ssize_t size;
const char *errors = NULL; const char *errors = NULL;
Py_ssize_t consumed; Py_ssize_t consumed = UNINITIALIZED_SIZE;
PyObject *result; PyObject *result;
if (!PyArg_ParseTuple(args, "iy#|z", &code_page, &data, &size, &errors)) if (!PyArg_ParseTuple(args, "iy#|z", &code_page, &data, &size, &errors))
@ -1057,6 +1066,7 @@ unicode_decodecodepagestateful(PyObject *self, PyObject *args)
result = PyUnicode_DecodeCodePageStateful(code_page, data, size, errors, &consumed); result = PyUnicode_DecodeCodePageStateful(code_page, data, size, errors, &consumed);
if (!result) { if (!result) {
assert(consumed == UNINITIALIZED_SIZE);
return NULL; return NULL;
} }
return Py_BuildValue("(Nn)", result, consumed); return Py_BuildValue("(Nn)", result, consumed);

View file

@ -23,3 +23,10 @@
assert(!PyErr_Occurred()); \ assert(!PyErr_Occurred()); \
return PyLong_FromSsize_t(_ret); \ return PyLong_FromSsize_t(_ret); \
} while (0) } while (0)
/* Marker to check that pointer value was set. */
#define UNINITIALIZED_PTR ((void *)"uninitialized")
/* Marker to check that Py_ssize_t value was set. */
#define UNINITIALIZED_SIZE ((Py_ssize_t)236892191)
/* Marker to check that integer value was set. */
#define UNINITIALIZED_INT (63256717)

View file

@ -221,10 +221,13 @@ test_dict_inner(int count)
Py_DECREF(v); Py_DECREF(v);
} }
k = v = UNINITIALIZED_PTR;
while (PyDict_Next(dict, &pos, &k, &v)) { while (PyDict_Next(dict, &pos, &k, &v)) {
PyObject *o; PyObject *o;
iterations++; iterations++;
assert(k != UNINITIALIZED_PTR);
assert(v != UNINITIALIZED_PTR);
i = PyLong_AS_LONG(v) + 1; i = PyLong_AS_LONG(v) + 1;
o = PyLong_FromLong(i); o = PyLong_FromLong(i);
if (o == NULL) if (o == NULL)
@ -234,7 +237,10 @@ test_dict_inner(int count)
return -1; return -1;
} }
Py_DECREF(o); Py_DECREF(o);
k = v = UNINITIALIZED_PTR;
} }
assert(k == UNINITIALIZED_PTR);
assert(v == UNINITIALIZED_PTR);
Py_DECREF(dict); Py_DECREF(dict);