mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-21 00:15:20 +02:00
80 lines
2.7 KiB
PHP
80 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Smarty PHPunit tests comments in templates
|
|
*
|
|
* @package PHPunit
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* class for security test
|
|
*
|
|
* @runTestsInSeparateProcess
|
|
* @preserveGlobalState disabled
|
|
* @backupStaticAttributes enabled
|
|
*/
|
|
class CommentsTest extends PHPUnit_Smarty
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
$this->setUpSmarty(__DIR__);
|
|
}
|
|
|
|
public function testInit()
|
|
{
|
|
$this->cleanDirs();
|
|
}
|
|
|
|
/**
|
|
* Test comments
|
|
*
|
|
* @preserveGlobalState disabled
|
|
* @dataProvider dataTestComments
|
|
*/
|
|
public function testComments($code, $result, $testName, $testNumber)
|
|
{
|
|
$name = empty($testName) ? $testNumber : $testName;
|
|
$file = "testComments_{$name}.tpl";
|
|
$this->makeTemplateFile($file, $code);
|
|
$this->smarty->template_dir = './templates_tmp';
|
|
$this->assertEquals($result,
|
|
$this->smarty->fetch($file),
|
|
$file);
|
|
}
|
|
|
|
/*
|
|
* Data provider für testComments
|
|
*/
|
|
public function dataTestComments()
|
|
{
|
|
$i = 1;
|
|
/*
|
|
* Code
|
|
* result
|
|
* test name
|
|
* test number
|
|
*/
|
|
return array(array('{* this is a comment *}', '', 'T1', $i++),
|
|
array('{* another $foo comment *}', '', 'T2', $i++),
|
|
array('{* another comment *}some in between{* another comment *}', 'some in between',
|
|
'T3', $i++),
|
|
array("{* multi line \n comment *}", '', 'T4', $i++),
|
|
array('{* /* foo * / *}', '', 'T5', $i++),
|
|
array("A{* comment *}B\nC", "AB\nC", 'T6', $i++),
|
|
array("D{* comment *}\n{* comment *}E\nF", "DE\nF", 'T7', $i++),
|
|
array("G{* multi \nline *}H", "GH", 'T8', $i++),
|
|
array("I{* multi \nline *}\nJ", "IJ", 'T9', $i++),
|
|
array("=\n{* comment *}\n{* comment *}\n b\n{* comment *}\n{* comment *}\n=", "=\n b\n=", 'T10', $i++),
|
|
array("=\na\n{* comment 1 *}\n{* comment 2 *}\n{* comment 3 *}\nb\n=", "=\na\nb\n=", 'T11', $i++),
|
|
array("=\na\n{* comment 1 *}\n {* comment 2 *}\n{* comment 3 *}\nb\n=", "=\na\n b\n=", 'T12', $i++),
|
|
array("=\na\n{* comment 1 *}\n{* comment 2 *} \n{* comment 3 *}\nb\n=", "=\na\n \nb\n=", 'T13', $i++),
|
|
array("=\na\n{* comment 1 *}\n {* comment 2 *} \n{* comment 3 *}\nb\n=", "=\na\n \nb\n=", 'T14', $i++),
|
|
);
|
|
}
|
|
|
|
public function testTextComment5()
|
|
{
|
|
$this->assertEquals("IJ", $this->smarty->fetch("longcomment.tpl"), 'Comments longcomment.tpl');
|
|
}
|
|
}
|