summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test
Commit message (Collapse)AuthorAgeFilesLines
* bpo-31488: IDLE - update former extensions when options change. (#3612)Terry Jan Reedy2017-09-161-1/+1
| | | | | When apply changes, call .reload on each class with non-key options. Change ParenMatch so that updates affect current instances.
* bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (#3590)Terry Jan Reedy2017-09-142-44/+39
| | | Enabled by default was a temporary expedient. The fix is to add a user override to enable.
* bpo-31462: Remove trailing whitespaces. (#3564)Serhiy Storchaka2017-09-141-1/+1
|
* bpo-31414: IDLE -- fix tk entry box tests by deleting first. (#3501)Terry Jan Reedy2017-09-111-11/+17
| | | | | Adding to an int entry is not the same as deleting and inserting because int('') will fail.
* bpo-27099: IDLE - Convert built-in extensions to regular features (#2494)wohlganger2017-09-102-52/+58
| | | | | | | | | | | | | | | | | | | | | About 10 IDLE features were implemented as supposedly optional extensions. Their different behavior could be confusing or worse for users and not good for maintenance. Hence the conversion. The main difference for users is that user configurable key bindings for builtin features are now handled uniformly. Now, editing a binding in a keyset only affects its value in the keyset. All bindings are defined together in the system-specific default keysets in config- extensions.def. All custom keysets are saved as a whole in config- extension.cfg. All take effect as soon as one clicks Apply or Ok. The affected events are '<<force-open-completions>>', '<<expand-word>>', '<<force-open-calltip>>', '<<flash-paren>>', '<<format-paragraph>>', '<<run-module>>', '<<check-module>>', and '<<zoom-height>>'. Any (global) customizations made before 3.6.3 will not affect their keyset- specific customization after 3.6.3. and vice versa. Inital patch by Charles Wohlganger, revised by Terry Jan Reedy.
* bpo-30617: IDLE: docstrings and unittest for outwin.py (#2046)Cheryl Sabella2017-08-271-0/+172
| | | Move some data and functions from the class to module level. Patch by Cheryl Sabella.
* bpo-31287: IDLE - do not alter tkinter.messagebox in configdialog tests. (#3220)Terry Jan Reedy2017-08-271-4/+4
|
* bpo-30781: IDLE - use ttk widgets in configdialog (#2654)Cheryl Sabella2017-08-261-30/+31
| | | Patch by Cheryl Sabella.
* bpo-31206: IDLE: Factor HighPage class from ConfigDialog (#3156)Cheryl Sabella2017-08-201-28/+28
| | | Patch 2 of 3, to avoid horrendous diff. Create highlights page from new HighPage class instead of old ConfigDialog methods and change tests to match.
* bpo-31001: IDLE: Add tests for configdialog highlight tab (#3123)Cheryl Sabella2017-08-181-1/+449
|
* bpo-31205: IDLE: Factor KeysPage class from ConfigDialog (#3096)Cheryl Sabella2017-08-151-28/+33
| | | The slightly modified tests continue to pass. Patch by Cheryl Sabella.
* bpo-31002: IDLE: Add tests for configdialog keys tab (#2996)Cheryl Sabella2017-08-151-5/+384
| | | Patch by Cheryl Sabella.
* bpo-19903: IDLE: Calltips changed to use inspect.signature (#2822)Louie Lu2017-08-101-12/+37
| | | | | Idlelib.calltips.get_argspec now uses inspect.signature instead of inspect.getfullargspec, like help() does. This improves the signature in the call tip in a few different cases, including builtins converted to provide a signature. A message is added if the object is not callable, has an invalid signature, or if it has positional-only parameters. Patch by Louie Lu.
* bpo-31130: IDLE -- stop leaks in test_configdialog. (#3016)Terry Jan Reedy2017-08-071-38/+48
| | | | Initial patch by Victor Stinner.
* bpo-31050: IDLE: Factor GenPage class from ConfigDialog (#2952)csabella2017-07-301-26/+27
| | | | The slightly modified tests for the General tab continue to pass. Patch by Cheryl Sabella.
* bpo-31004: IDLE: Factor out FontPage class from configdialog (step 1) (#2905)csabella2017-07-301-28/+40
| | | | | The slightly modified tests continue to pass. The General test broken by the switch to Notebook is fixed. Patch mostly by Cheryl Sabella.
* bpo-30781: IDLE - Use ttk Notebook in ConfigDialog (#2938)Terry Jan Reedy2017-07-291-6/+10
| | | | | The notebook looks a bit better. It will work better with separate page classes. Traversal of widgets by Tab works better. Switching tabs with keys becomes possible. The font sample box works better at large font sizes. One of the two simulated click tests no longer works. This will be investigated while fixing a bug with the widget itself.
* bpo-30853: IDLE - touch-up configdialog.VarTrace and tests. (#2936)Terry Jan Reedy2017-07-281-11/+18
| | | | Add clear method for tests. Adjust tests to use global instance. Remove unneeded ConfigDialog method.
* bpo-31003: IDLE - Add more tests for General tab (#2859)Terry Jan Reedy2017-07-272-10/+188
| | | | | | | * In configdialog: Document causal pathways in create_page_general. Move related functions to follow this. Simplify some attribute names. * In test_configdialog: Add tests for load and helplist functions. Coverage for the general tab is now complete, and 63% overall.
* bpo-30853: IDLE: Factor a VarTrace class from configdialog.ConfigDialog. ↵csabella2017-07-261-2/+92
| | | | | | (#2872) The new class manages pairs of tk Variables and trace callbacks. It is completely covered by new tests.
* bpo-30993: IDLE - Improve configdialog font page and tests. (#2831)Terry Jan Reedy2017-07-241-81/+108
| | | | | | In configdialog: Document causal pathways in create_font_tab docstring. Simplify some attribute names. Move set_samples calls to var_changed_font (idea from Cheryl Sabella). Move related functions to positions after the create widgets function. In test_configdialog: Fix test_font_set so not order dependent. Fix renamed test_indent_scale so it tests the widget. Adjust tests for movement of set_samples call. Add tests for load functions. Put all font tests in one class and tab indent tests in another. Except for two lines, these tests completely cover the related functions.
* bpo-30993: IDLE - Improve configdialog font page and tests. (#2818)Terry Jan Reedy2017-07-231-8/+12
| | | | | | | | * Document causal event pathways in docstring. * Simplify some attribute names. * Rename test_bold_toggle_set_samples to make test_font_set fail. * Fix test_font_set so not order dependent. * Fix renamed test_indent_scale so it tests the widget.
* bpo-30981: IDLE: Augment one configdialog font page test (#2810)Terry Jan Reedy2017-07-221-13/+23
| | | | Remove broken test of bold_toggle and test it along with its command, set_samples. This has been incorporated into 3.6 backport PR-2796.
* bpo-30981: temporarity skip failing IDLE test class (#2798)Terry Jan Reedy2017-07-211-0/+2
|
* bpo-30981: IDLE -- Add more configdialog font page tests. (#2794)Terry Jan Reedy2017-07-211-18/+25
|
* bpo-30968: Fix test_get_font in IDLE's test_config. (#2769)terryjreedy2017-07-201-1/+1
|
* bpo-30917: IDLE: Fix mock_config deepcopy to read_string (#2754)Louie Lu2017-07-191-5/+11
| | | Patch by LouieLu.
* bpo-30917: IDLE: Add config.IdleConf unittests (#2691)Louie Lu2017-07-181-4/+443
| | | | Patch by Louie Lu.
* bpo-30934: Document coverage details for idlelib tests (#2711)terryjreedy2017-07-161-0/+56
| | | | | * Add section to idlelib/idle-test/README.txt. * Include check that branches are taken both ways. * Exclude IDLE-specific code that does not run during unit tests.
* bpo-30870: IDLE: Add configdialog fontlist selection unittest (#2666)Louie Lu2017-07-142-27/+105
| | | Initial patch by Louie Lu.
* bpo-30899: Add unittests, 100% coverage, for IDLE's two ConfigParser ↵Louie Lu2017-07-121-4/+165
| | | | | | subclasses. (#2662) Patch by Louie Lu.
* bpo-30779: IDLE: fix changes.delete_section calls in configdialog (#2667)csabella2017-07-111-2/+5
| | | | Also improve test of config.ConfigChanges.delete_section. Original patch by Cheryl Sabella.
* bpo-30779: IDLE -- Factor ConfigChanges class from configdialog, put in ↵terryjreedy2017-07-072-32/+107
| | | | | | | | | | | | config; test. (#2612) * In config, put dump test code in a function; run it and unittest in 'if __name__ == '__main__'. * Add class config.ConfigChanges based on changes_class_v4.py on bpo issue. * Add class test_config.ChangesTest, partly based on configdialog_tests_v1.py on bpo issue. * Revise configdialog to use ConfigChanges, mostly as specified in tracker msg297804. * Revise test_configdialog to match configdialog changes. All tests pass in both files. * Remove configdialog functions unused or moved to ConfigChanges. Cheryl Sabella contributed parts of the patch.
* bpo-30780: Fix error in idlelib.test_idle.test_configdialog (#2606)terryjreedy2017-07-071-1/+1
|
* bpo-30495: IDLE: improve textview with docstrings, PEP8 names, more tests. ↵csabella2017-06-293-55/+74
| | | | | | | (#2283) Split TextViewer class into ViewWindow, ViewFrame, and TextFrame classes so that instances of the latter two can be placed with other widgets within a multiframe window. Patch by Cheryl Sabella.
* bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help (#2306)wohlganger2017-06-281-37/+31
| | | | | | | | | * Add 'parens' style to highlight both opener and closer. * Make 'default' style, which is not default, a synonym for 'opener'. * Make time-delay work the same with all styles. * Add help for config dialog extensions tab, including parenmatch. * Add new tests. Original patch by Charles Wohlganger.
* bpo-21519: IDLE basic custom key entry better detects duplicates. (#2428)terryjreedy2017-06-271-4/+10
|
* bpo-29910: IDLE no longer deletes a character after commenting out a region ↵Serhiy Storchaka2017-06-271-4/+4
| | | | | | | | | | | (#825) This happened because shortcut has a class binding and 'break' was not returned. Fix other potential conflicts between IDLE and default key bindings. * Add news item * Update NEWS
* bpo-24813: IDLE: Add build bitness to About Idle title (#2380)csabella2017-06-271-2/+10
| | | Patch by Cheryl Sabella.
* bpo-30728: IDLE: Refactor configdialog to PEP8 names (#2307)csabella2017-06-261-18/+22
| | | | Also, change '*' in the tkinter import to an explicit list of names. Patch by Cheryl Sabella.
* bpo-6739: IDLE: Check for valid keybinding in config_keys (#2377)csabella2017-06-261-8/+71
| | | | | | Verify user-entered key sequences by trying to bind them with tk. Add tests for all 3 validation functions. Original patch by G Polo. Tests added by Cheryl Sabella.
* bpo-24813: IDLE: Add default title to help_about (#2366)csabella2017-06-241-0/+23
| | | Patch by Cheryl Sabella.
* bpo-24813: IDLE: Add icon to help_about (#2335)csabella2017-06-231-0/+7
| | | Patch by Cheryl Sabella
* bpo-27922: Stop gui flash from idle_test.test_parenmatch (#2171)terryjreedy2017-06-131-0/+1
| | | For unknown reasons, this does not work when running leak tests.
* Fix ref leak in idle_test.test_macosx (#2163)terryjreedy2017-06-131-0/+4
|
* bpo-30642: IDLE: Fix test_query refleak (#2147)mlouielu2017-06-131-0/+1
| | | Patch by Louie Lu.
* bpo-30495: IDLE: Modernize textview.py with docstrings and PEP8 names (#1839)csabella2017-05-282-15/+16
| | | | | Patch by Cheryl Sabella.
* IDLE test_help_about: edit and add test. (#1838)terryjreedy2017-05-281-47/+75
| | | Coverage is now 100%
* bpo-30290: IDLE: Refactor help_about to PEP8 names (#1714)csabella2017-05-271-9/+9
| | | Patch by Cheryl Sabella.
* bpo-30290: IDLE: Add more tests for help_about dialog (#1697)mlouielu2017-05-211-0/+63
| | | Increases coverage to 99%