diff options
Diffstat (limited to 'tests/encoding.py')
-rw-r--r-- | tests/encoding.py | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/encoding.py b/tests/encoding.py deleted file mode 100644 index b5aa58d..0000000 --- a/tests/encoding.py +++ /dev/null @@ -1,65 +0,0 @@ -from __future__ import with_statement -import unittest - -from redis._compat import unichr, u, unicode, b -from redis.client import list_or_args -from redis.connection import ConnectionPool, PythonParser, HiredisParser -import redis - - -class EncodingTestCase(unittest.TestCase): - def setUp(self): - self.client = redis.Redis( - host='localhost', port=6379, db=9, charset='utf-8') - self.client.flushdb() - - def tearDown(self): - self.client.flushdb() - - def test_simple_encoding(self): - unicode_string = unichr(3456) + u('abcd') + unichr(3421) - self.client.set('unicode-string', unicode_string) - cached_val = self.client.get('unicode-string') - self.assertEquals( - unicode.__name__, type(cached_val).__name__, - 'Cache returned value with type "%s", expected "%s"' % - (type(cached_val).__name__, unicode.__name__)) - self.assertEqual(unicode_string, cached_val) - - def test_list_encoding(self): - unicode_string = unichr(3456) + u('abcd') + unichr(3421) - result = [unicode_string, unicode_string, unicode_string] - for i in range(len(result)): - self.client.rpush('a', unicode_string) - self.assertEquals(self.client.lrange('a', 0, -1), result) - - def test_list_or_args(self): - bfoo = b('foo') - ufoo = u('foo') - # first record is a text instance - self.assertEquals(list_or_args(ufoo, []), [ufoo]) - self.assertEquals(list_or_args(ufoo, [ufoo]), [ufoo, ufoo]) - # first record is a list - self.assertEquals(list_or_args([ufoo], [ufoo]), [ufoo, ufoo]) - # first record is a binary instance - self.assertEquals(list_or_args(bfoo, []), [bfoo]) - self.assertEquals(list_or_args(bfoo, [bfoo]), [bfoo, bfoo]) - - -class PythonParserEncodingTestCase(EncodingTestCase): - def setUp(self): - pool = ConnectionPool( - host='localhost', port=6379, db=9, - encoding='utf-8', decode_responses=True, parser_class=PythonParser) - self.client = redis.Redis(connection_pool=pool) - self.client.flushdb() - - -class HiredisEncodingTestCase(EncodingTestCase): - def setUp(self): - pool = ConnectionPool( - host='localhost', port=6379, db=9, - encoding='utf-8', decode_responses=True, - parser_class=HiredisParser) - self.client = redis.Redis(connection_pool=pool) - self.client.flushdb() |