1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
<?php
/**
* base include file for SimpleTest PUnit reporter
* @package SimpleTest
* @subpackage UnitTester
* @version $Id: webunit_reporter.php,v 1.10 2004/02/14 18:24:12 jsweat Exp $
*/
/**
* @ignore originally defined in simple_test.php
*/
if (!defined("SIMPLE_TEST")) {
define("SIMPLE_TEST", "simpletest/");
}
require_once(SIMPLE_TEST . 'runner.php');
require_once(SIMPLE_TEST . 'reporter.php');
/**
* Main sprintf template for the start of the page.
* Sequence of parameters is:
* - title - string
* - script path - string
* - script path - string
* - css path - string
* - additional css - string
* - title - string
* - image path - string
*/
define('SIMPLETEST_WEBUNIT_HEAD', <<<EOS
<html>
<head>
<title>%s</title>
<script type="text/javascript" src="%sx.js"></script>
<script type="text/javascript" src="%swebunit.js"></script>
<link rel="stylesheet" type="text/css" href="%swebunit.css" title="Default"></link>
<style type="text/css">
%s
</style>
</head>
<body>
<div id="wait">
<h1> Running %s </h1>
Please wait...<br />
<img src="%swait.gif" border="0"><br />
</div>
<script type="text/javascript">
wait_start();
</script>
<div id="webunit">
<div id="run"></div><br />
<div id="tabs">
<div id="visible_tab">visible tab content</div>
<span id="failtab" class="activetab"> <a href="javascript:activate_tab('fail');">Fail</a> </span>
<span id="treetab" class="inactivetab"> <a href="javascript:activate_tab('tree');">Tree</a> </span>
</div>
<div id="msg">Click on a failed test case method in the tree tab to view output here.</div>
</div>
<div id="fail"></div>
<div id="tree"></div>
<!-- open a new script to capture js vars as the tests run -->
<script type="text/javascript">
layout();
EOS
);
/**
* Not used yet.
* May be needed for localized styles we need at runtime, not in the stylesheet.
*/
define('SIMPLETEST_WEBUNIT_CSS', '/* this space reseved for future use */');
/**
* Sample minimal test displayer. Generates only
* failure messages and a pass count.
* @package SimpleTest
* @subpackage UnitTester
*/
class WebUnitReporter extends SimpleReporter {
/**
* @var string Base directory for PUnit script, images and style sheets.
* Needs to be a relative path from where the test scripts are run
* (and obviously, visible in the document root).
*/
var $path;
/**
* Does nothing yet. The first output will
* be sent on the first test start. For use
* by a web browser.
* @access public
*/
function WebUnitReporter($path='../ui/') {
$this->SimpleReporter();
$this->path = $path;
}
/**
* Paints the top of the web page setting the
* title to the name of the starting test.
* @param string $test_name Name class of test.
* @access public
*/
function paintHeader($test_name) {
$this->sendNoCacheHeaders();
echo sprintf(
SIMPLETEST_WEBUNIT_HEAD
,$test_name
,$this->path.'js/'
,$this->path.'js/'
,$this->path.'css/'
,$this->_getCss()
,$test_name
,$this->path.'img/'
);
flush();
}
/**
* Send the headers necessary to ensure the page is
* reloaded on every request. Otherwise you could be
* scratching your head over out of date test data.
* @access public
* @static
*/
function sendNoCacheHeaders() {
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
}
/**
* Paints the CSS. Add additional styles here.
* @return string CSS code as text.
* @access protected
*/
function _getCss() {
return SIMPLETEST_WEBUNIT_CSS;
}
/**
* Paints the end of the test with a summary of
* the passes and failures.
* @param string $test_name Name class of test.
* @access public
*/
function paintFooter($test_name) {
echo 'make_tree();</script>'.$this->outputScript("xHide('wait');");
$colour = ($this->getFailCount() + $this->getExceptionCount() > 0 ? "red" : "green");
$content = "<h1>$test_name</h1>\n";
$content .= "<div style=\"";
$content .= "padding: 8px; margin-top: 1em; background-color: $colour; color: white;";
$content .= "\">";
$content .= $this->getTestCaseProgress() . "/" . $this->getTestCaseCount();
$content .= " test cases complete:\n";
$content .= "<strong>" . $this->getPassCount() . "</strong> passes, ";
$content .= "<strong>" . $this->getFailCount() . "</strong> fails and ";
$content .= "<strong>" . $this->getExceptionCount() . "</strong> exceptions.";
$content .= "</div>\n";
echo $this->outputScript('foo = "'.$this->toJsString($content).'";'."\nset_div_content('run', foo);");
echo "\n</body>\n</html>\n";
}
/**
* Paints formatted text such as dumped variables.
* @param string $message Text to show.
* @access public
*/
function paintFormattedMessage($message) {
echo "add_log(\"".$this->toJsString("<pre>$message</pre>", true)."\");\n";
}
/**
* Paints the start of a group test. Will also paint
* the page header and footer if this is the
* first test. Will stash the size if the first
* start.
* @param string $test_name Name of test that is starting.
* @param integer $size Number of test cases starting.
* @access public
*/
function paintGroupStart($test_name, $size) {
Parent::paintGroupStart($test_name, $size);
echo "add_group('$test_name');\n";
}
/**
* Paints the start of a test case. Will also paint
* the page header and footer if this is the
* first test. Will stash the size if the first
* start.
* @param string $test_name Name of test that is starting.
* @access public
*/
function paintCaseStart($test_name) {
Parent::paintCaseStart($test_name);
echo "add_case('$test_name');\n";
}
/**
* Paints the start of a test method.
* @param string $test_name Name of test that is starting.
* @access public
*/
function paintMethodStart($test_name) {
Parent::paintMethodStart($test_name);
echo "add_method('$test_name');\n";
}
/**
* Paints the end of a test method.
* @param string $test_name Name of test that is ending.
* @access public
*/
function paintMethodEnd($test_name) {
Parent::paintMethodEnd($test_name);
}
/**
* Paints the test failure with a breadcrumbs
* trail of the nesting test suites below the
* top level test.
* @param string $message Failure message displayed in
* the context of the other tests.
* @access public
*/
function paintFail($message) {
parent::paintFail($message);
$msg = "<span class=\"fail\">Fail</span>: ";
$breadcrumb = $this->getTestList();
array_shift($breadcrumb);
$msg .= implode("->", $breadcrumb);
$msg .= "->" . htmlentities($message) . "<br />";
echo "add_fail('$msg');\n";
}
/**
* Paints a PHP error or exception.
* @param string $message Message is ignored.
* @access public
* @abstract
*/
function paintException($message) {
parent::paintException($message);
$msg = "<span class=\"fail\">Exception</span>: ";
$breadcrumb = $this->getTestList();
array_shift($breadcrumb);
$msg .= implode("->", $breadcrumb);
$msg .= "-><strong>" . htmlentities($message) . "</strong><br />";
echo "add_fail('$msg');\n";
}
/**
* Returns the script passed in wrapped in script tags.
*
* @param string $script the script to output
* @return string the script wrapped with script tags
*/
function outputScript($script)
{
return "<script type=\"text/javascript\">\n".$script."\n</script>\n";
}
/**
* Transform a string into a format acceptable to JavaScript
* @param string $str the string to transform
* @return string
*/
function toJsString($str, $preserveCr=false) {
$cr = ($preserveCr) ? '\\n' : '';
return str_replace(
array('"'
,"\n")
,array('\"'
,"$cr\"\n\t+\"")
,$str
);
}
}
?>
|