TalReplaceTest.php
2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Laurent Bedubourg <lbedubourg@motion-twin.com>
* @author Kornel Lesiński <kornel@aardvarkmedia.co.uk>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: TalReplaceTest.php 610 2009-05-24 00:32:13Z kornel $
* @link http://phptal.org/
*/
require_once dirname(__FILE__)."/config.php";
PHPTAL::setIncludePath();
require_once 'PHPTAL/Tales.php';
PHPTAL::restoreIncludePath();
class TalReplaceTest extends PHPTAL_TestCase
{
function testSimple()
{
$tpl = $this->newPHPTAL('input/tal-replace.01.html');
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.01.html');
$this->assertEquals($exp, $res);
}
function testVar()
{
$tpl = $this->newPHPTAL('input/tal-replace.02.html');
$tpl->replace = 'my replace';
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.02.html');
$this->assertEquals($exp, $res);
}
function testStructure()
{
$tpl = $this->newPHPTAL('input/tal-replace.03.html');
$tpl->replace = '<foo><bar/></foo>';
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.03.html');
$this->assertEquals($exp, $res);
}
function testNothing()
{
$tpl = $this->newPHPTAL('input/tal-replace.04.html');
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.04.html');
$this->assertEquals($exp, $res);
}
function testDefault()
{
$tpl = $this->newPHPTAL('input/tal-replace.05.html');
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.05.html');
$this->assertEquals($exp, $res);
}
function testChain()
{
$tpl = $this->newPHPTAL('input/tal-replace.06.html');
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.06.html');
$this->assertEquals($exp, $res);
}
function testBlock()
{
$tpl = $this->newPHPTAL('input/tal-replace.07.html');
$res = trim_string($tpl->execute());
$exp = trim_file('output/tal-replace.07.html');
$this->assertEquals($exp, $res);
}
function testEmpty()
{
$src = <<<EOT
<root>
<span tal:replace="nullv | falsev | emptystrv | zerov | default">default</span>
<span tal:replace="nullv | falsev | emptystrv | default">default</span>
</root>
EOT;
$exp = <<<EOT
<root>
0
<span>default</span>
</root>
EOT;
$tpl = $this->newPHPTAL();
$tpl->setSource($src, __FILE__);
$tpl->nullv = null;
$tpl->falsev = false;
$tpl->emptystrv = '';
$tpl->zerov = 0;
$res = $tpl->execute();
$this->assertEquals(trim_string($exp), trim_string($res));
}
}