This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: IDLE - Test ParenMatch
Type: enhancement Stage: resolved
Components: IDLE Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Saimadhav.Heblikar, jesstess, python-dev, taleinat, terry.reedy
Priority: normal Keywords: patch

Created on 2014-06-08 13:31 by Saimadhav.Heblikar, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test-parenmatch.diff Saimadhav.Heblikar, 2014-06-08 13:31 review
test-parenmatch-21694-34.diff terry.reedy, 2014-06-13 06:35 review
test-parenmatch-21694-27.diff terry.reedy, 2014-06-13 06:37 review
test-parenmatch-21694-27-v2.diff Saimadhav.Heblikar, 2014-06-14 03:59 review
Messages (12)
msg220034 - (view) Author: Saimadhav Heblikar (Saimadhav.Heblikar) * Date: 2014-06-08 13:31
Adding test for idlelib.ParenMatch for 3.4
Will backport to 2.7 when this patch is OK.
3 lines could not be tested in this patch.
msg220415 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-13 02:07
I just discovered what I consider to be a bug in parenmatch. Consider
(3  +
 4 -   1)
When I type the closing paren or put the cursor on the second line and hit ^0, the highlight extends from ( to ), inclusive, as it should. If I put the cursor on the first line and hit ^0, the highlight extends from just ( to +. I will review this next, looking for a possible fix and to make sure there is no test 'validating' the bug. It would be better to have a correst test that is skipped.
msg220420 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-13 06:35
Attached is the 3.4 file I am ready to commit. Comments on Rietveld. I believe the 3 missed line could be hit by adding a delay to a test, but this seems pretty useless. The test file explicitly tests only two of the methods. Tests of other methods could be written, but since they would mostly be white-box tests that code does exactly what it says it does, this does not seem useful.

What *would* be useful is a patch to ParenMatch.set_timeout_last to keep the highlight on for as long as ^0 is held down, if longer that .5 sec. Right now, it flickers on and off.

The range bug, if such it is, is in 
HyperParser(self.editwin, "insert").get_surrounding_brackets().  I might take a look.
msg220421 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-13 06:37
I did the trivial part of a 2.7 backport of 2 name changes, but the real problem is that 2.7 does not have unittest.mock (which is why I have not used it until now). I removed one use with a dummy class, but am leaving the other one in the last test to you.
msg220511 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2014-06-13 23:01
I can take a look at get_surrounding_brackets() if you like, since I've worked with that code before.
msg220513 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-13 23:46
Please do. #21686 is for hyperparser test, which is the next one I want to look at.
msg220529 - (view) Author: Saimadhav Heblikar (Saimadhav.Heblikar) * Date: 2014-06-14 03:59
Patch as per tracker and Rietveld comments for 2.7
Terry - I replaced the DummyFrame with a Mock, so that we can have consistent code across 2.7 and 3.4. I completed a docstring.(See Rietveld)
msg220532 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2014-06-14 07:59
ParenMatch is indeed failing when the cursor is after the first parenthesis of the following code:

(3 +
 4 - 1)

This happens both in Shell and Editor windows.

I've traced the problem down to HyperParser. It doesn't properly support multi-line statements, as can be seen by the following line in HyperParser.__init__():

stopatindex = "%d.end" % lno

(this appears twice, once in each branch of the same if statement)

Fixing this requires looking forward a few lines to find the end of the statement. I'm continuing to look through the code to try to find an efficient way to do this (without parsing the entire file).
msg220536 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2014-06-14 08:35
Progress: As a hack for exploring this issue, I fixed this in the Shell window by having ParenMatch instantiate HyperParser in such a way that it parses the entirety of the current input. In ParenMatch.flash_paren_event(), I added:

from idlelib.PyShell import PyShell
if isinstance(self.editwin, PyShell):
    hp = HyperParser(self.editwin, "end-1c")
    hp.set_index("insert")
    indices = hp.get_surrounding_brackets()
else:
    <current behavior>

With this the given example works as expected in the Shell window, i.e. the entire expression is highlighted when the cursor is after the first bracket and pressing ^0.

I still need to find a less hackish way to do this which will also work for editor windows.
msg220543 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2014-06-14 09:49
I've opened a separate issue for the issue raised by Terry, #21756. Patch is included there.
msg220881 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-06-17 20:35
New changeset 8a64509b0bd5 by Terry Jan Reedy in branch '2.7':
Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
http://hg.python.org/cpython/rev/8a64509b0bd5

New changeset 385d4fea9f13 by Terry Jan Reedy in branch '3.4':
Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
http://hg.python.org/cpython/rev/385d4fea9f13
msg220908 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-17 22:10
I changed the close to match what worked in test_hyperparser. At first, I still got the warning. To see if the remaining problem was the import of EditorWindow, I disabled that, and the message went away. When I re-enabled the import, it stayed away. Puzzling, but a bit more data.
History
Date User Action Args
2022-04-11 14:58:04adminsetgithub: 65893
2014-06-17 22:10:08terry.reedysetstatus: open -> closed
resolution: fixed
messages: + msg220908

stage: needs patch -> resolved
2014-06-17 20:35:54python-devsetnosy: + python-dev
messages: + msg220881
2014-06-14 14:32:01Saimadhav.Heblikarsetfiles: - test-hyperparser-v1.diff
2014-06-14 14:31:44Saimadhav.Heblikarsetfiles: + test-hyperparser-v1.diff
2014-06-14 09:50:03taleinatsetfiles: - taleinat.20140614.IDLE_parenmatch_multiline_statement.patch
2014-06-14 09:49:35taleinatsetfiles: + taleinat.20140614.IDLE_parenmatch_multiline_statement.patch

messages: + msg220543
2014-06-14 08:35:28taleinatsetmessages: + msg220536
2014-06-14 07:59:05taleinatsetmessages: + msg220532
2014-06-14 03:59:29Saimadhav.Heblikarsetfiles: + test-parenmatch-21694-27-v2.diff

messages: + msg220529
2014-06-13 23:46:33terry.reedysetmessages: + msg220513
2014-06-13 23:01:37taleinatsetnosy: + taleinat
messages: + msg220511
2014-06-13 06:37:47terry.reedysetstage: patch review -> needs patch
2014-06-13 06:37:38terry.reedysetfiles: + test-parenmatch-21694-27.diff

messages: + msg220421
2014-06-13 06:35:16terry.reedysetfiles: + test-parenmatch-21694-34.diff

messages: + msg220420
2014-06-13 02:07:07terry.reedysettype: enhancement
messages: + msg220415
stage: patch review
2014-06-08 13:31:25Saimadhav.Heblikarcreate