2008-07-21 13:59:24 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class SSViewerTest extends SapphireTest {
|
|
|
|
/**
|
|
|
|
* Test that a template without a <head> tag still renders.
|
|
|
|
*/
|
|
|
|
function testTemplateWithoutHeadRenders() {
|
|
|
|
$data = new ArrayData(array(
|
|
|
|
'Var' => 'var value'
|
|
|
|
));
|
|
|
|
|
|
|
|
$result = $data->renderWith("SSViewerTestPartialTemplate");
|
2008-11-24 20:28:46 +01:00
|
|
|
$this->assertEquals('Test partial template: var value', trim(preg_replace("/<!--.*-->/U",'',$result)));
|
2008-07-21 13:59:24 +02:00
|
|
|
}
|
2008-11-10 02:01:55 +01:00
|
|
|
|
|
|
|
function testRequirements() {
|
|
|
|
$requirements = $this->getMock("Requirements_Backend", array("javascript", "css"));
|
|
|
|
$jsFile = 'sapphire/tests/forms/a.js';
|
|
|
|
$cssFile = 'sapphire/tests/forms/a.js';
|
|
|
|
|
|
|
|
$requirements->expects($this->once())->method('javascript')->with($jsFile);
|
|
|
|
$requirements->expects($this->once())->method('css')->with($cssFile);
|
|
|
|
|
2008-11-10 02:13:42 +01:00
|
|
|
Requirements::set_backend($requirements);
|
2008-11-10 02:01:55 +01:00
|
|
|
|
|
|
|
$data = new ArrayData(array());
|
|
|
|
|
|
|
|
$viewer = SSViewer::fromString(<<<SS
|
|
|
|
<% require javascript($jsFile) %>
|
|
|
|
<% require css($cssFile) %>
|
|
|
|
SS
|
|
|
|
);
|
|
|
|
$template = $viewer->process($data);
|
|
|
|
$this->assertFalse((bool)trim($template), "Should be no content in this return.");
|
|
|
|
}
|
2008-11-14 04:43:26 +01:00
|
|
|
|
|
|
|
function testComments() {
|
|
|
|
$viewer = SSViewer::fromString(<<<SS
|
|
|
|
This is my template<%-- this is a comment --%>This is some content<%-- this is another comment --%>This is the final content
|
|
|
|
SS
|
|
|
|
);
|
|
|
|
$output = $viewer->process(new ArrayData(array()));
|
|
|
|
|
2008-11-24 20:28:46 +01:00
|
|
|
$this->assertEquals("This is my templateThis is some contentThis is the final content", preg_replace("/\n?<!--.*-->\n?/U",'',$output));
|
2008-11-14 04:43:26 +01:00
|
|
|
}
|
2009-01-04 23:20:36 +01:00
|
|
|
|
|
|
|
function testObjectDotArguments() {
|
|
|
|
// one argument
|
|
|
|
$viewer = SSViewer::fromString(<<<SS
|
|
|
|
\$TestObject.methodWithOneArgument(one)
|
|
|
|
SS
|
|
|
|
);
|
|
|
|
$obj = new SSViewerTest_ViewableData();
|
|
|
|
$this->assertEquals(
|
|
|
|
$viewer->process(new ArrayData(array('TestObject'=>$obj))),
|
|
|
|
"arg1:one",
|
|
|
|
"Object method calls in dot notation work with one argument"
|
|
|
|
);
|
|
|
|
|
|
|
|
// two arguments
|
|
|
|
$viewer = SSViewer::fromString(<<<SS
|
|
|
|
\$TestObject.methodWithTwoArguments(one,two)
|
|
|
|
SS
|
|
|
|
);
|
|
|
|
$obj = new SSViewerTest_ViewableData();
|
|
|
|
$this->assertEquals(
|
|
|
|
$viewer->process(new ArrayData(array('TestObject'=>$obj))),
|
|
|
|
"arg1:one,arg2:two",
|
|
|
|
"Object method calls in dot notation work with two arguments"
|
|
|
|
);
|
|
|
|
}
|
2009-10-31 01:16:54 +01:00
|
|
|
|
|
|
|
function testBaseTagGeneration() {
|
|
|
|
// XHTML wil have a closed base tag
|
|
|
|
$tmpl1 = SSViewer::fromString('<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html>
|
|
|
|
<head><% base_tag %></head>
|
|
|
|
<body><p>test</p><body>
|
|
|
|
</html>');
|
|
|
|
$this->assertRegExp('/<head><base href=".*"><\/base><\/head>/', $tmpl1->process(new ViewableData()));
|
|
|
|
|
|
|
|
// HTML4 and 5 will only have it for IE
|
|
|
|
$tmpl2 = SSViewer::fromString('<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head><% base_tag %></head>
|
|
|
|
<body><p>test</p><body>
|
|
|
|
</html>');
|
|
|
|
$this->assertRegExp('/<head><base href=".*"><!--\[if lte IE 6\]><\/base><!\[endif\]--><\/head>/', $tmpl2->process(new ViewableData()));
|
|
|
|
|
|
|
|
|
|
|
|
$tmpl3 = SSViewer::fromString('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html>
|
|
|
|
<head><% base_tag %></head>
|
|
|
|
<body><p>test</p><body>
|
|
|
|
</html>');
|
|
|
|
$this->assertRegExp('/<head><base href=".*"><!--\[if lte IE 6\]><\/base><!\[endif\]--><\/head>/', $tmpl3->process(new ViewableData()));
|
|
|
|
|
|
|
|
// Check that the content negotiator converts to the equally legal formats
|
|
|
|
$negotiator = new ContentNegotiator();
|
|
|
|
|
|
|
|
$response = new SS_HTTPResponse($tmpl1->process(new ViewableData()));
|
|
|
|
$negotiator->html($response);
|
|
|
|
$this->assertRegExp('/<head><base href=".*"><!--\[if lte IE 6\]><\/base><!\[endif\]--><\/head>/', $response->getBody());
|
|
|
|
|
|
|
|
$response = new SS_HTTPResponse($tmpl1->process(new ViewableData()));
|
|
|
|
$negotiator->xhtml($response);
|
|
|
|
$this->assertRegExp('/<head><base href=".*"><\/base><\/head>/', $response->getBody());
|
|
|
|
}
|
2009-01-04 23:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class SSViewerTest_ViewableData extends ViewableData implements TestOnly {
|
|
|
|
function methodWithOneArgument($arg1) {
|
|
|
|
return "arg1:{$arg1}";
|
|
|
|
}
|
|
|
|
|
|
|
|
function methodWithTwoArguments($arg1, $arg2) {
|
|
|
|
return "arg1:{$arg1},arg2:{$arg2}";
|
|
|
|
}
|
2008-07-21 13:59:24 +02:00
|
|
|
}
|