PNG  IHDR  8] PLTE S =tRNS   PNG  IHDR  8] PLTE S =tRNS   REDROOM
PHP 7.4.33
Preview: test_help_about.py Size: 5.78 KB
/opt/alt/python37/lib64/python3.7/idlelib/idle_test/test_help_about.py

"""Test help_about, coverage 100%.
help_about.build_bits branches on sys.platform='darwin'.
'100% combines coverage on Mac and others.
"""

from idlelib import help_about
import unittest
from test.support import requires, findfile
from tkinter import Tk, TclError
from idlelib.idle_test.mock_idle import Func
from idlelib.idle_test.mock_tk import Mbox_func
from idlelib import textview
import os.path
from platform import python_version

About = help_about.AboutDialog


class LiveDialogTest(unittest.TestCase):
    """Simulate user clicking buttons other than [Close].

    Test that invoked textview has text from source.
    """
    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = Tk()
        cls.root.withdraw()
        cls.dialog = About(cls.root, 'About IDLE', _utest=True)

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

    def test_build_bits(self):
        self.assertIn(help_about.build_bits(), ('32', '64'))

    def test_dialog_title(self):
        """Test about dialog title"""
        self.assertEqual(self.dialog.title(), 'About IDLE')

    def test_dialog_logo(self):
        """Test about dialog logo."""
        path, file = os.path.split(self.dialog.icon_image['file'])
        fn, ext = os.path.splitext(file)
        self.assertEqual(fn, 'idle_48')

    def test_printer_buttons(self):
        """Test buttons whose commands use printer function."""
        dialog = self.dialog
        button_sources = [(dialog.py_license, license, 'license'),
                          (dialog.py_copyright, copyright, 'copyright'),
                          (dialog.py_credits, credits, 'credits')]

        for button, printer, name in button_sources:
            with self.subTest(name=name):
                printer._Printer__setup()
                button.invoke()
                get = dialog._current_textview.viewframe.textframe.text.get
                lines = printer._Printer__lines
                if len(lines) < 2:
                    self.fail(name + ' full text was not found')
                self.assertEqual(lines[0], get('1.0', '1.end'))
                self.assertEqual(lines[1], get('2.0', '2.end'))
                dialog._current_textview.destroy()

    def test_file_buttons(self):
        """Test buttons that display files."""
        dialog = self.dialog
        button_sources = [(self.dialog.readme, 'README.txt', 'readme'),
                          (self.dialog.idle_news, 'NEWS.txt', 'news'),
                          (self.dialog.idle_credits, 'CREDITS.txt', 'credits')]

        for button, filename, name in button_sources:
            with  self.subTest(name=name):
                button.invoke()
                fn = findfile(filename, subdir='idlelib')
                get = dialog._current_textview.viewframe.textframe.text.get
                with open(fn, encoding='utf-8') as f:
                    self.assertEqual(f.readline().strip(), get('1.0', '1.end'))
                    f.readline()
                    self.assertEqual(f.readline().strip(), get('3.0', '3.end'))
                dialog._current_textview.destroy()


class DefaultTitleTest(unittest.TestCase):
    "Test default title."

    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = Tk()
        cls.root.withdraw()
        cls.dialog = About(cls.root, _utest=True)

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

    def test_dialog_title(self):
        """Test about dialog title"""
        self.assertEqual(self.dialog.title(),
                         f'About IDLE {python_version()}'
                         f' ({help_about.build_bits()} bit)')


class CloseTest(unittest.TestCase):
    """Simulate user clicking [Close] button"""

    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = Tk()
        cls.root.withdraw()
        cls.dialog = About(cls.root, 'About IDLE', _utest=True)

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

    def test_close(self):
        self.assertEqual(self.dialog.winfo_class(), 'Toplevel')
        self.dialog.button_ok.invoke()
        with self.assertRaises(TclError):
            self.dialog.winfo_class()


class Dummy_about_dialog():
    # Dummy class for testing file display functions.
    idle_credits = About.show_idle_credits
    idle_readme = About.show_readme
    idle_news = About.show_idle_news
    # Called by the above
    display_file_text = About.display_file_text
    _utest = True


class DisplayFileTest(unittest.TestCase):
    """Test functions that display files.

    While somewhat redundant with gui-based test_file_dialog,
    these unit tests run on all buildbots, not just a few.
    """
    dialog = Dummy_about_dialog()

    @classmethod
    def setUpClass(cls):
        cls.orig_error = textview.showerror
        cls.orig_view = textview.view_text
        cls.error = Mbox_func()
        cls.view = Func()
        textview.showerror = cls.error
        textview.view_text = cls.view

    @classmethod
    def tearDownClass(cls):
        textview.showerror = cls.orig_error
        textview.view_text = cls.orig_view

    def test_file_display(self):
        for handler in (self.dialog.idle_credits,
                        self.dialog.idle_readme,
                        self.dialog.idle_news):
            self.error.message = ''
            self.view.called = False
            with self.subTest(handler=handler):
                handler()
                self.assertEqual(self.error.message, '')
                self.assertEqual(self.view.called, True)


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

Directory Contents

Dirs: 1 × Files: 63

Name Size Perms Modified Actions
- drwxr-xr-x 2024-10-10 12:27:02
Edit Download
14.83 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.90 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
11.35 KB lrw-r--r-- 2024-04-17 17:55:26
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:55:26
Edit Download
10.47 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
709 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.53 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.78 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
9.70 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
686 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
15.74 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
14.67 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
31.29 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
53.08 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
9.48 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
571 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
631 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.52 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
545 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.53 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.50 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.35 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
795 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
23.06 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.95 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
849 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.78 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.39 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.87 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.25 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.23 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
594 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.29 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.42 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.47 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.37 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
3.97 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
18.78 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.12 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
14.92 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.08 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
8.11 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
805 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
11.46 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
777 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
496 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.40 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.50 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
11.27 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
12.92 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
19.62 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.18 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.11 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
6.81 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
7.19 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
5.26 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.71 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
4.13 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
2.68 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
1.05 KB lrw-r--r-- 2024-04-17 17:55:26
Edit Download
999 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download
712 B lrw-r--r-- 2024-04-17 17:55:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
 !"#$%&'(()*+,-./00123456789 t\ wIDATx ]ys  47Y ƒ -  "  Rv  < f{Ɛ $k l L > L  ~h^ 1  [  r G t& h  l F z3O Y ! p A(_g̷ E8 )S 8 c  Kb"z ~ 5 J xAL WU <  *  5 m;W a pB h ~P J 2 3 6 ҙ .Ƹ P i  4g F R L P ΪK/D  M v (a3 k J Œ4N5* SH ` SdJ z  O J Xՠ V>u ߱ BE&L b2 ?2` tX+  c CB A$ i b C ĀMB E : /  # Dx &l =q Ty  0 \p I ( L Ǎ { e 4k ;`u^ヲ eP!( d {  )T A 8 O;Ě n >;s6 !  :Nx `[S D HU ~ q›J F} a g*D 49 / pn k h (t 8NxƐF _!r չ7 ZR R׷ q/5") Ӎ NY 0 x sZ!   o  fu  ,  K"$ ? pg  㕣=  1» {h " fh7    y  } € +7  $ y " X —ą - G P u 4 m >J 5 L =V ' ^@I p ?MS xЌ XV P ! h "C NS9B8̢ ]!K  e   zA , ӏkbY  !< XQ ٿyS| *" f { w  4@[S <  # 0 ! js [m  =,~ o "ݎ DHf Wo $ g ! Vԅ t mB /y Wf V4񺍸 c+@x?  B ~u " xUN e 0 BĂ) ~J pz! 7y6]l Ԥ@ P a< O /DHC `≻  N m"$  0ObB }{ x AO FCG D R ^ "B  { WDH  UR l@ T #  +"d T ; 0 i  D}. 7 ` ' ] w rE &S i ƕiTD EL P _ u h $ Ա FG wVD G L R Zf ' .!] J /ZR oGЍs Mr Ĥ ʬ 3 Q [3 cL ` ^ p + ( F;# B 5 '  2Y f [  ϶R0e }  E 7 6M aۮ H <& n % L] E}Up x紉, Uw' Q  Ǯշo k ވۙ 0N94 VX5 xEDE l D #֤ } C o )W :  ^ s 9  bRf iX5u ཱི 4 :[  T 1. | [E 2ؽ Iy\ : o x K G 5 ylP ' uK E ftb/i[3 .g _  [3M n G, #NwQ5~  ؚ) | n =Ц"x qg gB ` 듘 ~ x w ? ? R~  _ u. &VQ K˻   H C ( TN˄+ `C dA nB׭ D 3"Z G ê ^k H_ /- ~ " R_  .8 Z_ 6@ o  xg  uP ? 3լ @7AM!  E7^ - =V L  x  g-D0  CtmW 7  O  G _ WD0 g C  w1 r d w : a | \  *" f nֳ ^ H# f L ` Z ۽hV  }S F r0Ù Bć5r] @! NL iQ]{s^=4 d  WD  "  "   M; t" 8 5 e dL| "-*st" ) SWD ?R[S e ooF  20.D ? bo =) A i o d ģ ZҰaO @E =) i D a &ܟa CϞ y6 ,<%{^x%{f8? `iw^ ?/ M * IEND B`