mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-06 23:31:36 +01:00
Adds support for PHP8.0, dropping support for PHP7.0 and below.
Backwards incompatible changes:
- Dropped support for php asp tags in templates (removed from php since php7.0)
- Dropped deprecated API calls that where only accessible through SmartyBC
- Dropped support for {php} and {include_php} tags and embedded PHP in templates. Embedded PHP will now be passed through as is.
- Removed all PHP_VERSION_ID and compare_version checks and conditional code blocks that are now no longer required
- Dropped deprecated SMARTY_RESOURCE_CHAR_SET and SMARTY_RESOURCE_DATE_FORMAT constants
- Dropped deprecated Smarty::muteExpectedErrors and Smarty::unmuteExpectedErrors API methods
- Dropped deprecated $smarty->getVariable() method. Use $smarty->getTemplateVars() instead.
- $smarty->registerResource() no longer accepts an array of callback functions
See the changelog for more details.
Switched CI from Travis to Github CI.
116 lines
4.0 KiB
PHP
116 lines
4.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Smarty PHPunit tests for File resources
|
|
*
|
|
* @package PHPunit
|
|
* @author Rodney Rehm
|
|
* @runTestsInSeparateProcess
|
|
* @preserveGlobalState disabled
|
|
* @backupStaticAttributes enabled
|
|
*/
|
|
class FileResourceIndexedTest extends PHPUnit_Smarty
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
$this->setUpSmarty(dirname(__FILE__));
|
|
$this->smarty->addTemplateDir(dirname(__FILE__) . '/templates_2');
|
|
// note that 10 is a string!
|
|
$this->smarty->addTemplateDir(dirname(__FILE__) . '/templates_3', '10');
|
|
$this->smarty->addTemplateDir(dirname(__FILE__) . '/templates_4', 'foo');
|
|
}
|
|
|
|
public function testInit()
|
|
{
|
|
$this->cleanDirs();
|
|
}
|
|
|
|
public function testGetTemplateFilepath()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('dirname.tpl');
|
|
$this->assertEquals($this->normalizePath("./templates/dirname.tpl"), $tpl->source->filepath);
|
|
}
|
|
|
|
public function testGetTemplateFilepathNumber()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[1]dirname.tpl');
|
|
$this->assertEquals($this->normalizePath('./templates_2/dirname.tpl'), $tpl->source->filepath);
|
|
}
|
|
|
|
public function testGetTemplateFilepathNumeric()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[10]dirname.tpl');
|
|
$this->assertEquals($this->normalizePath('./templates_3/dirname.tpl'), $tpl->source->filepath);
|
|
}
|
|
|
|
public function testGetTemplateFilepathName()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[foo]dirname.tpl');
|
|
$this->assertEquals($this->normalizePath('./templates_4/dirname.tpl'), $tpl->source->filepath);
|
|
}
|
|
|
|
public function testFetch()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('dirname.tpl');
|
|
$this->assertEquals('templates', $this->smarty->fetch($tpl));
|
|
}
|
|
|
|
public function testFetchNumber()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[1]dirname.tpl');
|
|
$this->assertEquals('templates_2', $this->smarty->fetch($tpl));
|
|
}
|
|
|
|
public function testFetchNumeric()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[10]dirname.tpl');
|
|
$this->assertEquals('templates_3', $this->smarty->fetch($tpl));
|
|
}
|
|
public function testFetchNumeric2()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[10, 1]dirname10.tpl');
|
|
$this->assertEquals('templates_3', $this->smarty->fetch($tpl));
|
|
}
|
|
public function testFetchNumeric3()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[10, 1]dirname1.tpl');
|
|
$this->assertEquals('templates_2', $this->smarty->fetch($tpl));
|
|
}
|
|
|
|
public function testFetchName()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[foo]dirname.tpl');
|
|
$this->assertEquals('templates_4', $this->smarty->fetch($tpl));
|
|
}
|
|
public function testFetchName1()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[10,0,1,foo]dirname_foo.tpl');
|
|
$this->assertEquals('dirname_foo', $this->smarty->fetch($tpl));
|
|
}
|
|
public function testFetchName2()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[0,1,foo,10]dirname_x.tpl');
|
|
$this->assertEquals('templates_2', $this->smarty->fetch($tpl));
|
|
}
|
|
public function testFetchName3()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[0,10,foo,1]dirname_x.tpl');
|
|
$this->assertEquals('templates_4', $this->smarty->fetch($tpl));
|
|
}
|
|
|
|
public function testGetCompiledFilepath()
|
|
{
|
|
$tpl = $this->smarty->createTemplate('[foo]dirname.tpl');
|
|
$this->assertEquals($this->buildCompiledPath($tpl, false, false, null, 'dirname.tpl', 'file', $this->smarty->getTemplateDir('foo')), $tpl->compiled->filepath);
|
|
}
|
|
|
|
public function testGetCachedFilepath()
|
|
{
|
|
$this->smarty->caching = true;
|
|
$this->smarty->cache_lifetime = 1000;
|
|
$tpl = $this->smarty->createTemplate('[foo]dirname.tpl');
|
|
$this->assertEquals($this->buildCachedPath($tpl, false, null, null, 'dirname.tpl', 'file', $this->smarty->getTemplateDir('foo'))
|
|
, $tpl->cached->filepath);
|
|
}
|
|
}
|