Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * C Extension module to test Python interpreter C APIs. |
| 3 | * |
| 4 | * The 'test_*' functions exported by this module are run as part of the |
| 5 | * standard Python regression test, via Lib/test/test_capi.py. |
| 6 | */ |
| 7 | |
| 8 | #include "Python.h" |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 9 | #include <float.h> |
| 10 | #include "structmember.h" |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 11 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 12 | #ifdef WITH_THREAD |
| 13 | #include "pythread.h" |
| 14 | #endif /* WITH_THREAD */ |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 15 | static PyObject *TestError; /* set to exception object in init */ |
| 16 | |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 17 | /* Raise TestError with test_name + ": " + msg, and return NULL. */ |
| 18 | |
| 19 | static PyObject * |
| 20 | raiseTestError(const char* test_name, const char* msg) |
| 21 | { |
| 22 | char buf[2048]; |
| 23 | |
| 24 | if (strlen(test_name) + strlen(msg) > sizeof(buf) - 50) |
| 25 | PyErr_SetString(TestError, "internal error msg too large"); |
| 26 | else { |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 27 | PyOS_snprintf(buf, sizeof(buf), "%s: %s", test_name, msg); |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 28 | PyErr_SetString(TestError, buf); |
| 29 | } |
| 30 | return NULL; |
| 31 | } |
| 32 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 33 | /* Test #defines from pyconfig.h (particularly the SIZEOF_* defines). |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 34 | |
| 35 | The ones derived from autoconf on the UNIX-like OSes can be relied |
| 36 | upon (in the absence of sloppy cross-compiling), but the Windows |
| 37 | platforms have these hardcoded. Better safe than sorry. |
| 38 | */ |
| 39 | static PyObject* |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 40 | sizeof_error(const char* fatname, const char* typname, |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 41 | int expected, int got) |
| 42 | { |
| 43 | char buf[1024]; |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 44 | PyOS_snprintf(buf, sizeof(buf), |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 45 | "%.200s #define == %d but sizeof(%.200s) == %d", |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 46 | fatname, expected, typname, got); |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 47 | PyErr_SetString(TestError, buf); |
| 48 | return (PyObject*)NULL; |
| 49 | } |
| 50 | |
| 51 | static PyObject* |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 52 | test_config(PyObject *self) |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 53 | { |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 54 | #define CHECK_SIZEOF(FATNAME, TYPE) \ |
| 55 | if (FATNAME != sizeof(TYPE)) \ |
| 56 | return sizeof_error(#FATNAME, #TYPE, FATNAME, sizeof(TYPE)) |
| 57 | |
Tim Peters | 208efe5 | 2001-06-26 22:40:47 +0000 | [diff] [blame] | 58 | CHECK_SIZEOF(SIZEOF_SHORT, short); |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 59 | CHECK_SIZEOF(SIZEOF_INT, int); |
| 60 | CHECK_SIZEOF(SIZEOF_LONG, long); |
| 61 | CHECK_SIZEOF(SIZEOF_VOID_P, void*); |
| 62 | CHECK_SIZEOF(SIZEOF_TIME_T, time_t); |
| 63 | #ifdef HAVE_LONG_LONG |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 64 | CHECK_SIZEOF(SIZEOF_LONG_LONG, PY_LONG_LONG); |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 65 | #endif |
| 66 | |
| 67 | #undef CHECK_SIZEOF |
| 68 | |
| 69 | Py_INCREF(Py_None); |
| 70 | return Py_None; |
| 71 | } |
| 72 | |
Tim Peters | 5c4d5bf | 2001-02-12 22:13:26 +0000 | [diff] [blame] | 73 | static PyObject* |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 74 | test_list_api(PyObject *self) |
Tim Peters | 5c4d5bf | 2001-02-12 22:13:26 +0000 | [diff] [blame] | 75 | { |
| 76 | PyObject* list; |
| 77 | int i; |
Tim Peters | 5c4d5bf | 2001-02-12 22:13:26 +0000 | [diff] [blame] | 78 | |
| 79 | /* SF bug 132008: PyList_Reverse segfaults */ |
| 80 | #define NLIST 30 |
| 81 | list = PyList_New(NLIST); |
| 82 | if (list == (PyObject*)NULL) |
| 83 | return (PyObject*)NULL; |
| 84 | /* list = range(NLIST) */ |
| 85 | for (i = 0; i < NLIST; ++i) { |
| 86 | PyObject* anint = PyInt_FromLong(i); |
| 87 | if (anint == (PyObject*)NULL) { |
| 88 | Py_DECREF(list); |
| 89 | return (PyObject*)NULL; |
| 90 | } |
| 91 | PyList_SET_ITEM(list, i, anint); |
| 92 | } |
| 93 | /* list.reverse(), via PyList_Reverse() */ |
| 94 | i = PyList_Reverse(list); /* should not blow up! */ |
| 95 | if (i != 0) { |
| 96 | Py_DECREF(list); |
| 97 | return (PyObject*)NULL; |
| 98 | } |
| 99 | /* Check that list == range(29, -1, -1) now */ |
| 100 | for (i = 0; i < NLIST; ++i) { |
| 101 | PyObject* anint = PyList_GET_ITEM(list, i); |
| 102 | if (PyInt_AS_LONG(anint) != NLIST-1-i) { |
| 103 | PyErr_SetString(TestError, |
| 104 | "test_list_api: reverse screwed up"); |
| 105 | Py_DECREF(list); |
| 106 | return (PyObject*)NULL; |
| 107 | } |
| 108 | } |
| 109 | Py_DECREF(list); |
| 110 | #undef NLIST |
| 111 | |
| 112 | Py_INCREF(Py_None); |
| 113 | return Py_None; |
| 114 | } |
| 115 | |
Guido van Rossum | eb0d992 | 2001-04-13 17:08:15 +0000 | [diff] [blame] | 116 | static int |
| 117 | test_dict_inner(int count) |
| 118 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 119 | Py_ssize_t pos = 0, iterations = 0; |
| 120 | int i; |
Guido van Rossum | eb0d992 | 2001-04-13 17:08:15 +0000 | [diff] [blame] | 121 | PyObject *dict = PyDict_New(); |
| 122 | PyObject *v, *k; |
| 123 | |
| 124 | if (dict == NULL) |
| 125 | return -1; |
| 126 | |
| 127 | for (i = 0; i < count; i++) { |
| 128 | v = PyInt_FromLong(i); |
| 129 | PyDict_SetItem(dict, v, v); |
| 130 | Py_DECREF(v); |
| 131 | } |
| 132 | |
| 133 | while (PyDict_Next(dict, &pos, &k, &v)) { |
| 134 | PyObject *o; |
| 135 | iterations++; |
| 136 | |
| 137 | i = PyInt_AS_LONG(v) + 1; |
| 138 | o = PyInt_FromLong(i); |
| 139 | if (o == NULL) |
| 140 | return -1; |
| 141 | if (PyDict_SetItem(dict, k, o) < 0) { |
| 142 | Py_DECREF(o); |
| 143 | return -1; |
| 144 | } |
| 145 | Py_DECREF(o); |
| 146 | } |
| 147 | |
| 148 | Py_DECREF(dict); |
| 149 | |
| 150 | if (iterations != count) { |
| 151 | PyErr_SetString( |
| 152 | TestError, |
| 153 | "test_dict_iteration: dict iteration went wrong "); |
| 154 | return -1; |
| 155 | } else { |
| 156 | return 0; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | static PyObject* |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 161 | test_dict_iteration(PyObject* self) |
Guido van Rossum | eb0d992 | 2001-04-13 17:08:15 +0000 | [diff] [blame] | 162 | { |
| 163 | int i; |
| 164 | |
Guido van Rossum | eb0d992 | 2001-04-13 17:08:15 +0000 | [diff] [blame] | 165 | for (i = 0; i < 200; i++) { |
| 166 | if (test_dict_inner(i) < 0) { |
| 167 | return NULL; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | Py_INCREF(Py_None); |
| 172 | return Py_None; |
| 173 | } |
| 174 | |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 175 | |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 176 | /* Tests of PyLong_{As, From}{Unsigned,}Long(), and (#ifdef HAVE_LONG_LONG) |
Tim Peters | ff70d3c | 2001-06-14 01:11:03 +0000 | [diff] [blame] | 177 | PyLong_{As, From}{Unsigned,}LongLong(). |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 178 | |
| 179 | Note that the meat of the test is contained in testcapi_long.h. |
| 180 | This is revolting, but delicate code duplication is worse: "almost |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 181 | exactly the same" code is needed to test PY_LONG_LONG, but the ubiquitous |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 182 | dependence on type names makes it impossible to use a parameterized |
| 183 | function. A giant macro would be even worse than this. A C++ template |
| 184 | would be perfect. |
| 185 | |
| 186 | The "report an error" functions are deliberately not part of the #include |
| 187 | file: if the test fails, you can set a breakpoint in the appropriate |
| 188 | error function directly, and crawl back from there in the debugger. |
| 189 | */ |
| 190 | |
| 191 | #define UNBIND(X) Py_DECREF(X); (X) = NULL |
| 192 | |
| 193 | static PyObject * |
| 194 | raise_test_long_error(const char* msg) |
| 195 | { |
| 196 | return raiseTestError("test_long_api", msg); |
| 197 | } |
| 198 | |
| 199 | #define TESTNAME test_long_api_inner |
| 200 | #define TYPENAME long |
| 201 | #define F_S_TO_PY PyLong_FromLong |
| 202 | #define F_PY_TO_S PyLong_AsLong |
| 203 | #define F_U_TO_PY PyLong_FromUnsignedLong |
| 204 | #define F_PY_TO_U PyLong_AsUnsignedLong |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 205 | |
| 206 | #include "testcapi_long.h" |
| 207 | |
| 208 | static PyObject * |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 209 | test_long_api(PyObject* self) |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 210 | { |
Tim Peters | 83c9edc | 2001-06-16 08:10:13 +0000 | [diff] [blame] | 211 | return TESTNAME(raise_test_long_error); |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | #undef TESTNAME |
| 215 | #undef TYPENAME |
| 216 | #undef F_S_TO_PY |
| 217 | #undef F_PY_TO_S |
| 218 | #undef F_U_TO_PY |
| 219 | #undef F_PY_TO_U |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 220 | |
| 221 | #ifdef HAVE_LONG_LONG |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 222 | |
| 223 | static PyObject * |
Tim Peters | d1a7da6 | 2001-06-13 00:35:57 +0000 | [diff] [blame] | 224 | raise_test_longlong_error(const char* msg) |
| 225 | { |
| 226 | return raiseTestError("test_longlong_api", msg); |
| 227 | } |
| 228 | |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 229 | #define TESTNAME test_longlong_api_inner |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 230 | #define TYPENAME PY_LONG_LONG |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 231 | #define F_S_TO_PY PyLong_FromLongLong |
| 232 | #define F_PY_TO_S PyLong_AsLongLong |
| 233 | #define F_U_TO_PY PyLong_FromUnsignedLongLong |
| 234 | #define F_PY_TO_U PyLong_AsUnsignedLongLong |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 235 | |
| 236 | #include "testcapi_long.h" |
Tim Peters | d1a7da6 | 2001-06-13 00:35:57 +0000 | [diff] [blame] | 237 | |
| 238 | static PyObject * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 239 | test_longlong_api(PyObject* self, PyObject *args) |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 240 | { |
Tim Peters | 83c9edc | 2001-06-16 08:10:13 +0000 | [diff] [blame] | 241 | return TESTNAME(raise_test_longlong_error); |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 244 | #undef TESTNAME |
| 245 | #undef TYPENAME |
| 246 | #undef F_S_TO_PY |
| 247 | #undef F_PY_TO_S |
| 248 | #undef F_U_TO_PY |
| 249 | #undef F_PY_TO_U |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 250 | |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 251 | /* Test the L code for PyArg_ParseTuple. This should deliver a PY_LONG_LONG |
Tim Peters | d38b1c7 | 2001-09-30 05:09:37 +0000 | [diff] [blame] | 252 | for both long and int arguments. The test may leak a little memory if |
| 253 | it fails. |
| 254 | */ |
| 255 | static PyObject * |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 256 | test_L_code(PyObject *self) |
Tim Peters | d38b1c7 | 2001-09-30 05:09:37 +0000 | [diff] [blame] | 257 | { |
| 258 | PyObject *tuple, *num; |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 259 | PY_LONG_LONG value; |
Tim Peters | d38b1c7 | 2001-09-30 05:09:37 +0000 | [diff] [blame] | 260 | |
Tim Peters | d38b1c7 | 2001-09-30 05:09:37 +0000 | [diff] [blame] | 261 | tuple = PyTuple_New(1); |
| 262 | if (tuple == NULL) |
| 263 | return NULL; |
| 264 | |
| 265 | num = PyLong_FromLong(42); |
| 266 | if (num == NULL) |
| 267 | return NULL; |
| 268 | |
| 269 | PyTuple_SET_ITEM(tuple, 0, num); |
| 270 | |
| 271 | value = -1; |
| 272 | if (PyArg_ParseTuple(tuple, "L:test_L_code", &value) < 0) |
| 273 | return NULL; |
| 274 | if (value != 42) |
| 275 | return raiseTestError("test_L_code", |
| 276 | "L code returned wrong value for long 42"); |
| 277 | |
| 278 | Py_DECREF(num); |
| 279 | num = PyInt_FromLong(42); |
| 280 | if (num == NULL) |
| 281 | return NULL; |
| 282 | |
| 283 | PyTuple_SET_ITEM(tuple, 0, num); |
| 284 | |
| 285 | value = -1; |
| 286 | if (PyArg_ParseTuple(tuple, "L:test_L_code", &value) < 0) |
| 287 | return NULL; |
| 288 | if (value != 42) |
| 289 | return raiseTestError("test_L_code", |
| 290 | "L code returned wrong value for int 42"); |
| 291 | |
| 292 | Py_DECREF(tuple); |
| 293 | Py_INCREF(Py_None); |
| 294 | return Py_None; |
| 295 | } |
| 296 | |
Tim Peters | e7c1f9b | 2001-06-14 00:55:41 +0000 | [diff] [blame] | 297 | #endif /* ifdef HAVE_LONG_LONG */ |
| 298 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 299 | /* Test tuple argument processing */ |
| 300 | static PyObject * |
| 301 | getargs_tuple(PyObject *self, PyObject *args) |
| 302 | { |
| 303 | int a, b, c; |
| 304 | if (!PyArg_ParseTuple(args, "i(ii)", &a, &b, &c)) |
| 305 | return NULL; |
| 306 | return Py_BuildValue("iii", a, b, c); |
| 307 | } |
| 308 | |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 309 | /* Functions to call PyArg_ParseTuple with integer format codes, |
| 310 | and return the result. |
| 311 | */ |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 312 | static PyObject * |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 313 | getargs_b(PyObject *self, PyObject *args) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 314 | { |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 315 | unsigned char value; |
| 316 | if (!PyArg_ParseTuple(args, "b", &value)) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 317 | return NULL; |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 318 | return PyLong_FromUnsignedLong((unsigned long)value); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 321 | static PyObject * |
| 322 | getargs_B(PyObject *self, PyObject *args) |
| 323 | { |
| 324 | unsigned char value; |
| 325 | if (!PyArg_ParseTuple(args, "B", &value)) |
| 326 | return NULL; |
| 327 | return PyLong_FromUnsignedLong((unsigned long)value); |
| 328 | } |
| 329 | |
| 330 | static PyObject * |
| 331 | getargs_H(PyObject *self, PyObject *args) |
| 332 | { |
| 333 | unsigned short value; |
| 334 | if (!PyArg_ParseTuple(args, "H", &value)) |
| 335 | return NULL; |
| 336 | return PyLong_FromUnsignedLong((unsigned long)value); |
| 337 | } |
| 338 | |
| 339 | static PyObject * |
| 340 | getargs_I(PyObject *self, PyObject *args) |
| 341 | { |
| 342 | unsigned int value; |
| 343 | if (!PyArg_ParseTuple(args, "I", &value)) |
| 344 | return NULL; |
| 345 | return PyLong_FromUnsignedLong((unsigned long)value); |
| 346 | } |
| 347 | |
| 348 | static PyObject * |
| 349 | getargs_k(PyObject *self, PyObject *args) |
| 350 | { |
| 351 | unsigned long value; |
| 352 | if (!PyArg_ParseTuple(args, "k", &value)) |
| 353 | return NULL; |
| 354 | return PyLong_FromUnsignedLong(value); |
| 355 | } |
| 356 | |
| 357 | static PyObject * |
| 358 | getargs_i(PyObject *self, PyObject *args) |
| 359 | { |
| 360 | int value; |
| 361 | if (!PyArg_ParseTuple(args, "i", &value)) |
| 362 | return NULL; |
| 363 | return PyLong_FromLong((long)value); |
| 364 | } |
| 365 | |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 366 | static PyObject * |
| 367 | getargs_l(PyObject *self, PyObject *args) |
| 368 | { |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 369 | long value; |
| 370 | if (!PyArg_ParseTuple(args, "l", &value)) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 371 | return NULL; |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 372 | return PyLong_FromLong(value); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 375 | static PyObject * |
| 376 | getargs_n(PyObject *self, PyObject *args) |
| 377 | { |
| 378 | Py_ssize_t value; |
| 379 | if (!PyArg_ParseTuple(args, "n", &value)) |
| 380 | return NULL; |
| 381 | return PyInt_FromSsize_t(value); |
| 382 | } |
| 383 | |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 384 | #ifdef HAVE_LONG_LONG |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 385 | static PyObject * |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 386 | getargs_L(PyObject *self, PyObject *args) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 387 | { |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 388 | PY_LONG_LONG value; |
| 389 | if (!PyArg_ParseTuple(args, "L", &value)) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 390 | return NULL; |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 391 | return PyLong_FromLongLong(value); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 394 | static PyObject * |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 395 | getargs_K(PyObject *self, PyObject *args) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 396 | { |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 397 | unsigned PY_LONG_LONG value; |
| 398 | if (!PyArg_ParseTuple(args, "K", &value)) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 399 | return NULL; |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 400 | return PyLong_FromUnsignedLongLong(value); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 401 | } |
| 402 | #endif |
| 403 | |
| 404 | /* This function not only tests the 'k' getargs code, but also the |
| 405 | PyInt_AsUnsignedLongMask() and PyInt_AsUnsignedLongMask() functions. */ |
| 406 | static PyObject * |
| 407 | test_k_code(PyObject *self) |
| 408 | { |
| 409 | PyObject *tuple, *num; |
| 410 | unsigned long value; |
| 411 | |
| 412 | tuple = PyTuple_New(1); |
| 413 | if (tuple == NULL) |
| 414 | return NULL; |
| 415 | |
Neal Norwitz | 699cbb7 | 2003-04-22 01:28:57 +0000 | [diff] [blame] | 416 | /* a number larger than ULONG_MAX even on 64-bit platforms */ |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 417 | num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); |
| 418 | if (num == NULL) |
| 419 | return NULL; |
| 420 | |
| 421 | value = PyInt_AsUnsignedLongMask(num); |
Neal Norwitz | 699cbb7 | 2003-04-22 01:28:57 +0000 | [diff] [blame] | 422 | if (value != ULONG_MAX) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 423 | return raiseTestError("test_k_code", |
| 424 | "PyInt_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF"); |
| 425 | |
| 426 | PyTuple_SET_ITEM(tuple, 0, num); |
| 427 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 428 | value = 0; |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 429 | if (PyArg_ParseTuple(tuple, "k:test_k_code", &value) < 0) |
| 430 | return NULL; |
Neal Norwitz | 699cbb7 | 2003-04-22 01:28:57 +0000 | [diff] [blame] | 431 | if (value != ULONG_MAX) |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 432 | return raiseTestError("test_k_code", |
| 433 | "k code returned wrong value for long 0xFFF...FFF"); |
| 434 | |
| 435 | Py_DECREF(num); |
| 436 | num = PyLong_FromString("-FFFFFFFF000000000000000042", NULL, 16); |
| 437 | if (num == NULL) |
| 438 | return NULL; |
| 439 | |
| 440 | value = PyInt_AsUnsignedLongMask(num); |
| 441 | if (value != (unsigned long)-0x42) |
| 442 | return raiseTestError("test_k_code", |
| 443 | "PyInt_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF"); |
| 444 | |
| 445 | PyTuple_SET_ITEM(tuple, 0, num); |
| 446 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 447 | value = 0; |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 448 | if (PyArg_ParseTuple(tuple, "k:test_k_code", &value) < 0) |
| 449 | return NULL; |
| 450 | if (value != (unsigned long)-0x42) |
| 451 | return raiseTestError("test_k_code", |
| 452 | "k code returned wrong value for long -0xFFF..000042"); |
| 453 | |
| 454 | Py_DECREF(tuple); |
| 455 | Py_INCREF(Py_None); |
| 456 | return Py_None; |
| 457 | } |
| 458 | |
Marc-André Lemburg | 3e3eacb | 2002-01-09 16:21:27 +0000 | [diff] [blame] | 459 | |
| 460 | /* Test the u and u# codes for PyArg_ParseTuple. May leak memory in case |
| 461 | of an error. |
| 462 | */ |
| 463 | static PyObject * |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 464 | test_u_code(PyObject *self) |
Marc-André Lemburg | 3e3eacb | 2002-01-09 16:21:27 +0000 | [diff] [blame] | 465 | { |
| 466 | PyObject *tuple, *obj; |
| 467 | Py_UNICODE *value; |
| 468 | int len; |
| 469 | |
Marc-André Lemburg | 3e3eacb | 2002-01-09 16:21:27 +0000 | [diff] [blame] | 470 | tuple = PyTuple_New(1); |
| 471 | if (tuple == NULL) |
| 472 | return NULL; |
| 473 | |
| 474 | obj = PyUnicode_Decode("test", strlen("test"), |
| 475 | "ascii", NULL); |
| 476 | if (obj == NULL) |
| 477 | return NULL; |
| 478 | |
| 479 | PyTuple_SET_ITEM(tuple, 0, obj); |
| 480 | |
| 481 | value = 0; |
| 482 | if (PyArg_ParseTuple(tuple, "u:test_u_code", &value) < 0) |
| 483 | return NULL; |
| 484 | if (value != PyUnicode_AS_UNICODE(obj)) |
| 485 | return raiseTestError("test_u_code", |
| 486 | "u code returned wrong value for u'test'"); |
| 487 | value = 0; |
| 488 | if (PyArg_ParseTuple(tuple, "u#:test_u_code", &value, &len) < 0) |
| 489 | return NULL; |
| 490 | if (value != PyUnicode_AS_UNICODE(obj) || |
| 491 | len != PyUnicode_GET_SIZE(obj)) |
| 492 | return raiseTestError("test_u_code", |
| 493 | "u# code returned wrong values for u'test'"); |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 494 | |
Marc-André Lemburg | 3e3eacb | 2002-01-09 16:21:27 +0000 | [diff] [blame] | 495 | Py_DECREF(tuple); |
| 496 | Py_INCREF(Py_None); |
| 497 | return Py_None; |
| 498 | } |
| 499 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 500 | static PyObject * |
| 501 | codec_incrementalencoder(PyObject *self, PyObject *args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 502 | { |
| 503 | const char *encoding, *errors = NULL; |
| 504 | if (!PyArg_ParseTuple(args, "s|s:test_incrementalencoder", |
| 505 | &encoding, &errors)) |
| 506 | return NULL; |
| 507 | return PyCodec_IncrementalEncoder(encoding, errors); |
| 508 | } |
| 509 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 510 | static PyObject * |
| 511 | codec_incrementaldecoder(PyObject *self, PyObject *args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 512 | { |
| 513 | const char *encoding, *errors = NULL; |
| 514 | if (!PyArg_ParseTuple(args, "s|s:test_incrementaldecoder", |
| 515 | &encoding, &errors)) |
| 516 | return NULL; |
| 517 | return PyCodec_IncrementalDecoder(encoding, errors); |
| 518 | } |
| 519 | |
Marc-André Lemburg | 3e3eacb | 2002-01-09 16:21:27 +0000 | [diff] [blame] | 520 | |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 521 | /* Simple test of _PyLong_NumBits and _PyLong_Sign. */ |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 522 | static PyObject * |
| 523 | test_long_numbits(PyObject *self) |
| 524 | { |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 525 | struct triple { |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 526 | long input; |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 527 | size_t nbits; |
| 528 | int sign; |
| 529 | } testcases[] = {{0, 0, 0}, |
| 530 | {1L, 1, 1}, |
| 531 | {-1L, 1, -1}, |
| 532 | {2L, 2, 1}, |
| 533 | {-2L, 2, -1}, |
| 534 | {3L, 2, 1}, |
| 535 | {-3L, 2, -1}, |
| 536 | {4L, 3, 1}, |
| 537 | {-4L, 3, -1}, |
| 538 | {0x7fffL, 15, 1}, /* one Python long digit */ |
| 539 | {-0x7fffL, 15, -1}, |
| 540 | {0xffffL, 16, 1}, |
| 541 | {-0xffffL, 16, -1}, |
| 542 | {0xfffffffL, 28, 1}, |
| 543 | {-0xfffffffL, 28, -1}}; |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 544 | int i; |
| 545 | |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 546 | for (i = 0; i < sizeof(testcases) / sizeof(struct triple); ++i) { |
| 547 | PyObject *plong = PyLong_FromLong(testcases[i].input); |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 548 | size_t nbits = _PyLong_NumBits(plong); |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 549 | int sign = _PyLong_Sign(plong); |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 550 | |
| 551 | Py_DECREF(plong); |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 552 | if (nbits != testcases[i].nbits) |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 553 | return raiseTestError("test_long_numbits", |
Tim Peters | 5b8132f | 2003-01-31 15:52:05 +0000 | [diff] [blame] | 554 | "wrong result for _PyLong_NumBits"); |
| 555 | if (sign != testcases[i].sign) |
| 556 | return raiseTestError("test_long_numbits", |
| 557 | "wrong result for _PyLong_Sign"); |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 558 | } |
| 559 | Py_INCREF(Py_None); |
| 560 | return Py_None; |
| 561 | } |
| 562 | |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 563 | /* Example passing NULLs to PyObject_Str(NULL) and PyObject_Unicode(NULL). */ |
| 564 | |
| 565 | static PyObject * |
| 566 | test_null_strings(PyObject *self) |
| 567 | { |
| 568 | PyObject *o1 = PyObject_Str(NULL), *o2 = PyObject_Unicode(NULL); |
| 569 | PyObject *tuple = PyTuple_Pack(2, o1, o2); |
| 570 | Py_XDECREF(o1); |
| 571 | Py_XDECREF(o2); |
| 572 | return tuple; |
| 573 | } |
| 574 | |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 575 | static PyObject * |
| 576 | raise_exception(PyObject *self, PyObject *args) |
| 577 | { |
| 578 | PyObject *exc; |
| 579 | PyObject *exc_args, *v; |
| 580 | int num_args, i; |
| 581 | |
| 582 | if (!PyArg_ParseTuple(args, "Oi:raise_exception", |
| 583 | &exc, &num_args)) |
| 584 | return NULL; |
| 585 | |
| 586 | exc_args = PyTuple_New(num_args); |
| 587 | if (exc_args == NULL) |
| 588 | return NULL; |
| 589 | for (i = 0; i < num_args; ++i) { |
| 590 | v = PyInt_FromLong(i); |
| 591 | if (v == NULL) { |
| 592 | Py_DECREF(exc_args); |
| 593 | return NULL; |
| 594 | } |
| 595 | PyTuple_SET_ITEM(exc_args, i, v); |
| 596 | } |
| 597 | PyErr_SetObject(exc, exc_args); |
Michael W. Hudson | f02bcee | 2003-08-15 13:03:30 +0000 | [diff] [blame] | 598 | Py_DECREF(exc_args); |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 599 | return NULL; |
| 600 | } |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 601 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 602 | #ifdef WITH_THREAD |
| 603 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 604 | /* test_thread_state spawns a thread of its own, and that thread releases |
| 605 | * `thread_done` when it's finished. The driver code has to know when the |
| 606 | * thread finishes, because the thread uses a PyObject (the callable) that |
| 607 | * may go away when the driver finishes. The former lack of this explicit |
| 608 | * synchronization caused rare segfaults, so rare that they were seen only |
| 609 | * on a Mac buildbot (although they were possible on any box). |
| 610 | */ |
| 611 | static PyThread_type_lock thread_done = NULL; |
| 612 | |
| 613 | static void |
| 614 | _make_call(void *callable) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 615 | { |
| 616 | PyObject *rc; |
| 617 | PyGILState_STATE s = PyGILState_Ensure(); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 618 | rc = PyObject_CallFunction((PyObject *)callable, ""); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 619 | Py_XDECREF(rc); |
| 620 | PyGILState_Release(s); |
| 621 | } |
| 622 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 623 | /* Same thing, but releases `thread_done` when it returns. This variant |
| 624 | * should be called only from threads spawned by test_thread_state(). |
| 625 | */ |
| 626 | static void |
| 627 | _make_call_from_thread(void *callable) |
| 628 | { |
| 629 | _make_call(callable); |
| 630 | PyThread_release_lock(thread_done); |
| 631 | } |
| 632 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 633 | static PyObject * |
| 634 | test_thread_state(PyObject *self, PyObject *args) |
| 635 | { |
| 636 | PyObject *fn; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 637 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 638 | if (!PyArg_ParseTuple(args, "O:test_thread_state", &fn)) |
| 639 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 640 | |
| 641 | /* Ensure Python is set up for threading */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 642 | PyEval_InitThreads(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 643 | thread_done = PyThread_allocate_lock(); |
| 644 | if (thread_done == NULL) |
| 645 | return PyErr_NoMemory(); |
| 646 | PyThread_acquire_lock(thread_done, 1); |
| 647 | |
| 648 | /* Start a new thread with our callback. */ |
| 649 | PyThread_start_new_thread(_make_call_from_thread, fn); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 650 | /* Make the callback with the thread lock held by this thread */ |
| 651 | _make_call(fn); |
| 652 | /* Do it all again, but this time with the thread-lock released */ |
| 653 | Py_BEGIN_ALLOW_THREADS |
| 654 | _make_call(fn); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 655 | PyThread_acquire_lock(thread_done, 1); /* wait for thread to finish */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 656 | Py_END_ALLOW_THREADS |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 657 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 658 | /* And once more with and without a thread |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 659 | XXX - should use a lock and work out exactly what we are trying |
| 660 | to test <wink> |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 661 | */ |
| 662 | Py_BEGIN_ALLOW_THREADS |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 663 | PyThread_start_new_thread(_make_call_from_thread, fn); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 664 | _make_call(fn); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 665 | PyThread_acquire_lock(thread_done, 1); /* wait for thread to finish */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 666 | Py_END_ALLOW_THREADS |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 667 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 668 | /* Release lock we acquired above. This is required on HP-UX. */ |
| 669 | PyThread_release_lock(thread_done); |
| 670 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 671 | PyThread_free_lock(thread_done); |
| 672 | Py_RETURN_NONE; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 673 | } |
| 674 | #endif |
| 675 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 676 | /* Some tests of PyString_FromFormat(). This needs more tests. */ |
| 677 | static PyObject * |
| 678 | test_string_from_format(PyObject *self, PyObject *args) |
| 679 | { |
| 680 | PyObject *result; |
| 681 | char *msg; |
| 682 | |
| 683 | #define CHECK_1_FORMAT(FORMAT, TYPE) \ |
| 684 | result = PyString_FromFormat(FORMAT, (TYPE)1); \ |
| 685 | if (result == NULL) \ |
| 686 | return NULL; \ |
| 687 | if (strcmp(PyString_AsString(result), "1")) { \ |
| 688 | msg = FORMAT " failed at 1"; \ |
| 689 | goto Fail; \ |
| 690 | } \ |
| 691 | Py_DECREF(result) |
| 692 | |
| 693 | CHECK_1_FORMAT("%d", int); |
| 694 | CHECK_1_FORMAT("%ld", long); |
| 695 | /* The z width modifier was added in Python 2.5. */ |
| 696 | CHECK_1_FORMAT("%zd", Py_ssize_t); |
| 697 | |
| 698 | /* The u type code was added in Python 2.5. */ |
| 699 | CHECK_1_FORMAT("%u", unsigned int); |
| 700 | CHECK_1_FORMAT("%lu", unsigned long); |
| 701 | CHECK_1_FORMAT("%zu", size_t); |
| 702 | |
| 703 | Py_RETURN_NONE; |
| 704 | |
| 705 | Fail: |
| 706 | Py_XDECREF(result); |
| 707 | return raiseTestError("test_string_from_format", msg); |
| 708 | |
| 709 | #undef CHECK_1_FORMAT |
| 710 | } |
| 711 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 712 | /* This is here to provide a docstring for test_descr. */ |
| 713 | static PyObject * |
| 714 | test_with_docstring(PyObject *self) |
| 715 | { |
| 716 | Py_RETURN_NONE; |
| 717 | } |
| 718 | |
Guido van Rossum | ddefaf3 | 2007-01-14 03:31:43 +0000 | [diff] [blame] | 719 | #ifdef HAVE_GETTIMEOFDAY |
| 720 | /* Profiling of integer performance */ |
| 721 | void print_delta(int test, struct timeval *s, struct timeval *e) |
| 722 | { |
| 723 | e->tv_sec -= s->tv_sec; |
| 724 | e->tv_usec -= s->tv_usec; |
| 725 | if (e->tv_usec < 0) { |
| 726 | e->tv_sec -=1; |
| 727 | e->tv_usec += 1000000; |
| 728 | } |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 729 | printf("Test %d: %d.%06ds\n", test, (int)e->tv_sec, (int)e->tv_usec); |
Guido van Rossum | ddefaf3 | 2007-01-14 03:31:43 +0000 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | static PyObject * |
| 733 | profile_int(PyObject *self, PyObject* args) |
| 734 | { |
| 735 | int i, k; |
| 736 | struct timeval start, stop; |
| 737 | PyObject *single, **multiple, *op1, *result; |
| 738 | |
| 739 | /* Test 1: Allocate and immediately deallocate |
| 740 | many small integers */ |
| 741 | gettimeofday(&start, NULL); |
| 742 | for(k=0; k < 20000; k++) |
| 743 | for(i=0; i < 1000; i++) { |
| 744 | single = PyInt_FromLong(i); |
| 745 | Py_DECREF(single); |
| 746 | } |
| 747 | gettimeofday(&stop, NULL); |
| 748 | print_delta(1, &start, &stop); |
| 749 | |
| 750 | /* Test 2: Allocate and immediately deallocate |
| 751 | many large integers */ |
| 752 | gettimeofday(&start, NULL); |
| 753 | for(k=0; k < 20000; k++) |
| 754 | for(i=0; i < 1000; i++) { |
| 755 | single = PyInt_FromLong(i+1000000); |
| 756 | Py_DECREF(single); |
| 757 | } |
| 758 | gettimeofday(&stop, NULL); |
| 759 | print_delta(2, &start, &stop); |
| 760 | |
| 761 | /* Test 3: Allocate a few integers, then release |
| 762 | them all simultaneously. */ |
| 763 | multiple = malloc(sizeof(PyObject*) * 1000); |
| 764 | gettimeofday(&start, NULL); |
| 765 | for(k=0; k < 20000; k++) { |
| 766 | for(i=0; i < 1000; i++) { |
| 767 | multiple[i] = PyInt_FromLong(i+1000000); |
| 768 | } |
| 769 | for(i=0; i < 1000; i++) { |
| 770 | Py_DECREF(multiple[i]); |
| 771 | } |
| 772 | } |
| 773 | gettimeofday(&stop, NULL); |
| 774 | print_delta(3, &start, &stop); |
| 775 | |
| 776 | /* Test 4: Allocate many integers, then release |
| 777 | them all simultaneously. */ |
| 778 | multiple = malloc(sizeof(PyObject*) * 1000000); |
| 779 | gettimeofday(&start, NULL); |
| 780 | for(k=0; k < 20; k++) { |
| 781 | for(i=0; i < 1000000; i++) { |
| 782 | multiple[i] = PyInt_FromLong(i+1000000); |
| 783 | } |
| 784 | for(i=0; i < 1000000; i++) { |
| 785 | Py_DECREF(multiple[i]); |
| 786 | } |
| 787 | } |
| 788 | gettimeofday(&stop, NULL); |
| 789 | print_delta(4, &start, &stop); |
| 790 | |
| 791 | /* Test 5: Allocate many integers < 32000 */ |
| 792 | multiple = malloc(sizeof(PyObject*) * 1000000); |
| 793 | gettimeofday(&start, NULL); |
| 794 | for(k=0; k < 10; k++) { |
| 795 | for(i=0; i < 1000000; i++) { |
| 796 | multiple[i] = PyInt_FromLong(i+1000); |
| 797 | } |
| 798 | for(i=0; i < 1000000; i++) { |
| 799 | Py_DECREF(multiple[i]); |
| 800 | } |
| 801 | } |
| 802 | gettimeofday(&stop, NULL); |
| 803 | print_delta(5, &start, &stop); |
| 804 | |
| 805 | /* Test 6: Perform small int addition */ |
| 806 | op1 = PyInt_FromLong(1); |
| 807 | gettimeofday(&start, NULL); |
| 808 | for(i=0; i < 10000000; i++) { |
| 809 | result = PyNumber_Add(op1, op1); |
| 810 | Py_DECREF(result); |
| 811 | } |
| 812 | gettimeofday(&stop, NULL); |
| 813 | Py_DECREF(op1); |
| 814 | print_delta(6, &start, &stop); |
| 815 | |
| 816 | /* Test 7: Perform medium int addition */ |
| 817 | op1 = PyInt_FromLong(1000); |
| 818 | gettimeofday(&start, NULL); |
| 819 | for(i=0; i < 10000000; i++) { |
| 820 | result = PyNumber_Add(op1, op1); |
| 821 | Py_DECREF(result); |
| 822 | } |
| 823 | gettimeofday(&stop, NULL); |
| 824 | Py_DECREF(op1); |
| 825 | print_delta(7, &start, &stop); |
| 826 | |
| 827 | Py_INCREF(Py_None); |
| 828 | return Py_None; |
| 829 | } |
| 830 | #endif |
| 831 | |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 832 | static PyMethodDef TestMethods[] = { |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 833 | {"raise_exception", raise_exception, METH_VARARGS}, |
| 834 | {"test_config", (PyCFunction)test_config, METH_NOARGS}, |
| 835 | {"test_list_api", (PyCFunction)test_list_api, METH_NOARGS}, |
| 836 | {"test_dict_iteration", (PyCFunction)test_dict_iteration,METH_NOARGS}, |
| 837 | {"test_long_api", (PyCFunction)test_long_api, METH_NOARGS}, |
Tim Peters | baefd9e | 2003-01-28 20:37:45 +0000 | [diff] [blame] | 838 | {"test_long_numbits", (PyCFunction)test_long_numbits, METH_NOARGS}, |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 839 | {"test_k_code", (PyCFunction)test_k_code, METH_NOARGS}, |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 840 | {"test_null_strings", (PyCFunction)test_null_strings, METH_NOARGS}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 841 | {"test_string_from_format", (PyCFunction)test_string_from_format, METH_NOARGS}, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 842 | {"test_with_docstring", (PyCFunction)test_with_docstring, METH_NOARGS, |
| 843 | PyDoc_STR("This is a pretty normal docstring.")}, |
Thomas Heller | 3457e4b | 2003-04-24 16:14:27 +0000 | [diff] [blame] | 844 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 845 | {"getargs_tuple", getargs_tuple, METH_VARARGS}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 846 | {"getargs_b", getargs_b, METH_VARARGS}, |
| 847 | {"getargs_B", getargs_B, METH_VARARGS}, |
| 848 | {"getargs_H", getargs_H, METH_VARARGS}, |
| 849 | {"getargs_I", getargs_I, METH_VARARGS}, |
| 850 | {"getargs_k", getargs_k, METH_VARARGS}, |
| 851 | {"getargs_i", getargs_i, METH_VARARGS}, |
| 852 | {"getargs_l", getargs_l, METH_VARARGS}, |
| 853 | {"getargs_n", getargs_n, METH_VARARGS}, |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 854 | #ifdef HAVE_LONG_LONG |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 855 | {"getargs_L", getargs_L, METH_VARARGS}, |
| 856 | {"getargs_K", getargs_K, METH_VARARGS}, |
| 857 | {"test_longlong_api", test_longlong_api, METH_NOARGS}, |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 858 | {"test_L_code", (PyCFunction)test_L_code, METH_NOARGS}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 859 | {"codec_incrementalencoder", |
| 860 | (PyCFunction)codec_incrementalencoder, METH_VARARGS}, |
| 861 | {"codec_incrementaldecoder", |
| 862 | (PyCFunction)codec_incrementaldecoder, METH_VARARGS}, |
Tim Peters | 91621db | 2001-06-12 20:10:01 +0000 | [diff] [blame] | 863 | #endif |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 864 | {"test_u_code", (PyCFunction)test_u_code, METH_NOARGS}, |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 865 | #ifdef WITH_THREAD |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 866 | {"_test_thread_state", test_thread_state, METH_VARARGS}, |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 867 | #endif |
Guido van Rossum | ddefaf3 | 2007-01-14 03:31:43 +0000 | [diff] [blame] | 868 | #ifdef HAVE_GETTIMEOFDAY |
| 869 | {"profile_int", profile_int, METH_NOARGS}, |
| 870 | #endif |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 871 | {NULL, NULL} /* sentinel */ |
| 872 | }; |
| 873 | |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 874 | #define AddSym(d, n, f, v) {PyObject *o = f(v); PyDict_SetItemString(d, n, o); Py_DECREF(o);} |
| 875 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 876 | typedef struct { |
| 877 | char byte_member; |
| 878 | unsigned char ubyte_member; |
| 879 | short short_member; |
| 880 | unsigned short ushort_member; |
| 881 | int int_member; |
| 882 | unsigned int uint_member; |
| 883 | long long_member; |
| 884 | unsigned long ulong_member; |
| 885 | float float_member; |
| 886 | double double_member; |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 887 | #ifdef HAVE_LONG_LONG |
| 888 | PY_LONG_LONG longlong_member; |
| 889 | unsigned PY_LONG_LONG ulonglong_member; |
| 890 | #endif |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 891 | } all_structmembers; |
| 892 | |
| 893 | typedef struct { |
| 894 | PyObject_HEAD |
| 895 | all_structmembers structmembers; |
| 896 | } test_structmembers; |
| 897 | |
| 898 | static struct PyMemberDef test_members[] = { |
| 899 | {"T_BYTE", T_BYTE, offsetof(test_structmembers, structmembers.byte_member), 0, NULL}, |
| 900 | {"T_UBYTE", T_UBYTE, offsetof(test_structmembers, structmembers.ubyte_member), 0, NULL}, |
| 901 | {"T_SHORT", T_SHORT, offsetof(test_structmembers, structmembers.short_member), 0, NULL}, |
| 902 | {"T_USHORT", T_USHORT, offsetof(test_structmembers, structmembers.ushort_member), 0, NULL}, |
| 903 | {"T_INT", T_INT, offsetof(test_structmembers, structmembers.int_member), 0, NULL}, |
| 904 | {"T_UINT", T_UINT, offsetof(test_structmembers, structmembers.uint_member), 0, NULL}, |
| 905 | {"T_LONG", T_LONG, offsetof(test_structmembers, structmembers.long_member), 0, NULL}, |
| 906 | {"T_ULONG", T_ULONG, offsetof(test_structmembers, structmembers.ulong_member), 0, NULL}, |
| 907 | {"T_FLOAT", T_FLOAT, offsetof(test_structmembers, structmembers.float_member), 0, NULL}, |
| 908 | {"T_DOUBLE", T_DOUBLE, offsetof(test_structmembers, structmembers.double_member), 0, NULL}, |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 909 | #ifdef HAVE_LONG_LONG |
| 910 | {"T_LONGLONG", T_LONGLONG, offsetof(test_structmembers, structmembers.longlong_member), 0, NULL}, |
| 911 | {"T_ULONGLONG", T_ULONGLONG, offsetof(test_structmembers, structmembers.ulonglong_member), 0, NULL}, |
| 912 | #endif |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 913 | {NULL} |
| 914 | }; |
| 915 | |
| 916 | |
| 917 | static PyObject *test_structmembers_new(PyTypeObject *type, PyObject *args, PyObject *kwargs){ |
| 918 | static char *keywords[]={"T_BYTE", "T_UBYTE", "T_SHORT", "T_USHORT", "T_INT", "T_UINT", |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 919 | "T_LONG", "T_ULONG", "T_FLOAT", "T_DOUBLE", |
| 920 | #ifdef HAVE_LONG_LONG |
| 921 | "T_LONGLONG", "T_ULONGLONG", |
| 922 | #endif |
| 923 | NULL}; |
| 924 | static char *fmt="|bBhHiIlkfd" |
| 925 | #ifdef HAVE_LONG_LONG |
| 926 | "LK" |
| 927 | #endif |
| 928 | ; |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 929 | test_structmembers *ob=PyObject_New(test_structmembers, type); |
| 930 | if (ob==NULL) |
| 931 | return NULL; |
| 932 | memset(&ob->structmembers, 0, sizeof(all_structmembers)); |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 933 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, fmt, keywords, |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 934 | &ob->structmembers.byte_member, &ob->structmembers.ubyte_member, |
| 935 | &ob->structmembers.short_member, &ob->structmembers.ushort_member, |
| 936 | &ob->structmembers.int_member, &ob->structmembers.uint_member, |
| 937 | &ob->structmembers.long_member, &ob->structmembers.ulong_member, |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 938 | &ob->structmembers.float_member, &ob->structmembers.double_member |
| 939 | #ifdef HAVE_LONG_LONG |
| 940 | ,&ob->structmembers.longlong_member, &ob->structmembers.ulonglong_member |
| 941 | #endif |
| 942 | )){ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 943 | Py_DECREF(ob); |
| 944 | return NULL; |
| 945 | } |
| 946 | return (PyObject *)ob; |
| 947 | } |
| 948 | |
| 949 | static void test_structmembers_free(PyObject *ob){ |
| 950 | PyObject_FREE(ob); |
| 951 | } |
| 952 | |
| 953 | static PyTypeObject test_structmembersType = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 954 | PyVarObject_HEAD_INIT(NULL, 0) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 955 | "test_structmembersType", |
| 956 | sizeof(test_structmembers), /* tp_basicsize */ |
| 957 | 0, /* tp_itemsize */ |
| 958 | test_structmembers_free, /* destructor tp_dealloc */ |
| 959 | 0, /* tp_print */ |
| 960 | 0, /* tp_getattr */ |
| 961 | 0, /* tp_setattr */ |
| 962 | 0, /* tp_compare */ |
| 963 | 0, /* tp_repr */ |
| 964 | 0, /* tp_as_number */ |
| 965 | 0, /* tp_as_sequence */ |
| 966 | 0, /* tp_as_mapping */ |
| 967 | 0, /* tp_hash */ |
| 968 | 0, /* tp_call */ |
| 969 | 0, /* tp_str */ |
| 970 | PyObject_GenericGetAttr, |
| 971 | PyObject_GenericSetAttr, |
| 972 | 0, /* tp_as_buffer */ |
| 973 | 0, /* tp_flags */ |
| 974 | "Type containing all structmember types", |
| 975 | 0, /* traverseproc tp_traverse */ |
| 976 | 0, /* tp_clear */ |
| 977 | 0, /* tp_richcompare */ |
| 978 | 0, /* tp_weaklistoffset */ |
| 979 | 0, /* tp_iter */ |
| 980 | 0, /* tp_iternext */ |
| 981 | 0, /* tp_methods */ |
| 982 | test_members, /* tp_members */ |
| 983 | 0, |
| 984 | 0, |
| 985 | 0, |
| 986 | 0, |
| 987 | 0, |
| 988 | 0, |
| 989 | 0, |
| 990 | 0, |
| 991 | test_structmembers_new, /* tp_new */ |
| 992 | }; |
| 993 | |
| 994 | |
Mark Hammond | 62b1ab1 | 2002-07-23 06:31:15 +0000 | [diff] [blame] | 995 | PyMODINIT_FUNC |
Tim Peters | d66595f | 2001-02-04 03:09:53 +0000 | [diff] [blame] | 996 | init_testcapi(void) |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 997 | { |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 998 | PyObject *m; |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 999 | |
Tim Peters | d66595f | 2001-02-04 03:09:53 +0000 | [diff] [blame] | 1000 | m = Py_InitModule("_testcapi", TestMethods); |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 1001 | if (m == NULL) |
| 1002 | return; |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 1003 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1004 | Py_Type(&test_structmembersType)=&PyType_Type; |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1005 | Py_INCREF(&test_structmembersType); |
| 1006 | PyModule_AddObject(m, "test_structmembersType", (PyObject *)&test_structmembersType); |
| 1007 | |
| 1008 | PyModule_AddObject(m, "CHAR_MAX", PyInt_FromLong(CHAR_MAX)); |
| 1009 | PyModule_AddObject(m, "CHAR_MIN", PyInt_FromLong(CHAR_MIN)); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 1010 | PyModule_AddObject(m, "UCHAR_MAX", PyInt_FromLong(UCHAR_MAX)); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1011 | PyModule_AddObject(m, "SHRT_MAX", PyInt_FromLong(SHRT_MAX)); |
| 1012 | PyModule_AddObject(m, "SHRT_MIN", PyInt_FromLong(SHRT_MIN)); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 1013 | PyModule_AddObject(m, "USHRT_MAX", PyInt_FromLong(USHRT_MAX)); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1014 | PyModule_AddObject(m, "INT_MAX", PyLong_FromLong(INT_MAX)); |
| 1015 | PyModule_AddObject(m, "INT_MIN", PyLong_FromLong(INT_MIN)); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 1016 | PyModule_AddObject(m, "UINT_MAX", PyLong_FromUnsignedLong(UINT_MAX)); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 1017 | PyModule_AddObject(m, "LONG_MAX", PyInt_FromLong(LONG_MAX)); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1018 | PyModule_AddObject(m, "LONG_MIN", PyInt_FromLong(LONG_MIN)); |
| 1019 | PyModule_AddObject(m, "ULONG_MAX", PyLong_FromUnsignedLong(ULONG_MAX)); |
| 1020 | PyModule_AddObject(m, "FLT_MAX", PyFloat_FromDouble(FLT_MAX)); |
| 1021 | PyModule_AddObject(m, "FLT_MIN", PyFloat_FromDouble(FLT_MIN)); |
| 1022 | PyModule_AddObject(m, "DBL_MAX", PyFloat_FromDouble(DBL_MAX)); |
| 1023 | PyModule_AddObject(m, "DBL_MIN", PyFloat_FromDouble(DBL_MIN)); |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1024 | PyModule_AddObject(m, "LLONG_MAX", PyLong_FromLongLong(PY_LLONG_MAX)); |
| 1025 | PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN)); |
| 1026 | PyModule_AddObject(m, "ULLONG_MAX", PyLong_FromUnsignedLongLong(PY_ULLONG_MAX)); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1027 | PyModule_AddObject(m, "PY_SSIZE_T_MAX", PyInt_FromSsize_t(PY_SSIZE_T_MAX)); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1028 | PyModule_AddObject(m, "PY_SSIZE_T_MIN", PyInt_FromSsize_t(PY_SSIZE_T_MIN)); |
Thomas Heller | a4ea603 | 2003-04-17 18:55:45 +0000 | [diff] [blame] | 1029 | |
Tim Peters | d66595f | 2001-02-04 03:09:53 +0000 | [diff] [blame] | 1030 | TestError = PyErr_NewException("_testcapi.error", NULL, NULL); |
Fred Drake | acee69f | 2002-04-01 14:28:58 +0000 | [diff] [blame] | 1031 | Py_INCREF(TestError); |
| 1032 | PyModule_AddObject(m, "error", TestError); |
Tim Peters | 9ea17ac | 2001-02-02 05:57:15 +0000 | [diff] [blame] | 1033 | } |