-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathtest_charset.py
37 lines (30 loc) · 1.18 KB
/
test_charset.py
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
#!/usr/bin/env python
# encoding: utf-8
from tornado import gen
from tornado.testing import gen_test
from . import BaseTestCase
class TestLocale(BaseTestCase):
CHARSETS = [
'big5', 'cp850', 'latin1', 'latin2', 'ascii', 'ujis', 'sjis',
'hebrew', 'tis620', 'euckr', 'gb2312', 'greek', 'cp1250',
'gbk', 'latin5', 'utf8', 'cp866', 'macroman', 'cp852', 'latin7',
'utf8mb4', 'cp1251', 'cp1256', 'cp1257', 'cp932'
]
@gen.coroutine
def _execute_test1(self):
for charset in self.CHARSETS:
with (yield self.pool.Connection()) as connection:
yield connection.set_charset(charset)
with connection.cursor() as cursor:
yield cursor.execute("SHOW VARIABLES LIKE 'character_set_client'")
data = cursor.fetchone()
self.assertEqual(data[1], charset)
@gen.coroutine
def _execute_test_escape(self):
with (yield self.pool.Connection()) as connection:
s = connection.escape(r'"')
self.assertEqual(s, '\'\\"\'')
@gen_test
def test(self):
yield self._execute_test1()
yield self._execute_test_escape()