/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
IPython
/
core
/
tests
/
/opt/imh-python/lib/python3.9/site-packages/IPython/core/tests
mkdir
upload
Name
Size
Mode
Actions
daft_extension/
-
0755
rm
__pycache__/
-
0755
rm
2x2.jpg
331
0644
edit
dl
rm
2x2.png
71
0644
edit
dl
rm
bad_all.py
206
0644
edit
dl
rm
nonascii.py
135
0644
edit
dl
rm
nonascii2.py
155
0644
edit
dl
rm
print_argv.py
32
0644
edit
dl
rm
refbug.py
1494
0644
edit
dl
rm
simpleerr.py
583
0644
edit
dl
rm
tclass.py
921
0644
edit
dl
rm
test_alias.py
2007
0644
edit
dl
rm
test_application.py
2245
0644
edit
dl
rm
test_async_helpers.py
8647
0644
edit
dl
rm
test_autocall.py
1425
0644
edit
dl
rm
test_compilerop.py
2174
0644
edit
dl
rm
test_completer.py
60803
0644
edit
dl
rm
test_completerlib.py
6507
0644
edit
dl
rm
test_debugger.py
14501
0644
edit
dl
rm
test_display.py
15946
0644
edit
dl
rm
test_displayhook.py
3593
0644
edit
dl
rm
test_events.py
2287
0644
edit
dl
rm
test_exceptiongroup_tb.py
3599
0644
edit
dl
rm
test_extension.py
3026
0644
edit
dl
rm
test_formatters.py
14249
0644
edit
dl
rm
test_guarded_eval.py
15655
0644
edit
dl
rm
test_handlers.py
3286
0644
edit
dl
rm
test_history.py
11698
0644
edit
dl
rm
test_hooks.py
2316
0644
edit
dl
rm
test_imports.py
1153
0644
edit
dl
rm
test_inputsplitter.py
23213
0644
edit
dl
rm
test_inputtransformer.py
15755
0644
edit
dl
rm
test_inputtransformer2.py
11408
0644
edit
dl
rm
test_inputtransformer2_line.py
2971
0644
edit
dl
rm
test_interactiveshell.py
39660
0644
edit
dl
rm
test_iplib.py
6677
0644
edit
dl
rm
test_logger.py
776
0644
edit
dl
rm
test_magic.py
44359
0644
edit
dl
rm
test_magic_arguments.py
4778
0644
edit
dl
rm
test_magic_terminal.py
5996
0644
edit
dl
rm
test_oinspect.py
15674
0644
edit
dl
rm
test_page.py
772
0644
edit
dl
rm
test_paths.py
7081
0644
edit
dl
rm
test_prefilter.py
4214
0644
edit
dl
rm
test_profile.py
5064
0644
edit
dl
rm
test_prompts.py
845
0644
edit
dl
rm
test_pylabtools.py
7880
0644
edit
dl
rm
test_run.py
19369
0644
edit
dl
rm
test_shellapp.py
1892
0644
edit
dl
rm
test_splitinput.py
1227
0644
edit
dl
rm
test_ultratb.py
12026
0644
edit
dl
rm
__init__.py
0
0644
edit
dl
rm
Edit:
/opt/imh-python/lib/python3.9/site-packages/IPython/core/tests/test_magic_terminal.py
(5996B)
"""Tests for various magic functions specific to the terminal frontend.""" #----------------------------------------------------------------------------- # Imports #----------------------------------------------------------------------------- import sys from io import StringIO from unittest import TestCase from IPython.testing import tools as tt #----------------------------------------------------------------------------- # Test functions begin #----------------------------------------------------------------------------- MINIMAL_LAZY_MAGIC = """ from IPython.core.magic import ( Magics, magics_class, line_magic, cell_magic, ) @magics_class class LazyMagics(Magics): @line_magic def lazy_line(self, line): print("Lazy Line") @cell_magic def lazy_cell(self, line, cell): print("Lazy Cell") def load_ipython_extension(ipython): ipython.register_magics(LazyMagics) """ def check_cpaste(code, should_fail=False): """Execute code via 'cpaste' and ensure it was executed, unless should_fail is set. """ ip.user_ns['code_ran'] = False src = StringIO() src.write(code) src.write('\n--\n') src.seek(0) stdin_save = sys.stdin sys.stdin = src try: context = tt.AssertPrints if should_fail else tt.AssertNotPrints with context("Traceback (most recent call last)"): ip.run_line_magic("cpaste", "") if not should_fail: assert ip.user_ns['code_ran'], "%r failed" % code finally: sys.stdin = stdin_save def test_cpaste(): """Test cpaste magic""" def runf(): """Marker function: sets a flag when executed. """ ip.user_ns['code_ran'] = True return 'runf' # return string so '+ runf()' doesn't result in success tests = {'pass': ["runf()", "In [1]: runf()", "In [1]: if 1:\n ...: runf()", "> > > runf()", ">>> runf()", " >>> runf()", ], 'fail': ["1 + runf()", "++ runf()", ]} ip.user_ns['runf'] = runf for code in tests['pass']: check_cpaste(code) for code in tests['fail']: check_cpaste(code, should_fail=True) class PasteTestCase(TestCase): """Multiple tests for clipboard pasting""" def paste(self, txt, flags='-q'): """Paste input text, by default in quiet mode""" ip.hooks.clipboard_get = lambda: txt ip.run_line_magic("paste", flags) def setUp(self): # Inject fake clipboard hook but save original so we can restore it later self.original_clip = ip.hooks.clipboard_get def tearDown(self): # Restore original hook ip.hooks.clipboard_get = self.original_clip def test_paste(self): ip.user_ns.pop("x", None) self.paste("x = 1") self.assertEqual(ip.user_ns["x"], 1) ip.user_ns.pop("x") def test_paste_pyprompt(self): ip.user_ns.pop("x", None) self.paste(">>> x=2") self.assertEqual(ip.user_ns["x"], 2) ip.user_ns.pop("x") def test_paste_py_multi(self): self.paste( """ >>> x = [1,2,3] >>> y = [] >>> for i in x: ... y.append(i**2) ... """ ) self.assertEqual(ip.user_ns["x"], [1, 2, 3]) self.assertEqual(ip.user_ns["y"], [1, 4, 9]) def test_paste_py_multi_r(self): "Now, test that self.paste -r works" self.test_paste_py_multi() self.assertEqual(ip.user_ns.pop("x"), [1, 2, 3]) self.assertEqual(ip.user_ns.pop("y"), [1, 4, 9]) self.assertFalse("x" in ip.user_ns) ip.run_line_magic("paste", "-r") self.assertEqual(ip.user_ns["x"], [1, 2, 3]) self.assertEqual(ip.user_ns["y"], [1, 4, 9]) def test_paste_email(self): "Test pasting of email-quoted contents" self.paste( """\ >> def foo(x): >> return x + 1 >> xx = foo(1.1)""" ) self.assertEqual(ip.user_ns["xx"], 2.1) def test_paste_email2(self): "Email again; some programs add a space also at each quoting level" self.paste( """\ > > def foo(x): > > return x + 1 > > yy = foo(2.1) """ ) self.assertEqual(ip.user_ns["yy"], 3.1) def test_paste_email_py(self): "Email quoting of interactive input" self.paste( """\ >> >>> def f(x): >> ... return x+1 >> ... >> >>> zz = f(2.5) """ ) self.assertEqual(ip.user_ns["zz"], 3.5) def test_paste_echo(self): "Also test self.paste echoing, by temporarily faking the writer" w = StringIO() old_write = sys.stdout.write sys.stdout.write = w.write code = """ a = 100 b = 200""" try: self.paste(code,'') out = w.getvalue() finally: sys.stdout.write = old_write self.assertEqual(ip.user_ns["a"], 100) self.assertEqual(ip.user_ns["b"], 200) assert out == code + "\n## -- End pasted text --\n" def test_paste_leading_commas(self): "Test multiline strings with leading commas" tm = ip.magics_manager.registry['TerminalMagics'] s = '''\ a = """ ,1,2,3 """''' ip.user_ns.pop("foo", None) tm.store_or_execute(s, "foo") self.assertIn("foo", ip.user_ns) def test_paste_trailing_question(self): "Test pasting sources with trailing question marks" tm = ip.magics_manager.registry['TerminalMagics'] s = '''\ def funcfoo(): if True: #am i true? return 'fooresult' ''' ip.user_ns.pop('funcfoo', None) self.paste(s) self.assertEqual(ip.user_ns["funcfoo"](), "fooresult")
Save
cmd:
run