forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncodingTest.php
More file actions
208 lines (185 loc) · 5.14 KB
/
Copy pathEncodingTest.php
File metadata and controls
208 lines (185 loc) · 5.14 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Tests for Charset Conversions
*
* @package PhpMyAdmin-test
*/
use PMA\libraries\Encoding;
/**
* Tests for Charset Conversions
*
* @package PhpMyAdmin-test
*/
class EncodingTest extends PHPUnit_Framework_TestCase
{
public function setUp()
{
Encoding::initEngine();
}
public function tearDown()
{
Encoding::initEngine();
}
/**
* Test for Encoding::convertString
*
* @return void
* @test
*
* @group medium
*/
public function testNoConversion()
{
$this->assertEquals(
'test',
Encoding::convertString('UTF-8', 'UTF-8', 'test')
);
}
public function testInvalidConversion()
{
// Invalid value to use default case
Encoding::setEngine(-1);
$this->assertEquals(
'test',
Encoding::convertString('UTF-8', 'anything', 'test')
);
}
public function testRecode()
{
if (! @function_exists('recode_string')) {
$this->markTestSkipped('recode extension missing');
}
Encoding::setEngine(Encoding::ENGINE_RECODE);
$this->assertEquals(
'Only That ecole & Can Be My Blame',
Encoding::convertString(
'UTF-8', 'flat', 'Only That école & Can Be My Blame'
)
);
}
public function testIconv()
{
if (! @function_exists('iconv')) {
$this->markTestSkipped('iconv extension missing');
}
$GLOBALS['cfg']['IconvExtraParams'] = '//TRANSLIT';
Encoding::setEngine(Encoding::ENGINE_ICONV);
$this->assertEquals(
"This is the Euro symbol 'EUR'.",
Encoding::convertString(
'UTF-8', 'ISO-8859-1', "This is the Euro symbol '€'."
)
);
}
public function testMbstring()
{
Encoding::setEngine(Encoding::ENGINE_MB);
$this->assertEquals(
"This is the Euro symbol '?'.",
Encoding::convertString(
'UTF-8', 'ISO-8859-1', "This is the Euro symbol '€'."
)
);
}
/**
* Test for kanjiChangeOrder
*
* @param string $kanji_test_list current list
* @param string $expected expected list
*
* @return void
* @test
*/
public function testChangeOrder()
{
$this->assertEquals('ASCII,SJIS,EUC-JP,JIS', Encoding::getKanjiEncodings());
Encoding::kanjiChangeOrder();
$this->assertEquals('ASCII,EUC-JP,SJIS,JIS', Encoding::getKanjiEncodings());
Encoding::kanjiChangeOrder();
$this->assertEquals('ASCII,SJIS,EUC-JP,JIS', Encoding::getKanjiEncodings());
}
/**
* Test for Encoding::kanjiStrConv
*
* @return void
* @test
*/
public function testKanjiStrConv()
{
$this->assertEquals(
'test',
Encoding::kanjiStrConv('test', '', '')
);
$GLOBALS['kanji_encoding_list'] = 'ASCII,SJIS,EUC-JP,JIS';
$this->assertEquals(
'test è',
Encoding::kanjiStrConv('test è', '', '')
);
$this->assertEquals(
mb_convert_encoding('test è', 'ASCII', 'SJIS'),
Encoding::kanjiStrConv('test è', 'ASCII', '')
);
$this->assertEquals(
mb_convert_kana('全角', 'KV', 'SJIS'),
Encoding::kanjiStrConv('全角', '', 'kana')
);
}
/**
* Test for Encoding::kanjiFileConv
*
* @return void
* @test
*/
public function testFileConv()
{
$file_str = "教育漢字常用漢字";
$filename = 'test.kanji';
$file = fopen($filename, 'w');
fputs($file, $file_str);
fclose($file);
$GLOBALS['kanji_encoding_list'] = 'ASCII,EUC-JP,SJIS,JIS';
$result = Encoding::kanjiFileConv($filename, 'JIS', 'kana');
$string = file_get_contents($result);
Encoding::kanjiChangeOrder();
$expected = Encoding::kanjiStrConv($file_str, 'JIS', 'kana');
Encoding::kanjiChangeOrder();
$this->assertEquals($string, $expected);
unlink($result);
}
/**
* Test for Encoding::kanjiEncodingForm
*
* @return void
* @test
*/
public function testEncodingForm()
{
$actual = Encoding::kanjiEncodingForm();
$this->assertContains(
'<input type="radio" name="knjenc"',
$actual
);
$this->assertContains(
'type="radio" name="knjenc"',
$actual
);
$this->assertContains(
'<input type="radio" name="knjenc" value="EUC-JP" id="kj-euc" />',
$actual
);
$this->assertContains(
'<input type="radio" name="knjenc" value="SJIS" id="kj-sjis" />',
$actual
);
$this->assertContains(
'<input type="checkbox" name="xkana" value="kana" id="kj-kana" />',
$actual
);
}
public function testListEncodings()
{
$result = Encoding::listEncodings();
$this->assertContains('utf-8', $result);
}
}