blob: a8174a9d1ec9bb5c19409054a3d2f98acabae41b [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. The ASF licenses this file to You
under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%><%@ page import="junit.framework.Test,
junit.framework.TestSuite,
java.util.*,
junit.framework.TestCase,
java.text.SimpleDateFormat,
org.apache.jackrabbit.tck.*,
org.apache.jackrabbit.tck.j2ee.RepositoryServlet,
java.io.ByteArrayOutputStream,
javax.jcr.*,
java.io.IOException,
javax.xml.parsers.ParserConfigurationException,
org.xml.sax.SAXException,
java.io.ByteArrayInputStream"
%><%@page session="false" %><%
// get the repository session for read(config and test results) and write (config and test results) access
Session repSession = RepositoryServlet.getSession();
if (repSession == null) {
return;
}
// display mode:
// - testnow : new test
// - view: view results
// - null: blank view
String mode = request.getParameter("mode");
%><html>
<head>
<link rel="stylesheet" href="docroot/ui/default.css" type="text/css" title="style" />
<script>
function showConfig(id) {
parent.config.document.location.href="config.jsp#" + id;
}
</script>
</head>
<body style="margin-top:0px;border-width:0px">
<%
// draw empty test grid
if (mode == null || (mode != null && mode.equals("testnow"))) {
// prepare test
TestFinder tf = new TestFinder();
tf.find(getServletConfig().getServletContext().getResource(RepositoryServlet.getTckWebappJarPath()).openStream(),
"TestAll.java");
Iterator tests = tf.getSuites().keySet().iterator();
out.write("<table style=\"width:100%;\">");
tests = tf.getSuites().keySet().iterator();
while (tests.hasNext()) {
String key = (String) tests.next();
TestSuite t = (TestSuite) tf.getSuites().get(key);
Enumeration members = t.tests();
out.write("<tr><th class=\"content\" colspan=\"3\">" + t.toString() + "</th></tr>");
// list tests ordered by key (level1, level2, ....)
while (members.hasMoreElements()) {
TestSuite aTest = (TestSuite) members.nextElement();
out.write("<tr><td class=\"graph\" width=\"35%\" valign=\"top\">" +
aTest.toString() + "</td><td>&nbsp;</td><td>");
Enumeration testMethods = aTest.tests();
while (testMethods.hasMoreElements()) {
TestCase tc = (TestCase) testMethods.nextElement();
String methodname = tc.getName();
String id = methodname + "(" + aTest.getName() + ")";
out.write("<img border=\"0\" id=\"" + id + "img" + "\" src=\"docroot/imgs/clear.png\" title=\"" + methodname + "\"> ");
}
out.write("</td></tr>");
}
if (tests.hasNext()) {
out.write("<tr><th colspan=\"3\" class=\"content\">&nbsp;</th></tr>");
}
}
out.write("</table>");
}
// start testing or show results
if (mode != null && mode.equals("testnow")) {
// exclude list
Map tckExcludeList = Collections.EMPTY_MAP;
String excludelist = request.getParameter("useExcludeList");
boolean useExcludeList = (excludelist != null && excludelist.equals("no")) ? false : true;
if (useExcludeList) {
// check if exclude list is up to date or even existing
if (repSession.getRootNode().hasNode("excludeList")) {
Node excludeListNode = repSession.getRootNode().getNode("excludeList");
String list = excludeListNode.getProperty("list").getString();
if (list != null && !"".equals(list)) {
String splittedList[] = list.split(",");
tckExcludeList = new HashMap();
for (int i = 0; i < splittedList.length; i++) {
String name = splittedList[i];
tckExcludeList.put(name, name);
}
}
}
}
// start testing
Node rootNode = repSession.getRootNode();
Node testResNode = (rootNode.hasNode("testing")) ?
rootNode.getNode("testing") : rootNode.addNode("testing", "nt:unstructured");
rootNode.save();
out.write("<script>parent.statuswin.document.write(\"<html><head><title></title>\");");
out.write("parent.statuswin.document.write('<link rel=\"stylesheet\" href=\"docroot/ui/default.css\" " +
"type=\"text/css\" title=\"style\" /></head>');");
out.write("parent.statuswin.document.write('<body style=\"margin-top:5px;margin-left:10px;border-width:0px;font-size:11px;\">');");
out.write("parent.statuswin.document.write(\"starting\");</script>");
TestFinder testfinder = new TestFinder();
testfinder.find(getServletConfig().getServletContext().getResource(RepositoryServlet.getTckWebappJarPath()).openStream(),
"TestAll.java");
TckTestRunner runner = new TckTestRunner(out);
String logStr = "<script>" +
"parent.statuswin.document.write(\"{0} : {1}<br>\");" +
"parent.statuswin.scrollBy(0,20);" +
"</script>";
runner.setLogString(logStr);
String interAStr = "<script>" +
"var cell=document.getElementById(\"{0}img\");" +
"cell.src=\"docroot/imgs/{1}.png\";" +
"cell=document.getElementById(\"{0}img\");" +
"cell.setAttribute(\"title\",cell.getAttribute(\"title\")+\":{1} time:{2}ms\");" +
"</script>";
runner.setInteractionString(interAStr);
runner.setNewTestString("<script>window.scrollBy(0,21);</script>");
Tester t = new Tester(testfinder, runner, out, tckExcludeList);
t.setfinishedSuiteString("<script>parent.statuswin.document.write(\"finished {0} tests<br>\");window.scrollBy(0,40);</script>");
long startMillies = System.currentTimeMillis();
t.run();
// saving test results
out.write("<script>parent.statuswin.document.write('" + String.valueOf(t.getNumberOfExecutedTests()) + " tests got executed<br>')</script>");
out.write("<script>parent.statuswin.document.write('Saving test results...<br>')</script>");
Node results = testResNode.addNode(String.valueOf(startMillies));
testResNode.save();
t.storeResults(results);
// test summary
out.write("<script>parent.statuswin.document.write('Generating test summary...<br>')</script>");
out.write("<script>parent.statuswin.scrollBy(0,30);</script>");
Map summary = buildSummary(results, repSession);
out.write("<table width=\"100%\">");
out.write("<tr><th class=\"content\" width=<\"100%\" colspan=\"" + String.valueOf(summary.size()) + "\">Test Summary</th></tr>");
Iterator itr = summary.keySet().iterator();
out.write("<tr>");
String width = String.valueOf(Math.round(100 / summary.size()));
while (itr.hasNext()) {
out.write("<td width=\"" + width + "%\" align=\"center\" class=\"content\">" + itr.next() + "</td>");
}
out.write("</tr>");
itr = summary.keySet().iterator();
out.write("<tr>");
while (itr.hasNext()) {
String key = (String) itr.next();
Boolean passed = (Boolean) summary.get(key);
String res = (passed.booleanValue()) ? "pass" : "failure";
out.write("<td align=\"center\" class=\"content\">" + "<img src=\"docroot/imgs/" + res + ".png\" border=\"0\"></td>");
}
out.write("</tr>");
out.write("</table>");
out.write("<script>parent.statuswin.document.write(\"...finished. Test took " +
String.valueOf(System.currentTimeMillis() - startMillies) + "ms<br>\");</script>");
out.write("<script>parent.statuswin.scrollBy(0,50);</script>");
out.write("<script>parent.statuswin.document.write(\"</body></html>\");</script>");
out.write("<script>window.scrollBy(0,200);</script>");
} else if (mode != null && mode.equals("view")) {
out.write("<script>parent.statuswin.document.write(\"<html><head><title></title>\");");
out.write("parent.statuswin.document.write('<link rel=\"stylesheet\" href=\"docroot/ui/default.css\" " +
"type=\"text/css\" title=\"style\" /></head>');");
out.write("parent.statuswin.document.write('<body style=\"margin-top:5px;margin-left:10px;border-width:0px;0px;font-size:11px;\">');");
out.write("parent.statuswin.document.write(\"view test result<br>\");</script>");
// the test to be viewed is defined by the timestamp
String testTimeInMs = request.getParameter("test");
// load "test root"
Node testroot = repSession.getRootNode().getNode("testing/" + testTimeInMs);
// build summary
Map summary = buildSummary(testroot, repSession);
// Iterate through all tests
TestFinder tf = new TestFinder();
tf.find(getServletConfig().getServletContext().getResource(RepositoryServlet.getTckWebappJarPath()).openStream(), "TestAll.java");
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(Long.parseLong(testTimeInMs));
SimpleDateFormat formatter = new SimpleDateFormat("dd.MM.yyyy hh:mm:ss");
String formatedTestTime = formatter.format(cal.getTime());
// test header
out.write("<table width=\"100%\">");
out.write("<tr><th class=\"content\" width=<\"100%\">Test: " + formatedTestTime + "</th></tr>");
out.write("</table>");
// test summary
out.write("<table width=\"100%\">");
out.write("<tr><th class=\"content\" width=<\"100%\" colspan=\"" + String.valueOf(summary.size()) + "\">Test Summary</th></tr>");
Iterator itr = summary.keySet().iterator();
out.write("<tr>");
String width = String.valueOf(Math.round(100 / summary.size()));
while (itr.hasNext()) {
out.write("<td width=\"" + width + "%\" align=\"center\" class=\"content\">" + itr.next() + "</td>");
}
out.write("</tr>");
itr = summary.keySet().iterator();
out.write("<tr>");
while (itr.hasNext()) {
String key = (String) itr.next();
Boolean passed = (Boolean) summary.get(key);
String res = (passed.booleanValue()) ? "pass" : "failure";
out.write("<td align=\"center\" class=\"content\">" + "<img src=\"docroot/imgs/" + res + ".png\" border=\"0\"></td>");
}
out.write("</tr>");
out.write("</table>");
// all tests in detail
out.write("<table width=\"100%\">");
out.write("<tr><th colspan=\"3\" class=\"content\">&nbsp;</th></tr>");
out.write("<tr><th colspan=\"3\" class=\"content\">Detailed Test Report</th></tr>");
// display the test result categorized by the test suites:
// - level1
// - level2
// - .....
Iterator tests = tf.getSuites().keySet().iterator();
while (tests.hasNext()) {
String key = (String) tests.next();
TestSuite t = (TestSuite) tf.getSuites().get(key);
Enumeration members = t.tests();
out.write("<tr><td class=\"content\" colspan=\"3\">" + t.toString() + "</td></tr>");
while (members.hasMoreElements()) {
TestSuite aTest = (TestSuite) members.nextElement();
out.write("<tr><td class=\"graph\" width=\"35%\" valign=\"top\">" +
aTest.toString() + "</td><td>&nbsp;</td><td>");
Enumeration testMethods = aTest.tests();
while (testMethods.hasMoreElements()) {
TestCase tc = (TestCase) testMethods.nextElement();
String methodname = tc.getName();
// test identifier
String keyname = methodname + "(" + aTest.getName() + ")";
// load node containig the test result for one test
Node testResultNode;
if (testroot.hasNode(key + "/" + keyname)) {
testResultNode = testroot.getNode(key + "/" + keyname);
} else {
continue;
}
int status = new Long(testResultNode.getProperty("status").getLong()).intValue();
String color;
switch (status) {
case TestResult.SUCCESS:
color = "pass";
break;
case TestResult.ERROR:
case TestResult.FAILURE:
color = "failure";
break;
case TestResult.NOT_EXECUTABLE:
color = "error";
break;
default:
color = "clear";
}
String testTime = (testResultNode.hasProperty("testtime")) ?
String.valueOf(testResultNode.getProperty("testtime").getLong()) : "0";
String errorMsg = (testResultNode.hasProperty("errrormsg")) ?
"Error: " + testResultNode.getProperty("errrormsg").getString() : "";
errorMsg = errorMsg.replaceAll("'"," ");
errorMsg = errorMsg.replaceAll("\""," ");
errorMsg = errorMsg.replaceAll("\n"," ");
errorMsg = errorMsg.replaceAll("\r"," ");
String testInfo = "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" +
"- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<br>" +
"Test name: " + methodname + "(" + aTest.getName() + ")<br>" +
"Time: " + testTime + "ms<br>" + errorMsg + "<br>";
out.write("<img src=\"docroot/imgs/" + color + ".png\" title=\"" + methodname + ": " + color + "\" border=\"0\" " +
"onclick=\"parent.statuswin.document.write('" + testInfo + "');" +
"parent.statuswin.scrollBy(0,70);\"> ");
}
out.write("</td></tr>");
}
if (tests.hasNext()) {
out.write("<tr><th colspan=\"3\" class=\"content\">&nbsp;</th></tr>");
}
}
out.write("</table>");
out.write("<script>parent.statuswin.scrollBy(0,20);</script>");
out.write("<script>parent.statuswin.document.write(\"</body></html>\");</script>");
}
%>
</body>
</html><%!
public Map buildSummary(Node startNode, Session session) throws RepositoryException, IOException, ParserConfigurationException, SAXException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
session.exportSystemView(startNode.getPath(), baos, false, false);
TestResultParser parser = new TestResultParser();
Map summary = parser.interpretResult(baos.toString());
return summary;
}
%>