summaryrefslogtreecommitdiff
path: root/tests/test_setmulti.py
blob: cba43f8582c898b217c76d0f71adfe1db011a768 (plain)
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
#!/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

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(bad_keys, 1)  #@@@ Fix this

        if DEBUG:
            print 'set_multi({0!r}) -> {1!r}'.format(mapping, bad_keys)

unittest.main()