blob: 12dc0f98be45d120b840c3c418cdf42112d3a876 [file] [log] [blame]
Antoine Pitrou8e605772011-04-25 21:21:07 +02001#include <Python.h>
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01002#include "pythread.h"
Eric Snowe3774162017-05-22 19:46:40 -07003#include <inttypes.h>
Antoine Pitrou8e605772011-04-25 21:21:07 +02004#include <stdio.h>
Nick Coghlanbc77eff2018-03-25 20:44:30 +10005#include <wchar.h>
Antoine Pitrou8e605772011-04-25 21:21:07 +02006
Nick Coghlan7d270ee2013-10-17 22:35:35 +10007/*********************************************************
8 * Embedded interpreter tests that need a custom exe
9 *
10 * Executed via 'EmbeddingTests' in Lib/test/test_capi.py
11 *********************************************************/
12
13static void _testembed_Py_Initialize(void)
14{
15 /* HACK: the "./" at front avoids a search along the PATH in
16 Modules/getpath.c */
17 Py_SetProgramName(L"./_testembed");
18 Py_Initialize();
19}
20
21
22/*****************************************************
Martin Panter8f265652016-04-19 04:03:41 +000023 * Test repeated initialisation and subinterpreters
Nick Coghlan7d270ee2013-10-17 22:35:35 +100024 *****************************************************/
25
26static void print_subinterp(void)
Antoine Pitrou8e605772011-04-25 21:21:07 +020027{
Eric Snowe3774162017-05-22 19:46:40 -070028 /* Output information about the interpreter in the format
29 expected in Lib/test/test_capi.py (test_subinterps). */
Antoine Pitrou8e605772011-04-25 21:21:07 +020030 PyThreadState *ts = PyThreadState_Get();
Eric Snowe3774162017-05-22 19:46:40 -070031 PyInterpreterState *interp = ts->interp;
32 int64_t id = PyInterpreterState_GetID(interp);
Eric Snowd1c3c132017-05-24 17:19:47 -070033 printf("interp %" PRId64 " <0x%" PRIXPTR ">, thread state <0x%" PRIXPTR ">: ",
Eric Snowe3774162017-05-22 19:46:40 -070034 id, (uintptr_t)interp, (uintptr_t)ts);
Antoine Pitrou8e605772011-04-25 21:21:07 +020035 fflush(stdout);
36 PyRun_SimpleString(
37 "import sys;"
38 "print('id(modules) =', id(sys.modules));"
39 "sys.stdout.flush()"
40 );
41}
42
Steve Dowerea74f0c2017-01-01 20:25:03 -080043static int test_repeated_init_and_subinterpreters(void)
Antoine Pitrou8e605772011-04-25 21:21:07 +020044{
45 PyThreadState *mainstate, *substate;
46 PyGILState_STATE gilstate;
47 int i, j;
48
Ned Deily939231b2016-08-16 00:17:42 -040049 for (i=0; i<15; i++) {
Antoine Pitrou8e605772011-04-25 21:21:07 +020050 printf("--- Pass %d ---\n", i);
Nick Coghlan7d270ee2013-10-17 22:35:35 +100051 _testembed_Py_Initialize();
Antoine Pitrou8e605772011-04-25 21:21:07 +020052 mainstate = PyThreadState_Get();
53
54 PyEval_InitThreads();
55 PyEval_ReleaseThread(mainstate);
56
57 gilstate = PyGILState_Ensure();
58 print_subinterp();
59 PyThreadState_Swap(NULL);
60
61 for (j=0; j<3; j++) {
62 substate = Py_NewInterpreter();
63 print_subinterp();
64 Py_EndInterpreter(substate);
65 }
66
67 PyThreadState_Swap(mainstate);
68 print_subinterp();
69 PyGILState_Release(gilstate);
Antoine Pitrou8e605772011-04-25 21:21:07 +020070
71 PyEval_RestoreThread(mainstate);
72 Py_Finalize();
73 }
Steve Dowerea74f0c2017-01-01 20:25:03 -080074 return 0;
Nick Coghlan7d270ee2013-10-17 22:35:35 +100075}
76
77/*****************************************************
78 * Test forcing a particular IO encoding
79 *****************************************************/
80
81static void check_stdio_details(const char *encoding, const char * errors)
82{
83 /* Output info for the test case to check */
84 if (encoding) {
85 printf("Expected encoding: %s\n", encoding);
86 } else {
87 printf("Expected encoding: default\n");
88 }
89 if (errors) {
90 printf("Expected errors: %s\n", errors);
91 } else {
92 printf("Expected errors: default\n");
93 }
94 fflush(stdout);
95 /* Force the given IO encoding */
96 Py_SetStandardStreamEncoding(encoding, errors);
97 _testembed_Py_Initialize();
98 PyRun_SimpleString(
99 "import sys;"
100 "print('stdin: {0.encoding}:{0.errors}'.format(sys.stdin));"
101 "print('stdout: {0.encoding}:{0.errors}'.format(sys.stdout));"
102 "print('stderr: {0.encoding}:{0.errors}'.format(sys.stderr));"
103 "sys.stdout.flush()"
104 );
105 Py_Finalize();
106}
107
Steve Dowerea74f0c2017-01-01 20:25:03 -0800108static int test_forced_io_encoding(void)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000109{
110 /* Check various combinations */
111 printf("--- Use defaults ---\n");
112 check_stdio_details(NULL, NULL);
113 printf("--- Set errors only ---\n");
Victor Stinnerb2bef622014-03-18 02:38:12 +0100114 check_stdio_details(NULL, "ignore");
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000115 printf("--- Set encoding only ---\n");
Victor Stinner9e4994d2018-08-28 23:26:33 +0200116 check_stdio_details("iso8859-1", NULL);
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000117 printf("--- Set encoding and errors ---\n");
Victor Stinner9e4994d2018-08-28 23:26:33 +0200118 check_stdio_details("iso8859-1", "replace");
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000119
120 /* Check calling after initialization fails */
121 Py_Initialize();
122
123 if (Py_SetStandardStreamEncoding(NULL, NULL) == 0) {
124 printf("Unexpected success calling Py_SetStandardStreamEncoding");
125 }
126 Py_Finalize();
Steve Dowerea74f0c2017-01-01 20:25:03 -0800127 return 0;
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000128}
129
Victor Stinner9e87e772017-11-24 12:09:24 +0100130/*********************************************************
131 * Test parts of the C-API that work before initialization
132 *********************************************************/
133
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000134/* The pre-initialization tests tend to break by segfaulting, so explicitly
135 * flushed progress messages make the broken API easier to find when they fail.
136 */
137#define _Py_EMBED_PREINIT_CHECK(msg) \
138 do {printf(msg); fflush(stdout);} while (0);
139
Victor Stinner9e87e772017-11-24 12:09:24 +0100140static int test_pre_initialization_api(void)
141{
Nick Coghlan42746092017-11-26 14:19:13 +1000142 /* Leading "./" ensures getpath.c can still find the standard library */
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000143 _Py_EMBED_PREINIT_CHECK("Checking Py_DecodeLocale\n");
Nick Coghlan42746092017-11-26 14:19:13 +1000144 wchar_t *program = Py_DecodeLocale("./spam", NULL);
Victor Stinner9e87e772017-11-24 12:09:24 +0100145 if (program == NULL) {
146 fprintf(stderr, "Fatal error: cannot decode program name\n");
147 return 1;
148 }
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000149 _Py_EMBED_PREINIT_CHECK("Checking Py_SetProgramName\n");
Victor Stinner9e87e772017-11-24 12:09:24 +0100150 Py_SetProgramName(program);
151
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000152 _Py_EMBED_PREINIT_CHECK("Initializing interpreter\n");
Victor Stinner9e87e772017-11-24 12:09:24 +0100153 Py_Initialize();
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000154 _Py_EMBED_PREINIT_CHECK("Check sys module contents\n");
155 PyRun_SimpleString("import sys; "
156 "print('sys.executable:', sys.executable)");
157 _Py_EMBED_PREINIT_CHECK("Finalizing interpreter\n");
Victor Stinner9e87e772017-11-24 12:09:24 +0100158 Py_Finalize();
159
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000160 _Py_EMBED_PREINIT_CHECK("Freeing memory allocated by Py_DecodeLocale\n");
Victor Stinner9e87e772017-11-24 12:09:24 +0100161 PyMem_RawFree(program);
162 return 0;
163}
164
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000165
166/* bpo-33042: Ensure embedding apps can predefine sys module options */
167static int test_pre_initialization_sys_options(void)
168{
Nick Coghlan69f5c732018-03-30 15:36:42 +1000169 /* We allocate a couple of the options dynamically, and then delete
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000170 * them before calling Py_Initialize. This ensures the interpreter isn't
171 * relying on the caller to keep the passed in strings alive.
172 */
Nick Coghlan69f5c732018-03-30 15:36:42 +1000173 const wchar_t *static_warnoption = L"once";
174 const wchar_t *static_xoption = L"also_not_an_option=2";
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000175 size_t warnoption_len = wcslen(static_warnoption);
176 size_t xoption_len = wcslen(static_xoption);
Nick Coghlan69f5c732018-03-30 15:36:42 +1000177 wchar_t *dynamic_once_warnoption = \
178 (wchar_t *) calloc(warnoption_len+1, sizeof(wchar_t));
179 wchar_t *dynamic_xoption = \
180 (wchar_t *) calloc(xoption_len+1, sizeof(wchar_t));
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000181 wcsncpy(dynamic_once_warnoption, static_warnoption, warnoption_len+1);
182 wcsncpy(dynamic_xoption, static_xoption, xoption_len+1);
183
184 _Py_EMBED_PREINIT_CHECK("Checking PySys_AddWarnOption\n");
185 PySys_AddWarnOption(L"default");
186 _Py_EMBED_PREINIT_CHECK("Checking PySys_ResetWarnOptions\n");
187 PySys_ResetWarnOptions();
188 _Py_EMBED_PREINIT_CHECK("Checking PySys_AddWarnOption linked list\n");
189 PySys_AddWarnOption(dynamic_once_warnoption);
190 PySys_AddWarnOption(L"module");
191 PySys_AddWarnOption(L"default");
192 _Py_EMBED_PREINIT_CHECK("Checking PySys_AddXOption\n");
193 PySys_AddXOption(L"not_an_option=1");
194 PySys_AddXOption(dynamic_xoption);
195
196 /* Delete the dynamic options early */
197 free(dynamic_once_warnoption);
198 dynamic_once_warnoption = NULL;
199 free(dynamic_xoption);
200 dynamic_xoption = NULL;
201
202 _Py_EMBED_PREINIT_CHECK("Initializing interpreter\n");
203 _testembed_Py_Initialize();
204 _Py_EMBED_PREINIT_CHECK("Check sys module contents\n");
205 PyRun_SimpleString("import sys; "
206 "print('sys.warnoptions:', sys.warnoptions); "
207 "print('sys._xoptions:', sys._xoptions); "
208 "warnings = sys.modules['warnings']; "
209 "latest_filters = [f[0] for f in warnings.filters[:3]]; "
210 "print('warnings.filters[:3]:', latest_filters)");
211 _Py_EMBED_PREINIT_CHECK("Finalizing interpreter\n");
212 Py_Finalize();
213
214 return 0;
215}
216
217
218/* bpo-20891: Avoid race condition when initialising the GIL */
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +0100219static void bpo20891_thread(void *lockp)
220{
221 PyThread_type_lock lock = *((PyThread_type_lock*)lockp);
222
223 PyGILState_STATE state = PyGILState_Ensure();
224 if (!PyGILState_Check()) {
225 fprintf(stderr, "PyGILState_Check failed!");
226 abort();
227 }
228
229 PyGILState_Release(state);
230
231 PyThread_release_lock(lock);
232
233 PyThread_exit_thread();
234}
235
236static int test_bpo20891(void)
237{
238 /* bpo-20891: Calling PyGILState_Ensure in a non-Python thread before
239 calling PyEval_InitThreads() must not crash. PyGILState_Ensure() must
240 call PyEval_InitThreads() for us in this case. */
241 PyThread_type_lock lock = PyThread_allocate_lock();
242 if (!lock) {
243 fprintf(stderr, "PyThread_allocate_lock failed!");
244 return 1;
245 }
246
247 _testembed_Py_Initialize();
248
249 unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &lock);
250 if (thrd == PYTHREAD_INVALID_THREAD_ID) {
251 fprintf(stderr, "PyThread_start_new_thread failed!");
252 return 1;
253 }
254 PyThread_acquire_lock(lock, WAIT_LOCK);
255
256 Py_BEGIN_ALLOW_THREADS
257 /* wait until the thread exit */
258 PyThread_acquire_lock(lock, WAIT_LOCK);
259 Py_END_ALLOW_THREADS
260
261 PyThread_free_lock(lock);
262
263 return 0;
264}
265
Victor Stinner209abf72018-06-22 19:14:51 +0200266static int test_initialize_twice(void)
267{
268 _testembed_Py_Initialize();
269
270 /* bpo-33932: Calling Py_Initialize() twice should do nothing
271 * (and not crash!). */
272 Py_Initialize();
273
274 Py_Finalize();
275
276 return 0;
277}
278
Victor Stinnerfb47bca2018-07-20 17:34:23 +0200279static int test_initialize_pymain(void)
280{
281 wchar_t *argv[] = {L"PYTHON", L"-c",
282 L"import sys; print(f'Py_Main() after Py_Initialize: sys.argv={sys.argv}')",
283 L"arg2"};
284 _testembed_Py_Initialize();
285
286 /* bpo-34008: Calling Py_Main() after Py_Initialize() must not crash */
287 Py_Main(Py_ARRAY_LENGTH(argv), argv);
288
289 Py_Finalize();
290
291 return 0;
292}
293
Victor Stinner9e87e772017-11-24 12:09:24 +0100294
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100295static int
296dump_config_impl(void)
Victor Stinner56b29b62018-07-26 18:57:56 +0200297{
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100298 PyObject *config = NULL;
299 PyObject *dict = NULL;
300
301 config = PyDict_New();
302 if (config == NULL) {
303 goto error;
Victor Stinner56b29b62018-07-26 18:57:56 +0200304 }
305
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100306 /* global config */
307 dict = _Py_GetGlobalVariablesAsDict();
308 if (dict == NULL) {
309 goto error;
310 }
311 if (PyDict_SetItemString(config, "global_config", dict) < 0) {
312 goto error;
313 }
314 Py_CLEAR(dict);
315
316 /* core config */
Victor Stinnercaba55b2018-08-03 15:33:52 +0200317 PyInterpreterState *interp = _PyInterpreterState_Get();
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100318 const _PyCoreConfig *core_config = &interp->core_config;
319 dict = _PyCoreConfig_AsDict(core_config);
320 if (dict == NULL) {
321 goto error;
Victor Stinnerea68d832018-08-01 03:07:18 +0200322 }
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100323 if (PyDict_SetItemString(config, "core_config", dict) < 0) {
324 goto error;
325 }
326 Py_CLEAR(dict);
Victor Stinnerea68d832018-08-01 03:07:18 +0200327
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100328 /* main config */
329 const _PyMainInterpreterConfig *main_config = &interp->config;
330 dict = _PyMainInterpreterConfig_AsDict(main_config);
331 if (dict == NULL) {
332 goto error;
333 }
334 if (PyDict_SetItemString(config, "main_config", dict) < 0) {
335 goto error;
336 }
337 Py_CLEAR(dict);
Victor Stinner56b29b62018-07-26 18:57:56 +0200338
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100339 PyObject *json = PyImport_ImportModule("json");
340 PyObject *res = PyObject_CallMethod(json, "dumps", "O", config);
341 Py_DECREF(json);
342 Py_CLEAR(config);
343 if (res == NULL) {
344 goto error;
345 }
Victor Stinner5a953fd2018-08-03 22:49:07 +0200346
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100347 PySys_FormatStdout("%S\n", res);
348 Py_DECREF(res);
Victor Stinner56b29b62018-07-26 18:57:56 +0200349
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100350 return 0;
Victor Stinner56b29b62018-07-26 18:57:56 +0200351
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100352error:
353 Py_XDECREF(config);
354 Py_XDECREF(dict);
355 return -1;
Victor Stinner56b29b62018-07-26 18:57:56 +0200356}
357
Victor Stinner00b137c2018-11-13 19:59:26 +0100358static void
359dump_config(void)
360{
Victor Stinner7ddd56f2018-11-14 00:24:28 +0100361 if (dump_config_impl() < 0) {
362 fprintf(stderr, "failed to dump the configuration:\n");
363 PyErr_Print();
364 }
Victor Stinner00b137c2018-11-13 19:59:26 +0100365}
366
367
Victor Stinner56b29b62018-07-26 18:57:56 +0200368static int test_init_default_config(void)
369{
370 _testembed_Py_Initialize();
371 dump_config();
372 Py_Finalize();
373 return 0;
374}
375
376
377static int test_init_global_config(void)
378{
379 /* FIXME: test Py_IgnoreEnvironmentFlag */
380
381 putenv("PYTHONUTF8=0");
382 Py_UTF8Mode = 1;
383
384 /* Test initialization from global configuration variables (Py_xxx) */
385 Py_SetProgramName(L"./globalvar");
386
387 /* Py_IsolatedFlag is not tested */
388 Py_NoSiteFlag = 1;
389 Py_BytesWarningFlag = 1;
390
391 putenv("PYTHONINSPECT=");
392 Py_InspectFlag = 1;
393
394 putenv("PYTHONOPTIMIZE=0");
395 Py_InteractiveFlag = 1;
396
397 putenv("PYTHONDEBUG=0");
398 Py_OptimizeFlag = 2;
399
400 /* Py_DebugFlag is not tested */
401
402 putenv("PYTHONDONTWRITEBYTECODE=");
403 Py_DontWriteBytecodeFlag = 1;
404
405 putenv("PYTHONVERBOSE=0");
406 Py_VerboseFlag = 1;
407
408 Py_QuietFlag = 1;
409 Py_NoUserSiteDirectory = 1;
410
411 putenv("PYTHONUNBUFFERED=");
412 Py_UnbufferedStdioFlag = 1;
413
Victor Stinnerb75d7e22018-08-01 02:13:04 +0200414 Py_FrozenFlag = 1;
415
Victor Stinner56b29b62018-07-26 18:57:56 +0200416 /* FIXME: test Py_LegacyWindowsFSEncodingFlag */
417 /* FIXME: test Py_LegacyWindowsStdioFlag */
418
Victor Stinner56b29b62018-07-26 18:57:56 +0200419 Py_Initialize();
420 dump_config();
421 Py_Finalize();
422 return 0;
423}
424
425
426static int test_init_from_config(void)
427{
428 /* Test _Py_InitializeFromConfig() */
429 _PyCoreConfig config = _PyCoreConfig_INIT;
430 config.install_signal_handlers = 0;
431
432 /* FIXME: test use_environment */
433
434 putenv("PYTHONHASHSEED=42");
435 config.use_hash_seed = 1;
436 config.hash_seed = 123;
437
438 putenv("PYTHONMALLOC=malloc");
439 config.allocator = "malloc_debug";
440
441 /* dev_mode=1 is tested in test_init_dev_mode() */
442
443 putenv("PYTHONFAULTHANDLER=");
444 config.faulthandler = 1;
445
446 putenv("PYTHONTRACEMALLOC=0");
447 config.tracemalloc = 2;
448
449 putenv("PYTHONPROFILEIMPORTTIME=0");
450 config.import_time = 1;
451
452 config.show_ref_count = 1;
453 config.show_alloc_count = 1;
454 /* FIXME: test dump_refs: bpo-34223 */
455
456 putenv("PYTHONMALLOCSTATS=0");
457 config.malloc_stats = 1;
458
Victor Stinner06e76082018-09-19 14:56:36 -0700459 /* FIXME: test coerce_c_locale and coerce_c_locale_warn */
460
Victor Stinner56b29b62018-07-26 18:57:56 +0200461 putenv("PYTHONUTF8=0");
462 Py_UTF8Mode = 0;
463 config.utf8_mode = 1;
464
465 putenv("PYTHONPYCACHEPREFIX=env_pycache_prefix");
466 config.pycache_prefix = L"conf_pycache_prefix";
467
468 Py_SetProgramName(L"./globalvar");
469 config.program_name = L"./conf_program_name";
470
471 /* FIXME: test argc/argv */
472 config.program = L"conf_program";
473 /* FIXME: test xoptions */
474 /* FIXME: test warnoptions */
475 /* FIXME: test module_search_path_env */
476 /* FIXME: test home */
477 /* FIXME: test path config: module_search_path .. dll_path */
478
479 putenv("PYTHONVERBOSE=0");
480 Py_VerboseFlag = 0;
481 config.verbose = 1;
482
483 Py_NoSiteFlag = 0;
484 config.site_import = 0;
485
486 Py_BytesWarningFlag = 0;
487 config.bytes_warning = 1;
488
489 putenv("PYTHONINSPECT=");
490 Py_InspectFlag = 0;
491 config.inspect = 1;
492
493 Py_InteractiveFlag = 0;
494 config.interactive = 1;
495
496 putenv("PYTHONOPTIMIZE=0");
497 Py_OptimizeFlag = 1;
498 config.optimization_level = 2;
499
Victor Stinner98512272018-08-01 03:07:00 +0200500 /* FIXME: test parser_debug */
Victor Stinner56b29b62018-07-26 18:57:56 +0200501
502 putenv("PYTHONDONTWRITEBYTECODE=");
503 Py_DontWriteBytecodeFlag = 0;
504 config.write_bytecode = 0;
505
506 Py_QuietFlag = 0;
507 config.quiet = 1;
508
509 putenv("PYTHONUNBUFFERED=");
510 Py_UnbufferedStdioFlag = 0;
Victor Stinner98512272018-08-01 03:07:00 +0200511 config.buffered_stdio = 0;
Victor Stinner56b29b62018-07-26 18:57:56 +0200512
Victor Stinnerdfe0dc72018-08-29 11:47:29 +0200513 putenv("PYTHONIOENCODING=cp424");
514 Py_SetStandardStreamEncoding("ascii", "ignore");
515 config.stdio_encoding = "iso8859-1";
516 config.stdio_errors = "replace";
517
Victor Stinner56b29b62018-07-26 18:57:56 +0200518 putenv("PYTHONNOUSERSITE=");
519 Py_NoUserSiteDirectory = 0;
520 config.user_site_directory = 0;
521
522 config._check_hash_pycs_mode = "always";
523
Victor Stinnerb75d7e22018-08-01 02:13:04 +0200524 Py_FrozenFlag = 0;
525 config._frozen = 1;
526
Victor Stinner56b29b62018-07-26 18:57:56 +0200527 _PyInitError err = _Py_InitializeFromConfig(&config);
528 /* Don't call _PyCoreConfig_Clear() since all strings are static */
529 if (_Py_INIT_FAILED(err)) {
530 _Py_FatalInitError(err);
531 }
532 dump_config();
533 Py_Finalize();
534 return 0;
535}
536
537
538static void test_init_env_putenvs(void)
539{
540 putenv("PYTHONHASHSEED=42");
541 putenv("PYTHONMALLOC=malloc_debug");
542 putenv("PYTHONTRACEMALLOC=2");
543 putenv("PYTHONPROFILEIMPORTTIME=1");
544 putenv("PYTHONMALLOCSTATS=1");
545 putenv("PYTHONUTF8=1");
546 putenv("PYTHONVERBOSE=1");
547 putenv("PYTHONINSPECT=1");
548 putenv("PYTHONOPTIMIZE=2");
549 putenv("PYTHONDONTWRITEBYTECODE=1");
550 putenv("PYTHONUNBUFFERED=1");
551 putenv("PYTHONPYCACHEPREFIX=env_pycache_prefix");
552 putenv("PYTHONNOUSERSITE=1");
553 putenv("PYTHONFAULTHANDLER=1");
554 putenv("PYTHONDEVMODE=1");
Victor Stinnerdfe0dc72018-08-29 11:47:29 +0200555 putenv("PYTHONIOENCODING=iso8859-1:replace");
Victor Stinner56b29b62018-07-26 18:57:56 +0200556 /* FIXME: test PYTHONWARNINGS */
557 /* FIXME: test PYTHONEXECUTABLE */
558 /* FIXME: test PYTHONHOME */
559 /* FIXME: test PYTHONDEBUG */
560 /* FIXME: test PYTHONDUMPREFS */
561 /* FIXME: test PYTHONCOERCECLOCALE */
562 /* FIXME: test PYTHONPATH */
563}
564
565
566static int test_init_env(void)
567{
568 /* Test initialization from environment variables */
569 Py_IgnoreEnvironmentFlag = 0;
570 test_init_env_putenvs();
571 _testembed_Py_Initialize();
572 dump_config();
573 Py_Finalize();
574 return 0;
575}
576
577
578static int test_init_isolated(void)
579{
580 /* Test _PyCoreConfig.isolated=1 */
581 _PyCoreConfig config = _PyCoreConfig_INIT;
582
Victor Stinner06e76082018-09-19 14:56:36 -0700583 /* Set coerce_c_locale and utf8_mode to not depend on the locale */
584 config.coerce_c_locale = 0;
Victor Stinner56b29b62018-07-26 18:57:56 +0200585 config.utf8_mode = 0;
586 /* Use path starting with "./" avoids a search along the PATH */
587 config.program_name = L"./_testembed";
588
589 Py_IsolatedFlag = 0;
590 config.isolated = 1;
591
592 test_init_env_putenvs();
593 _PyInitError err = _Py_InitializeFromConfig(&config);
594 if (_Py_INIT_FAILED(err)) {
595 _Py_FatalInitError(err);
596 }
597 dump_config();
598 Py_Finalize();
599 return 0;
600}
601
602
603static int test_init_dev_mode(void)
604{
605 _PyCoreConfig config = _PyCoreConfig_INIT;
606 putenv("PYTHONFAULTHANDLER=");
607 putenv("PYTHONMALLOC=");
608 config.dev_mode = 1;
609 config.program_name = L"./_testembed";
610 _PyInitError err = _Py_InitializeFromConfig(&config);
611 if (_Py_INIT_FAILED(err)) {
612 _Py_FatalInitError(err);
613 }
614 dump_config();
615 Py_Finalize();
616 return 0;
617}
618
619
Steve Dowerea74f0c2017-01-01 20:25:03 -0800620/* *********************************************************
621 * List of test cases and the function that implements it.
Serhiy Storchaka13ad3b72017-09-14 09:38:36 +0300622 *
Steve Dowerea74f0c2017-01-01 20:25:03 -0800623 * Names are compared case-sensitively with the first
624 * argument. If no match is found, or no first argument was
625 * provided, the names of all test cases are printed and
626 * the exit code will be -1.
627 *
628 * The int returned from test functions is used as the exit
629 * code, and test_capi treats all non-zero exit codes as a
Serhiy Storchaka13ad3b72017-09-14 09:38:36 +0300630 * failed test.
Steve Dowerea74f0c2017-01-01 20:25:03 -0800631 *********************************************************/
632struct TestCase
633{
634 const char *name;
635 int (*func)(void);
636};
637
638static struct TestCase TestCases[] = {
639 { "forced_io_encoding", test_forced_io_encoding },
640 { "repeated_init_and_subinterpreters", test_repeated_init_and_subinterpreters },
Victor Stinner9e87e772017-11-24 12:09:24 +0100641 { "pre_initialization_api", test_pre_initialization_api },
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000642 { "pre_initialization_sys_options", test_pre_initialization_sys_options },
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +0100643 { "bpo20891", test_bpo20891 },
Victor Stinner209abf72018-06-22 19:14:51 +0200644 { "initialize_twice", test_initialize_twice },
Victor Stinnerfb47bca2018-07-20 17:34:23 +0200645 { "initialize_pymain", test_initialize_pymain },
Victor Stinner56b29b62018-07-26 18:57:56 +0200646 { "init_default_config", test_init_default_config },
647 { "init_global_config", test_init_global_config },
648 { "init_from_config", test_init_from_config },
649 { "init_env", test_init_env },
650 { "init_dev_mode", test_init_dev_mode },
651 { "init_isolated", test_init_isolated },
Steve Dowerea74f0c2017-01-01 20:25:03 -0800652 { NULL, NULL }
653};
654
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000655int main(int argc, char *argv[])
656{
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000657 if (argc > 1) {
Steve Dowerea74f0c2017-01-01 20:25:03 -0800658 for (struct TestCase *tc = TestCases; tc && tc->name; tc++) {
659 if (strcmp(argv[1], tc->name) == 0)
660 return (*tc->func)();
661 }
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000662 }
Steve Dowerea74f0c2017-01-01 20:25:03 -0800663
664 /* No match found, or no test name provided, so display usage */
665 printf("Python " PY_VERSION " _testembed executable for embedded interpreter tests\n"
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000666 "Normally executed via 'EmbeddingTests' in Lib/test/test_embed.py\n\n"
Steve Dowerea74f0c2017-01-01 20:25:03 -0800667 "Usage: %s TESTNAME\n\nAll available tests:\n", argv[0]);
668 for (struct TestCase *tc = TestCases; tc && tc->name; tc++) {
669 printf(" %s\n", tc->name);
670 }
671
Nick Coghlanbc77eff2018-03-25 20:44:30 +1000672 /* Non-zero exit code will cause test_embed.py tests to fail.
Steve Dowerea74f0c2017-01-01 20:25:03 -0800673 This is intentional. */
674 return -1;
Antoine Pitrou8e605772011-04-25 21:21:07 +0200675}