/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4530730
* @summary stddoclet: With frames off, window titles have "()" appended
* @author dkramer
* @run main WindowTitles
*/
// If needing regular expression pattern matching,
/**
* Runs javadoc and runs regression tests on the resulting HTML.
* It reads each file, complete with newlines, into a string to easily
* find strings that contain newlines.
*/
public class WindowTitles
{
// Subtest number. Needed because runResultsOnHTML is run twice, and subtestNum
// should increment across subtest runs.
// Entry point
// Directory that contains source files that javadoc runs on
// Test for all cases except the split index page
"-use",
"-sourcepath", srcdir,
"p1", "p2"});
// Test only for the split-index case (and run on only one package)
"-splitindex",
"p1"});
printSummary();
}
/** Run javadoc */
throw new Error("Javadoc failed to execute");
}
}
/**
* Assign value for [ stringToFind, filename ]
* NOTE: The standard doclet uses platform-specific line separators (LS)
*/
{ "<title>Overview</title>",
{ "<title>Class Hierarchy</title>",
TMPDIR_STRING1 + "overview-tree.html" },
{ "<title>Overview List</title>",
{ "<title>p1</title>",
{ "<title>p1</title>",
{ "<title>p1 Class Hierarchy</title>",
{ "<title>Uses of Package p1</title>",
{ "<title>C1</title>",
{ "<title>All Classes</title>",
{ "<title>All Classes</title>",
{ "<title>Constant Field Values</title>",
{ "<title>Deprecated List</title>",
{ "<title>Serialized Form</title>",
{ "<title>API Help</title>",
TMPDIR_STRING1 + "help-doc.html" },
{ "<title>Index</title>",
TMPDIR_STRING1 + "index-all.html" },
{ "<title>Uses of Class p1.C1</title>",
};
/**
* Assign value for [ stringToFind, filename ] for split index page
*/
{ "<title>C-Index</title>",
};
subtestNum += 1;
// Read contents of file into a string
// Get string to find
// Find string in file's contents
+ "when searching for:\n"
+ stringToFind);
} else {
numSubtestsPassed += 1;
}
}
}
public static void printSummary() {
if ( numSubtestsPassed == subtestNum ) {
} else {
}
}
// Read the file into a String
try {
}
// Create an array of characters the size of the file
// Read the characters into the allChars array
// Convert to a string
return allCharsString;
} catch (FileNotFoundException e) {
return "";
} catch (IOException e) {
return "";
}
}
}
}