a  zeY;@sdZddlZddlmZddlZddlZddlm Z e ddddd d Z d id d Z d idd Z didd Zdddddd Zdddddd Zdidd Zdidd Zdddgdgddd d Zd!id"d Zdd#d$ed%hdd&d'd Zd(id)d Zd*ied+d Zd,id-d Zd.id/d Zd0id1d Zd2id3d Zd4id5d Zdd6d7d8dd9d:d Zd;idd Z!d?id@d Z"dAidBd Z#dCidDd Z$dEidFd Z%dGidHd Z&dIidJd Z'dKidLd Z(dMdNdOddPdQd Z)dRidSd Z*dTdUZ+e,dVkre+dS)WaRun human tests of Idle's window, dialog, and popup widgets. run(*tests) Create a master Tk window. Within that, run each callable in tests after finding the matching test spec in this file. If tests is empty, run an htest for each spec dict in this file after finding the matching callable in the module named in the spec. Close the window to skip or end the test. In a tested module, let X be a global name bound to a callable (class or function) whose .__name__ attribute is also X (the usual situation). The first parameter of X must be 'parent'. When called, the parent argument will be the root window. X must create a child Toplevel window (or subclass thereof). The Toplevel may be a test widget or dialog, in which case the callable is the corresponding class. Or the Toplevel may contain the widget to be tested or set up a context in which a test widget is invoked. In this latter case, the callable is a wrapper function that sets up the Toplevel and other objects. Wrapper function names, such as _editor_window', should start with '_'. End the module with if __name__ == '__main__': from idlelib.idle_test.htest import run run(X) To have wrapper functions and test invocation code ignored by coveragepy reports, put '# htest #' on the def statement header line. def _wrapper(parent): # htest # Also make sure that the 'if __name__' line matches the above. Then have make sure that .coveragerc includes the following. [report] exclude_lines = .*# htest # if __name__ == .__main__.: (The "." instead of "'" is intentional and necessary.) To run any X, this file must contain a matching instance of the following template, with X.__name__ prepended to '_spec'. When all tests are run, the prefix is use to get X. _spec = { 'file': '', 'kwds': {'title': ''}, 'msg': "" } file (no .py): run() imports file.py. kwds: augmented with {'parent':root} and passed to X as **kwds. title: an example kwd; some widgets need this, delete if not. msg: master window hints about testing the widget. Modules and classes not being tested at the moment: pyshell.PyShellEditorWindow debugger.Debugger autocomplete_w.AutoCompleteWindow outwin.OutputWindow (indirectly being tested with grep test) N) import_module) ScrollbarZ help_aboutzhelp_about testT)title_htestzaTest every button. Ensure Python, TK and IDLE versions are correctly displayed. [Close] to exit.)filekwdsmsgZ calltip_wzTyping '(' should display a calltip. Typing ') should hide the calltip. So should moving cursor out of argument area. Force-open-calltip does not work here. ZbrowserzInspect names of module, class(with superclass if applicable), methods and functions. Toggle nested items. Double clicking on items prints a traceback for an exception that is ignored.Z colorizerzThe text is sample Python code. Ensure components like comments, keywords, builtins, string, definitions, and break are correctly colored. The default color scheme is in idlelib/config-highlight.defqueryzCustomize query.py RunzEnter with or [Run]. Print valid entry to Shell Arguments are parsed into a list Mode is currently restart True or False Close dialog with valid entry, , [Cancel], [X]Z configdialogZConfigDialogTestaIDLE preferences dialog. In the 'Fonts/Tabs' tab, changing font face, should update the font face of the text in the area below it. In the 'Highlighting' tab, try different color schemes. Clicking items in the sample program should update the choices above it. In the 'Keys', 'General' and 'Extensions' tabs, test settings of interest. [Ok] to close the dialog.[Apply] to apply the settings and and [Cancel] to revert all changes. Re-run the test to ensure changes made have persisted.Z dynoptionzSelect one of the many options in the 'old option set'. Click the button to change the option set. Select one of the many options in the 'new option set'.Zeditorz>Test editor functions of interest. Best to close editor first.Z config_keyzTest keybindingsz find-again)zzz)ractionZcurrent_key_sequencesrzTest for different key modifier sequences. is invalid. No modifier key is invalid. Shift key with [a-z],[0-9], function key, move key, tab, space is invalid. No validity checking if advanced key binding entry is used.ZgrepzClick the 'Show GrepDialog' button. Test the various 'Find-in-files' functions. The results should be displayed in a new '*Output*' window. 'Right-click'->'Go to file/line' anywhere in the search results should open that file in a new EditorWindow.zHelp name and sourcetestabc)rZmenuitemfilepathZ used_namesraOEnter menu item name and help file path '', > than 30 chars, and 'abc' are invalid menu item names. '' and file does not exist are invalid path items. Any url ('www...', 'http...') is accepted. Test Browse with and without path, as cannot unittest. [Ok] or prints valid entry to shell [Cancel] or prints None to shellZiomenuaTest the following bindings. to open file from dialog. Edit the file. to print the file. to save the file. to save-as another file. to save-copy-as another file. Check that changes were saved by opening the file elsewhere.Zsidebara 1. Click on the line numbers and drag down below the edge of the window, moving the mouse a bit and then leaving it there for a while. The text and line numbers should gradually scroll down, with the selection updated continuously. 2. With the lines still selected, click on a line number above the selected lines. Only the line whose number was clicked should be selected. 3. Repeat step #1, dragging to above the window. The text and line numbers should gradually scroll up, with the selection updated continuously. 4. Repeat step #2, clicking a line number below the selection.Z multicallaThe following actions should trigger a print to console or IDLE Shell. Entering and leaving the text area, key entry, , , , , , and focusing out of the window are sequences to be tested.Z statusbarzjEnsure presence of multi-status bar below text area. Click 'Update Status' to change the multi-status textZdebugobjzDouble click on items up to the lowest level. Attributes of the objects and related information will be displayed side-by-side at each level.Z pathbrowserzTest for correct display of all paths in sys.path. Toggle nested items up to the lowest level. Double clicking on an item prints a traceback for an exception that is ignored.Z percolatoraAThere are two tracers which can be toggled using a checkbox. Toggling a tracer 'on' by checking it should print tracer output to the console or to the IDLE shell. If both the tracers are 'on', the output from the tracer which was switched 'on' later, should be printed first Test for actions like text entry, and removal.ZQueryzEnter somethingZGo)rmessageZtext0rzEnter with or [Ok]. Print valid entry to Shell Blank line, after stripping, is ignored Close dialog with valid entry, , [Cancel], [X]replacezClick the 'Replace' button. Test various replace options in the 'Replace dialog'. Click [Close] or [X] to close the 'Replace Dialog'.searchzClick the 'Search' button. Test various search options in the 'Search dialog'. Click [Close] or [X] to close the 'Search Dialog'.Z searchbasezKCheck the appearance of the base search dialog Its only action is to close.Z scrolledlistzYou should see a scrollable list of items Selecting (clicking) or double clicking an item prints the name to the console or Idle shell. Right clicking an item will display a popup.helpzPIf the help text displays, this works. Text is selectable. Window is scrollable.Z stackviewerzA stacktrace for a NameError exception. Expand 'idlelib ...' and ''. Check that exc_value, exc_tb, and exc_type are correct. ZtooltipzPPlace mouse cursor over both the buttons A tooltip should appear with some text.ZtreezEThe canvas is scrollable. Click on folders up to to the lowest level.ZundozClick [Undo] to undo any action. Click [Redo] to redo any action. Click [Dump] to dump the current state by printing to the console or the IDLE shell. Ztextviewz Test textviewa'The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. )rcontentsrzFTest for read-only property of text. Select text, scroll window, closeZ redirectorzEEvery text insert should be printed to the console or the IDLE shell.c stdddtjdd}|tj|ddjddd d d t |j d }j |j d |jddddjddddg|r|D],}t |jd}|j|d<||fqn^t D]R\}}|dr|dd|}|d<td|d}t|}||fqtddfdd}d&fdd } d'fdd } tjd | d!} tjd"|d#| d$| d%| |dS)(Nz IDLE htestr )ZpadxZword)wrapbgZflatF)rZreliefZheightwidth)command)ZyscrollcommandrightyF)ZsidefillexpandleftZbothTZ_specnamezidlelib.rcsztdkr\}|dd<d|djdddd d|d jd ddS) NrparentzTest rZnormal)statez1.0endrdisabled)lenZ pack_forgetpopset configuredeleteinsert) test_speccallable_objectZ next_buttonroot test_kwdsZ test_listZ test_nametextK/opt/bitninja-python-dojo/embedded/lib/python3.9/idlelib/idle_test/htest.py next_tests    zrun..next_testcs4fi}zt|jWnty.Yn0dSN)printresultAttributeError)_Zwidget)r.r0r2r3run_tests  zrun..run_testcs dSr5)Zdestroy)r9)r/r2r3closeszrun..closeZactive)Z textvariabledefaultrZNext)r1rz z )N)N)tkZTkrZ resizableZFramepackTextr)ZcgetrZyviewZconfigr(globals__name__appenditemsendswithrgetattrZ StringVarZButtonZ focus_setbindZmainloop) ZtestsZ frameLabelZ scrollbarr r,kdmodr4r:r;Zbuttonr2r-r3runtsT         rJ__main__)-__doc__Zidlelib.pyshellZidlelib importlibrtextwraptkinterr=Z tkinter.ttkrZ NoDefaultRootZAboutDialog_specZ_calltip_window_specZ_module_browser_specZ_color_delegator_specZCustomRun_specZConfigDialog_specZ_dyn_option_menu_specZ_editor_window_specZGetKeysDialog_specZ_grep_dialog_spec__file__ZHelpSource_specZ_io_binding_specdedentZ _linenumbers_drag_scrolling_specZ_multi_call_specZ_multistatus_bar_specZ_object_browser_specZ_path_browser_specZ_percolator_specZ Query_specZ_replace_dialog_specZ_search_dialog_specZ_searchbase_specZ_scrolled_list_specZshow_idlehelp_specZ_stack_viewer_specZ _tooltip_specZ_tree_widget_specZ_undo_delegator_specZViewWindow_specZ_widget_redirector_specrJrAr2r2r2r3s.C                    H