blob: fbd1466c7885373678f34e194914380c76614e52 [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)
Victor Stinner381a9bc2015-03-24 14:01:32 +0100187 self.assertRegex(err.replace(b'\r', b''),
Victor Stinner944fbcc2015-03-24 16:28:52 +0100188 br'Fatal Python error: a function returned NULL '
189 br'without setting an error\n'
Victor Stinner381a9bc2015-03-24 14:01:32 +0100190 br'SystemError: <built-in function '
191 br'return_null_without_error> returned NULL '
192 br'without setting an error\n'
193 br'\n'
194 br'Current thread.*:\n'
195 br' File .*", line 6 in <module>')
Victor Stinnerefde1462015-03-21 15:04:43 +0100196 else:
197 with self.assertRaises(SystemError) as cm:
198 _testcapi.return_null_without_error()
199 self.assertRegex(str(cm.exception),
200 'return_null_without_error.* '
201 'returned NULL without setting an error')
202
203 def test_return_result_with_error(self):
204 # Issue #23571: A function must not return a result with an error set
205 if Py_DEBUG:
206 code = textwrap.dedent("""
207 import _testcapi
208 from test import support
209
210 with support.SuppressCrashReport():
211 _testcapi.return_result_with_error()
212 """)
213 rc, out, err = assert_python_failure('-c', code)
Victor Stinner381a9bc2015-03-24 14:01:32 +0100214 self.assertRegex(err.replace(b'\r', b''),
Victor Stinner944fbcc2015-03-24 16:28:52 +0100215 br'Fatal Python error: a function returned a '
216 br'result with an error set\n'
Victor Stinner381a9bc2015-03-24 14:01:32 +0100217 br'ValueError\n'
218 br'\n'
219 br'During handling of the above exception, '
220 br'another exception occurred:\n'
221 br'\n'
222 br'SystemError: <built-in '
223 br'function return_result_with_error> '
224 br'returned a result with an error set\n'
225 br'\n'
226 br'Current thread.*:\n'
227 br' File .*, line 6 in <module>')
Victor Stinnerefde1462015-03-21 15:04:43 +0100228 else:
229 with self.assertRaises(SystemError) as cm:
230 _testcapi.return_result_with_error()
231 self.assertRegex(str(cm.exception),
232 'return_result_with_error.* '
233 'returned a result with an error set')
234
Larry Hastings44e2eaa2013-11-23 15:37:55 -0800235
Victor Stinner45df8202010-04-28 22:31:17 +0000236@unittest.skipUnless(threading, 'Threading required for this test.')
Benjamin Petersona54c9092009-01-13 02:11:23 +0000237class TestPendingCalls(unittest.TestCase):
238
239 def pendingcalls_submit(self, l, n):
240 def callback():
241 #this function can be interrupted by thread switching so let's
242 #use an atomic operation
243 l.append(None)
244
245 for i in range(n):
246 time.sleep(random.random()*0.02) #0.01 secs on average
247 #try submitting callback until successful.
248 #rely on regular interrupt to flush queue if we are
249 #unsuccessful.
250 while True:
251 if _testcapi._pending_threadfunc(callback):
252 break;
253
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000254 def pendingcalls_wait(self, l, n, context = None):
Benjamin Petersona54c9092009-01-13 02:11:23 +0000255 #now, stick around until l[0] has grown to 10
256 count = 0;
257 while len(l) != n:
258 #this busy loop is where we expect to be interrupted to
259 #run our callbacks. Note that callbacks are only run on the
260 #main thread
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000261 if False and support.verbose:
Benjamin Petersona54c9092009-01-13 02:11:23 +0000262 print("(%i)"%(len(l),),)
263 for i in range(1000):
264 a = i*i
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000265 if context and not context.event.is_set():
266 continue
Benjamin Petersona54c9092009-01-13 02:11:23 +0000267 count += 1
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000268 self.assertTrue(count < 10000,
Benjamin Petersona54c9092009-01-13 02:11:23 +0000269 "timeout waiting for %i callbacks, got %i"%(n, len(l)))
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000270 if False and support.verbose:
Benjamin Petersona54c9092009-01-13 02:11:23 +0000271 print("(%i)"%(len(l),))
272
273 def test_pendingcalls_threaded(self):
Benjamin Petersona54c9092009-01-13 02:11:23 +0000274
275 #do every callback on a separate thread
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000276 n = 32 #total callbacks
Benjamin Petersona54c9092009-01-13 02:11:23 +0000277 threads = []
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000278 class foo(object):pass
279 context = foo()
280 context.l = []
281 context.n = 2 #submits per thread
282 context.nThreads = n // context.n
283 context.nFinished = 0
284 context.lock = threading.Lock()
285 context.event = threading.Event()
286
287 for i in range(context.nThreads):
288 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
Benjamin Petersona54c9092009-01-13 02:11:23 +0000289 t.start()
290 threads.append(t)
291
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000292 self.pendingcalls_wait(context.l, n, context)
Benjamin Petersona54c9092009-01-13 02:11:23 +0000293
294 for t in threads:
295 t.join()
296
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000297 def pendingcalls_thread(self, context):
298 try:
299 self.pendingcalls_submit(context.l, context.n)
300 finally:
301 with context.lock:
302 context.nFinished += 1
303 nFinished = context.nFinished
304 if False and support.verbose:
305 print("finished threads: ", nFinished)
306 if nFinished == context.nThreads:
307 context.event.set()
308
Benjamin Petersona54c9092009-01-13 02:11:23 +0000309 def test_pendingcalls_non_threaded(self):
Ezio Melotti13925002011-03-16 11:05:33 +0200310 #again, just using the main thread, likely they will all be dispatched at
Benjamin Petersona54c9092009-01-13 02:11:23 +0000311 #once. It is ok to ask for too many, because we loop until we find a slot.
312 #the loop can be interrupted to dispatch.
313 #there are only 32 dispatch slots, so we go for twice that!
314 l = []
315 n = 64
316 self.pendingcalls_submit(l, n)
317 self.pendingcalls_wait(l, n)
318
Antoine Pitrou7a2572c2013-08-01 20:43:26 +0200319
320class SubinterpreterTest(unittest.TestCase):
321
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100322 def test_subinterps(self):
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100323 import builtins
324 r, w = os.pipe()
325 code = """if 1:
326 import sys, builtins, pickle
327 with open({:d}, "wb") as f:
328 pickle.dump(id(sys.modules), f)
329 pickle.dump(id(builtins), f)
330 """.format(w)
331 with open(r, "rb") as f:
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100332 ret = support.run_in_subinterp(code)
Antoine Pitrou2f828f22012-01-18 00:21:11 +0100333 self.assertEqual(ret, 0)
334 self.assertNotEqual(pickle.load(f), id(sys.modules))
335 self.assertNotEqual(pickle.load(f), id(builtins))
336
Antoine Pitrou7a2572c2013-08-01 20:43:26 +0200337
Martin v. Löwisc15bdef2009-05-29 14:47:46 +0000338# Bug #6012
339class Test6012(unittest.TestCase):
340 def test(self):
341 self.assertEqual(_testcapi.argparsing("Hello", "World"), 1)
Benjamin Petersona54c9092009-01-13 02:11:23 +0000342
Antoine Pitrou8e605772011-04-25 21:21:07 +0200343
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000344class EmbeddingTests(unittest.TestCase):
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000345 def setUp(self):
Antoine Pitrou8e605772011-04-25 21:21:07 +0200346 basepath = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
Nick Coghlan4e641df2013-11-03 16:54:46 +1000347 exename = "_testembed"
348 if sys.platform.startswith("win"):
349 ext = ("_d" if "_d" in sys.executable else "") + ".exe"
350 exename += ext
351 exepath = os.path.dirname(sys.executable)
352 else:
Nick Coghlanbca9acf2014-09-25 19:48:15 +1000353 exepath = os.path.join(basepath, "Programs")
Nick Coghlan4e641df2013-11-03 16:54:46 +1000354 self.test_exe = exe = os.path.join(exepath, exename)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000355 if not os.path.exists(exe):
356 self.skipTest("%r doesn't exist" % exe)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200357 # This is needed otherwise we get a fatal error:
358 # "Py_Initialize: Unable to get the locale encoding
359 # LookupError: no codec search functions registered: can't find encoding"
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000360 self.oldcwd = os.getcwd()
Antoine Pitrou8e605772011-04-25 21:21:07 +0200361 os.chdir(basepath)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000362
363 def tearDown(self):
364 os.chdir(self.oldcwd)
365
366 def run_embedded_interpreter(self, *args):
367 """Runs a test in the embedded interpreter"""
368 cmd = [self.test_exe]
369 cmd.extend(args)
370 p = subprocess.Popen(cmd,
371 stdout=subprocess.PIPE,
Steve Dower86e9deb2014-11-01 15:11:05 -0700372 stderr=subprocess.PIPE,
373 universal_newlines=True)
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000374 (out, err) = p.communicate()
375 self.assertEqual(p.returncode, 0,
376 "bad returncode %d, stderr is %r" %
377 (p.returncode, err))
Steve Dower86e9deb2014-11-01 15:11:05 -0700378 return out, err
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000379
380 def test_subinterps(self):
381 # This is just a "don't crash" test
382 out, err = self.run_embedded_interpreter()
383 if support.verbose:
384 print()
385 print(out)
386 print(err)
387
Nick Coghlan4e641df2013-11-03 16:54:46 +1000388 @staticmethod
389 def _get_default_pipe_encoding():
390 rp, wp = os.pipe()
391 try:
392 with os.fdopen(wp, 'w') as w:
393 default_pipe_encoding = w.encoding
394 finally:
395 os.close(rp)
396 return default_pipe_encoding
397
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000398 def test_forced_io_encoding(self):
399 # Checks forced configuration of embedded interpreter IO streams
400 out, err = self.run_embedded_interpreter("forced_io_encoding")
401 if support.verbose:
402 print()
403 print(out)
404 print(err)
Victor Stinnerb2bef622014-03-18 02:38:12 +0100405 expected_errors = sys.__stdout__.errors
Nick Coghlan4e641df2013-11-03 16:54:46 +1000406 expected_stdin_encoding = sys.__stdin__.encoding
407 expected_pipe_encoding = self._get_default_pipe_encoding()
Steve Dower86e9deb2014-11-01 15:11:05 -0700408 expected_output = '\n'.join([
Nick Coghlan4e641df2013-11-03 16:54:46 +1000409 "--- Use defaults ---",
410 "Expected encoding: default",
411 "Expected errors: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100412 "stdin: {in_encoding}:{errors}",
413 "stdout: {out_encoding}:{errors}",
414 "stderr: {out_encoding}:backslashreplace",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000415 "--- Set errors only ---",
416 "Expected encoding: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100417 "Expected errors: ignore",
418 "stdin: {in_encoding}:ignore",
419 "stdout: {out_encoding}:ignore",
420 "stderr: {out_encoding}:backslashreplace",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000421 "--- Set encoding only ---",
422 "Expected encoding: latin-1",
423 "Expected errors: default",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100424 "stdin: latin-1:{errors}",
425 "stdout: latin-1:{errors}",
Nick Coghlan4e641df2013-11-03 16:54:46 +1000426 "stderr: latin-1:backslashreplace",
427 "--- Set encoding and errors ---",
428 "Expected encoding: latin-1",
Victor Stinnerb2bef622014-03-18 02:38:12 +0100429 "Expected errors: replace",
430 "stdin: latin-1:replace",
431 "stdout: latin-1:replace",
432 "stderr: latin-1:backslashreplace"])
433 expected_output = expected_output.format(
434 in_encoding=expected_stdin_encoding,
435 out_encoding=expected_pipe_encoding,
436 errors=expected_errors)
Nick Coghlan3321fb82013-10-18 23:59:58 +1000437 # This is useful if we ever trip over odd platform behaviour
Nick Coghlan6508dc52013-10-18 01:44:22 +1000438 self.maxDiff = None
Nick Coghlan7d270ee2013-10-17 22:35:35 +1000439 self.assertEqual(out.strip(), expected_output)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200440
Larry Hastings8f904da2012-06-22 03:56:29 -0700441class SkipitemTest(unittest.TestCase):
442
443 def test_skipitem(self):
444 """
445 If this test failed, you probably added a new "format unit"
446 in Python/getargs.c, but neglected to update our poor friend
447 skipitem() in the same file. (If so, shame on you!)
448
Larry Hastings48ed3602012-06-22 12:58:36 -0700449 With a few exceptions**, this function brute-force tests all
450 printable ASCII*** characters (32 to 126 inclusive) as format units,
451 checking to see that PyArg_ParseTupleAndKeywords() return consistent
452 errors both when the unit is attempted to be used and when it is
453 skipped. If the format unit doesn't exist, we'll get one of two
454 specific error messages (one for used, one for skipped); if it does
455 exist we *won't* get that error--we'll get either no error or some
456 other error. If we get the specific "does not exist" error for one
457 test and not for the other, there's a mismatch, and the test fails.
Larry Hastings8f904da2012-06-22 03:56:29 -0700458
Larry Hastings48ed3602012-06-22 12:58:36 -0700459 ** Some format units have special funny semantics and it would
460 be difficult to accomodate them here. Since these are all
461 well-established and properly skipped in skipitem() we can
462 get away with not testing them--this test is really intended
463 to catch *new* format units.
464
465 *** Python C source files must be ASCII. Therefore it's impossible
466 to have non-ASCII format units.
467
Larry Hastings8f904da2012-06-22 03:56:29 -0700468 """
469 empty_tuple = ()
470 tuple_1 = (0,)
471 dict_b = {'b':1}
472 keywords = ["a", "b"]
473
Larry Hastings48ed3602012-06-22 12:58:36 -0700474 for i in range(32, 127):
Larry Hastings8f904da2012-06-22 03:56:29 -0700475 c = chr(i)
476
Larry Hastings8f904da2012-06-22 03:56:29 -0700477 # skip parentheses, the error reporting is inconsistent about them
478 # skip 'e', it's always a two-character code
479 # skip '|' and '$', they don't represent arguments anyway
Larry Hastings48ed3602012-06-22 12:58:36 -0700480 if c in '()e|$':
Larry Hastings8f904da2012-06-22 03:56:29 -0700481 continue
482
483 # test the format unit when not skipped
484 format = c + "i"
485 try:
486 # (note: the format string must be bytes!)
487 _testcapi.parse_tuple_and_keywords(tuple_1, dict_b,
488 format.encode("ascii"), keywords)
489 when_not_skipped = False
490 except TypeError as e:
491 s = "argument 1 must be impossible<bad format char>, not int"
492 when_not_skipped = (str(e) == s)
493 except RuntimeError as e:
494 when_not_skipped = False
495
496 # test the format unit when skipped
497 optional_format = "|" + format
498 try:
499 _testcapi.parse_tuple_and_keywords(empty_tuple, dict_b,
500 optional_format.encode("ascii"), keywords)
501 when_skipped = False
502 except RuntimeError as e:
503 s = "impossible<bad format char>: '{}'".format(format)
504 when_skipped = (str(e) == s)
505
506 message = ("test_skipitem_parity: "
507 "detected mismatch between convertsimple and skipitem "
508 "for format unit '{}' ({}), not skipped {}, skipped {}".format(
509 c, i, when_skipped, when_not_skipped))
510 self.assertIs(when_skipped, when_not_skipped, message)
Antoine Pitrou8e605772011-04-25 21:21:07 +0200511
Jesus Cea6e1d2b62012-10-04 16:06:30 +0200512 def test_parse_tuple_and_keywords(self):
513 # parse_tuple_and_keywords error handling tests
514 self.assertRaises(TypeError, _testcapi.parse_tuple_and_keywords,
515 (), {}, 42, [])
516 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
517 (), {}, b'', 42)
518 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
519 (), {}, b'', [''] * 42)
520 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
521 (), {}, b'', [42])
522
Ezio Melotti29267c82013-02-23 05:52:46 +0200523@unittest.skipUnless(threading, 'Threading required for this test.')
524class TestThreadState(unittest.TestCase):
525
526 @support.reap_threads
527 def test_thread_state(self):
528 # some extra thread-state tests driven via _testcapi
529 def target():
530 idents = []
531
532 def callback():
Ezio Melotti35246bd2013-02-23 05:58:38 +0200533 idents.append(threading.get_ident())
Ezio Melotti29267c82013-02-23 05:52:46 +0200534
535 _testcapi._test_thread_state(callback)
536 a = b = callback
537 time.sleep(1)
538 # Check our main thread is in the list exactly 3 times.
Ezio Melotti35246bd2013-02-23 05:58:38 +0200539 self.assertEqual(idents.count(threading.get_ident()), 3,
Ezio Melotti29267c82013-02-23 05:52:46 +0200540 "Couldn't find main thread correctly in the list")
541
542 target()
543 t = threading.Thread(target=target)
544 t.start()
545 t.join()
546
Zachary Warec12f09e2013-11-11 22:47:04 -0600547class Test_testcapi(unittest.TestCase):
548 def test__testcapi(self):
549 for name in dir(_testcapi):
550 if name.startswith('test_'):
Zachary Waredfcd6942013-11-11 22:59:23 -0600551 with self.subTest("internal", name=name):
552 test = getattr(_testcapi, name)
553 test()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000554
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000555if __name__ == "__main__":
Zachary Warec12f09e2013-11-11 22:47:04 -0600556 unittest.main()