mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
98 lines
4.3 KiB
PHP
98 lines
4.3 KiB
PHP
<?php
|
|
|
|
use Aspect\Render,
|
|
Aspect\FSProvider as FS;
|
|
|
|
class AspectTest extends \Aspect\TestCase {
|
|
|
|
public function testAddRender() {
|
|
$test = $this;
|
|
$this->aspect->addTemplate(new Render($this->aspect, function($tpl) use ($test) {
|
|
/** @var \PHPUnit_Framework_TestCase $test */
|
|
$test->assertInstanceOf('Aspect\Render', $tpl);
|
|
echo "Inline render";
|
|
}, array(
|
|
"name" => 'render.tpl',
|
|
"scm" => false
|
|
)));
|
|
|
|
$this->assertSame("Inline render", $this->aspect->fetch('render.tpl', array()));
|
|
}
|
|
|
|
public function testCompileFile() {
|
|
$a = array(
|
|
"a" => "a",
|
|
"b" => "b"
|
|
);
|
|
$this->tpl('template1.tpl', 'Template 1 a');
|
|
$this->tpl('template2.tpl', 'Template 2 b');
|
|
$this->assertSame("Template 1 a", $this->aspect->fetch('template1.tpl', $a));
|
|
$this->assertSame("Template 2 b", $this->aspect->fetch('template2.tpl', $a));
|
|
$this->assertInstanceOf('Aspect\Render', $this->aspect->getTemplate('template1.tpl'));
|
|
$this->assertInstanceOf('Aspect\Render', $this->aspect->getTemplate('template2.tpl'));
|
|
$this->assertSame(3, iterator_count(new FilesystemIterator(ASPECT_RESOURCES.'/compile')));
|
|
}
|
|
|
|
public function testStorage() {
|
|
$this->tpl('custom.tpl', 'Custom template');
|
|
$this->assertSame("Custom template", $this->aspect->fetch('custom.tpl', array()));
|
|
//$this->aspect->clearCompiledTemplate('custom.tpl', false);
|
|
|
|
//$this->assertSame("Custom template", $this->aspect->fetch('custom.tpl', array()));
|
|
|
|
$this->tpl('custom.tpl', 'Custom template 2');
|
|
$this->assertSame("Custom template", $this->aspect->fetch('custom.tpl', array()));
|
|
}
|
|
|
|
public function testCheckMTime() {
|
|
$this->aspect->setOptions(Aspect::FORCE_COMPILE);
|
|
$this->tpl('custom.tpl', 'Custom template');
|
|
$this->assertSame("Custom template", $this->aspect->fetch('custom.tpl', array()));
|
|
|
|
sleep(1);
|
|
$this->tpl('custom.tpl', 'Custom template (new)');
|
|
$this->assertSame("Custom template (new)", $this->aspect->fetch('custom.tpl', array()));
|
|
}
|
|
|
|
public function testForceCompile() {
|
|
$this->aspect->setOptions(Aspect::FORCE_COMPILE);
|
|
$this->tpl('custom.tpl', 'Custom template');
|
|
$this->assertSame("Custom template", $this->aspect->fetch('custom.tpl', array()));
|
|
$this->tpl('custom.tpl', 'Custom template (new)');
|
|
$this->assertSame("Custom template (new)", $this->aspect->fetch('custom.tpl', array()));
|
|
}
|
|
|
|
public function testSetModifier() {
|
|
$this->aspect->addModifier("mymod", "myMod");
|
|
$this->tpl('custom.tpl', 'Custom modifier {$a|mymod}');
|
|
$this->assertSame("Custom modifier (myMod)Custom(/myMod)", $this->aspect->fetch('custom.tpl', array("a" => "Custom")));
|
|
}
|
|
|
|
/**
|
|
* @group add_functions
|
|
*/
|
|
public function testSetFunctions() {
|
|
$this->aspect->setOptions(Aspect::FORCE_COMPILE);
|
|
$this->aspect->addFunction("myfunc", "myFunc");
|
|
$this->aspect->addBlockFunction("myblockfunc", "myBlockFunc");
|
|
$this->tpl('custom.tpl', 'Custom function {myfunc name="foo"}');
|
|
$this->assertSame("Custom function MyFunc:foo", $this->aspect->fetch('custom.tpl', array()));
|
|
$this->tpl('custom.tpl', 'Custom function {myblockfunc name="foo"} this block1 {/myblockfunc}');
|
|
$this->assertSame("Custom function Block:foo:this block1:Block", $this->aspect->fetch('custom.tpl', array()));
|
|
}
|
|
|
|
public function testSetCompilers() {
|
|
$this->aspect->setOptions(Aspect::FORCE_COMPILE);
|
|
$this->aspect->addCompiler("mycompiler", 'myCompiler');
|
|
$this->aspect->addBlockCompiler("myblockcompiler", 'myBlockCompilerOpen', 'myBlockCompilerClose', array(
|
|
'tag' => 'myBlockCompilerTag'
|
|
));
|
|
$this->tpl('custom.tpl', 'Custom compiler {mycompiler name="bar"}');
|
|
$this->assertSame("Custom compiler PHP_VERSION: ".PHP_VERSION." (for bar)", $this->aspect->fetch('custom.tpl', array()));
|
|
$this->tpl('custom.tpl', 'Custom compiler {myblockcompiler name="bar"} block1 {tag name="baz"} block2 {/myblockcompiler}');
|
|
$this->assertSame("Custom compiler PHP_VERSION: ".PHP_VERSION." (for bar) block1 Tag baz of compiler block2 End of compiler", $this->aspect->fetch('custom.tpl', array()));
|
|
}
|
|
}
|
|
|
|
?>
|