blob: 8551e2aec142e72bbadfd2ea092bca14fb1281ac [file] [log] [blame]
<!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.7 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.7 M5 Test Plan</h1>
Test day: Tuesday, 2011-01-25<br>
Test Build: I20110124-1800<br>
Components: Platform Search, Platform Text, JDT Text and JDT UI<br>
Testers: Dani, Deepak, Markus, Rajesh and Raksha<br>
<h2>Platforms</h2>
<ul>
<li>Windows XP: <a href="mailto:raksha.vasisht@in.ibm.com">Raksha</a>, <a href="mailto:daniel_megert@ch.ibm.com">Dani</a></li>
<li>Windows 7: <a href="mailto:markus_keller@ch.ibm.com">Markus</a></li>
<li>Linux-GTK: <a href="mailto:rthakkar@in.ibm.com">Rajesh</a></li>
<li>Mac OS X: <a href="mailto:deepak.azad@in.ibm.com">Deepak</a>, <a href="mailto:markus_keller@ch.ibm.com">Markus</a></li>
</ul>
<h2>Goal</h2>
<ul>
<li>test new functionality added since 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>Semantic highlighting for abstract classes (Markus, Raksha - Questions: Dani)</h4>
Test the new semantic highlighting (SH) for abstract classes:
<ul>
<li>verify that it's disabled out of the box</li>
<li>verify that it works when enabled</li>
<li>verify that interface coloring is not affected by this</li>
</ul>
<h4>Separate encoding for derived files (Dani, Markus - Questions: Dani)</h4>
Test the new feature that allows to store the encoding of derived files separately:
<ul>
<li>verify that it's disabled out of the box</li>
<li>verify that out of the box everything works as before</li>
<li>verify that storing the encoding for derived files separately works</li>
<li>verify that disabling the feature again, results in the old (3.6) state</li>
<li>verify that it behaves reasonably well (no exceptions) when an old build is used but the encoding is stored separately</li>
</ul>
<h4>New compiler option: Generic types &gt; Ignore unavoidable generic type problems (Deepak, Dani - Questions: Markus)</h4>
<ul>
<li>verify that unavoidable problems (e.g. raw type in overriding method signature) are not reported</li>
<li>verify that problems are reported when checkbox is unchecked</li>
<li>try to find other cases where 1.5 code references raw APIs and cannot avoid type safety warnings</li>
</ul>
<h4>Compiler options for methods that could be static (Raksha, Rajesh - Questions: Markus)</h4>
<ul>
<li>verify that the 2 new options work (the potential one is for methods that could be overridden)</li>
<li>verify that the quick fix works</li>
</ul>
<h4>Quick Outline shows inherited members of nested types (Deepak, Raksha - Questions: Markus)</h4>
<ul>
<li>verify that inherited members are shown for all focus types (top-level types and the type that contains the caret)</li>
<li>verify that all focus types have the focus adornment (arrow in icon)</li>
</ul>
<h4>Overview ruler annotations (Raksha, Deepak - Questions: Markus)</h4>
<ul>
<li>verify that annotations are drawn at the right spot (see OverviewRuler#computeY(int, WidgetInfos) for the used strategy</li>
<li>verify with editors of different size, short and huge documents, annotations in various positions</li>
<li>verify multi-line annotations (quick diff)</li>
<li>verify that the mouse arming is correct (hand pointer on annotations)</li>
<li>verify that annotation hovers are correct</li>
<li>verify that clicking empty lines still works</li>
</ul>
<h4>No stale projects in working sets (Raksha, Dani - Questions: Markus)</h4>
Before bug 300368, it could happen that a resource working set contained a project that did not exist in the workspace
(e.g. after importing <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=300368#c17">this</a> team project set).
<ul>
<li>with 3.6, create a workspace with such a stale project</li>
<li>verify that the project magically disappears when launching with 3.7 M5</li>
<li>try to break the fix, e.g. by removing a project on the file system, or using a project whose location is outside of the wokspace</li>
</ul>
<h4>Help button in dialogs (Deepak, Rajesh - Questions: Markus)</h4>
The help button in dialogs is now a toggle.
<ul>
<li>verify the toggling on click (F1 or platform help button does <i>not</i> toggle)</li>
<li>verify that the keyboard focus is properly restored when you close the tray</li>
<li>verify that the right help context is used</li>
</ul>
<h4>Quick assist/quick fix: Add missing case statements (in an enum switch) (Rajesh, Markus - Questions: Deepak)</h4>
<ul>
<li>verify that the quick assist is available at all places it should be.</li>
<li>verify the behavior with compiler option "Enum type constant not covered on 'switch'" enabled.</li>
<li>verify the behavior with compiler option "Enum type constant not covered on 'switch'" disabled.</li>
</ul>
<h4>Undo marker deletions (Markus, Deepak - Questions: Dani)</h4>
Test that marker deletions can be undone:
<ul>
<li>verify that deletions in the Problems view can be undone via Problems view and Package Explorer</li>
<li>verify that deletions in the Tasks view can be undone via Tasks view and Package Explorer</li>
<li>verify that deletions in the Bookmarks view can be undone via Bookmarks view and Package Explorer</li>
<li>verify that deletions in the Breakpoints view can be undone via Breakpoints view and Package Explorer</li>
<li>verify that deleting a breakpoint via Java editor ruler can be undone via Package Explorer</li>
<li>test above items using the menu and the keyboard (Ctrl+Z)</li>
</ul>
<h4>Warn when deleting conditional breakpoint in the Java editor (Rajesh, Markus - Questions: Dani)</h4>
<ul>
<li>verify that there's a warning dialog when deleting a conditional breakpoint via ruler in the Java editor</li>
<li>test that the warning dialog works as expected</li>
<li>verify that the corresponding preference on the Java &gt; Debug preference page works as expected</li>
</ul>
<h4>History for conditional breakpoints (Deepak, Raksha - Questions: Dani)</h4>
<ul>
<li>verify that the history works in the properties dialog</li>
<li>verify that the history works in the Breakpoints view</li>
<li>verify that the same history is used in the dialog and a newly opened view</li>
<li>verify that the Breakpoints view keeps an individual (local) history per breakpoint</li>
</ul>
<h4>Call Hierarchy (Rajesh, Deepak - Questions: Raksha)</h4>
Verify that Control-drag feature to add methods to a call hierarchy instead of replace works as expected:
<ul>
<li>verify that Ctrl+ drag feature works on the current view regardless of the pin state of the target view and view description is updated after every addition</li>
<li>verify that the newly added elements are selected and revealed and expanded when dropped on either hierarchy or location viewers</li>
<li>verify that the drag and drop of elements inside the call hierarchy view is a no-op on the existing elements but allowed on any white space</li>
<li>verify that the history of the elements is updated after elements are added and all the elements in a view are remembered as one entry</li>
<li>verify that shift+ drop from any other view to call hierarchy view shows the link operation, ctrl+ drop shows the copy operation (+ sign)</li>
</ul>
Verify that Clearing history should clear the status bar:
<ul>
<li>verify that the status bar is cleared when history is cleared in Call Hierarchy and Type Hierarchy views</li>
</ul>
<h4>Open Declared Type hyperlink should not show up when the variable type is primitive (Markus, Rajesh - Questions: Raksha)</h4>
<ul>
<li>verify that the Open Declared Type hyperlink does not show up for primitive types like int, char</li>
</ul>
<h4>New JUnit 4 Test Case wizard should create a test method when class under test is null (Dani, Rajesh - Questions: Raksha)</h4>
<ul>
<li>verify that a new test method with the JUnit-4-specific '@Test' annotation is created when an empty test is created without a class under test</li>
<li>verify that the new test appears in the list of classes when New JUnit 4 Test Suite wizard is created</li>
<li>verify that a new test method with the JUnit-4-specific '@Test' annotation is created when no methods are selected in page 2 of the wizard</li>
</ul>
<h2>Test 3.6.2 Fixes</h2>
Make sure to verify all
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=Platform&component=Search&target_milestone=3.6.2&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Platform Search</a>,
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=JDT&product=Platform&component=Text&target_milestone=3.6.2&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Platform/JDT Text</a> and
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=JDT&component=UI&target_milestone=3.6.2&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">JDT UI</a> fixes.
<h4>Test all fixes against 3.7 M5 (???, ???)</h4>
Don't set bugs to verified.
<h4>Test all fixes against 3.6.2 (???, ???)</h4>
Use M20110119-0800, set bugs to verified.
<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.7%20M5&amp;query_format=advanced&amp;classification=Eclipse&amp;product=JDT&amp;component=UI&amp;priority=P1&amp;bug_status=RESOLVED&amp;resolution=FIXED&amp;order=bugs.priority,bugs.target_milestone,bugs.bug_id">
P1 JDT UI bugs, 3.7 M5</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.7%20M5&amp;query_format=advanced&amp;classification=Eclipse&amp;component=Text&amp;component=Search&amp;priority=P1&amp;bug_status=RESOLVED&amp;resolution=FIXED&amp;order=bugs.priority,bugs.target_milestone,bugs.bug_id">
P1 Text and Search bugs, 3.7 M5</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.7%20M5&amp;query_format=advanced&amp;classification=Eclipse&amp;product=JDT&amp;component=UI&amp;bug_severity=blocker&amp;bug_severity=critical&amp;bug_severity=major&amp;bug_status=RESOLVED&amp;resolution=FIXED&amp;order=bugs.priority,bugs.target_milestone,bugs.bug_id">
JDT UI bugs blocker/critical/major, 3.7 M5</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.7%20M5&amp;query_format=advanced&amp;classification=Eclipse&amp;component=Text&amp;component=Search&amp;bug_severity=blocker&amp;bug_severity=critical&amp;bug_severity=major&amp;bug_status=RESOLVED&amp;resolution=FIXED&amp;order=bugs.priority,bugs.target_milestone,bugs.bug_id">
Text and Search bugs blocker/critical/major, 3.7 M5</a></li>
</ul>
</body></html>