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
|
<?php
require_once(dirname(__FILE__).'/../../../unit_tester.php');
require_once(dirname(__FILE__).'/../../..//reporter.php');
require_once(dirname(__FILE__).'/../package.php');
class TestOfContentTransformationFromXMLToHTML extends UnitTestCase {
function testOfPHPTags() {
$file = dirname(__FILE__).'/package/one_section_with_php_code.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$content = $source->content();
$this->assertPattern('/<pre>/', $content);
$this->assertNoPattern('/<\!\[CDATA\[/', $content);
$this->assertPattern('/<p>/', $content);
}
function testOfContentWithoutSections() {
$file = dirname(__FILE__).'/package/content_without_section.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$content = $source->content();
$this->assertPattern('/<p>/', $content);
}
function testOfSingleLink() {
$file = dirname(__FILE__).'/package/here_download.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$map = dirname(__FILE__).'/package/map.xml';
$links = $source->links($map);
$this->assertEqual(count($links), 3);
$links_download = '<ul><li><a href="download.html">Download SimpleTest</a></li></ul>';
$this->assertEqual($links['download'], $links_download);
}
function testOfMultipleLinks() {
$file = dirname(__FILE__).'/package/here_support.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$map = dirname(__FILE__).'/package/map.xml';
$links = $source->links($map);
$this->assertEqual(count($links), 3);
$links_support = '<ul><li><a href="support.html">Support mailing list</a></li>'.
'<li><a href="books.html">Books</a></li></ul>';
$this->assertEqual($links['support'], $links_support);
}
function testOfHierarchicalLinks() {
$file = dirname(__FILE__).'/package/here_overview.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$map = dirname(__FILE__).'/package/map.xml';
$links = $source->links($map);
$this->assertEqual(count($links), 3);
$links_start_testing = '<ul><li><a href="start-testing.html">Start testing with SimpleTest</a></li>'.
'<li><a href="overview.html">Documentation overview</a>'.
'<ul><li><a href="unit_test_documentation.html">Unit tester</a></li>'.
'<li><a href="group_test_documentation.html">Group tests</a></li></ul>'.
'</li><li><a href="tutorial.html">Tutorial overview</a></li></ul>';
$this->assertEqual($links['start_testing'], $links_start_testing);
}
function testOfRootLinksWithHierarchy() {
$file = dirname(__FILE__).'/package/here_simpletest.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$map = dirname(__FILE__).'/package/map.xml';
$links = $source->links($map);
$this->assertEqual(count($links), 3);
$links_start_testing = '<ul><li><a href="start-testing.html">Start testing with SimpleTest</a></li>'.
'<li><a href="overview.html">Documentation overview</a></li>'.
'<li><a href="tutorial.html">Tutorial overview</a></li></ul>';
$this->assertEqual($links['start_testing'], $links_start_testing);
}
function testOfLinksWithNonRootParent() {
$file = dirname(__FILE__).'/package/here_unit-tester.xml';
$source = simplexml_load_file($file, "SimpleTestXMLElement");
$map = dirname(__FILE__).'/package/map.xml';
$links = $source->links($map);
$this->assertEqual(count($links), 3);
$links_start_testing = '<ul><li><a href="start-testing.html">Start testing with SimpleTest</a></li>'.
'<li><a href="overview.html">Documentation overview</a>'.
'<ul><li><a href="unit_test_documentation.html">Unit tester</a></li>'.
'<li><a href="group_test_documentation.html">Group tests</a></li></ul>'.
'</li><li><a href="tutorial.html">Tutorial overview</a></li></ul>';
$this->assertEqual($links['start_testing'], $links_start_testing);
}
}
$test = &new TestOfContentTransformationFromXMLToHTML();
$test->run(new HtmlReporter());
?>
|