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

"Test replace, coverage 78%."

from idlelib.replace import ReplaceDialog
import unittest
from test.support import requires
requires('gui')
from tkinter import Tk, Text

from unittest.mock import Mock
from idlelib.idle_test.mock_tk import Mbox
import idlelib.searchengine as se

orig_mbox = se.tkMessageBox
showerror = Mbox.showerror


class ReplaceDialogTest(unittest.TestCase):

    @classmethod
    def setUpClass(cls):
        cls.root = Tk()
        cls.root.withdraw()
        se.tkMessageBox = Mbox
        cls.engine = se.SearchEngine(cls.root)
        cls.dialog = ReplaceDialog(cls.root, cls.engine)
        cls.dialog.bell = lambda: None
        cls.dialog.ok = Mock()
        cls.text = Text(cls.root)
        cls.text.undo_block_start = Mock()
        cls.text.undo_block_stop = Mock()
        cls.dialog.text = cls.text

    @classmethod
    def tearDownClass(cls):
        se.tkMessageBox = orig_mbox
        del cls.text, cls.dialog, cls.engine
        cls.root.destroy()
        del cls.root

    def setUp(self):
        self.text.insert('insert', 'This is a sample sTring')

    def tearDown(self):
        self.engine.patvar.set('')
        self.dialog.replvar.set('')
        self.engine.wordvar.set(False)
        self.engine.casevar.set(False)
        self.engine.revar.set(False)
        self.engine.wrapvar.set(True)
        self.engine.backvar.set(False)
        showerror.title = ''
        showerror.message = ''
        self.text.delete('1.0', 'end')

    def test_replace_simple(self):
        # Test replace function with all options at default setting.
        # Wrap around - True
        # Regular Expression - False
        # Match case - False
        # Match word - False
        # Direction - Forwards
        text = self.text
        equal = self.assertEqual
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it

        # test accessor method
        self.engine.setpat('asdf')
        equal(self.engine.getpat(), pv.get())

        # text found and replaced
        pv.set('a')
        rv.set('asdf')
        replace()
        equal(text.get('1.8', '1.12'), 'asdf')

        # don't "match word" case
        text.mark_set('insert', '1.0')
        pv.set('is')
        rv.set('hello')
        replace()
        equal(text.get('1.2', '1.7'), 'hello')

        # don't "match case" case
        pv.set('string')
        rv.set('world')
        replace()
        equal(text.get('1.23', '1.28'), 'world')

        # without "regular expression" case
        text.mark_set('insert', 'end')
        text.insert('insert', '\nline42:')
        before_text = text.get('1.0', 'end')
        pv.set(r'[a-z][\d]+')
        replace()
        after_text = text.get('1.0', 'end')
        equal(before_text, after_text)

        # test with wrap around selected and complete a cycle
        text.mark_set('insert', '1.9')
        pv.set('i')
        rv.set('j')
        replace()
        equal(text.get('1.8'), 'i')
        equal(text.get('2.1'), 'j')
        replace()
        equal(text.get('2.1'), 'j')
        equal(text.get('1.8'), 'j')
        before_text = text.get('1.0', 'end')
        replace()
        after_text = text.get('1.0', 'end')
        equal(before_text, after_text)

        # text not found
        before_text = text.get('1.0', 'end')
        pv.set('foobar')
        replace()
        after_text = text.get('1.0', 'end')
        equal(before_text, after_text)

        # test access method
        self.dialog.find_it(0)

    def test_replace_wrap_around(self):
        text = self.text
        equal = self.assertEqual
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it
        self.engine.wrapvar.set(False)

        # replace candidate found both after and before 'insert'
        text.mark_set('insert', '1.4')
        pv.set('i')
        rv.set('j')
        replace()
        equal(text.get('1.2'), 'i')
        equal(text.get('1.5'), 'j')
        replace()
        equal(text.get('1.2'), 'i')
        equal(text.get('1.20'), 'j')
        replace()
        equal(text.get('1.2'), 'i')

        # replace candidate found only before 'insert'
        text.mark_set('insert', '1.8')
        pv.set('is')
        before_text = text.get('1.0', 'end')
        replace()
        after_text = text.get('1.0', 'end')
        equal(before_text, after_text)

    def test_replace_whole_word(self):
        text = self.text
        equal = self.assertEqual
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it
        self.engine.wordvar.set(True)

        pv.set('is')
        rv.set('hello')
        replace()
        equal(text.get('1.0', '1.4'), 'This')
        equal(text.get('1.5', '1.10'), 'hello')

    def test_replace_match_case(self):
        equal = self.assertEqual
        text = self.text
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it
        self.engine.casevar.set(True)

        before_text = self.text.get('1.0', 'end')
        pv.set('this')
        rv.set('that')
        replace()
        after_text = self.text.get('1.0', 'end')
        equal(before_text, after_text)

        pv.set('This')
        replace()
        equal(text.get('1.0', '1.4'), 'that')

    def test_replace_regex(self):
        equal = self.assertEqual
        text = self.text
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it
        self.engine.revar.set(True)

        before_text = text.get('1.0', 'end')
        pv.set(r'[a-z][\d]+')
        rv.set('hello')
        replace()
        after_text = text.get('1.0', 'end')
        equal(before_text, after_text)

        text.insert('insert', '\nline42')
        replace()
        equal(text.get('2.0', '2.8'), 'linhello')

        pv.set('')
        replace()
        self.assertIn('error', showerror.title)
        self.assertIn('Empty', showerror.message)

        pv.set(r'[\d')
        replace()
        self.assertIn('error', showerror.title)
        self.assertIn('Pattern', showerror.message)

        showerror.title = ''
        showerror.message = ''
        pv.set('[a]')
        rv.set('test\\')
        replace()
        self.assertIn('error', showerror.title)
        self.assertIn('Invalid Replace Expression', showerror.message)

        # test access method
        self.engine.setcookedpat("?")
        equal(pv.get(), "\\?")

    def test_replace_backwards(self):
        equal = self.assertEqual
        text = self.text
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace = self.dialog.replace_it
        self.engine.backvar.set(True)

        text.insert('insert', '\nis as ')

        pv.set('is')
        rv.set('was')
        replace()
        equal(text.get('1.2', '1.4'), 'is')
        equal(text.get('2.0', '2.3'), 'was')
        replace()
        equal(text.get('1.5', '1.8'), 'was')
        replace()
        equal(text.get('1.2', '1.5'), 'was')

    def test_replace_all(self):
        text = self.text
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace_all = self.dialog.replace_all

        text.insert('insert', '\n')
        text.insert('insert', text.get('1.0', 'end')*100)
        pv.set('is')
        rv.set('was')
        replace_all()
        self.assertNotIn('is', text.get('1.0', 'end'))

        self.engine.revar.set(True)
        pv.set('')
        replace_all()
        self.assertIn('error', showerror.title)
        self.assertIn('Empty', showerror.message)

        pv.set('[s][T]')
        rv.set('\\')
        replace_all()

        self.engine.revar.set(False)
        pv.set('text which is not present')
        rv.set('foobar')
        replace_all()

    def test_default_command(self):
        text = self.text
        pv = self.engine.patvar
        rv = self.dialog.replvar
        replace_find = self.dialog.default_command
        equal = self.assertEqual

        pv.set('This')
        rv.set('was')
        replace_find()
        equal(text.get('sel.first', 'sel.last'), 'was')

        self.engine.revar.set(True)
        pv.set('')
        replace_find()


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`