| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | #include <Python.h>
 | 
					
						
							| 
									
										
										
										
											2017-11-30 22:05:00 +01:00
										 |  |  | #include "pythread.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-22 19:46:40 -07:00
										 |  |  | #include <inttypes.h>
 | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  | #include <wchar.h>
 | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | /*********************************************************
 | 
					
						
							|  |  |  |  * Embedded interpreter tests that need a custom exe | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Executed via 'EmbeddingTests' in Lib/test/test_capi.py | 
					
						
							|  |  |  |  *********************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void _testembed_Py_Initialize(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* HACK: the "./" at front avoids a search along the PATH in
 | 
					
						
							|  |  |  |        Modules/getpath.c */ | 
					
						
							|  |  |  |     Py_SetProgramName(L"./_testembed"); | 
					
						
							|  |  |  |     Py_Initialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*****************************************************
 | 
					
						
							| 
									
										
										
										
											2016-04-19 04:03:41 +00:00
										 |  |  |  * Test repeated initialisation and subinterpreters | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |  *****************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void print_subinterp(void) | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-22 19:46:40 -07:00
										 |  |  |     /* Output information about the interpreter in the format
 | 
					
						
							|  |  |  |        expected in Lib/test/test_capi.py (test_subinterps). */ | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  |     PyThreadState *ts = PyThreadState_Get(); | 
					
						
							| 
									
										
										
										
											2017-05-22 19:46:40 -07:00
										 |  |  |     PyInterpreterState *interp = ts->interp; | 
					
						
							|  |  |  |     int64_t id = PyInterpreterState_GetID(interp); | 
					
						
							| 
									
										
										
										
											2017-05-24 17:19:47 -07:00
										 |  |  |     printf("interp %" PRId64 " <0x%" PRIXPTR ">, thread state <0x%" PRIXPTR ">: ", | 
					
						
							| 
									
										
										
										
											2017-05-22 19:46:40 -07:00
										 |  |  |             id, (uintptr_t)interp, (uintptr_t)ts); | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  |     fflush(stdout); | 
					
						
							|  |  |  |     PyRun_SimpleString( | 
					
						
							|  |  |  |         "import sys;" | 
					
						
							|  |  |  |         "print('id(modules) =', id(sys.modules));" | 
					
						
							|  |  |  |         "sys.stdout.flush()" | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  | static int test_repeated_init_and_subinterpreters(void) | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     PyThreadState *mainstate, *substate; | 
					
						
							|  |  |  |     PyGILState_STATE gilstate; | 
					
						
							|  |  |  |     int i, j; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-16 00:17:42 -04:00
										 |  |  |     for (i=0; i<15; i++) { | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  |         printf("--- Pass %d ---\n", i); | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |         _testembed_Py_Initialize(); | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  |         mainstate = PyThreadState_Get(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         PyEval_InitThreads(); | 
					
						
							|  |  |  |         PyEval_ReleaseThread(mainstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         gilstate = PyGILState_Ensure(); | 
					
						
							|  |  |  |         print_subinterp(); | 
					
						
							|  |  |  |         PyThreadState_Swap(NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (j=0; j<3; j++) { | 
					
						
							|  |  |  |             substate = Py_NewInterpreter(); | 
					
						
							|  |  |  |             print_subinterp(); | 
					
						
							|  |  |  |             Py_EndInterpreter(substate); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         PyThreadState_Swap(mainstate); | 
					
						
							|  |  |  |         print_subinterp(); | 
					
						
							|  |  |  |         PyGILState_Release(gilstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         PyEval_RestoreThread(mainstate); | 
					
						
							|  |  |  |         Py_Finalize(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*****************************************************
 | 
					
						
							|  |  |  |  * Test forcing a particular IO encoding | 
					
						
							|  |  |  |  *****************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void check_stdio_details(const char *encoding, const char * errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Output info for the test case to check */ | 
					
						
							|  |  |  |     if (encoding) { | 
					
						
							|  |  |  |         printf("Expected encoding: %s\n", encoding); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         printf("Expected encoding: default\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (errors) { | 
					
						
							|  |  |  |         printf("Expected errors: %s\n", errors); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         printf("Expected errors: default\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fflush(stdout); | 
					
						
							|  |  |  |     /* Force the given IO encoding */ | 
					
						
							|  |  |  |     Py_SetStandardStreamEncoding(encoding, errors); | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  |     PyRun_SimpleString( | 
					
						
							|  |  |  |         "import sys;" | 
					
						
							|  |  |  |         "print('stdin: {0.encoding}:{0.errors}'.format(sys.stdin));" | 
					
						
							|  |  |  |         "print('stdout: {0.encoding}:{0.errors}'.format(sys.stdout));" | 
					
						
							|  |  |  |         "print('stderr: {0.encoding}:{0.errors}'.format(sys.stderr));" | 
					
						
							|  |  |  |         "sys.stdout.flush()" | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  | static int test_forced_io_encoding(void) | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Check various combinations */ | 
					
						
							|  |  |  |     printf("--- Use defaults ---\n"); | 
					
						
							|  |  |  |     check_stdio_details(NULL, NULL); | 
					
						
							|  |  |  |     printf("--- Set errors only ---\n"); | 
					
						
							| 
									
										
										
										
											2014-03-18 02:38:12 +01:00
										 |  |  |     check_stdio_details(NULL, "ignore"); | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |     printf("--- Set encoding only ---\n"); | 
					
						
							| 
									
										
										
										
											2018-08-28 23:26:33 +02:00
										 |  |  |     check_stdio_details("iso8859-1", NULL); | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |     printf("--- Set encoding and errors ---\n"); | 
					
						
							| 
									
										
										
										
											2018-08-28 23:26:33 +02:00
										 |  |  |     check_stdio_details("iso8859-1", "replace"); | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check calling after initialization fails */ | 
					
						
							|  |  |  |     Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (Py_SetStandardStreamEncoding(NULL, NULL) == 0) { | 
					
						
							|  |  |  |         printf("Unexpected success calling Py_SetStandardStreamEncoding"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  | /*********************************************************
 | 
					
						
							|  |  |  |  * Test parts of the C-API that work before initialization | 
					
						
							|  |  |  |  *********************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  | /* The pre-initialization tests tend to break by segfaulting, so explicitly
 | 
					
						
							|  |  |  |  * flushed progress messages make the broken API easier to find when they fail. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define _Py_EMBED_PREINIT_CHECK(msg) \
 | 
					
						
							|  |  |  |     do {printf(msg); fflush(stdout);} while (0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  | static int test_pre_initialization_api(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-26 14:19:13 +10:00
										 |  |  |     /* Leading "./" ensures getpath.c can still find the standard library */ | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     _Py_EMBED_PREINIT_CHECK("Checking Py_DecodeLocale\n"); | 
					
						
							| 
									
										
										
										
											2017-11-26 14:19:13 +10:00
										 |  |  |     wchar_t *program = Py_DecodeLocale("./spam", NULL); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     if (program == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "Fatal error: cannot decode program name\n"); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     _Py_EMBED_PREINIT_CHECK("Checking Py_SetProgramName\n"); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     Py_SetProgramName(program); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     _Py_EMBED_PREINIT_CHECK("Initializing interpreter\n"); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     Py_Initialize(); | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     _Py_EMBED_PREINIT_CHECK("Check sys module contents\n"); | 
					
						
							|  |  |  |     PyRun_SimpleString("import sys; " | 
					
						
							|  |  |  |                        "print('sys.executable:', sys.executable)"); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Finalizing interpreter\n"); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     Py_Finalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     _Py_EMBED_PREINIT_CHECK("Freeing memory allocated by Py_DecodeLocale\n"); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     PyMem_RawFree(program); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* bpo-33042: Ensure embedding apps can predefine sys module options */ | 
					
						
							|  |  |  | static int test_pre_initialization_sys_options(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-30 15:36:42 +10:00
										 |  |  |     /* We allocate a couple of the options dynamically, and then delete
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |      * them before calling Py_Initialize. This ensures the interpreter isn't | 
					
						
							|  |  |  |      * relying on the caller to keep the passed in strings alive. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-03-30 15:36:42 +10:00
										 |  |  |     const wchar_t *static_warnoption = L"once"; | 
					
						
							|  |  |  |     const wchar_t *static_xoption = L"also_not_an_option=2"; | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     size_t warnoption_len = wcslen(static_warnoption); | 
					
						
							|  |  |  |     size_t xoption_len = wcslen(static_xoption); | 
					
						
							| 
									
										
										
										
											2018-03-30 15:36:42 +10:00
										 |  |  |     wchar_t *dynamic_once_warnoption = \ | 
					
						
							|  |  |  |              (wchar_t *) calloc(warnoption_len+1, sizeof(wchar_t)); | 
					
						
							|  |  |  |     wchar_t *dynamic_xoption = \ | 
					
						
							|  |  |  |              (wchar_t *) calloc(xoption_len+1, sizeof(wchar_t)); | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     wcsncpy(dynamic_once_warnoption, static_warnoption, warnoption_len+1); | 
					
						
							|  |  |  |     wcsncpy(dynamic_xoption, static_xoption, xoption_len+1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Checking PySys_AddWarnOption\n"); | 
					
						
							|  |  |  |     PySys_AddWarnOption(L"default"); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Checking PySys_ResetWarnOptions\n"); | 
					
						
							|  |  |  |     PySys_ResetWarnOptions(); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Checking PySys_AddWarnOption linked list\n"); | 
					
						
							|  |  |  |     PySys_AddWarnOption(dynamic_once_warnoption); | 
					
						
							|  |  |  |     PySys_AddWarnOption(L"module"); | 
					
						
							|  |  |  |     PySys_AddWarnOption(L"default"); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Checking PySys_AddXOption\n"); | 
					
						
							|  |  |  |     PySys_AddXOption(L"not_an_option=1"); | 
					
						
							|  |  |  |     PySys_AddXOption(dynamic_xoption); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Delete the dynamic options early */ | 
					
						
							|  |  |  |     free(dynamic_once_warnoption); | 
					
						
							|  |  |  |     dynamic_once_warnoption = NULL; | 
					
						
							|  |  |  |     free(dynamic_xoption); | 
					
						
							|  |  |  |     dynamic_xoption = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Initializing interpreter\n"); | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Check sys module contents\n"); | 
					
						
							|  |  |  |     PyRun_SimpleString("import sys; " | 
					
						
							|  |  |  |                        "print('sys.warnoptions:', sys.warnoptions); " | 
					
						
							|  |  |  |                        "print('sys._xoptions:', sys._xoptions); " | 
					
						
							|  |  |  |                        "warnings = sys.modules['warnings']; " | 
					
						
							|  |  |  |                        "latest_filters = [f[0] for f in warnings.filters[:3]]; " | 
					
						
							|  |  |  |                        "print('warnings.filters[:3]:', latest_filters)"); | 
					
						
							|  |  |  |     _Py_EMBED_PREINIT_CHECK("Finalizing interpreter\n"); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* bpo-20891: Avoid race condition when initialising the GIL */ | 
					
						
							| 
									
										
										
										
											2017-11-30 22:05:00 +01:00
										 |  |  | static void bpo20891_thread(void *lockp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyThread_type_lock lock = *((PyThread_type_lock*)lockp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyGILState_STATE state = PyGILState_Ensure(); | 
					
						
							|  |  |  |     if (!PyGILState_Check()) { | 
					
						
							|  |  |  |         fprintf(stderr, "PyGILState_Check failed!"); | 
					
						
							|  |  |  |         abort(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyGILState_Release(state); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyThread_release_lock(lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyThread_exit_thread(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_bpo20891(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* bpo-20891: Calling PyGILState_Ensure in a non-Python thread before
 | 
					
						
							|  |  |  |        calling PyEval_InitThreads() must not crash. PyGILState_Ensure() must | 
					
						
							|  |  |  |        call PyEval_InitThreads() for us in this case. */ | 
					
						
							|  |  |  |     PyThread_type_lock lock = PyThread_allocate_lock(); | 
					
						
							|  |  |  |     if (!lock) { | 
					
						
							|  |  |  |         fprintf(stderr, "PyThread_allocate_lock failed!"); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &lock); | 
					
						
							|  |  |  |     if (thrd == PYTHREAD_INVALID_THREAD_ID) { | 
					
						
							|  |  |  |         fprintf(stderr, "PyThread_start_new_thread failed!"); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyThread_acquire_lock(lock, WAIT_LOCK); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |     /* wait until the thread exit */ | 
					
						
							|  |  |  |     PyThread_acquire_lock(lock, WAIT_LOCK); | 
					
						
							|  |  |  |     Py_END_ALLOW_THREADS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyThread_free_lock(lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-22 19:14:51 +02:00
										 |  |  | static int test_initialize_twice(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* bpo-33932: Calling Py_Initialize() twice should do nothing
 | 
					
						
							|  |  |  |      * (and not crash!). */ | 
					
						
							|  |  |  |     Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-20 17:34:23 +02:00
										 |  |  | static int test_initialize_pymain(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     wchar_t *argv[] = {L"PYTHON", L"-c", | 
					
						
							|  |  |  |                        L"import sys; print(f'Py_Main() after Py_Initialize: sys.argv={sys.argv}')", | 
					
						
							|  |  |  |                        L"arg2"}; | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* bpo-34008: Calling Py_Main() after Py_Initialize() must not crash */ | 
					
						
							|  |  |  |     Py_Main(Py_ARRAY_LENGTH(argv), argv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  | static void | 
					
						
							|  |  |  | dump_config(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #define ASSERT_EQUAL(a, b) \
 | 
					
						
							|  |  |  |     if ((a) != (b)) { \ | 
					
						
							|  |  |  |         printf("ERROR: %s != %s (%i != %i)\n", #a, #b, (a), (b)); \ | 
					
						
							|  |  |  |         exit(1); \ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #define ASSERT_STR_EQUAL(a, b) \
 | 
					
						
							|  |  |  |     if ((a) == NULL || (b == NULL) || wcscmp((a), (b)) != 0) { \ | 
					
						
							|  |  |  |         printf("ERROR: %s != %s ('%ls' != '%ls')\n", #a, #b, (a), (b)); \ | 
					
						
							|  |  |  |         exit(1); \ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-03 15:33:52 +02:00
										 |  |  |     PyInterpreterState *interp = _PyInterpreterState_Get(); | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     _PyCoreConfig *config = &interp->core_config; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("install_signal_handlers = %i\n", config->install_signal_handlers); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("use_environment = %i\n", config->use_environment); | 
					
						
							|  |  |  |     ASSERT_EQUAL(config->use_environment, !Py_IgnoreEnvironmentFlag); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("use_hash_seed = %i\n", config->use_hash_seed); | 
					
						
							|  |  |  |     printf("hash_seed = %lu\n", config->hash_seed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("allocator = %s\n", config->allocator); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("dev_mode = %i\n", config->dev_mode); | 
					
						
							|  |  |  |     printf("faulthandler = %i\n", config->faulthandler); | 
					
						
							|  |  |  |     printf("tracemalloc = %i\n", config->tracemalloc); | 
					
						
							|  |  |  |     printf("import_time = %i\n", config->import_time); | 
					
						
							|  |  |  |     printf("show_ref_count = %i\n", config->show_ref_count); | 
					
						
							|  |  |  |     printf("show_alloc_count = %i\n", config->show_alloc_count); | 
					
						
							|  |  |  |     printf("dump_refs = %i\n", config->dump_refs); | 
					
						
							|  |  |  |     printf("malloc_stats = %i\n", config->malloc_stats); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 13:25:36 +02:00
										 |  |  |     printf("filesystem_encoding = %s\n", config->filesystem_encoding); | 
					
						
							|  |  |  |     printf("filesystem_errors = %s\n", config->filesystem_errors); | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     printf("coerce_c_locale = %i\n", config->coerce_c_locale); | 
					
						
							|  |  |  |     printf("coerce_c_locale_warn = %i\n", config->coerce_c_locale_warn); | 
					
						
							|  |  |  |     printf("utf8_mode = %i\n", config->utf8_mode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("pycache_prefix = %ls\n", config->pycache_prefix); | 
					
						
							|  |  |  |     printf("program_name = %ls\n", config->program_name); | 
					
						
							|  |  |  |     ASSERT_STR_EQUAL(config->program_name, Py_GetProgramName()); | 
					
						
							| 
									
										
										
										
											2018-08-01 03:07:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     printf("argc = %i\n", config->argc); | 
					
						
							|  |  |  |     printf("argv = ["); | 
					
						
							|  |  |  |     for (int i=0; i < config->argc; i++) { | 
					
						
							|  |  |  |         if (i) { | 
					
						
							|  |  |  |             printf(", "); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         printf("\"%ls\"", config->argv[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     printf("]\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     printf("program = %ls\n", config->program); | 
					
						
							|  |  |  |     /* FIXME: test xoptions */ | 
					
						
							|  |  |  |     /* FIXME: test warnoptions */ | 
					
						
							|  |  |  |     /* FIXME: test module_search_path_env */ | 
					
						
							|  |  |  |     /* FIXME: test home */ | 
					
						
							|  |  |  |     /* FIXME: test module_search_paths */ | 
					
						
							|  |  |  |     /* FIXME: test executable */ | 
					
						
							|  |  |  |     /* FIXME: test prefix */ | 
					
						
							|  |  |  |     /* FIXME: test base_prefix */ | 
					
						
							|  |  |  |     /* FIXME: test exec_prefix */ | 
					
						
							|  |  |  |     /* FIXME: test base_exec_prefix */ | 
					
						
							|  |  |  |     /* FIXME: test dll_path */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("isolated = %i\n", config->isolated); | 
					
						
							|  |  |  |     ASSERT_EQUAL(config->isolated, Py_IsolatedFlag); | 
					
						
							|  |  |  |     printf("site_import = %i\n", config->site_import); | 
					
						
							|  |  |  |     printf("bytes_warning = %i\n", config->bytes_warning); | 
					
						
							|  |  |  |     printf("inspect = %i\n", config->inspect); | 
					
						
							|  |  |  |     printf("interactive = %i\n", config->interactive); | 
					
						
							|  |  |  |     printf("optimization_level = %i\n", config->optimization_level); | 
					
						
							| 
									
										
										
										
											2018-08-01 03:07:00 +02:00
										 |  |  |     printf("parser_debug = %i\n", config->parser_debug); | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     printf("write_bytecode = %i\n", config->write_bytecode); | 
					
						
							|  |  |  |     printf("verbose = %i\n", config->verbose); | 
					
						
							|  |  |  |     ASSERT_EQUAL(config->verbose, Py_VerboseFlag); | 
					
						
							|  |  |  |     printf("quiet = %i\n", config->quiet); | 
					
						
							|  |  |  |     printf("user_site_directory = %i\n", config->user_site_directory); | 
					
						
							| 
									
										
										
										
											2018-08-01 03:07:00 +02:00
										 |  |  |     printf("buffered_stdio = %i\n", config->buffered_stdio); | 
					
						
							| 
									
										
										
										
											2018-08-03 22:49:07 +02:00
										 |  |  |     ASSERT_EQUAL(config->buffered_stdio, !Py_UnbufferedStdioFlag); | 
					
						
							| 
									
										
										
										
											2018-08-29 11:47:29 +02:00
										 |  |  |     printf("stdio_encoding = %s\n", config->stdio_encoding); | 
					
						
							|  |  |  |     printf("stdio_errors = %s\n", config->stdio_errors); | 
					
						
							| 
									
										
										
										
											2018-08-03 22:49:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     /* FIXME: test legacy_windows_fs_encoding */ | 
					
						
							|  |  |  |     /* FIXME: test legacy_windows_stdio */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     printf("_install_importlib = %i\n", config->_install_importlib); | 
					
						
							|  |  |  |     printf("_check_hash_pycs_mode = %s\n", config->_check_hash_pycs_mode); | 
					
						
							| 
									
										
										
										
											2018-08-01 02:13:04 +02:00
										 |  |  |     printf("_frozen = %i\n", config->_frozen); | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef ASSERT_EQUAL
 | 
					
						
							|  |  |  | #undef ASSERT_STR_EQUAL
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_default_config(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_global_config(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* FIXME: test Py_IgnoreEnvironmentFlag */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONUTF8=0"); | 
					
						
							|  |  |  |     Py_UTF8Mode = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Test initialization from global configuration variables (Py_xxx) */ | 
					
						
							|  |  |  |     Py_SetProgramName(L"./globalvar"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Py_IsolatedFlag is not tested */ | 
					
						
							|  |  |  |     Py_NoSiteFlag = 1; | 
					
						
							|  |  |  |     Py_BytesWarningFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONINSPECT="); | 
					
						
							|  |  |  |     Py_InspectFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONOPTIMIZE=0"); | 
					
						
							|  |  |  |     Py_InteractiveFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONDEBUG=0"); | 
					
						
							|  |  |  |     Py_OptimizeFlag = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Py_DebugFlag is not tested */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONDONTWRITEBYTECODE="); | 
					
						
							|  |  |  |     Py_DontWriteBytecodeFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONVERBOSE=0"); | 
					
						
							|  |  |  |     Py_VerboseFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_QuietFlag = 1; | 
					
						
							|  |  |  |     Py_NoUserSiteDirectory = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONUNBUFFERED="); | 
					
						
							|  |  |  |     Py_UnbufferedStdioFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 02:13:04 +02:00
										 |  |  |     Py_FrozenFlag = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     /* FIXME: test Py_LegacyWindowsFSEncodingFlag */ | 
					
						
							|  |  |  |     /* FIXME: test Py_LegacyWindowsStdioFlag */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_Initialize(); | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_from_config(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Test _Py_InitializeFromConfig() */ | 
					
						
							|  |  |  |     _PyCoreConfig config = _PyCoreConfig_INIT; | 
					
						
							|  |  |  |     config.install_signal_handlers = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* FIXME: test use_environment */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONHASHSEED=42"); | 
					
						
							|  |  |  |     config.use_hash_seed = 1; | 
					
						
							|  |  |  |     config.hash_seed = 123; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONMALLOC=malloc"); | 
					
						
							|  |  |  |     config.allocator = "malloc_debug"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* dev_mode=1 is tested in test_init_dev_mode() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONFAULTHANDLER="); | 
					
						
							|  |  |  |     config.faulthandler = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONTRACEMALLOC=0"); | 
					
						
							|  |  |  |     config.tracemalloc = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONPROFILEIMPORTTIME=0"); | 
					
						
							|  |  |  |     config.import_time = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     config.show_ref_count = 1; | 
					
						
							|  |  |  |     config.show_alloc_count = 1; | 
					
						
							|  |  |  |     /* FIXME: test dump_refs: bpo-34223 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONMALLOCSTATS=0"); | 
					
						
							|  |  |  |     config.malloc_stats = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* FIXME: test coerce_c_locale and coerce_c_locale_warn */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONUTF8=0"); | 
					
						
							|  |  |  |     Py_UTF8Mode = 0; | 
					
						
							|  |  |  |     config.utf8_mode = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONPYCACHEPREFIX=env_pycache_prefix"); | 
					
						
							|  |  |  |     config.pycache_prefix = L"conf_pycache_prefix"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_SetProgramName(L"./globalvar"); | 
					
						
							|  |  |  |     config.program_name = L"./conf_program_name"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* FIXME: test argc/argv */ | 
					
						
							|  |  |  |     config.program = L"conf_program"; | 
					
						
							|  |  |  |     /* FIXME: test xoptions */ | 
					
						
							|  |  |  |     /* FIXME: test warnoptions */ | 
					
						
							|  |  |  |     /* FIXME: test module_search_path_env */ | 
					
						
							|  |  |  |     /* FIXME: test home */ | 
					
						
							|  |  |  |     /* FIXME: test path config: module_search_path .. dll_path */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONVERBOSE=0"); | 
					
						
							|  |  |  |     Py_VerboseFlag = 0; | 
					
						
							|  |  |  |     config.verbose = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_NoSiteFlag = 0; | 
					
						
							|  |  |  |     config.site_import = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_BytesWarningFlag = 0; | 
					
						
							|  |  |  |     config.bytes_warning = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONINSPECT="); | 
					
						
							|  |  |  |     Py_InspectFlag = 0; | 
					
						
							|  |  |  |     config.inspect = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_InteractiveFlag = 0; | 
					
						
							|  |  |  |     config.interactive = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONOPTIMIZE=0"); | 
					
						
							|  |  |  |     Py_OptimizeFlag = 1; | 
					
						
							|  |  |  |     config.optimization_level = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 03:07:00 +02:00
										 |  |  |     /* FIXME: test parser_debug */ | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONDONTWRITEBYTECODE="); | 
					
						
							|  |  |  |     Py_DontWriteBytecodeFlag = 0; | 
					
						
							|  |  |  |     config.write_bytecode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_QuietFlag = 0; | 
					
						
							|  |  |  |     config.quiet = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     putenv("PYTHONUNBUFFERED="); | 
					
						
							|  |  |  |     Py_UnbufferedStdioFlag = 0; | 
					
						
							| 
									
										
										
										
											2018-08-01 03:07:00 +02:00
										 |  |  |     config.buffered_stdio = 0; | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 11:47:29 +02:00
										 |  |  |     putenv("PYTHONIOENCODING=cp424"); | 
					
						
							|  |  |  |     Py_SetStandardStreamEncoding("ascii", "ignore"); | 
					
						
							|  |  |  |     config.stdio_encoding = "iso8859-1"; | 
					
						
							|  |  |  |     config.stdio_errors = "replace"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     putenv("PYTHONNOUSERSITE="); | 
					
						
							|  |  |  |     Py_NoUserSiteDirectory = 0; | 
					
						
							|  |  |  |     config.user_site_directory = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     config._check_hash_pycs_mode = "always"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 02:13:04 +02:00
										 |  |  |     Py_FrozenFlag = 0; | 
					
						
							|  |  |  |     config._frozen = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     _PyInitError err = _Py_InitializeFromConfig(&config); | 
					
						
							|  |  |  |     /* Don't call _PyCoreConfig_Clear() since all strings are static */ | 
					
						
							|  |  |  |     if (_Py_INIT_FAILED(err)) { | 
					
						
							|  |  |  |         _Py_FatalInitError(err); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_init_env_putenvs(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     putenv("PYTHONHASHSEED=42"); | 
					
						
							|  |  |  |     putenv("PYTHONMALLOC=malloc_debug"); | 
					
						
							|  |  |  |     putenv("PYTHONTRACEMALLOC=2"); | 
					
						
							|  |  |  |     putenv("PYTHONPROFILEIMPORTTIME=1"); | 
					
						
							|  |  |  |     putenv("PYTHONMALLOCSTATS=1"); | 
					
						
							|  |  |  |     putenv("PYTHONUTF8=1"); | 
					
						
							|  |  |  |     putenv("PYTHONVERBOSE=1"); | 
					
						
							|  |  |  |     putenv("PYTHONINSPECT=1"); | 
					
						
							|  |  |  |     putenv("PYTHONOPTIMIZE=2"); | 
					
						
							|  |  |  |     putenv("PYTHONDONTWRITEBYTECODE=1"); | 
					
						
							|  |  |  |     putenv("PYTHONUNBUFFERED=1"); | 
					
						
							|  |  |  |     putenv("PYTHONPYCACHEPREFIX=env_pycache_prefix"); | 
					
						
							|  |  |  |     putenv("PYTHONNOUSERSITE=1"); | 
					
						
							|  |  |  |     putenv("PYTHONFAULTHANDLER=1"); | 
					
						
							|  |  |  |     putenv("PYTHONDEVMODE=1"); | 
					
						
							| 
									
										
										
										
											2018-08-29 11:47:29 +02:00
										 |  |  |     putenv("PYTHONIOENCODING=iso8859-1:replace"); | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     /* FIXME: test PYTHONWARNINGS */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONEXECUTABLE */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONHOME */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONDEBUG */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONDUMPREFS */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONCOERCECLOCALE */ | 
					
						
							|  |  |  |     /* FIXME: test PYTHONPATH */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_env(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Test initialization from environment variables */ | 
					
						
							|  |  |  |     Py_IgnoreEnvironmentFlag = 0; | 
					
						
							|  |  |  |     test_init_env_putenvs(); | 
					
						
							|  |  |  |     _testembed_Py_Initialize(); | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_isolated(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Test _PyCoreConfig.isolated=1 */ | 
					
						
							|  |  |  |     _PyCoreConfig config = _PyCoreConfig_INIT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Set coerce_c_locale and utf8_mode to not depend on the locale */ | 
					
						
							|  |  |  |     config.coerce_c_locale = 0; | 
					
						
							|  |  |  |     config.utf8_mode = 0; | 
					
						
							|  |  |  |     /* Use path starting with "./" avoids a search along the PATH */ | 
					
						
							|  |  |  |     config.program_name = L"./_testembed"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_IsolatedFlag = 0; | 
					
						
							|  |  |  |     config.isolated = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     test_init_env_putenvs(); | 
					
						
							|  |  |  |     _PyInitError err = _Py_InitializeFromConfig(&config); | 
					
						
							|  |  |  |     if (_Py_INIT_FAILED(err)) { | 
					
						
							|  |  |  |         _Py_FatalInitError(err); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_init_dev_mode(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _PyCoreConfig config = _PyCoreConfig_INIT; | 
					
						
							|  |  |  |     putenv("PYTHONFAULTHANDLER="); | 
					
						
							|  |  |  |     putenv("PYTHONMALLOC="); | 
					
						
							|  |  |  |     config.dev_mode = 1; | 
					
						
							|  |  |  |     config.program_name = L"./_testembed"; | 
					
						
							|  |  |  |     _PyInitError err = _Py_InitializeFromConfig(&config); | 
					
						
							|  |  |  |     if (_Py_INIT_FAILED(err)) { | 
					
						
							|  |  |  |         _Py_FatalInitError(err); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dump_config(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  | /* *********************************************************
 | 
					
						
							|  |  |  |  * List of test cases and the function that implements it. | 
					
						
							| 
									
										
										
										
											2017-09-14 09:38:36 +03:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |  * Names are compared case-sensitively with the first | 
					
						
							|  |  |  |  * argument. If no match is found, or no first argument was | 
					
						
							|  |  |  |  * provided, the names of all test cases are printed and | 
					
						
							|  |  |  |  * the exit code will be -1. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The int returned from test functions is used as the exit | 
					
						
							|  |  |  |  * code, and test_capi treats all non-zero exit codes as a | 
					
						
							| 
									
										
										
										
											2017-09-14 09:38:36 +03:00
										 |  |  |  * failed test. | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |  *********************************************************/ | 
					
						
							|  |  |  | struct TestCase | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |     const char *name; | 
					
						
							|  |  |  |     int (*func)(void); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct TestCase TestCases[] = { | 
					
						
							|  |  |  |     { "forced_io_encoding", test_forced_io_encoding }, | 
					
						
							|  |  |  |     { "repeated_init_and_subinterpreters", test_repeated_init_and_subinterpreters }, | 
					
						
							| 
									
										
										
										
											2017-11-24 12:09:24 +01:00
										 |  |  |     { "pre_initialization_api", test_pre_initialization_api }, | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     { "pre_initialization_sys_options", test_pre_initialization_sys_options }, | 
					
						
							| 
									
										
										
										
											2017-11-30 22:05:00 +01:00
										 |  |  |     { "bpo20891", test_bpo20891 }, | 
					
						
							| 
									
										
										
										
											2018-06-22 19:14:51 +02:00
										 |  |  |     { "initialize_twice", test_initialize_twice }, | 
					
						
							| 
									
										
										
										
											2018-07-20 17:34:23 +02:00
										 |  |  |     { "initialize_pymain", test_initialize_pymain }, | 
					
						
							| 
									
										
										
										
											2018-07-26 18:57:56 +02:00
										 |  |  |     { "init_default_config", test_init_default_config }, | 
					
						
							|  |  |  |     { "init_global_config", test_init_global_config }, | 
					
						
							|  |  |  |     { "init_from_config", test_init_from_config }, | 
					
						
							|  |  |  |     { "init_env", test_init_env }, | 
					
						
							|  |  |  |     { "init_dev_mode", test_init_dev_mode }, | 
					
						
							|  |  |  |     { "init_isolated", test_init_isolated }, | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |     { NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  | int main(int argc, char *argv[]) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |     if (argc > 1) { | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |         for (struct TestCase *tc = TestCases; tc && tc->name; tc++) { | 
					
						
							|  |  |  |             if (strcmp(argv[1], tc->name) == 0) | 
					
						
							|  |  |  |                 return (*tc->func)(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-17 22:35:35 +10:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* No match found, or no test name provided, so display usage */ | 
					
						
							|  |  |  |     printf("Python " PY_VERSION " _testembed executable for embedded interpreter tests\n" | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |            "Normally executed via 'EmbeddingTests' in Lib/test/test_embed.py\n\n" | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |            "Usage: %s TESTNAME\n\nAll available tests:\n", argv[0]); | 
					
						
							|  |  |  |     for (struct TestCase *tc = TestCases; tc && tc->name; tc++) { | 
					
						
							|  |  |  |         printf("  %s\n", tc->name); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 20:44:30 +10:00
										 |  |  |     /* Non-zero exit code will cause test_embed.py tests to fail.
 | 
					
						
							| 
									
										
										
										
											2017-01-01 20:25:03 -08:00
										 |  |  |        This is intentional. */ | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2011-04-25 21:21:07 +02:00
										 |  |  | } |