cpython/Lib/idlelib/idle_test
John Belmonte da717519ec
gh-93883: elide traceback indicators when possible (#93994)
* gh-93883: elide traceback indicators when possible

Elide traceback column indicators when the entire line of the
frame is implicated.  This reduces traceback length and draws
even more attention to the remaining (very relevant) indicators.

Example:
```
Traceback (most recent call last):
  File "query.py", line 99, in <module>
    bar()
  File "query.py", line 66, in bar
    foo()
  File "query.py", line 37, in foo
    magic_arithmetic('foo')
  File "query.py", line 18, in magic_arithmetic
    return add_counts(x) / 25
           ^^^^^^^^^^^^^
  File "query.py", line 24, in add_counts
    return 25 + query_user(user1) + query_user(user2)
                ^^^^^^^^^^^^^^^^^
  File "query.py", line 32, in query_user
    return 1 + query_count(db, response['a']['b']['c']['user'], retry=True)
                               ~~~~~~~~~~~~~~~~~~^^^^^
TypeError: 'NoneType' object is not subscriptable
```

Rather than going out of our way to provide indicator coverage
in every traceback test suite, the indicator test suite should
be responible for sufficient coverage (e.g. by adding a basic
exception group test to ensure that margin strings are covered).
2022-07-11 07:40:53 +01:00
..
README.txt bpo-33917: Fix and document idlelib/idle_test/template.py (GH-7830) 2018-06-20 17:08:31 -04:00
__init__.py
example_noext bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950) 2022-02-12 19:04:48 -05:00
example_stub.pyi bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950) 2022-02-12 19:04:48 -05:00
htest.py bpo-46591: Make About IDLE doc link label clickable (GH-30251) 2022-02-01 20:20:23 -05:00
mock_idle.py bpo-38862: IDLE Strip Trailing Whitespace fixes end newlines (GH-17366) 2019-11-24 16:29:29 -05:00
mock_tk.py Fix typos in the Lib directory (GH-28775) 2021-10-06 16:13:48 -07:00
template.py bpo-33917: Fix and document idlelib/idle_test/template.py (GH-7830) 2018-06-20 17:08:31 -04:00
test_autocomplete.py bpo-45495: Add 'case' and 'match' to IDLE completions list. (GH-29000) 2021-10-16 18:44:00 -04:00
test_autocomplete_w.py bpo-37903: IDLE: add shell sidebar mouse interactions (GH-25708) 2021-05-02 22:27:38 -04:00
test_autoexpand.py IDLE: Standardize naming convention for DummyEditwin in tests (GH-13876) 2019-06-07 05:08:20 -04:00
test_browser.py bpo-38307: Add end_lineno attribute to pyclbr Objects (GH-24348) 2021-02-01 12:38:44 -05:00
test_calltip.py gh-91098: Use Argument Clinic for Object/classobject.c to fix docstrings (#31711) 2022-04-18 19:56:53 -07:00
test_calltip_w.py bpo-33839: refactor IDLE's tooltips & calltips, add docstrings and tests (GH-7683) 2018-08-05 09:21:08 +03:00
test_codecontext.py bpo-43013: Update idlelib code to 3.x (GH-24315) 2021-01-24 14:08:50 -05:00
test_colorizer.py Use absolute imports in IDLE tests (GH-26581) 2021-06-07 17:56:34 -04:00
test_config.py bpo-38183: Test_idle ignores user config directory GH-16198) 2019-09-16 19:04:21 -04:00
test_config_key.py [codemod] Fix non-matching bracket pairs (GH-28473) 2021-09-22 01:09:00 +02:00
test_configdialog.py bpo-33962: Use ttk spinbox for IDLE indent space config (GH-22954) 2021-06-10 15:13:55 -04:00
test_debugger.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_debugger_r.py gh-84623: Remove unused imports in idlelib (#94143) 2022-06-23 00:09:48 +02:00
test_debugobj.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_debugobj_r.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_delegator.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_editmenu.py Fix duplicating words words. (GH-6296) 2018-03-28 22:14:26 +03:00
test_editor.py gh-84623: Remove unused imports in idlelib (#94143) 2022-06-23 00:09:48 +02:00
test_filelist.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_format.py bpo-43013: Update idlelib code to 3.x (GH-24315) 2021-01-24 14:08:50 -05:00
test_grep.py bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203) 2019-03-23 07:33:42 -04:00
test_help.py bpo-33855: Minimally test all IDLE modules. (GH-7689) 2018-06-15 18:20:55 -04:00
test_help_about.py bpo-43013: Update idlelib code to 3.x (GH-24315) 2021-01-24 14:08:50 -05:00
test_history.py bpo-33855: More edits and new minimal tests for IDLE (GH-7761) 2018-06-18 04:47:59 -04:00
test_hyperparser.py bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307) 2019-06-02 14:56:47 -04:00
test_iomenu.py bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950) 2022-02-12 19:04:48 -05:00
test_macosx.py bpo-45059: Add module cleanup to IDLE test_macosx (GH-28102) 2021-08-31 14:59:35 -04:00
test_mainmenu.py bpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163) 2021-01-28 18:13:22 -05:00
test_multicall.py Fix typos in the Lib directory (GH-28775) 2021-10-06 16:13:48 -07:00
test_outwin.py bpo-41152: IDLE: always use UTF-8 for standard IO streams (GH-21214) 2020-06-29 20:18:22 -04:00
test_parenmatch.py Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332) 2022-05-29 21:41:59 -04:00
test_pathbrowser.py bpo-33855: More edits and new minimal tests for IDLE (GH-7761) 2018-06-18 04:47:59 -04:00
test_percolator.py bpo-33855: More edits and new minimal tests for IDLE (GH-7761) 2018-06-18 04:47:59 -04:00
test_pyparse.py Fix typos in the Lib directory (GH-28775) 2021-10-06 16:13:48 -07:00
test_pyshell.py bpo-37903: IDLE: Shell sidebar with prompts (GH-22682) 2021-04-28 18:27:55 -04:00
test_query.py [codemod] Fix non-matching bracket pairs (GH-28473) 2021-09-22 01:09:00 +02:00
test_redirector.py bpo-33855: More edits and new minimal tests for IDLE (GH-7761) 2018-06-18 04:47:59 -04:00
test_replace.py bpo-43013: Fix old tkinter module names in idlelib (GH-24326) 2021-01-25 06:33:18 -05:00
test_rpc.py bpo-35202: Remove unused imports in idlelib (GH-10438) 2018-11-10 01:45:31 -05:00
test_run.py gh-93883: elide traceback indicators when possible (#93994) 2022-07-11 07:40:53 +01:00
test_runscript.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_scrolledlist.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_search.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_searchbase.py bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942) 2020-10-24 23:14:02 -04:00
test_searchengine.py bpo-43013: Fix old tkinter module names in idlelib (GH-24326) 2021-01-25 06:33:18 -05:00
test_sidebar.py bpo-45975: Use walrus operator for some idlelib while loops (GH-31083) 2022-02-02 20:59:24 -05:00
test_squeezer.py bpo-43981: Fix reference leaks in test_squeezer (GH-25758) 2021-04-30 19:34:29 +01:00
test_stackviewer.py bpo-33905: Add test for idlelib.stackview.StackBrowser. (GH-7852) 2018-06-21 22:19:56 -04:00
test_statusbar.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_text.py Fix duplicating words words. (GH-6296) 2018-03-28 22:14:26 +03:00
test_textview.py bpo-37628: Fix IDLE config sample sizes (#14958) 2019-07-27 12:57:48 -04:00
test_tooltip.py bpo-35771: IDLE: Fix flaky tool-tip hover delay tests (GH-15634) 2019-09-03 01:17:00 -04:00
test_tree.py bpo-37902: IDLE: Add scrolling for IDLE browsers. (#15368) 2019-09-04 21:33:33 -04:00
test_undo.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_util.py bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950) 2022-02-12 19:04:48 -05:00
test_warning.py bpo-33855: Still more edits and minimal tests for IDLE (GH-7784) 2018-06-19 19:12:52 -04:00
test_window.py bpo-33906: Rename idlelib.windows as window (#7833) 2018-06-20 21:25:59 -04:00
test_zoomheight.py bpo-35202: Remove more unused imports in idlelib (GH-10573) 2018-11-17 01:38:01 -05:00
test_zzdummy.py bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491) 2021-01-05 02:26:43 -05:00
tkinter_testing_utils.py bpo-44282: Fix occasional test_incremental_editing failures on buildbots (GH-26491) 2021-06-03 01:53:41 +02:00

README.txt

README FOR IDLE TESTS IN IDLELIB.IDLE_TEST

0. Quick Start

Automated unit tests were added in 3.3 for Python 3.x.
To run the tests from a command line:

python -m test.test_idle

Human-mediated tests were added later in 3.4.

python -m idlelib.idle_test.htest


1. Test Files

The idle directory, idlelib, has over 60 xyz.py files. The idle_test
subdirectory contains test_xyz.py for each implementation file xyz.py.
To add a test for abc.py, open idle_test/template.py and immediately
Save As test_abc.py.  Insert 'abc' on the first line, and replace
'zzdummy' with 'abc.

Remove the imports of requires and tkinter if not needed.  Otherwise,
add to the tkinter imports as needed.

Add a prefix to 'Test' for the initial test class.  The template class
contains code needed or possibly needed for gui tests.  See the next
section if doing gui tests.  If not, and not needed for further classes,
this code can be removed.

Add the following at the end of abc.py.  If an htest was added first,
insert the import and main lines before the htest lines.

if __name__ == "__main__":
    from unittest import main
    main('idlelib.idle_test.test_abc', verbosity=2, exit=False)

The ', exit=False' is only needed if an htest follows.



2. GUI Tests

When run as part of the Python test suite, Idle GUI tests need to run
test.support.requires('gui').  A test is a GUI test if it creates a
tkinter.Tk root or master object either directly or indirectly by
instantiating a tkinter or idle class.  GUI tests cannot run in test
processes that either have no graphical environment available or are not
allowed to use it.

To guard a module consisting entirely of GUI tests, start with

from test.support import requires
requires('gui')

To guard a test class, put "requires('gui')" in its setUpClass function.
The template.py file does this.

To avoid interfering with other GUI tests, all GUI objects must be
destroyed and deleted by the end of the test.  The Tk root created in a
setUpX function should be destroyed in the corresponding tearDownX and
the module or class attribute deleted.  Others widgets should descend
from the single root and the attributes deleted BEFORE root is
destroyed.  See https://bugs.python.org/issue20567.

    @classmethod
    def setUpClass(cls):
        requires('gui')
        cls.root = tk.Tk()
        cls.text = tk.Text(root)

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

The update_idletasks call is sometimes needed to prevent the following
warning either when running a test alone or as part of the test suite
(#27196).  It should not hurt if not needed.

  can't invoke "event" command: application has been destroyed
  ...
  "ttk::ThemeChanged"

If a test creates instance 'e' of EditorWindow, call 'e._close()' before
or as the first part of teardown.  The effect of omitting this depends
on the later shutdown.  Then enable the after_cancel loop in the
template.  This prevents messages like the following.

bgerror failed to handle background error.
    Original error: invalid command name "106096696timer_event"
    Error in bgerror: can't invoke "tk" command: application has been destroyed

Requires('gui') causes the test(s) it guards to be skipped if any of
these conditions are met:

 - The tests are being run by regrtest.py, and it was started without
   enabling the "gui" resource with the "-u" command line option.

 - The tests are being run on Windows by a service that is not allowed
   to interact with the graphical environment.

 - The tests are being run on Linux and X Windows is not available.

 - The tests are being run on Mac OSX in a process that cannot make a
   window manager connection.

 - tkinter.Tk cannot be successfully instantiated for some reason.

 - test.support.use_resources has been set by something other than
   regrtest.py and does not contain "gui".

Tests of non-GUI operations should avoid creating tk widgets. Incidental
uses of tk variables and messageboxes can be replaced by the mock
classes in idle_test/mock_tk.py. The mock text handles some uses of the
tk Text widget.


3. Running Unit Tests

Assume that xyz.py and test_xyz.py both end with a unittest.main() call.
Running either from an Idle editor runs all tests in the test_xyz file
with the version of Python running Idle.  Test output appears in the
Shell window.  The 'verbosity=2' option lists all test methods in the
file, which is appropriate when developing tests. The 'exit=False'
option is needed in xyx.py files when an htest follows.

The following command lines also run all test methods, including
GUI tests, in test_xyz.py. (Both '-m idlelib' and '-m idlelib.idle'
start Idle and so cannot run tests.)

python -m idlelib.xyz
python -m idlelib.idle_test.test_xyz

The following runs all idle_test/test_*.py tests interactively.

>>> import unittest
>>> unittest.main('idlelib.idle_test', verbosity=2)

The following run all Idle tests at a command line.  Option '-v' is the
same as 'verbosity=2'.

python -m unittest -v idlelib.idle_test
python -m test -v -ugui test_idle
python -m test.test_idle

The idle tests are 'discovered' by
idlelib.idle_test.__init__.load_tests, which is also imported into
test.test_idle. Normally, neither file should be changed when working on
individual test modules. The third command runs unittest indirectly
through regrtest. The same happens when the entire test suite is run
with 'python -m test'. So that command must work for buildbots to stay
green. Idle tests must not disturb the environment in a way that makes
other tests fail (issue 18081).

To run an individual Testcase or test method, extend the dotted name
given to unittest on the command line or use the test -m option.  The
latter allows use of other regrtest options.  When using the latter,
all components of the pattern must be present, but any can be replaced
by '*'.

python -m unittest -v idlelib.idle_test.test_xyz.Test_case.test_meth
python -m test -m idlelib.idle_test.text_xyz.Test_case.test_meth test_idle

The test suite can be run in an IDLE user process from Shell.
>>> import test.autotest  # Issue 25588, 2017/10/13, 3.6.4, 3.7.0a2.
There are currently failures not usually present, and this does not
work when run from the editor.


4. Human-mediated Tests

Human-mediated tests are widget tests that cannot be automated but need
human verification. They are contained in idlelib/idle_test/htest.py,
which has instructions.  (Some modules need an auxiliary function,
identified with "# htest # on the header line.)  The set is about
complete, though some tests need improvement. To run all htests, run the
htest file from an editor or from the command line with:

python -m idlelib.idle_test.htest


5. Test Coverage

Install the coverage package into your Python 3.6 site-packages
directory.  (Its exact location depends on the OS).
> python3 -m pip install coverage
(On Windows, replace 'python3 with 'py -3.6' or perhaps just 'python'.)

The problem with running coverage with repository python is that
coverage uses absolute imports for its submodules, hence it needs to be
in a directory in sys.path.  One solution: copy the package to the
directory containing the cpython repository.  Call it 'dev'.  Then run
coverage either directly or from a script in that directory so that
'dev' is prepended to sys.path.

Either edit or add dev/.coveragerc so it looks something like this.
---
# .coveragerc sets coverage options.
[run]
branch = True

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:

    .*# htest #
    if not _utest:
    if _htest:
---
The additions for IDLE are 'branch = True', to test coverage both ways,
and the last three exclude lines, to exclude things peculiar to IDLE
that are not executed during tests.

A script like the following cover.bat (for Windows) is very handy.
---
@echo off
rem Usage: cover filename [test_ suffix] # proper case required by coverage
rem filename without .py, 2nd parameter if test is not test_filename
setlocal
set py=f:\dev\3x\pcbuild\win32\python_d.exe
set src=idlelib.%1
if "%2" EQU "" set tst=f:/dev/3x/Lib/idlelib/idle_test/test_%1.py
if "%2" NEQ "" set tst=f:/dev/ex/Lib/idlelib/idle_test/test_%2.py

%py% -m coverage run --pylib --source=%src% %tst%
%py% -m coverage report --show-missing
%py% -m coverage html
start htmlcov\3x_Lib_idlelib_%1_py.html
rem Above opens new report; htmlcov\index.html displays report index
---
The second parameter was added for tests of module x not named test_x.
(There were several before modules were renamed, now only one is left.)