public function testGetVisitorOutput_none() { $PWE = new UnitTestPWECore(); $PWE->setURL("/"); $this->object = new SubPagesList($PWE); $this->object->process(); $res = $this->object->getPWE()->getContent(); $this->assertFalse(strstr($res, "<")); }
public function testAll() { foreach (array('DELETE', 'POST', 'PUT', 'PATCH') as $method) { $_SERVER['REQUEST_METHOD'] = $method; $_SERVER['HTTP_CONTENT_TYPE'] = 'application/json'; $core = new UnitTestPWECore(); $core->setURL('/123/'); $obj = new AbstractRESTCallTestImpl($core); $obj->process(); $this->assertNotEmpty($core->getContent()); } }
public function testProcess() { $pwe = new UnitTestPWECore(); copy(__DIR__ . '/preprocess.tpl', $pwe->getTempDirectory() . '/test.tpl'); $obj = new CSSJSPreprocessor($pwe); $obj->preprocess($pwe->getTempDirectory(), $pwe->getTempDirectory()); $test_tpl = file_get_contents($pwe->getTempDirectory() . '/test.tpl'); $pwe_js = file_get_contents($pwe->getTempDirectory() . '/pwe.js'); $pwe_css = file_get_contents($pwe->getTempDirectory() . '/pwe.css'); PWELogger::debug("TPL: {$test_tpl}"); PWELogger::debug("JS: {$pwe_js}"); PWELogger::debug("CSS: {$pwe_css}"); $this->assertContains("do_process_css", $pwe_css); $this->assertNotContains("not_process_css", $pwe_css); $this->assertContains("not_process_css", $test_tpl); $this->assertNotContains("do_process_css", $test_tpl); $this->assertContains("do_process_js", $pwe_js); $this->assertNotContains("not_process_js", $pwe_js); $this->assertContains("not_process_js", $test_tpl); $this->assertNotContains("do_process_js", $test_tpl); }
public function test_directory_sorted() { $pwe = new UnitTestPWECore(); $pwe->setURL('/'); $tmp = $pwe->getTempDirectory(); $pwe->setRootDirectory($tmp); $pwe->setTempDirectory($tmp); PWELogger::info("Create dir " . $tmp); file_put_contents($tmp . '/first', time()); file_put_contents($tmp . '/second', time()); PWELogger::debug("File 1 " . file_get_contents($tmp . '/first')); PWELogger::debug("File 2 " . file_get_contents($tmp . '/second')); $node =& $pwe->getNode(); $node['!a']['files_base'] = '.'; $obj = new FileDownloads($pwe); $res = $obj->getDirectoryBlock('.'); PWELogger::debug("DIR: " . $res); $this->assertGreaterThan(strpos($res, 'second'), strpos($res, 'first')); }
public function testProcess_github_small() { $PWE = new UnitTestPWECore(); $PWE->setStructFile(__DIR__ . '/SimpleWiki.xml'); $PWE->setURL('/github/GitHubMarkdownSmall/'); $node =& $PWE->getNode(); $node['!i']['wiki_dir'] = __DIR__; $obj = new SimpleWiki($PWE); $obj->process(); $content = $PWE->getContent(); PWELogger::debug("Rendered: %s", $content); }
public function testSetup() { $this->PWE->setDataDirectory($this->PWE->getTempDirectory()); $registerData = array(); HTMLPage::setup($this->PWE, $registerData); }