| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| <html><head> |
| |
| <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>3.6 M5 Test Plan</title> |
| |
| <style type="text/css"> |
| h4 { margin-bottom: .5em; margin-top: 1.5em } |
| ul { margin-top: .5em } |
| ul li ul { margin-top: 0em; margin-bottom: .25em } |
| </style> |
| |
| <script type="text/javascript"> |
| function linkifyBugs() { |
| // Replaces plain text 'bug xyz' by a link to Eclipse's bugzilla. |
| traverseLinkifyBugs(document.getElementsByTagName("body")[0]); |
| } |
| function nextNode(node, stopNode) { |
| if (node.nextSibling) { |
| return node.nextSibling; |
| } else if (node.parentNode == stopNode) { |
| return null; |
| } else { |
| return nextNode(node.parentNode); |
| } |
| } |
| function traverseLinkifyBugs(node) { |
| var stopNode= node.parentNode; |
| var regex= /(Bug\s*)(\d+)/i; |
| while (node) { |
| if (node.nodeType == 1/*element*/ && node.nodeName == "a") { |
| node= nextNode(node, stopNode); |
| |
| } else if (node.childNodes != null && node.childNodes.length > 0) { |
| node= node.childNodes[0]; |
| |
| } else if (node.nodeType == 3/*text*/) { |
| var txt= node.data; |
| var res= regex.exec(txt); |
| if (res) { |
| var matchStart= txt.indexOf(res[0]); |
| |
| var beforeNode= document.createTextNode(txt.substring(0, matchStart)); |
| node.parentNode.insertBefore(beforeNode, node); |
| |
| var linkNode= document.createElement("a"); |
| linkNode.href= "https://bugs.eclipse.org/bugs/show_bug.cgi?id=" + res[2]; |
| linkNode.appendChild(document.createTextNode(res[1] + res[2])); |
| node.parentNode.insertBefore(linkNode, node); |
| |
| node.data= txt.substr(matchStart + res[0].length); |
| // continue with current (shortened) node... |
| } else { |
| node= nextNode(node, stopNode); |
| } |
| |
| } else { |
| node= nextNode(node, stopNode); |
| } |
| } |
| } |
| </script> |
| |
| </head> |
| |
| |
| <body onload="linkifyBugs();"> |
| <h1>3.6 M5 Test Plan</h1> |
| Test day: Monday 2010-01-25, Tuesday, 2010-01-26 and Wednesday, 2010-01-27<br> |
| Test Build: I20100124-2000 or newer (<em>always switch to latest available build</em>)<br> |
| Components: Platform Search, Platform Text, JDT Text and JDT UI<br> |
| Testers: Dani, Deepak, Markus, Raksha<br> |
| |
| |
| <h2>Platforms</h2> |
| <ul> |
| <li>Windows XP: <a href="mailto:raksha.vasisht@in.ibm.com">Raksha</a>, <a href="mailto:deepak.azad@in.ibm.com">Deepak</a></li> |
| <li>Windows 7: <a href="mailto:daniel_megert@ch.ibm.com">Dani</a></li> |
| <li>Linux-GTK: -</li> |
| <li>Mac OS X: <a href="mailto:markus_keller@ch.ibm.com">Markus</a></li> |
| </ul> |
| |
| |
| <h2>Goal</h2> |
| <ul> |
| <li>test new functionality added since 3.6 M4</li> |
| <li>verify that severe bugs are correctly fixed</li> |
| <li>sanity check performance</li> |
| </ul> |
| |
| |
| <h2>Test New Functionality </h2> |
| <em>First test all those items where you are listed as first tester.</em> |
| |
| <h4>Improved parameter hints (Ctrl + Shift + Space) (Markus, Deepak - Questions: Dani)</h4> |
| Test that the improvements to the parameter hints feature work (bug 58719). |
| <ul> |
| <li>test that the parameter hints appear after pressing <b>Ctrl + Space</b></li> |
| <li>test that the parameter hints appear after pressing <b>Ctrl + Shift + Space</b> if there are no overloaded methods</li> |
| <li>test that the method selector pop-up appears after using <b>Ctrl + Shift + Space</b> if there are overloaded methods |
| <ul> |
| <li>verify that the previously chosen method is selected in the pop-up</li> |
| </ul> |
| </li> |
| </ul> |
| |
| <h4>All folded annotations shown in rulers (Deepak, Markus - Questions: Dani)</h4> |
| <ul> |
| <li>test that all annotation from folded code are shown in the vertical and overview ruler (bug 63692)</li> |
| </ul> |
| |
| <h4>Problems view marker navigation (Markus, Raksha - Questions: Dani)</h4> |
| <ul> |
| <li>test in Problems view that going to marker does not change the view's selection (bug 294120)</li> |
| </ul> |
| |
| <h4> Spell check engine (Raksha, Markus - Questions: Deepak)</h4> |
| <ul> |
| <li>test that spell checker works correctly and correct proposals are given for an incorrect word (bug 233156)</li> |
| <li>test that org.eclipse.jdt.text.tests.performance.SpellCheckingTest returns 858 problems</li> |
| <li>test that when spell check is disabled the spell check engine and dictionary objects are destroyed (bug 295629)</li> |
| </ul> |
| |
| <h4> Use new PrintDialog.setPrinterData() API (Raksha, Dani - Questions: Deepak)</h4> |
| <ul> |
| <li> test that the following properties are remembered: selected printer, Print to file, printer preferences (printer specific data like margins, paper size,orientation etc). (bug 267427)</li> |
| </ul> |
| |
| <h4>New Breakpoints view features (Dani, Markus - Questions: Darin)</h4> |
| Test the new enhancements made in the Breakpoints view (bug 238956). |
| <ul> |
| <li>content and labels generated asynchronously (like other debug views)</li> |
| <li>support for custom content providers via provisional API (like other debug views)</li> |
| <li>support for extensible detail panes |
| <ul> |
| <li>Detail panes for Java breakpoints - conditions, hit counts, suspend policies, etc. (bug 290288)</li> |
| <li>use view menu to show/hide detail panes</li> |
| </ul></li> |
| <li>test selection behavior</li> |
| <li>test that old/known functionality still works</li> |
| </ul> |
| |
| <h4>Copy file names out of a JAR (Markus, Deepak - Questions: Raksha)</h4> |
| <ul> |
| <li>test that 'Copy' and 'Copy Qualified Name' actions are enabled and work for Jar Entry Resources (bug 297449)</li> |
| <li>test that the 'Copy' action only copies the simple names and 'Copy Qualified Name' copies the path from the root of the archive to the jar |
| entry resource</li> |
| <li>test that they work with multi-selection also with other resources and java elements</li> |
| <li>test that the actions do not allow copying of items that don't have the same parent</li> |
| </ul> |
| |
| <h4> Render Overwrite mode after filtering content assist proposals (Deepak, Dani - Questions: Raksha)</h4> |
| <ul> |
| <li>test that the overwrite mode is rendered after filtering of proposals with the text presentation listener (bug 287078)</li> |
| <li>test that the style range from the other listeners are intact(like the red squiggles)</li> |
| <li>test that the feature is not broken for viewers that do not implement <code>ITextViewerExtension4</code></li> |
| </ul> |
| |
| <h4>Pull Up to interface (Raksha, Dani - Questions: Markus)</h4> |
| Test pull up to interfaces (bug 188595). |
| <ul> |
| <li>still works for fields and methods</li> |
| <li>does not add unnecessary imports</li> |
| <li>does not add more unnecessary visibility changes than in M4 (we still have some open bugs in that area)</li> |
| </ul> |
| |
| <h4>Unused Object Allocation (Deepak, Raksha - Questions: Markus)</h4> |
| See bug 285000. |
| <ul> |
| <li>test project-specific and workspace options</li> |
| <li>test quick fixes (for exceptions and for other types)</li> |
| </ul> |
| |
| <h4>Inline Local Variable / Inline Constant: Test with auto-boxing (Dani, Deepak - Questions: Markus)</h4> |
| See bug 297760, bug 297868. |
| <ul> |
| <li>test other scenarios with these 2 refactorings that involve boxing/unboxing of expressions</li> |
| </ul> |
| |
| <h4>Refactoring Undo in background (Dani, Raksha - Questions: Markus)</h4> |
| <ul> |
| <li>test that Undo/Redo of refactorings and quick fixes work</li> |
| <li>test with open and closed editors</li> |
| <li>verify fix for bug 300536</li> |
| </ul> |
| |
| |
| <h2>Bug Verification (All)</h2> |
| <em>Before starting to verify a bug add a comment indicating that you are about to verify it.</em> |
| <ul> |
| <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M5&query_format=advanced&classification=Eclipse&product=JDT&component=UI&priority=P1&bug_status=RESOLVED&resolution=FIXED&order=bugs.priority,bugs.target_milestone,bugs.bug_id"> |
| P1 JDT UI bugs, 3.6 M5</a></li> |
| |
| <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M5&query_format=advanced&classification=Eclipse&component=Text&component=Search&priority=P1&bug_status=RESOLVED&resolution=FIXED&order=bugs.priority,bugs.target_milestone,bugs.bug_id"> |
| P1 Text and Search bugs, 3.6 M5</a></li> |
| |
| <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M5&query_format=advanced&classification=Eclipse&product=JDT&component=UI&bug_severity=blocker&bug_severity=critical&bug_severity=major&bug_status=RESOLVED&resolution=FIXED&order=bugs.priority,bugs.target_milestone,bugs.bug_id"> |
| JDT UI bugs blocker/critical/major, 3.6 M5</a></li> |
| |
| <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M5&query_format=advanced&classification=Eclipse&component=Text&component=Search&bug_severity=blocker&bug_severity=critical&bug_severity=major&bug_status=RESOLVED&resolution=FIXED&order=bugs.priority,bugs.target_milestone,bugs.bug_id"> |
| Text and Search bugs blocker/critical/major, 3.6 M5</a></li> |
| </ul> |
| |
| </body></html> |