blob: f6ac4bfe497109055af94543c65e51fad8093811 [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.6 M7 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 M7 Test Plan</h1>
Test day: Monday, 2010-04-26<br>
Test Build: I20100425-2000 (<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="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 M6</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>Java Code Style preference transfer category (Raksha, Deepak - Questions: Dani)</h4>
Test that all Java code style preferences (including those from nested preference pages) are covered by the new 'Java Code Style' preference transfer category.
<ul>
<li>test that all settings are correctly exported</li>
<li>test that all settings are correctly imported</li>
</ul>
<h4>Compare editor (Markus, Raksha - Questions: Dani)</h4>
<ul>
<li>test context menu &amp; Open With opens with the same selection as currently in the compare editor (bug 267171)</li>
<li><b>Ctrl+O</b> resets viewport so that the selected element is shown in the editor (bug 307757)</li>
</ul>
<h4>Paste patch into Package Explorer shows patch in Synchronize view (Deepak, Markus - Questions: Dani)</h4>
<ul>
<li>test that out of the box it works like in 3.5 (modal wizard)</li>
<li>enable <b>Apply patch in Synchronize view</b> on the <b>Team</b> page and verify that it works</li>
<li><em>Note: the changes may not be visible due to bug 310365!</em></li>
</ul>
<h4>Show In offers the Project Explorer in JDT perspectives (Raksha, Deepak - Questions: Dani)</h4>
Verify that views in the JDT perspectives now show the Project Explorer in the Show In menu (bug 175857).
<h4>Drag &amp; Drop (Markus, Deepak - Questions: Dani)</h4>
Verify that drag and drop works as expected with regards on the new Link support. Test in Package Explorer, Project Explorer and Navigator.
<ul>
<li>test DnD inside the workspace</li>
<li>test DnD from the OS explorer</li>
<li>test all options of the dialog that comes on drop</li>
<li>test that all DnD options from the 'Linked Resources' preference page work</li>
</ul>
<h4>Mark projects that have build path problems (Dani, Raksha - Questions: Deepak)</h4>
Verify that the new icon (a red "!") is overlaid on Project and Working Set icons only for Build path problems (bug 215980).
<h4>Combined "Delete" on mixed selection package/folders does not delete all resources (Raksha, Dani - Questions: Deepak)</h4>
Verify that deleting a package and a (non-source) folder deletes both (bug 292505).
<h4>Hover on string constant should show NLSed string (Raksha, Markus - Questions: Deepak)</h4>
Verify that hovering over a string constant (NLS key) shows the NLSed string (bug 306168).
<h4>Unable to refactor expression without resolved type in variable initializer (Dani, Raksha - Questions: Deepak)</h4>
<ul>
<li>Verify that Extract Constant and Extract Local Variable refactorings work when there is an error in the selected expression (bug 307758).</li>
<li>Verify that Introduce Parameter refactoring still does not work if there is an error in the selected expression.</li>
</ul>
<h4> Prevent creation of resources inside virtual folders (Deepak, Markus - Questions: Raksha)</h4>
Verify that no resources can be created inside a virtual folder (bug 297442)
<ul>
<li>test that the source folder or package is not virtual while creating a new class or package</li>
<li>test that a new source folder cannot be created if its virtual </li>
<li>test that new Java elements can still be created inside a linked folder</li>
</ul>
<h4> Prevent creation of filtered resources in JDT Wizards (Deepak, Markus - Questions: Raksha)</h4>
Verify that no filtered resources can be created from any JDT Wizard (bug 308957)
<h4> Call Hierarchy actions (Deepak, Dani - Questions: Raksha)</h4>
<ul>
<li>Verify that Open Location action in the Location Viewer context menu is disabled when selection is empty (bug 307816)</li>
<li>Verify that Refresh and Refresh View actions are not shown or disabled when not applicable (bug 303788)
<ul>
<li>test that the Refresh action in call hierarchy view is not shown in the menu when selection is empty</li>
<li>test that the Refresh View action in the call hierarchy view is disabled when the view is empty</li>
<li>test that Refresh action works in the Location Viewer</li>
</ul>
</li>
</ul>
<h4>Package name abbreviations (Deepak, Dani - Questions: Markus)</h4>
<ul>
<li>test the new option on Preferences &gt; Java &gt; Appearance (bug 299514)</li>
<li>also test in connection with the "Compress package names" option</li>
</ul>
<h4>New Java Project Wizard (Dani, Deepak - Questions: Markus)</h4>
<ul>
<li>test creation of new Java projects at default location and at custom locations (bug 305155)</li>
<li>test with custom locations inside the workspace (not directly, but nested in another folder or project)</li>
</ul>
<h4>Deadlocks when appying quick fix on GTK (Markus - Questions: Markus)</h4>
<ul>
<li>GTK: Provoke deadlock situation from bug 293995 in an older build (by setting some breakpoints)</li>
<li>verify that deadlock doesn't happen any more in test build with the same steps</li>
</ul>
<h4>Open Resource (Dani, Deepak - Questions: Markus)</h4>
<ul>
<li>verify that file name patterns (without a /) work as before (except that files closer to the
current context are higher up in the list of matches</li>
<li>verify that performance in a workspace with many files (e.g. import all as source) is comparable to performance in M6 for file patterns</li>
<li>verify that folder patterns work (bug 86973)</li>
<li>verify that camelCase patterns with file extensions work (bug 212565, bug 227289)</li>
</ul>
<h4>Quit confirmation on the Mac (Markus - Questions: Markus)</h4>
<ul>
<li>Test quit confirmation dialog on carbon and cocoa (bug 283345)</li>
</ul>
<h4>Java 1.7 support removed from Java Compiler preference/properties page (Raksha, Deepak - Questions: Markus)</h4>
<ul>
<li>the page should only show 1.7 in the project properties dialog when one of the version options has been set to 1.7 in the prefs file in .settings (bug 309163)</li>
<li>verify that the error and warning messages make sense in different setups</li>
<li>verify that setting the Execution Environment to JavaSE-1.7 sets the compiler compliance to 1.6</li>
<li>test scenarios with and without a 1.7 JDK installed</li>
</ul>
<h4>Javadoc hovers show annotations (Deepak, Raksha - Questions: Markus)</h4>
<ul>
<li>test that the Javadoc hovers and the Javadoc view show annotations (bug 236850)</li>
<li>test that the links in the annotations work</li>
<li>test for source and binary with attached source</li>
</ul>
<h4>Javadoc hovers show value of {@value} (Raksha, Deepak - Questions: Markus)</h4>
<ul>
<li>test that {@value} and {@value#CONSTANT} work in Javadoc hovers and the Javadoc view (bug 72139)</li>
<li>test for source and binary with attached source</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%20M7&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.6 M7</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M7&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.6 M7</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M7&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.6 M7</a></li>
<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?target_milestone=3.6%20M7&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.6 M7</a></li>
</ul>
</body></html>