/opt/alt/python27/lib64/python2.7/idlelib/idle_test
NameSizeModeActions
htest.py137790644editdlrm
htest.pyc126520644editdlrm
htest.pyo126520644editdlrm
mock_idle.py15970644editdlrm
mock_idle.pyc30090644editdlrm
mock_idle.pyo30090644editdlrm
mock_tk.py115740644editdlrm
mock_tk.pyc127130644editdlrm
mock_tk.pyo127130644editdlrm
README.txt54920644editdlrm
test_autocomplete.py49220644editdlrm
test_autocomplete.pyc61200644editdlrm
test_autocomplete.pyo61200644editdlrm
test_autoexpand.py41220644editdlrm
test_autoexpand.pyc49620644editdlrm
test_autoexpand.pyo49620644editdlrm
test_calltips.py71400644editdlrm
test_calltips.pyc127680644editdlrm
test_calltips.pyo127680644editdlrm
test_configdialog.py7820644editdlrm
test_configdialog.pyc17200644editdlrm
test_configdialog.pyo17200644editdlrm
test_config_name.py24720644editdlrm
test_config_name.pyc41810644editdlrm
test_config_name.pyo41810644editdlrm
test_delegator.py12940644editdlrm
test_delegator.pyc13580644editdlrm
test_delegator.pyo13580644editdlrm
test_editmenu.py31670644editdlrm
test_editmenu.pyc45690644editdlrm
test_editmenu.pyo45690644editdlrm
test_formatparagraph.py143440644editdlrm
test_formatparagraph.pyc147080644editdlrm
test_formatparagraph.pyo147080644editdlrm
test_grep.py27620644editdlrm
test_grep.pyc39030644editdlrm
test_grep.pyo39030644editdlrm
test_helpabout.py16110644editdlrm
test_helpabout.pyc24410644editdlrm
test_helpabout.pyo24410644editdlrm
test_hyperparser.py56840644editdlrm
test_hyperparser.pyc69420644editdlrm
test_hyperparser.pyo69420644editdlrm
test_idlehistory.py54950644editdlrm
test_idlehistory.pyc84800644editdlrm
test_idlehistory.pyo84800644editdlrm
test_io.py95050644editdlrm
test_io.pyc119490644editdlrm
test_io.pyo119490644editdlrm
test_parenmatch.py38220644editdlrm
test_parenmatch.pyc56640644editdlrm
test_parenmatch.pyo56640644editdlrm
test_pathbrowser.py9400644editdlrm
test_pathbrowser.pyc15370644editdlrm
test_pathbrowser.pyo15370644editdlrm
test_rstrip.py16130644editdlrm
test_rstrip.pyc18250644editdlrm
test_rstrip.pyo18250644editdlrm
test_searchdialogbase.py58740644editdlrm
test_searchdialogbase.pyc69210644editdlrm
test_searchdialogbase.pyo69210644editdlrm
test_searchengine.py114870644editdlrm
test_searchengine.pyc131170644editdlrm
test_searchengine.pyo131170644editdlrm
test_text.py67440644editdlrm
test_text.pyc83950644editdlrm
test_text.pyo83950644editdlrm
test_textview.py28020644editdlrm
test_textview.pyc47130644editdlrm
test_textview.pyo47130644editdlrm
test_warning.py27570644editdlrm
test_warning.pyc33900644editdlrm
test_warning.pyo33900644editdlrm
test_widgetredir.py41770644editdlrm
test_widgetredir.pyc66440644editdlrm
test_widgetredir.pyo66440644editdlrm
__init__.py6500644editdlrm
__init__.pyc9410644editdlrm
__init__.pyo9410644editdlrm
Edit: /opt/alt/python27/lib64/python2.7/idlelib/idle_test/test_grep.py (2762B)
""" !Changing this line will break Test_findfile.test_found! Non-gui unit tests for idlelib.GrepDialog methods. dummy_command calls grep_it calls findfiles. An exception raised in one method will fail callers. Otherwise, tests are mostly independent. *** Currently only test grep_it. """ import unittest from test.test_support import captured_stdout, findfile from idlelib.idle_test.mock_tk import Var from idlelib.GrepDialog import GrepDialog import re __file__ = findfile('idlelib/idle_test') + '/test_grep.py' class Dummy_searchengine: '''GrepDialog.__init__ calls parent SearchDiabolBase which attaches the passed in SearchEngine instance as attribute 'engine'. Only a few of the many possible self.engine.x attributes are needed here. ''' def getpat(self): return self._pat searchengine = Dummy_searchengine() class Dummy_grep: # Methods tested #default_command = GrepDialog.default_command grep_it = GrepDialog.grep_it.im_func findfiles = GrepDialog.findfiles.im_func # Other stuff needed recvar = Var(False) engine = searchengine def close(self): # gui method pass grep = Dummy_grep() class FindfilesTest(unittest.TestCase): # findfiles is really a function, not a method, could be iterator # test that filename return filename # test that idlelib has many .py files # test that recursive flag adds idle_test .py files pass class Grep_itTest(unittest.TestCase): # Test captured reports with 0 and some hits. # Should test file names, but Windows reports have mixed / and \ separators # from incomplete replacement, so 'later'. def report(self, pat): grep.engine._pat = pat with captured_stdout() as s: grep.grep_it(re.compile(pat), __file__) lines = s.getvalue().split('\n') lines.pop() # remove bogus '' after last \n return lines def test_unfound(self): pat = 'xyz*'*7 lines = self.report(pat) self.assertEqual(len(lines), 2) self.assertIn(pat, lines[0]) self.assertEqual(lines[1], 'No hits.') def test_found(self): pat = '""" !Changing this line will break Test_findfile.test_found!' lines = self.report(pat) self.assertEqual(len(lines), 5) self.assertIn(pat, lines[0]) self.assertIn('py: 1:', lines[1]) # line number 1 self.assertIn('2', lines[3]) # hits found 2 self.assertTrue(lines[4].startswith('(Hint:')) class Default_commandTest(unittest.TestCase): # To write this, mode OutputWindow import to top of GrepDialog # so it can be replaced by captured_stdout in class setup/teardown. pass if __name__ == '__main__': unittest.main(verbosity=2, exit=False)