PHP 8.0.30
Preview: test_redirector.py Size: 4.08 KB
/opt/alt/python37/lib64/python3.7/idlelib/idle_test/test_redirector.py

"Test redirector, coverage 100%."

from idlelib.redirector import WidgetRedirector
import unittest
from test.support import requires
from tkinter import Tk, Text, TclError
from idlelib.idle_test.mock_idle import Func


class InitCloseTest(unittest.TestCase):

    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = Tk()
        cls.root.withdraw()
        cls.text = Text(cls.root)

    @classmethod
    def tearDownClass(cls):
        del cls.text
        cls.root.destroy()
        del cls.root

    def test_init(self):
        redir = WidgetRedirector(self.text)
        self.assertEqual(redir.widget, self.text)
        self.assertEqual(redir.tk, self.text.tk)
        self.assertRaises(TclError, WidgetRedirector, self.text)
        redir.close()  # restore self.tk, self.text

    def test_close(self):
        redir = WidgetRedirector(self.text)
        redir.register('insert', Func)
        redir.close()
        self.assertEqual(redir._operations, {})
        self.assertFalse(hasattr(self.text, 'widget'))


class WidgetRedirectorTest(unittest.TestCase):

    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = Tk()
        cls.root.withdraw()
        cls.text = Text(cls.root)

    @classmethod
    def tearDownClass(cls):
        del cls.text
        cls.root.update_idletasks()
        cls.root.destroy()
        del cls.root

    def setUp(self):
        self.redir = WidgetRedirector(self.text)
        self.func = Func()
        self.orig_insert = self.redir.register('insert', self.func)
        self.text.insert('insert', 'asdf')  # leaves self.text empty

    def tearDown(self):
        self.text.delete('1.0', 'end')
        self.redir.close()

    def test_repr(self):  # partly for 100% coverage
        self.assertIn('Redirector', repr(self.redir))
        self.assertIn('Original', repr(self.orig_insert))

    def test_register(self):
        self.assertEqual(self.text.get('1.0', 'end'), '\n')
        self.assertEqual(self.func.args, ('insert', 'asdf'))
        self.assertIn('insert', self.redir._operations)
        self.assertIn('insert', self.text.__dict__)
        self.assertEqual(self.text.insert, self.func)

    def test_original_command(self):
        self.assertEqual(self.orig_insert.operation, 'insert')
        self.assertEqual(self.orig_insert.tk_call, self.text.tk.call)
        self.orig_insert('insert', 'asdf')
        self.assertEqual(self.text.get('1.0', 'end'), 'asdf\n')

    def test_unregister(self):
        self.assertIsNone(self.redir.unregister('invalid operation name'))
        self.assertEqual(self.redir.unregister('insert'), self.func)
        self.assertNotIn('insert', self.redir._operations)
        self.assertNotIn('insert', self.text.__dict__)

    def test_unregister_no_attribute(self):
        del self.text.insert
        self.assertEqual(self.redir.unregister('insert'), self.func)

    def test_dispatch_intercept(self):
        self.func.__init__(True)
        self.assertTrue(self.redir.dispatch('insert', False))
        self.assertFalse(self.func.args[0])

    def test_dispatch_bypass(self):
        self.orig_insert('insert', 'asdf')
        # tk.call returns '' where Python would return None
        self.assertEqual(self.redir.dispatch('delete', '1.0', 'end'), '')
        self.assertEqual(self.text.get('1.0', 'end'), '\n')

    def test_dispatch_error(self):
        self.func.__init__(TclError())
        self.assertEqual(self.redir.dispatch('insert', False), '')
        self.assertEqual(self.redir.dispatch('invalid'), '')

    def test_command_dispatch(self):
        # Test that .__init__ causes redirection of tk calls
        # through redir.dispatch
        self.root.call(self.text._w, 'insert', 'hello')
        self.assertEqual(self.func.args, ('hello',))
        self.assertEqual(self.text.get('1.0', 'end'), '\n')
        # Ensure that called through redir .dispatch and not through
        # self.text.insert by having mock raise TclError.
        self.func.__init__(TclError())
        self.assertEqual(self.root.call(self.text._w, 'insert', 'boo'), '')


if __name__ == '__main__':
    unittest.main(verbosity=2)

Directory Contents

Dirs: 1 × Files: 63

Name Size Perms Modified Actions
- drwxr-xr-x 2024-05-24 02:18:20
Edit Download
14.83 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.90 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
11.35 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
8.52 KB lrw-r--r-- 2023-06-05 20:45:13
Edit Download
642 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
10.47 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
709 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
4.53 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
7.78 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
9.70 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
686 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
15.74 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
14.67 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
31.29 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
53.08 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
9.48 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
571 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
631 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.52 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
545 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.53 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
2.50 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
7.35 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
795 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
23.06 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
4.95 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
849 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
5.78 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
5.39 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
8.87 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.25 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
3.23 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
594 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.29 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
5.42 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
3.47 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
2.37 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
3.97 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
18.78 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
2.12 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
14.92 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
4.08 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
8.11 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
805 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
11.46 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
777 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
496 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
2.40 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
5.50 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
11.27 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
12.92 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
19.62 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.18 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.11 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
6.81 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
7.19 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
5.26 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.71 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
4.13 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
2.68 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
1.05 KB lrw-r--r-- 2024-04-17 17:36:04
Edit Download
999 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download
712 B lrw-r--r-- 2024-04-17 17:36:04
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).