blob: ef6e94b11451c44741537e120fd3a4646d714f69 [file] [log] [blame]
Tim Petersd66595f2001-02-04 03:09:53 +00001# Run the _testcapi module tests (tests for the Python/C API): by defn,
Guido van Rossum361c5352001-04-13 17:03:04 +00002# these are all functions _testcapi exports whose name begins with 'test_'.
Tim Peters9ea17ac2001-02-02 05:57:15 +00003
Antoine Pitrou8e605772011-04-25 21:21:07 +02004import os
Antoine Pitrou2f828f22012-01-18 00:21:11 +01005import pickle
Jeffrey Yasskin8e0bdfd2010-05-13 18:31:05 +00006import random
7import subprocess
Martin v. Löwis6ce7ed22005-03-03 12:26:35 +00008import sys
Victor Stinnerefde1462015-03-21 15:04:43 +01009import textwrap
Benjamin Petersona54c9092009-01-13 02:11:23 +000010import time
Benjamin Peterson9b6df6a2008-10-16 23:56:29 +000011import unittest
Benjamin Petersonee8712c2008-05-20 21:35:26 +000012from test import support
Larry Hastingsfcafe432013-11-23 17:35:48 -080013from test.support import MISSING_C_DOCSTRINGS
Victor Stinnerefde1462015-03-21 15:04:43 +010014from test.script_helper import assert_python_failure
Victor Stinner45df8202010-04-28 22:31:17 +000015try:
Stefan Krahfd24f9e2012-08-20 11:04:24 +020016 import _posixsubprocess
17except ImportError:
18 _posixsubprocess = None
19try:
Victor Stinner45df8202010-04-28 22:31:17 +000020 import threading
21except ImportError:
22 threading = None
Serhiy Storchaka5cfc79d2014-02-07 10:06:39 +020023# Skip this test if the _testcapi module isn't available.
24_testcapi = support.import_module('_testcapi')
Tim Peters9ea17ac2001-02-02 05:57:15 +000025
Victor Stinnerefde1462015-03-21 15:04:43 +010026# Were we compiled --with-pydebug or with #define Py_DEBUG?
27Py_DEBUG = hasattr(sys, 'gettotalrefcount')
28
Benjamin Petersona54c9092009-01-13 02:11:23 +000029
Benjamin Peterson9b6df6a2008-10-16 23:56:29 +000030def testfunction(self):
31 """some doc"""
32 return self
33
34class InstanceMethod:
35 id = _testcapi.instancemethod(id)
36 testfunction = _testcapi.instancemethod(testfunction)
37
38class CAPITest(unittest.TestCase):
39
40 def test_instancemethod(self):
41 inst = InstanceMethod()
42 self.assertEqual(id(inst), inst.id())
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000043 self.assertTrue(inst.testfunction() is inst)
Benjamin Peterson9b6df6a2008-10-16 23:56:29 +000044 self.assertEqual(inst.testfunction.__doc__, testfunction.__doc__)
45 self.assertEqual(InstanceMethod.testfunction.__doc__, testfunction.__doc__)
46
47 InstanceMethod.testfunction.attribute = "test"
48 self.assertEqual(testfunction.attribute, "test")
49 self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test")
50
Stefan Krah0ca46242010-06-09 08:56:28 +000051 @unittest.skipUnless(threading, 'Threading required for this test.')
Jeffrey Yasskin8e0bdfd2010-05-13 18:31:05 +000052 def test_no_FatalError_infinite_loop(self):
Antoine Pitrou77e904e2013-10-08 23:04:32 +020053 with support.SuppressCrashReport():
Ezio Melotti25a40452013-03-05 20:26:17 +020054 p = subprocess.Popen([sys.executable, "-c",
Ezio Melottie1857d92013-03-05 20:31:34 +020055 'import _testcapi;'
56 '_testcapi.crash_no_current_thread()'],
57 stdout=subprocess.PIPE,
58 stderr=subprocess.PIPE)
Jeffrey Yasskin8e0bdfd2010-05-13 18:31:05 +000059 (out, err) = p.communicate()
60 self.assertEqual(out, b'')
61 # This used to cause an infinite loop.
Vinay Sajip73954042012-05-06 11:34:50 +010062 self.assertTrue(err.rstrip().startswith(
Jeffrey Yasskin8e0bdfd2010-05-13 18:31:05 +000063 b'Fatal Python error:'
Vinay Sajip73954042012-05-06 11:34:50 +010064 b' PyThreadState_Get: no current thread'))
Jeffrey Yasskin8e0bdfd2010-05-13 18:31:05 +000065
Antoine Pitrou915605c2011-02-24 20:53:48 +000066 def test_memoryview_from_NULL_pointer(self):
67 self.assertRaises(ValueError, _testcapi.make_memoryview_from_NULL_pointer)
Benjamin Peterson9b6df6a2008-10-16 23:56:29 +000068
Martin v. Löwisaa2efcb2012-04-19 14:33:43 +020069 def test_exc_info(self):
70 raised_exception = ValueError("5")
71 new_exc = TypeError("TEST")
72 try:
73 raise raised_exception
74 except ValueError as e:
75 tb = e.__traceback__
76 orig_sys_exc_info = sys.exc_info()
77 orig_exc_info = _testcapi.set_exc_info(new_exc.__class__, new_exc, None)
78 new_sys_exc_info = sys.exc_info()
79 new_exc_info = _testcapi.set_exc_info(*orig_exc_info)
80 reset_sys_exc_info = sys.exc_info()
81
82 self.assertEqual(orig_exc_info[1], e)
83
84 self.assertSequenceEqual(orig_exc_info, (raised_exception.__class__, raised_exception, tb))
85 self.assertSequenceEqual(orig_sys_exc_info, orig_exc_info)
86 self.assertSequenceEqual(reset_sys_exc_info, orig_exc_info)
87 self.assertSequenceEqual(new_exc_info, (new_exc.__class__, new_exc, None))
88 self.assertSequenceEqual(new_sys_exc_info, new_exc_info)
89 else:
90 self.assertTrue(False)
91
Stefan Krahfd24f9e2012-08-20 11:04:24 +020092 @unittest.skipUnless(_posixsubprocess, '_posixsubprocess required for this test.')
93 def test_seq_bytes_to_charp_array(self):
94 # Issue #15732: crash in _PySequence_BytesToCharpArray()
95 class Z(object):
96 def __len__(self):
97 return 1
98 self.assertRaises(TypeError, _posixsubprocess.fork_exec,
99 1,Z(),3,[1, 2],5,6,7,8,9,10,11,12,13,14,15,16,17)
Stefan Krah7cacd2e2012-08-21 08:16:09 +0200100 # Issue #15736: overflow in _PySequence_BytesToCharpArray()
101 class Z(object):
102 def __len__(self):
103 return sys.maxsize
104 def __getitem__(self, i):
105 return b'x'
106 self.assertRaises(MemoryError, _posixsubprocess.fork_exec,
107 1,Z(),3,[1, 2],5,6,7,8,9,10,11,12,13,14,15,16,17)
Stefan Krahfd24f9e2012-08-20 11:04:24 +0200108
Stefan Krahdb579d72012-08-20 14:36:47 +0200109 @unittest.skipUnless(_posixsubprocess, '_posixsubprocess required for this test.')
110 def test_subprocess_fork_exec(self):
111 class Z(object):
112 def __len__(self):
113 return 1
114
115 # Issue #15738: crash in subprocess_fork_exec()
116 self.assertRaises(TypeError, _posixsubprocess.fork_exec,
117 Z(),[b'1'],3,[1, 2],5,6,7,8,9,10,11,12,13,14,15,16,17)
118
Larry Hastingsfcafe432013-11-23 17:35:48 -0800119 @unittest.skipIf(MISSING_C_DOCSTRINGS,
120 "Signature information for builtins requires docstrings")
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800121 def test_docstring_signature_parsing(self):
122
123 self.assertEqual(_testcapi.no_docstring.__doc__, None)
124 self.assertEqual(_testcapi.no_docstring.__text_signature__, None)
125
126 self.assertEqual(_testcapi.docstring_empty.__doc__, "")
127 self.assertEqual(_testcapi.docstring_empty.__text_signature__, None)
128
129 self.assertEqual(_testcapi.docstring_no_signature.__doc__,
130 "This docstring has no signature.")
131 self.assertEqual(_testcapi.docstring_no_signature.__text_signature__, None)
132
133 self.assertEqual(_testcapi.docstring_with_invalid_signature.__doc__,
Larry Hastings2623c8c2014-02-08 22:15:29 -0800134 "docstring_with_invalid_signature($module, /, boo)\n"
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800135 "\n"
136 "This docstring has an invalid signature."
137 )
138 self.assertEqual(_testcapi.docstring_with_invalid_signature.__text_signature__, None)
139
Larry Hastings2623c8c2014-02-08 22:15:29 -0800140 self.assertEqual(_testcapi.docstring_with_invalid_signature2.__doc__,
141 "docstring_with_invalid_signature2($module, /, boo)\n"
142 "\n"
143 "--\n"
144 "\n"
145 "This docstring also has an invalid signature."
146 )
147 self.assertEqual(_testcapi.docstring_with_invalid_signature2.__text_signature__, None)
148
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800149 self.assertEqual(_testcapi.docstring_with_signature.__doc__,
150 "This docstring has a valid signature.")
Larry Hastings2623c8c2014-02-08 22:15:29 -0800151 self.assertEqual(_testcapi.docstring_with_signature.__text_signature__, "($module, /, sig)")
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800152
153 self.assertEqual(_testcapi.docstring_with_signature_and_extra_newlines.__doc__,
Larry Hastings2623c8c2014-02-08 22:15:29 -0800154 "\nThis docstring has a valid signature and some extra newlines.")
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800155 self.assertEqual(_testcapi.docstring_with_signature_and_extra_newlines.__text_signature__,
Larry Hastings2623c8c2014-02-08 22:15:29 -0800156 "($module, /, parameter)")
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800157
Benjamin Petersond51374e2014-04-09 23:55:56 -0400158 def test_c_type_with_matrix_multiplication(self):
159 M = _testcapi.matmulType
160 m1 = M()
161 m2 = M()
162 self.assertEqual(m1 @ m2, ("matmul", m1, m2))
163 self.assertEqual(m1 @ 42, ("matmul", m1, 42))
164 self.assertEqual(42 @ m1, ("matmul", 42, m1))
165 o = m1
166 o @= m2
167 self.assertEqual(o, ("imatmul", m1, m2))
168 o = m1
169 o @= 42
170 self.assertEqual(o, ("imatmul", m1, 42))
171 o = 42
172 o @= m1
173 self.assertEqual(o, ("matmul", 42, m1))
174
Victor Stinnerefde1462015-03-21 15:04:43 +0100175 def test_return_null_without_error(self):
176 # Issue #23571: A function must not return NULL without setting an
177 # error
178 if Py_DEBUG:
179 code = textwrap.dedent("""
180 import _testcapi
181 from test import support
182
183 with support.SuppressCrashReport():
184 _testcapi.return_null_without_error()
185 """)
186 rc, out, err = assert_python_failure('-c', code)
187 self.assertIn(b'_Py_CheckFunctionResult: Assertion', err)
188 else:
189 with self.assertRaises(SystemError) as cm:
190 _testcapi.return_null_without_error()
191 self.assertRegex(str(cm.exception),
192 'return_null_without_error.* '
193 'returned NULL without setting an error')
194
195 def test_return_result_with_error(self):
196 # Issue #23571: A function must not return a result with an error set
197 if Py_DEBUG:
198 code = textwrap.dedent("""
199 import _testcapi
200 from test import support
201
202 with support.SuppressCrashReport():
203 _testcapi.return_result_with_error()
204 """)
205 rc, out, err = assert_python_failure('-c', code)
206 self.assertIn(b'_Py_CheckFunctionResult: Assertion', err)
207 else:
208 with self.assertRaises(SystemError) as cm:
209 _testcapi.return_result_with_error()
210 self.assertRegex(str(cm.exception),
211 'return_result_with_error.* '
212 'returned a result with an error set')
213
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800214
Victor Stinner45df8202010-04-28 22:31:17 +0000215@unittest.skipUnless(threading, 'Threading required for this test.')
Benjamin Petersona54c9092009-01-13 02:11:23 +0000216class TestPendingCalls(unittest.TestCase):
217
218 def pendingcalls_submit(self, l, n):
219 def callback():
220 #this function can be interrupted by thread switching so let's
221 #use an atomic operation
222 l.append(None)
223
224 for i in range(n):
225 time.sleep(random.random()*0.02) #0.01 secs on average
226 #try submitting callback until successful.
227 #rely on regular interrupt to flush queue if we are
228 #unsuccessful.
229 while True:
230 if _testcapi._pending_threadfunc(callback):
231 break;
232
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000233 def pendingcalls_wait(self, l, n, context = None):
Benjamin Petersona54c9092009-01-13 02:11:23 +0000234 #now, stick around until l[0] has grown to 10
235 count = 0;
236 while len(l) != n:
237 #this busy loop is where we expect to be interrupted to
238 #run our callbacks. Note that callbacks are only run on the
239 #main thread
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000240 if False and support.verbose:
Benjamin Petersona54c9092009-01-13 02:11:23 +0000241 print("(%i)"%(len(l),),)
242 for i in range(1000):
243 a = i*i
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000244 if context and not context.event.is_set():
245 continue
Benjamin Petersona54c9092009-01-13 02:11:23 +0000246 count += 1
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000247 self.assertTrue(count < 10000,
Benjamin Petersona54c9092009-01-13 02:11:23 +0000248 "timeout waiting for %i callbacks, got %i"%(n, len(l)))
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000249 if False and support.verbose:
Benjamin Petersona54c9092009-01-13 02:11:23 +0000250 print("(%i)"%(len(l),))
251
252 def test_pendingcalls_threaded(self):
Benjamin Petersona54c9092009-01-13 02:11:23 +0000253
254 #do every callback on a separate thread
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000255 n = 32 #total callbacks
Benjamin Petersona54c9092009-01-13 02:11:23 +0000256 threads = []
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000257 class foo(object):pass
258 context = foo()
259 context.l = []
260 context.n = 2 #submits per thread
261 context.nThreads = n // context.n
262 context.nFinished = 0
263 context.lock = threading.Lock()
264 context.event = threading.Event()
265
266 for i in range(context.nThreads):
267 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
Benjamin Petersona54c9092009-01-13 02:11:23 +0000268 t.start()
269 threads.append(t)
270
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000271 self.pendingcalls_wait(context.l, n, context)
Benjamin Petersona54c9092009-01-13 02:11:23 +0000272
273 for t in threads:
274 t.join()
275
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000276 def pendingcalls_thread(self, context):
277 try:
278 self.pendingcalls_submit(context.l, context.n)
279 finally:
280 with context.lock:
281 context.nFinished += 1
282 nFinished = context.nFinished
283 if False and support.verbose:
284 print("finished threads: ", nFinished)
285 if nFinished == context.nThreads:
286 context.event.set()
287
Benjamin Petersona54c9092009-01-13 02:11:23 +0000288 def test_pendingcalls_non_threaded(self):
Ezio Melotti13925002011-03-16 11:05:33 +0200289 #again, just using the main thread, likely they will all be dispatched at
Benjamin Petersona54c9092009-01-13 02:11:23 +0000290 #once. It is ok to ask for too many, because we loop until we find a slot.
291 #the loop can be interrupted to dispatch.
292 #there are only 32 dispatch slots, so we go for twice that!
293 l = []
294 n = 64
295 self.pendingcalls_submit(l, n)
296 self.pendingcalls_wait(l, n)
297
Antoine Pitrou7a2572c2013-08-01 20:43:26 +0200298
299class SubinterpreterTest(unittest.TestCase):
300
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100301 def test_subinterps(self):
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100302 import builtins
303 r, w = os.pipe()
304 code = """if 1:
305 import sys, builtins, pickle
306 with open({:d}, "wb") as f:
307 pickle.dump(id(sys.modules), f)
308 pickle.dump(id(builtins), f)
309 """.format(w)
310 with open(r, "rb") as f:
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100311 ret = support.run_in_subinterp(code)
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100312 self.assertEqual(ret, 0)
313 self.assertNotEqual(pickle.load(f), id(sys.modules))
314 self.assertNotEqual(pickle.load(f), id(builtins))
315
Antoine Pitrou7a2572c2013-08-01 20:43:26 +0200316
Martin v. Löwisc15bdef2009-05-29 14:47:46 +0000317# Bug #6012
318class Test6012(unittest.TestCase):
319 def test(self):
320 self.assertEqual(_testcapi.argparsing("Hello", "World"), 1)
Benjamin Petersona54c9092009-01-13 02:11:23 +0000321
Antoine Pitrou8e605772011-04-25 21:21:07 +0200322
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000323class EmbeddingTests(unittest.TestCase):
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000324 def setUp(self):
Antoine Pitrou8e605772011-04-25 21:21:07 +0200325 basepath = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
Nick Coghlan4e641df2013-11-03 16:54:46 +1000326 exename = "_testembed"
327 if sys.platform.startswith("win"):
328 ext = ("_d" if "_d" in sys.executable else "") + ".exe"
329 exename += ext
330 exepath = os.path.dirname(sys.executable)
331 else:
Nick Coghlanbca9acf2014-09-25 19:48:15 +1000332 exepath = os.path.join(basepath, "Programs")
Nick Coghlan4e641df2013-11-03 16:54:46 +1000333 self.test_exe = exe = os.path.join(exepath, exename)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000334 if not os.path.exists(exe):
335 self.skipTest("%r doesn't exist" % exe)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200336 # This is needed otherwise we get a fatal error:
337 # "Py_Initialize: Unable to get the locale encoding
338 # LookupError: no codec search functions registered: can't find encoding"
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000339 self.oldcwd = os.getcwd()
Antoine Pitrou8e605772011-04-25 21:21:07 +0200340 os.chdir(basepath)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000341
342 def tearDown(self):
343 os.chdir(self.oldcwd)
344
345 def run_embedded_interpreter(self, *args):
346 """Runs a test in the embedded interpreter"""
347 cmd = [self.test_exe]
348 cmd.extend(args)
349 p = subprocess.Popen(cmd,
350 stdout=subprocess.PIPE,
Steve Dower86e9deb2014-11-01 15:11:05 -0700351 stderr=subprocess.PIPE,
352 universal_newlines=True)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000353 (out, err) = p.communicate()
354 self.assertEqual(p.returncode, 0,
355 "bad returncode %d, stderr is %r" %
356 (p.returncode, err))
Steve Dower86e9deb2014-11-01 15:11:05 -0700357 return out, err
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000358
359 def test_subinterps(self):
360 # This is just a "don't crash" test
361 out, err = self.run_embedded_interpreter()
362 if support.verbose:
363 print()
364 print(out)
365 print(err)
366
Nick Coghlan4e641df2013-11-03 16:54:46 +1000367 @staticmethod
368 def _get_default_pipe_encoding():
369 rp, wp = os.pipe()
370 try:
371 with os.fdopen(wp, 'w') as w:
372 default_pipe_encoding = w.encoding
373 finally:
374 os.close(rp)
375 return default_pipe_encoding
376
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000377 def test_forced_io_encoding(self):
378 # Checks forced configuration of embedded interpreter IO streams
379 out, err = self.run_embedded_interpreter("forced_io_encoding")
380 if support.verbose:
381 print()
382 print(out)
383 print(err)
Victor Stinnerb2bef622014-03-18 02:38:12 +0100384 expected_errors = sys.__stdout__.errors
Nick Coghlan4e641df2013-11-03 16:54:46 +1000385 expected_stdin_encoding = sys.__stdin__.encoding
386 expected_pipe_encoding = self._get_default_pipe_encoding()
Steve Dower86e9deb2014-11-01 15:11:05 -0700387 expected_output = '\n'.join([
Nick Coghlan4e641df2013-11-03 16:54:46 +1000388 "--- Use defaults ---",
389 "Expected encoding: default",
390 "Expected errors: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100391 "stdin: {in_encoding}:{errors}",
392 "stdout: {out_encoding}:{errors}",
393 "stderr: {out_encoding}:backslashreplace",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000394 "--- Set errors only ---",
395 "Expected encoding: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100396 "Expected errors: ignore",
397 "stdin: {in_encoding}:ignore",
398 "stdout: {out_encoding}:ignore",
399 "stderr: {out_encoding}:backslashreplace",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000400 "--- Set encoding only ---",
401 "Expected encoding: latin-1",
402 "Expected errors: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100403 "stdin: latin-1:{errors}",
404 "stdout: latin-1:{errors}",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000405 "stderr: latin-1:backslashreplace",
406 "--- Set encoding and errors ---",
407 "Expected encoding: latin-1",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100408 "Expected errors: replace",
409 "stdin: latin-1:replace",
410 "stdout: latin-1:replace",
411 "stderr: latin-1:backslashreplace"])
412 expected_output = expected_output.format(
413 in_encoding=expected_stdin_encoding,
414 out_encoding=expected_pipe_encoding,
415 errors=expected_errors)
Nick Coghlan3321fb82013-10-18 23:59:58 +1000416 # This is useful if we ever trip over odd platform behaviour
Nick Coghlan6508dc52013-10-18 01:44:22 +1000417 self.maxDiff = None
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000418 self.assertEqual(out.strip(), expected_output)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200419
Larry Hastings8f904da2012-06-22 03:56:29 -0700420class SkipitemTest(unittest.TestCase):
421
422 def test_skipitem(self):
423 """
424 If this test failed, you probably added a new "format unit"
425 in Python/getargs.c, but neglected to update our poor friend
426 skipitem() in the same file. (If so, shame on you!)
427
Larry Hastings48ed3602012-06-22 12:58:36 -0700428 With a few exceptions**, this function brute-force tests all
429 printable ASCII*** characters (32 to 126 inclusive) as format units,
430 checking to see that PyArg_ParseTupleAndKeywords() return consistent
431 errors both when the unit is attempted to be used and when it is
432 skipped. If the format unit doesn't exist, we'll get one of two
433 specific error messages (one for used, one for skipped); if it does
434 exist we *won't* get that error--we'll get either no error or some
435 other error. If we get the specific "does not exist" error for one
436 test and not for the other, there's a mismatch, and the test fails.
Larry Hastings8f904da2012-06-22 03:56:29 -0700437
Larry Hastings48ed3602012-06-22 12:58:36 -0700438 ** Some format units have special funny semantics and it would
439 be difficult to accomodate them here. Since these are all
440 well-established and properly skipped in skipitem() we can
441 get away with not testing them--this test is really intended
442 to catch *new* format units.
443
444 *** Python C source files must be ASCII. Therefore it's impossible
445 to have non-ASCII format units.
446
Larry Hastings8f904da2012-06-22 03:56:29 -0700447 """
448 empty_tuple = ()
449 tuple_1 = (0,)
450 dict_b = {'b':1}
451 keywords = ["a", "b"]
452
Larry Hastings48ed3602012-06-22 12:58:36 -0700453 for i in range(32, 127):
Larry Hastings8f904da2012-06-22 03:56:29 -0700454 c = chr(i)
455
Larry Hastings8f904da2012-06-22 03:56:29 -0700456 # skip parentheses, the error reporting is inconsistent about them
457 # skip 'e', it's always a two-character code
458 # skip '|' and '$', they don't represent arguments anyway
Larry Hastings48ed3602012-06-22 12:58:36 -0700459 if c in '()e|$':
Larry Hastings8f904da2012-06-22 03:56:29 -0700460 continue
461
462 # test the format unit when not skipped
463 format = c + "i"
464 try:
465 # (note: the format string must be bytes!)
466 _testcapi.parse_tuple_and_keywords(tuple_1, dict_b,
467 format.encode("ascii"), keywords)
468 when_not_skipped = False
469 except TypeError as e:
470 s = "argument 1 must be impossible<bad format char>, not int"
471 when_not_skipped = (str(e) == s)
472 except RuntimeError as e:
473 when_not_skipped = False
474
475 # test the format unit when skipped
476 optional_format = "|" + format
477 try:
478 _testcapi.parse_tuple_and_keywords(empty_tuple, dict_b,
479 optional_format.encode("ascii"), keywords)
480 when_skipped = False
481 except RuntimeError as e:
482 s = "impossible<bad format char>: '{}'".format(format)
483 when_skipped = (str(e) == s)
484
485 message = ("test_skipitem_parity: "
486 "detected mismatch between convertsimple and skipitem "
487 "for format unit '{}' ({}), not skipped {}, skipped {}".format(
488 c, i, when_skipped, when_not_skipped))
489 self.assertIs(when_skipped, when_not_skipped, message)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200490
Jesus Cea6e1d2b62012-10-04 16:06:30 +0200491 def test_parse_tuple_and_keywords(self):
492 # parse_tuple_and_keywords error handling tests
493 self.assertRaises(TypeError, _testcapi.parse_tuple_and_keywords,
494 (), {}, 42, [])
495 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
496 (), {}, b'', 42)
497 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
498 (), {}, b'', [''] * 42)
499 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
500 (), {}, b'', [42])
501
Ezio Melotti29267c82013-02-23 05:52:46 +0200502@unittest.skipUnless(threading, 'Threading required for this test.')
503class TestThreadState(unittest.TestCase):
504
505 @support.reap_threads
506 def test_thread_state(self):
507 # some extra thread-state tests driven via _testcapi
508 def target():
509 idents = []
510
511 def callback():
Ezio Melotti35246bd2013-02-23 05:58:38 +0200512 idents.append(threading.get_ident())
Ezio Melotti29267c82013-02-23 05:52:46 +0200513
514 _testcapi._test_thread_state(callback)
515 a = b = callback
516 time.sleep(1)
517 # Check our main thread is in the list exactly 3 times.
Ezio Melotti35246bd2013-02-23 05:58:38 +0200518 self.assertEqual(idents.count(threading.get_ident()), 3,
Ezio Melotti29267c82013-02-23 05:52:46 +0200519 "Couldn't find main thread correctly in the list")
520
521 target()
522 t = threading.Thread(target=target)
523 t.start()
524 t.join()
525
Zachary Warec12f09e2013-11-11 22:47:04 -0600526class Test_testcapi(unittest.TestCase):
527 def test__testcapi(self):
528 for name in dir(_testcapi):
529 if name.startswith('test_'):
Zachary Waredfcd6942013-11-11 22:59:23 -0600530 with self.subTest("internal", name=name):
531 test = getattr(_testcapi, name)
532 test()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000533
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000534if __name__ == "__main__":
Zachary Warec12f09e2013-11-11 22:47:04 -0600535 unittest.main()