GetTextTest.php
4.98 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?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: GetTextTest.php 596 2009-05-02 18:05:35Z kornel $
* @link http://phptal.org/
*/
require_once dirname(__FILE__)."/config.php";
PHPTAL::setIncludePath();
require_once 'PHPTAL/GetTextTranslator.php';
PHPTAL::restoreIncludePath();
class GetTextTest extends PHPTAL_TestCase
{
private function getTextTranslator()
{
try
{
return new PHPTAL_GetTextTranslator();
}
catch(PHPTAL_Exception $e)
{
$this->markTestSkipped($e->getMessage());
}
}
function testSimple()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('en_GB', 'en_GB.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.01.html');
$tpl->setTranslator($gettext);
$res = trim_string($tpl->execute());
$exp = trim_file('output/gettext.01.html');
$this->assertEquals($exp, $res);
}
function testLang()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('fr_FR', 'fr_FR@euro', 'fr_FR.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.02.html');
$tpl->setTranslator($gettext);
$res = trim_string($tpl->execute());
$exp = trim_file('output/gettext.02.html');
$this->assertEquals($exp, $res);
}
function testInterpol()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('fr_FR', 'fr_FR@euro', 'fr_FR.utf8');
$gettext->setEncoding('UTF-8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.03.html');
$tpl->setTranslator($gettext);
$tpl->login = 'john';
$tpl->lastCxDate = '2004-12-25';
$res = trim_string($tpl->execute());
$exp = trim_file('output/gettext.03.html');
$this->assertEquals($exp, $res);
}
function testDomainChange()
{
$gettext = $this->getTextTranslator();
$gettext->setEncoding('UTF-8');
$gettext->setLanguage('fr_FR', 'fr_FR@euro', 'fr_FR.utf8');
$gettext->addDomain('test');
$gettext->addDomain('test2');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.04.html');
$tpl->setEncoding('UTF-8');
$tpl->setTranslator($gettext);
$tpl->login = 'john';
$tpl->lastCxDate = '2004-12-25';
$res = trim_string($tpl->execute());
$exp = trim_file('output/gettext.04.html');
$this->assertEquals($exp, $res);
}
function testSpaces()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('en_GB', 'en_GB.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.05.html');
$tpl->login = 'john smith';
$tpl->setTranslator($gettext);
$res = trim_string($tpl->execute());
$exp = trim_file('output/gettext.05.html');
$this->assertEquals($exp, $res);
}
function testAccentuateKey()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('en_GB', 'en_GB.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$gettext->setCanonicalize(true);
$tpl = $this->newPHPTAL('input/gettext.06.html');
$tpl->setTranslator($gettext);
$res = $tpl->execute();
$res = trim_string($res);
$exp = trim_file('output/gettext.06.html');
$this->assertEquals($exp, $res);
}
function testAccentuateKeyNonCanonical()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('en_GB', 'en_GB.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.06.html');
$tpl->setTranslator($gettext);
$res = $tpl->execute();
$res = trim_string($res);
$exp = trim_string('<root>
<span>Not accentuated</span>
<span>Accentuated key without canonicalization</span>
<span>Accentuated key without canonicalization</span>
</root>
');
$this->assertEquals($exp, $res);
}
function testQuote()
{
$gettext = $this->getTextTranslator();
$gettext->setLanguage('en_GB', 'en_GB.utf8');
$gettext->addDomain('test');
$gettext->useDomain('test');
$tpl = $this->newPHPTAL('input/gettext.07.html');
$tpl->setTranslator($gettext);
$res = $tpl->execute();
$res = trim_string($res);
$exp = trim_file('output/gettext.07.html');
$this->assertEquals($exp, $res);
}
}