/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
5557.1.15 by John Arbash Meinel
Merge bzr.dev 5597 to resolve NEWS, aka bzr-2.3.txt
1
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
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
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
17
"""Tests for the StaticTupleInterned type."""
18
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
19
import sys
20
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
21
from breezy import (
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
22
    tests,
23
    )
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
24
from breezy.tests import (
5967.12.1 by Martin Pool
Move all test features into bzrlib.tests.features
25
    features,
26
    )
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
27
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
28
try:
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
29
    from breezy import _simple_set_pyx
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
30
except ImportError:
31
    _simple_set_pyx = None
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
32
33
4679.3.89 by John Arbash Meinel
Switch to using a _Hashable class, rather than using tuples.
34
class _Hashable(object):
35
    """A simple object which has a fixed hash value.
36
37
    We could have used an 'int', but it turns out that Int objects don't
6705.1.1 by Martin
Make _simple_set tests pass on py3 and with random hash
38
    implement tp_richcompare in Python 2.
4679.3.89 by John Arbash Meinel
Switch to using a _Hashable class, rather than using tuples.
39
    """
40
41
    def __init__(self, the_hash):
42
        self.hash = the_hash
43
44
    def __hash__(self):
45
        return self.hash
46
47
    def __eq__(self, other):
48
        if not isinstance(other, _Hashable):
49
            return NotImplemented
50
        return other.hash == self.hash
51
4679.3.90 by John Arbash Meinel
A bit more error checking in _is_equal.
52
53
class _BadSecondHash(_Hashable):
54
55
    def __init__(self, the_hash):
56
        _Hashable.__init__(self, the_hash)
57
        self._first = True
58
59
    def __hash__(self):
60
        if self._first:
61
            self._first = False
62
            return self.hash
63
        else:
64
            raise ValueError('I can only be hashed once.')
65
66
67
class _BadCompare(_Hashable):
68
69
    def __eq__(self, other):
70
        raise RuntimeError('I refuse to play nice')
71
6705.1.1 by Martin
Make _simple_set tests pass on py3 and with random hash
72
    __hash__ = _Hashable.__hash__
73
4679.3.90 by John Arbash Meinel
A bit more error checking in _is_equal.
74
4744.1.1 by John Arbash Meinel
Add a test case for the bug w/ NotImplemented.
75
class _NoImplementCompare(_Hashable):
76
77
    def __eq__(self, other):
78
        return NotImplemented
79
6705.1.1 by Martin
Make _simple_set tests pass on py3 and with random hash
80
    __hash__ = _Hashable.__hash__
81
4744.1.1 by John Arbash Meinel
Add a test case for the bug w/ NotImplemented.
82
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
83
# Even though this is an extension, we don't permute the tests for a python
4679.3.76 by John Arbash Meinel
Rename StaticTupleInterner => SimpleSet.
84
# version. As the plain python version is just a dict or set
5967.12.1 by Martin Pool
Move all test features into bzrlib.tests.features
85
compiled_simpleset_feature = features.ModuleAvailableFeature(
7143.15.2 by Jelmer Vernooij
Run autopep8.
86
    'breezy._simple_set_pyx')
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
87
88
89
class TestSimpleSet(tests.TestCase):
90
4913.2.20 by John Arbash Meinel
Change all of the compiled_foo to compiled_foo_feature
91
    _test_needs_features = [compiled_simpleset_feature]
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
92
    module = _simple_set_pyx
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
93
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
94
    def assertFillState(self, used, fill, mask, obj):
95
        self.assertEqual((used, fill, mask), (obj.used, obj.fill, obj.mask))
96
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
97
    def assertLookup(self, offset, value, obj, key):
98
        self.assertEqual((offset, value), obj._test_lookup(key))
99
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
100
    def assertRefcount(self, count, obj):
101
        """Assert that the refcount for obj is what we expect.
102
103
        Note that this automatically adjusts for the fact that calling
104
        assertRefcount actually creates a new pointer, as does calling
105
        sys.getrefcount. So pass the expected value *before* the call.
106
        """
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
107
        # I'm not sure why the offset is 3, but I've check that in the caller,
108
        # an offset of 1 works, which is expected. Not sure why assertRefcount
109
        # is incrementing/decrementing 2 times
7143.15.2 by Jelmer Vernooij
Run autopep8.
110
        self.assertEqual(count, sys.getrefcount(obj) - 3)
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
111
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
112
    def test_initial(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
113
        obj = self.module.SimpleSet()
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
114
        self.assertEqual(0, len(obj))
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
115
        self.assertFillState(0, 0, 0x3ff, obj)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
116
117
    def test__lookup(self):
4679.3.89 by John Arbash Meinel
Switch to using a _Hashable class, rather than using tuples.
118
        # These are carefully chosen integers to force hash collisions in the
119
        # algorithm, based on the initial set size of 1024
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
120
        obj = self.module.SimpleSet()
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
121
        self.assertLookup(643, '<null>', obj, _Hashable(643))
122
        self.assertLookup(643, '<null>', obj, _Hashable(643 + 1024))
7143.15.2 by Jelmer Vernooij
Run autopep8.
123
        self.assertLookup(643, '<null>', obj, _Hashable(643 + 50 * 1024))
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
124
125
    def test__lookup_collision(self):
126
        obj = self.module.SimpleSet()
127
        k1 = _Hashable(643)
128
        k2 = _Hashable(643 + 1024)
129
        self.assertLookup(643, '<null>', obj, k1)
130
        self.assertLookup(643, '<null>', obj, k2)
131
        obj.add(k1)
132
        self.assertLookup(643, k1, obj, k1)
133
        self.assertLookup(644, '<null>', obj, k2)
134
135
    def test__lookup_after_resize(self):
136
        obj = self.module.SimpleSet()
137
        k1 = _Hashable(643)
138
        k2 = _Hashable(643 + 1024)
139
        obj.add(k1)
140
        obj.add(k2)
141
        self.assertLookup(643, k1, obj, k1)
142
        self.assertLookup(644, k2, obj, k2)
7143.15.2 by Jelmer Vernooij
Run autopep8.
143
        obj._py_resize(2047)  # resized to 2048
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
144
        self.assertEqual(2048, obj.mask + 1)
145
        self.assertLookup(643, k1, obj, k1)
7143.15.2 by Jelmer Vernooij
Run autopep8.
146
        self.assertLookup(643 + 1024, k2, obj, k2)
147
        obj._py_resize(1023)  # resized back to 1024
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
148
        self.assertEqual(1024, obj.mask + 1)
149
        self.assertLookup(643, k1, obj, k1)
150
        self.assertLookup(644, k2, obj, k2)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
151
152
    def test_get_set_del_with_collisions(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
153
        obj = self.module.SimpleSet()
4679.3.89 by John Arbash Meinel
Switch to using a _Hashable class, rather than using tuples.
154
155
        h1 = 643
156
        h2 = 643 + 1024
7143.15.2 by Jelmer Vernooij
Run autopep8.
157
        h3 = 643 + 1024 * 50
158
        h4 = 643 + 1024 * 25
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
159
        h5 = 644
160
        h6 = 644 + 1024
4679.3.89 by John Arbash Meinel
Switch to using a _Hashable class, rather than using tuples.
161
162
        k1 = _Hashable(h1)
163
        k2 = _Hashable(h2)
164
        k3 = _Hashable(h3)
165
        k4 = _Hashable(h4)
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
166
        k5 = _Hashable(h5)
167
        k6 = _Hashable(h6)
168
        self.assertLookup(643, '<null>', obj, k1)
169
        self.assertLookup(643, '<null>', obj, k2)
170
        self.assertLookup(643, '<null>', obj, k3)
171
        self.assertLookup(643, '<null>', obj, k4)
172
        self.assertLookup(644, '<null>', obj, k5)
173
        self.assertLookup(644, '<null>', obj, k6)
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
174
        obj.add(k1)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
175
        self.assertIn(k1, obj)
176
        self.assertNotIn(k2, obj)
177
        self.assertNotIn(k3, obj)
178
        self.assertNotIn(k4, obj)
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
179
        self.assertLookup(643, k1, obj, k1)
180
        self.assertLookup(644, '<null>', obj, k2)
181
        self.assertLookup(644, '<null>', obj, k3)
182
        self.assertLookup(644, '<null>', obj, k4)
183
        self.assertLookup(644, '<null>', obj, k5)
184
        self.assertLookup(644, '<null>', obj, k6)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
185
        self.assertIs(k1, obj[k1])
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
186
        self.assertIs(k2, obj.add(k2))
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
187
        self.assertIs(k2, obj[k2])
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
188
        self.assertLookup(643, k1, obj, k1)
189
        self.assertLookup(644, k2, obj, k2)
190
        self.assertLookup(646, '<null>', obj, k3)
191
        self.assertLookup(646, '<null>', obj, k4)
192
        self.assertLookup(645, '<null>', obj, k5)
193
        self.assertLookup(645, '<null>', obj, k6)
194
        self.assertLookup(643, k1, obj, _Hashable(h1))
195
        self.assertLookup(644, k2, obj, _Hashable(h2))
196
        self.assertLookup(646, '<null>', obj, _Hashable(h3))
197
        self.assertLookup(646, '<null>', obj, _Hashable(h4))
198
        self.assertLookup(645, '<null>', obj, _Hashable(h5))
199
        self.assertLookup(645, '<null>', obj, _Hashable(h6))
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
200
        obj.add(k3)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
201
        self.assertIs(k3, obj[k3])
202
        self.assertIn(k1, obj)
203
        self.assertIn(k2, obj)
204
        self.assertIn(k3, obj)
205
        self.assertNotIn(k4, obj)
206
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
207
        obj.discard(k1)
4679.3.91 by John Arbash Meinel
Change the _lookup function to use Quadratic Probing.
208
        self.assertLookup(643, '<dummy>', obj, k1)
209
        self.assertLookup(644, k2, obj, k2)
210
        self.assertLookup(646, k3, obj, k3)
211
        self.assertLookup(643, '<dummy>', obj, k4)
4679.3.58 by John Arbash Meinel
Adding a StaticTupleInterner class.
212
        self.assertNotIn(k1, obj)
213
        self.assertIn(k2, obj)
214
        self.assertIn(k3, obj)
215
        self.assertNotIn(k4, obj)
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
216
217
    def test_add(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
218
        obj = self.module.SimpleSet()
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
219
        self.assertFillState(0, 0, 0x3ff, obj)
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
220
        # We use this clumsy notation, because otherwise the refcounts are off.
221
        # I'm guessing the python compiler sees it is a static tuple, and adds
222
        # it to the function variables, or somesuch
223
        k1 = tuple(['foo'])
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
224
        self.assertRefcount(1, k1)
225
        self.assertIs(k1, obj.add(k1))
226
        self.assertFillState(1, 1, 0x3ff, obj)
227
        self.assertRefcount(2, k1)
228
        ktest = obj[k1]
229
        self.assertRefcount(3, k1)
230
        self.assertIs(k1, ktest)
231
        del ktest
232
        self.assertRefcount(2, k1)
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
233
        k2 = tuple(['foo'])
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
234
        self.assertRefcount(1, k2)
235
        self.assertIsNot(k1, k2)
236
        # doesn't add anything, so the counters shouldn't be adjusted
237
        self.assertIs(k1, obj.add(k2))
238
        self.assertFillState(1, 1, 0x3ff, obj)
7143.15.2 by Jelmer Vernooij
Run autopep8.
239
        self.assertRefcount(2, k1)  # not changed
240
        self.assertRefcount(1, k2)  # not incremented
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
241
        self.assertIs(k1, obj[k1])
242
        self.assertIs(k1, obj[k2])
243
        self.assertRefcount(2, k1)
244
        self.assertRefcount(1, k2)
245
        # Deleting an entry should remove the fill, but not the used
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
246
        obj.discard(k1)
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
247
        self.assertFillState(0, 1, 0x3ff, obj)
248
        self.assertRefcount(1, k1)
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
249
        k3 = tuple(['bar'])
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
250
        self.assertRefcount(1, k3)
251
        self.assertIs(k3, obj.add(k3))
252
        self.assertFillState(1, 2, 0x3ff, obj)
253
        self.assertRefcount(2, k3)
254
        self.assertIs(k2, obj.add(k2))
255
        self.assertFillState(2, 2, 0x3ff, obj)
256
        self.assertRefcount(1, k1)
257
        self.assertRefcount(2, k2)
258
        self.assertRefcount(2, k3)
259
260
    def test_discard(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
261
        obj = self.module.SimpleSet()
262
        k1 = tuple(['foo'])
263
        k2 = tuple(['foo'])
264
        k3 = tuple(['bar'])
4679.3.60 by John Arbash Meinel
Start working on more of the C api for StaticTupleInterner.
265
        self.assertRefcount(1, k1)
266
        self.assertRefcount(1, k2)
267
        self.assertRefcount(1, k3)
268
        obj.add(k1)
269
        self.assertRefcount(2, k1)
270
        self.assertEqual(0, obj.discard(k3))
271
        self.assertRefcount(1, k3)
272
        obj.add(k3)
273
        self.assertRefcount(2, k3)
274
        self.assertEqual(1, obj.discard(k3))
275
        self.assertRefcount(1, k3)
276
4679.3.63 by John Arbash Meinel
Implement resizing.
277
    def test__resize(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
278
        obj = self.module.SimpleSet()
6705.1.1 by Martin
Make _simple_set tests pass on py3 and with random hash
279
        # Need objects with exact hash as checking offset of <null> later
280
        k1 = _Hashable(501)
281
        k2 = _Hashable(591)
282
        k3 = _Hashable(2051)
4679.3.63 by John Arbash Meinel
Implement resizing.
283
        obj.add(k1)
284
        obj.add(k2)
285
        obj.add(k3)
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
286
        obj.discard(k2)
4679.3.63 by John Arbash Meinel
Implement resizing.
287
        self.assertFillState(2, 3, 0x3ff, obj)
4679.3.81 by John Arbash Meinel
Fix up _simple_set_pyx.pyx to be compatible with pyrex again.
288
        self.assertEqual(1024, obj._py_resize(500))
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
289
        # Doesn't change the size, but does change the content
290
        self.assertFillState(2, 2, 0x3ff, obj)
291
        obj.add(k2)
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
292
        obj.discard(k3)
4679.3.63 by John Arbash Meinel
Implement resizing.
293
        self.assertFillState(2, 3, 0x3ff, obj)
4679.3.81 by John Arbash Meinel
Fix up _simple_set_pyx.pyx to be compatible with pyrex again.
294
        self.assertEqual(4096, obj._py_resize(4095))
4679.3.63 by John Arbash Meinel
Implement resizing.
295
        self.assertFillState(2, 2, 0xfff, obj)
296
        self.assertIn(k1, obj)
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
297
        self.assertIn(k2, obj)
298
        self.assertNotIn(k3, obj)
4679.3.63 by John Arbash Meinel
Implement resizing.
299
        obj.add(k2)
300
        self.assertIn(k2, obj)
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
301
        obj.discard(k2)
4679.3.63 by John Arbash Meinel
Implement resizing.
302
        self.assertEqual((591, '<dummy>'), obj._test_lookup(k2))
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
303
        self.assertFillState(1, 2, 0xfff, obj)
4679.3.81 by John Arbash Meinel
Fix up _simple_set_pyx.pyx to be compatible with pyrex again.
304
        self.assertEqual(2048, obj._py_resize(1024))
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
305
        self.assertFillState(1, 1, 0x7ff, obj)
4679.3.63 by John Arbash Meinel
Implement resizing.
306
        self.assertEqual((591, '<null>'), obj._test_lookup(k2))
307
4679.3.90 by John Arbash Meinel
A bit more error checking in _is_equal.
308
    def test_second_hash_failure(self):
309
        obj = self.module.SimpleSet()
310
        k1 = _BadSecondHash(200)
311
        k2 = _Hashable(200)
312
        # Should only call hash() one time
313
        obj.add(k1)
314
        self.assertFalse(k1._first)
315
        self.assertRaises(ValueError, obj.add, k2)
316
317
    def test_richcompare_failure(self):
318
        obj = self.module.SimpleSet()
319
        k1 = _Hashable(200)
320
        k2 = _BadCompare(200)
321
        obj.add(k1)
322
        # Tries to compare with k1, fails
323
        self.assertRaises(RuntimeError, obj.add, k2)
324
4744.1.1 by John Arbash Meinel
Add a test case for the bug w/ NotImplemented.
325
    def test_richcompare_not_implemented(self):
326
        obj = self.module.SimpleSet()
327
        # Even though their hashes are the same, tp_richcompare returns
328
        # NotImplemented, which means we treat them as not equal
329
        k1 = _NoImplementCompare(200)
330
        k2 = _NoImplementCompare(200)
331
        self.assertLookup(200, '<null>', obj, k1)
332
        self.assertLookup(200, '<null>', obj, k2)
333
        self.assertIs(k1, obj.add(k1))
334
        self.assertLookup(200, k1, obj, k1)
335
        self.assertLookup(201, '<null>', obj, k2)
336
        self.assertIs(k2, obj.add(k2))
337
        self.assertIs(k1, obj[k1])
338
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
339
    def test_add_and_remove_lots_of_items(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
340
        obj = self.module.SimpleSet()
7143.15.5 by Jelmer Vernooij
More PEP8 fixes.
341
        chars = ('ABCDEFGHIJKLMNOPQRSTUVWXYZ'
342
                 'abcdefghijklmnopqrstuvwxyz1234567890')
4679.3.63 by John Arbash Meinel
Implement resizing.
343
        for i in chars:
344
            for j in chars:
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
345
                k = (i, j)
4679.3.63 by John Arbash Meinel
Implement resizing.
346
                obj.add(k)
7143.15.2 by Jelmer Vernooij
Run autopep8.
347
        num = len(chars) * len(chars)
4679.3.63 by John Arbash Meinel
Implement resizing.
348
        self.assertFillState(num, num, 0x1fff, obj)
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
349
        # Now delete all of the entries and it should shrink again
350
        for i in chars:
351
            for j in chars:
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
352
                k = (i, j)
4679.3.64 by John Arbash Meinel
Add functionality for shrinking the table.
353
                obj.discard(k)
354
        # It should be back to 1024 wide mask, though there may still be some
355
        # dummy values in there
356
        self.assertFillState(0, obj.fill, 0x3ff, obj)
357
        # but there should be fewer than 1/5th dummy entries
358
        self.assertTrue(obj.fill < 1024 / 5)
4679.3.65 by John Arbash Meinel
Add __iter__ support.
359
360
    def test__iter__(self):
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
361
        obj = self.module.SimpleSet()
362
        k1 = ('1',)
363
        k2 = ('1', '2')
364
        k3 = ('3', '4')
4679.3.65 by John Arbash Meinel
Add __iter__ support.
365
        obj.add(k1)
366
        obj.add(k2)
367
        obj.add(k3)
368
        all = set()
369
        for key in obj:
370
            all.add(key)
371
        self.assertEqual(sorted([k1, k2, k3]), sorted(all))
372
        iterator = iter(obj)
6705.1.1 by Martin
Make _simple_set tests pass on py3 and with random hash
373
        self.assertIn(next(iterator), all)
4679.3.85 by John Arbash Meinel
Remove everything except for SimpleSet, and clean up its test suite.
374
        obj.add(('foo',))
4679.3.65 by John Arbash Meinel
Add __iter__ support.
375
        # Set changed size
6634.2.1 by Martin
Apply 2to3 next fixer and make compatible
376
        self.assertRaises(RuntimeError, next, iterator)
4679.3.65 by John Arbash Meinel
Add __iter__ support.
377
        # And even removing an item still causes it to fail
4679.3.88 by John Arbash Meinel
Some review comments from Andrew.
378
        obj.discard(k2)
6634.2.1 by Martin
Apply 2to3 next fixer and make compatible
379
        self.assertRaises(RuntimeError, next, iterator)
5361.2.1 by John Arbash Meinel
SimpleSet now has a __sizeof__ member which knows about its internal table.
380
381
    def test__sizeof__(self):
382
        # SimpleSet needs a custom sizeof implementation, because it allocates
383
        # memory that Python cannot directly see (_table).
5361.2.7 by John Arbash Meinel
Simplify the test to better cope with platform and version variation.
384
        # Too much variability in platform sizes for us to give a fixed size
385
        # here. However without a custom implementation, __sizeof__ would give
386
        # us only the size of the object, and not its table. We know the table
387
        # is at least 4bytes*1024entries in size.
5361.2.1 by John Arbash Meinel
SimpleSet now has a __sizeof__ member which knows about its internal table.
388
        obj = self.module.SimpleSet()
5361.2.7 by John Arbash Meinel
Simplify the test to better cope with platform and version variation.
389
        self.assertTrue(obj.__sizeof__() > 4096)