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
|
#!/usr/bin/env python
#
# Tests for set_multi.
#
#===============
# This is based on a skeleton test file, more information at:
#
# https://github.com/linsomniac/python-unittest-skeleton
from __future__ import print_function
import unittest
import sys
sys.path.append('..')
import memcache
import socket
DEBUG = False
class test_Memcached_Set_Multi(unittest.TestCase):
def setUp(self):
RECV_CHUNKS = ['chunk1']
class FakeSocket(object):
def __init__(self, *args):
if DEBUG:
print('FakeSocket{0!r}'.format(args))
self._recv_chunks = list(RECV_CHUNKS)
def connect(self, *args):
if DEBUG:
print('FakeSocket.connect{0!r}'.format(args))
def sendall(self, *args):
if DEBUG:
print('FakeSocket.sendall{0!r}'.format(args))
def recv(self, *args):
if self._recv_chunks:
data = self._recv_chunks.pop(0)
else:
data = ''
if DEBUG:
print('FakeSocket.recv{0!r} -> {1!r}'.format(args, data))
return data
def close(self):
if DEBUG:
print('FakeSocket.close()')
self.old_socket = socket.socket
socket.socket = FakeSocket
def tearDown(self):
socket.socket = self.old_socket
def test_Socket_Disconnect(self):
client = memcache.Client(['memcached'], debug=True)
mapping = {'foo': 'FOO', 'bar': 'BAR'}
bad_keys = client.set_multi(mapping)
self.assertEqual(sorted(bad_keys), ['bar', 'foo'])
if DEBUG:
print('set_multi({0!r}) -> {1!r}'.format(mapping, bad_keys))
if __name__ == '__main__':
unittest.main()
|