/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4516.2.1 by John Arbash Meinel
Fix bug #396838, Update LRUCache to maintain invariant even
1
# Copyright (C) 2006, 2008, 2009 Canonical Ltd
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
16
17
"""Tests for the lru_cache module."""
18
19
from bzrlib import (
20
    lru_cache,
21
    tests,
22
    )
23
24
25
class TestLRUCache(tests.TestCase):
26
    """Test that LRU cache properly keeps track of entries."""
27
4178.3.2 by John Arbash Meinel
Add tests for LRUCache.cache_size()
28
    def test_cache_size(self):
29
        cache = lru_cache.LRUCache(max_cache=10)
30
        self.assertEqual(10, cache.cache_size())
31
32
        cache = lru_cache.LRUCache(max_cache=256)
33
        self.assertEqual(256, cache.cache_size())
34
35
        cache.resize(512)
36
        self.assertEqual(512, cache.cache_size())
37
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
38
    def test_missing(self):
39
        cache = lru_cache.LRUCache(max_cache=10)
40
5784.1.1 by Martin Pool
Stop using failIf, failUnless, etc
41
        self.assertFalse('foo' in cache)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
42
        self.assertRaises(KeyError, cache.__getitem__, 'foo')
43
44
        cache['foo'] = 'bar'
45
        self.assertEqual('bar', cache['foo'])
5784.1.1 by Martin Pool
Stop using failIf, failUnless, etc
46
        self.assertTrue('foo' in cache)
47
        self.assertFalse('bar' in cache)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
48
4287.1.10 by John Arbash Meinel
Restore the ability to handle None as a key.
49
    def test_map_None(self):
50
        # Make sure that we can properly map None as a key.
51
        cache = lru_cache.LRUCache(max_cache=10)
5784.1.1 by Martin Pool
Stop using failIf, failUnless, etc
52
        self.assertFalse(None in cache)
4287.1.10 by John Arbash Meinel
Restore the ability to handle None as a key.
53
        cache[None] = 1
54
        self.assertEqual(1, cache[None])
55
        cache[None] = 2
56
        self.assertEqual(2, cache[None])
57
        # Test the various code paths of __getitem__, to make sure that we can
58
        # handle when None is the key for the LRU and the MRU
59
        cache[1] = 3
60
        cache[None] = 1
61
        cache[None]
62
        cache[1]
63
        cache[None]
64
        self.assertEqual([None, 1], [n.key for n in cache._walk_lru()])
65
66
    def test_add__null_key(self):
67
        cache = lru_cache.LRUCache(max_cache=10)
68
        self.assertRaises(ValueError, cache.add, lru_cache._null_key, 1)
69
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
70
    def test_overflow(self):
71
        """Adding extra entries will pop out old ones."""
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
72
        cache = lru_cache.LRUCache(max_cache=1, after_cleanup_count=1)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
73
74
        cache['foo'] = 'bar'
75
        # With a max cache of 1, adding 'baz' should pop out 'foo'
76
        cache['baz'] = 'biz'
77
5784.1.1 by Martin Pool
Stop using failIf, failUnless, etc
78
        self.assertFalse('foo' in cache)
79
        self.assertTrue('baz' in cache)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
80
81
        self.assertEqual('biz', cache['baz'])
82
83
    def test_by_usage(self):
84
        """Accessing entries bumps them up in priority."""
85
        cache = lru_cache.LRUCache(max_cache=2)
86
87
        cache['baz'] = 'biz'
88
        cache['foo'] = 'bar'
89
90
        self.assertEqual('biz', cache['baz'])
91
92
        # This must kick out 'foo' because it was the last accessed
93
        cache['nub'] = 'in'
94
5784.1.1 by Martin Pool
Stop using failIf, failUnless, etc
95
        self.assertFalse('foo' in cache)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
96
97
    def test_cleanup(self):
98
        """Test that we can use a cleanup function."""
99
        cleanup_called = []
100
        def cleanup_func(key, val):
101
            cleanup_called.append((key, val))
102
103
        cache = lru_cache.LRUCache(max_cache=2)
104
105
        cache.add('baz', '1', cleanup=cleanup_func)
106
        cache.add('foo', '2', cleanup=cleanup_func)
107
        cache.add('biz', '3', cleanup=cleanup_func)
108
109
        self.assertEqual([('baz', '1')], cleanup_called)
110
111
        # 'foo' is now most recent, so final cleanup will call it last
112
        cache['foo']
113
        cache.clear()
4178.3.7 by John Arbash Meinel
Review tweaks from Ian.
114
        self.assertEqual([('baz', '1'), ('biz', '3'), ('foo', '2')],
115
                         cleanup_called)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
116
117
    def test_cleanup_on_replace(self):
118
        """Replacing an object should cleanup the old value."""
119
        cleanup_called = []
120
        def cleanup_func(key, val):
121
            cleanup_called.append((key, val))
122
123
        cache = lru_cache.LRUCache(max_cache=2)
124
        cache.add(1, 10, cleanup=cleanup_func)
125
        cache.add(2, 20, cleanup=cleanup_func)
126
        cache.add(2, 25, cleanup=cleanup_func)
127
128
        self.assertEqual([(2, 20)], cleanup_called)
129
        self.assertEqual(25, cache[2])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
130
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
131
        # Even __setitem__ should make sure cleanup() is called
132
        cache[2] = 26
133
        self.assertEqual([(2, 20), (2, 25)], cleanup_called)
134
4516.2.1 by John Arbash Meinel
Fix bug #396838, Update LRUCache to maintain invariant even
135
    def test_cleanup_error_maintains_linked_list(self):
136
        cleanup_called = []
137
        def cleanup_func(key, val):
138
            cleanup_called.append((key, val))
139
            raise ValueError('failure during cleanup')
140
141
        cache = lru_cache.LRUCache(max_cache=10)
142
        for i in xrange(10):
143
            cache.add(i, i, cleanup=cleanup_func)
144
        for i in xrange(10, 20):
145
            self.assertRaises(ValueError,
146
                cache.add, i, i, cleanup=cleanup_func)
147
148
        self.assertEqual([(i, i) for i in xrange(10)], cleanup_called)
149
150
        self.assertEqual(range(19, 9, -1), [n.key for n in cache._walk_lru()])
151
152
    def test_cleanup_during_replace_still_replaces(self):
153
        cleanup_called = []
154
        def cleanup_func(key, val):
155
            cleanup_called.append((key, val))
156
            raise ValueError('failure during cleanup')
157
158
        cache = lru_cache.LRUCache(max_cache=10)
159
        for i in xrange(10):
160
            cache.add(i, i, cleanup=cleanup_func)
161
        self.assertRaises(ValueError,
162
            cache.add, 1, 20, cleanup=cleanup_func)
163
        # We also still update the recent access to this node
164
        self.assertEqual([1, 9, 8, 7, 6, 5, 4, 3, 2, 0],
165
                         [n.key for n in cache._walk_lru()])
166
        self.assertEqual(20, cache[1])
167
168
        self.assertEqual([(1, 1)], cleanup_called)
169
        self.assertEqual([1, 9, 8, 7, 6, 5, 4, 3, 2, 0],
170
                         [n.key for n in cache._walk_lru()])
171
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
172
    def test_len(self):
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
173
        cache = lru_cache.LRUCache(max_cache=10, after_cleanup_count=10)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
174
175
        cache[1] = 10
176
        cache[2] = 20
177
        cache[3] = 30
178
        cache[4] = 40
179
180
        self.assertEqual(4, len(cache))
181
182
        cache[5] = 50
183
        cache[6] = 60
184
        cache[7] = 70
185
        cache[8] = 80
186
187
        self.assertEqual(8, len(cache))
188
189
        cache[1] = 15 # replacement
190
191
        self.assertEqual(8, len(cache))
192
193
        cache[9] = 90
194
        cache[10] = 100
195
        cache[11] = 110
196
197
        # We hit the max
198
        self.assertEqual(10, len(cache))
4287.1.2 by John Arbash Meinel
Properly remove the nodes from the internal linked list in _remove_node.
199
        self.assertEqual([11, 10, 9, 1, 8, 7, 6, 5, 4, 3],
200
                         [n.key for n in cache._walk_lru()])
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
201
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
202
    def test_cleanup_shrinks_to_after_clean_count(self):
203
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=3)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
204
205
        cache.add(1, 10)
206
        cache.add(2, 20)
207
        cache.add(3, 25)
208
        cache.add(4, 30)
209
        cache.add(5, 35)
210
211
        self.assertEqual(5, len(cache))
212
        # This will bump us over the max, which causes us to shrink down to
213
        # after_cleanup_cache size
214
        cache.add(6, 40)
215
        self.assertEqual(3, len(cache))
216
217
    def test_after_cleanup_larger_than_max(self):
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
218
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=10)
219
        self.assertEqual(5, cache._after_cleanup_count)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
220
221
    def test_after_cleanup_none(self):
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
222
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=None)
223
        # By default _after_cleanup_size is 80% of the normal size
224
        self.assertEqual(4, cache._after_cleanup_count)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
225
226
    def test_cleanup(self):
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
227
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=2)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
228
229
        # Add these in order
230
        cache.add(1, 10)
231
        cache.add(2, 20)
232
        cache.add(3, 25)
233
        cache.add(4, 30)
234
        cache.add(5, 35)
235
236
        self.assertEqual(5, len(cache))
237
        # Force a compaction
238
        cache.cleanup()
239
        self.assertEqual(2, len(cache))
240
4178.3.7 by John Arbash Meinel
Review tweaks from Ian.
241
    def test_preserve_last_access_order(self):
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
242
        cache = lru_cache.LRUCache(max_cache=5)
243
244
        # Add these in order
245
        cache.add(1, 10)
246
        cache.add(2, 20)
247
        cache.add(3, 25)
248
        cache.add(4, 30)
249
        cache.add(5, 35)
250
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
251
        self.assertEqual([5, 4, 3, 2, 1], [n.key for n in cache._walk_lru()])
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
252
253
        # Now access some randomly
254
        cache[2]
255
        cache[5]
256
        cache[3]
257
        cache[2]
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
258
        self.assertEqual([2, 3, 5, 4, 1], [n.key for n in cache._walk_lru()])
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
259
2998.2.1 by John Arbash Meinel
Implement LRUCache.get() which acts like dict.get()
260
    def test_get(self):
261
        cache = lru_cache.LRUCache(max_cache=5)
262
263
        cache.add(1, 10)
264
        cache.add(2, 20)
265
        self.assertEqual(20, cache.get(2))
266
        self.assertIs(None, cache.get(3))
267
        obj = object()
268
        self.assertIs(obj, cache.get(3, obj))
4178.3.5 by John Arbash Meinel
Add tests that LRUCache.get() properly tracks accesses.
269
        self.assertEqual([2, 1], [n.key for n in cache._walk_lru()])
270
        self.assertEqual(10, cache.get(1))
271
        self.assertEqual([1, 2], [n.key for n in cache._walk_lru()])
2998.2.1 by John Arbash Meinel
Implement LRUCache.get() which acts like dict.get()
272
3763.8.10 by John Arbash Meinel
Add a .keys() member to LRUCache and LRUSizeCache.
273
    def test_keys(self):
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
274
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=5)
3763.8.10 by John Arbash Meinel
Add a .keys() member to LRUCache and LRUSizeCache.
275
276
        cache[1] = 2
277
        cache[2] = 3
278
        cache[3] = 4
279
        self.assertEqual([1, 2, 3], sorted(cache.keys()))
280
        cache[4] = 5
281
        cache[5] = 6
282
        cache[6] = 7
283
        self.assertEqual([2, 3, 4, 5, 6], sorted(cache.keys()))
284
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
285
    def test_resize_smaller(self):
286
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=4)
287
        cache[1] = 2
288
        cache[2] = 3
289
        cache[3] = 4
290
        cache[4] = 5
291
        cache[5] = 6
292
        self.assertEqual([1, 2, 3, 4, 5], sorted(cache.keys()))
293
        cache[6] = 7
294
        self.assertEqual([3, 4, 5, 6], sorted(cache.keys()))
295
        # Now resize to something smaller, which triggers a cleanup
296
        cache.resize(max_cache=3, after_cleanup_count=2)
297
        self.assertEqual([5, 6], sorted(cache.keys()))
298
        # Adding something will use the new size
299
        cache[7] = 8
300
        self.assertEqual([5, 6, 7], sorted(cache.keys()))
301
        cache[8] = 9
302
        self.assertEqual([7, 8], sorted(cache.keys()))
303
304
    def test_resize_larger(self):
305
        cache = lru_cache.LRUCache(max_cache=5, after_cleanup_count=4)
306
        cache[1] = 2
307
        cache[2] = 3
308
        cache[3] = 4
309
        cache[4] = 5
310
        cache[5] = 6
311
        self.assertEqual([1, 2, 3, 4, 5], sorted(cache.keys()))
312
        cache[6] = 7
313
        self.assertEqual([3, 4, 5, 6], sorted(cache.keys()))
314
        cache.resize(max_cache=8, after_cleanup_count=6)
315
        self.assertEqual([3, 4, 5, 6], sorted(cache.keys()))
316
        cache[7] = 8
317
        cache[8] = 9
318
        cache[9] = 10
319
        cache[10] = 11
320
        self.assertEqual([3, 4, 5, 6, 7, 8, 9, 10], sorted(cache.keys()))
321
        cache[11] = 12 # triggers cleanup back to new after_cleanup_count
322
        self.assertEqual([6, 7, 8, 9, 10, 11], sorted(cache.keys()))
323
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
324
325
class TestLRUSizeCache(tests.TestCase):
326
327
    def test_basic_init(self):
328
        cache = lru_cache.LRUSizeCache()
329
        self.assertEqual(2048, cache._max_cache)
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
330
        self.assertEqual(int(cache._max_size*0.8), cache._after_cleanup_size)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
331
        self.assertEqual(0, cache._value_size)
332
4287.1.10 by John Arbash Meinel
Restore the ability to handle None as a key.
333
    def test_add__null_key(self):
334
        cache = lru_cache.LRUSizeCache()
335
        self.assertRaises(ValueError, cache.add, lru_cache._null_key, 1)
336
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
337
    def test_add_tracks_size(self):
338
        cache = lru_cache.LRUSizeCache()
339
        self.assertEqual(0, cache._value_size)
340
        cache.add('my key', 'my value text')
341
        self.assertEqual(13, cache._value_size)
342
343
    def test_remove_tracks_size(self):
344
        cache = lru_cache.LRUSizeCache()
345
        self.assertEqual(0, cache._value_size)
346
        cache.add('my key', 'my value text')
347
        self.assertEqual(13, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
348
        node = cache._cache['my key']
349
        cache._remove_node(node)
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
350
        self.assertEqual(0, cache._value_size)
351
352
    def test_no_add_over_size(self):
353
        """Adding a large value may not be cached at all."""
354
        cache = lru_cache.LRUSizeCache(max_size=10, after_cleanup_size=5)
355
        self.assertEqual(0, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
356
        self.assertEqual({}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
357
        cache.add('test', 'key')
358
        self.assertEqual(3, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
359
        self.assertEqual({'test': 'key'}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
360
        cache.add('test2', 'key that is too big')
361
        self.assertEqual(3, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
362
        self.assertEqual({'test':'key'}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
363
        # If we would add a key, only to cleanup and remove all cached entries,
364
        # then obviously that value should not be stored
365
        cache.add('test3', 'bigkey')
366
        self.assertEqual(3, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
367
        self.assertEqual({'test':'key'}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
368
369
        cache.add('test4', 'bikey')
370
        self.assertEqual(3, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
371
        self.assertEqual({'test':'key'}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
372
4178.3.7 by John Arbash Meinel
Review tweaks from Ian.
373
    def test_no_add_over_size_cleanup(self):
374
        """If a large value is not cached, we will call cleanup right away."""
375
        cleanup_calls = []
376
        def cleanup(key, value):
377
            cleanup_calls.append((key, value))
378
379
        cache = lru_cache.LRUSizeCache(max_size=10, after_cleanup_size=5)
380
        self.assertEqual(0, cache._value_size)
381
        self.assertEqual({}, cache.items())
382
        cache.add('test', 'key that is too big', cleanup=cleanup)
383
        # key was not added
384
        self.assertEqual(0, cache._value_size)
385
        self.assertEqual({}, cache.items())
386
        # and cleanup was called
387
        self.assertEqual([('test', 'key that is too big')], cleanup_calls)
388
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
389
    def test_adding_clears_cache_based_on_size(self):
390
        """The cache is cleared in LRU order until small enough"""
391
        cache = lru_cache.LRUSizeCache(max_size=20)
392
        cache.add('key1', 'value') # 5 chars
393
        cache.add('key2', 'value2') # 6 chars
394
        cache.add('key3', 'value23') # 7 chars
395
        self.assertEqual(5+6+7, cache._value_size)
396
        cache['key2'] # reference key2 so it gets a newer reference time
397
        cache.add('key4', 'value234') # 8 chars, over limit
398
        # We have to remove 2 keys to get back under limit
399
        self.assertEqual(6+8, cache._value_size)
400
        self.assertEqual({'key2':'value2', 'key4':'value234'},
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
401
                         cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
402
403
    def test_adding_clears_to_after_cleanup_size(self):
404
        cache = lru_cache.LRUSizeCache(max_size=20, after_cleanup_size=10)
405
        cache.add('key1', 'value') # 5 chars
406
        cache.add('key2', 'value2') # 6 chars
407
        cache.add('key3', 'value23') # 7 chars
408
        self.assertEqual(5+6+7, cache._value_size)
409
        cache['key2'] # reference key2 so it gets a newer reference time
410
        cache.add('key4', 'value234') # 8 chars, over limit
411
        # We have to remove 3 keys to get back under limit
412
        self.assertEqual(8, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
413
        self.assertEqual({'key4':'value234'}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
414
415
    def test_custom_sizes(self):
416
        def size_of_list(lst):
417
            return sum(len(x) for x in lst)
418
        cache = lru_cache.LRUSizeCache(max_size=20, after_cleanup_size=10,
419
                                       compute_size=size_of_list)
420
421
        cache.add('key1', ['val', 'ue']) # 5 chars
422
        cache.add('key2', ['val', 'ue2']) # 6 chars
423
        cache.add('key3', ['val', 'ue23']) # 7 chars
424
        self.assertEqual(5+6+7, cache._value_size)
425
        cache['key2'] # reference key2 so it gets a newer reference time
426
        cache.add('key4', ['value', '234']) # 8 chars, over limit
427
        # We have to remove 3 keys to get back under limit
428
        self.assertEqual(8, cache._value_size)
4178.3.3 by John Arbash Meinel
LRUCache is now implemented with a dict to a linked list,
429
        self.assertEqual({'key4':['value', '234']}, cache.items())
2993.1.1 by Robert Collins
* New module ``lru_cache`` providing a cache for use by tasks that need
430
431
    def test_cleanup(self):
432
        cache = lru_cache.LRUSizeCache(max_size=20, after_cleanup_size=10)
433
434
        # Add these in order
435
        cache.add('key1', 'value') # 5 chars
436
        cache.add('key2', 'value2') # 6 chars
437
        cache.add('key3', 'value23') # 7 chars
438
        self.assertEqual(5+6+7, cache._value_size)
439
440
        cache.cleanup()
441
        # Only the most recent fits after cleaning up
442
        self.assertEqual(7, cache._value_size)
3763.8.10 by John Arbash Meinel
Add a .keys() member to LRUCache and LRUSizeCache.
443
444
    def test_keys(self):
445
        cache = lru_cache.LRUSizeCache(max_size=10)
446
447
        cache[1] = 'a'
448
        cache[2] = 'b'
449
        cache[3] = 'cdef'
450
        self.assertEqual([1, 2, 3], sorted(cache.keys()))
3882.3.1 by John Arbash Meinel
Add LRUCache.resize(), and change the init arguments for LRUCache.
451
452
    def test_resize_smaller(self):
453
        cache = lru_cache.LRUSizeCache(max_size=10, after_cleanup_size=9)
454
        cache[1] = 'abc'
455
        cache[2] = 'def'
456
        cache[3] = 'ghi'
457
        cache[4] = 'jkl'
458
        # Triggers a cleanup
459
        self.assertEqual([2, 3, 4], sorted(cache.keys()))
460
        # Resize should also cleanup again
461
        cache.resize(max_size=6, after_cleanup_size=4)
462
        self.assertEqual([4], sorted(cache.keys()))
463
        # Adding should use the new max size
464
        cache[5] = 'mno'
465
        self.assertEqual([4, 5], sorted(cache.keys()))
466
        cache[6] = 'pqr'
467
        self.assertEqual([6], sorted(cache.keys()))
468
469
    def test_resize_larger(self):
470
        cache = lru_cache.LRUSizeCache(max_size=10, after_cleanup_size=9)
471
        cache[1] = 'abc'
472
        cache[2] = 'def'
473
        cache[3] = 'ghi'
474
        cache[4] = 'jkl'
475
        # Triggers a cleanup
476
        self.assertEqual([2, 3, 4], sorted(cache.keys()))
477
        cache.resize(max_size=15, after_cleanup_size=12)
478
        self.assertEqual([2, 3, 4], sorted(cache.keys()))
479
        cache[5] = 'mno'
480
        cache[6] = 'pqr'
481
        self.assertEqual([2, 3, 4, 5, 6], sorted(cache.keys()))
482
        cache[7] = 'stu'
483
        self.assertEqual([4, 5, 6, 7], sorted(cache.keys()))
484