test_bigmem.py 44.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
"""Bigmem tests - tests for the 32-bit boundary in containers.

These tests try to exercise the 32-bit boundary that is sometimes, if
rarely, exceeded in practice, but almost never tested.  They are really only
meaningful on 64-bit builds on machines with a *lot* of memory, but the
tests are always run, usually with very low memory limits to make sure the
tests themselves don't suffer from bitrot.  To run them for real, pass a
high memory limit to regrtest, with the -M option.
"""

11
from test import support
12
from test.support import bigmemtest, _1G, _2G, _4G
13 14 15 16

import unittest
import operator
import sys
17
import functools
18

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
# These tests all use one of the bigmemtest decorators to indicate how much
# memory they use and how much memory they need to be even meaningful.  The
# decorators take two arguments: a 'memuse' indicator declaring
# (approximate) bytes per size-unit the test will use (at peak usage), and a
# 'minsize' indicator declaring a minimum *useful* size.  A test that
# allocates a bytestring to test various operations near the end will have a
# minsize of at least 2Gb (or it wouldn't reach the 32-bit limit, so the
# test wouldn't be very useful) and a memuse of 1 (one byte per size-unit,
# if it allocates only one big string at a time.)
#
# When run with a memory limit set, both decorators skip tests that need
# more memory than available to be meaningful.  The precisionbigmemtest will
# always pass minsize as size, even if there is much more memory available.
# The bigmemtest decorator will scale size upward to fill available memory.
#
34 35 36
# Bigmem testing houserules:
#
#  - Try not to allocate too many large objects. It's okay to rely on
37
#    refcounting semantics, and don't forget that 's = create_largestring()'
38 39 40
#    doesn't release the old 's' (if it exists) until well after its new
#    value has been created. Use 'del s' before the create_largestring call.
#
41 42 43 44
#  - Do *not* compare large objects using assertEqual, assertIn or similar.
#    It's a lengthy operation and the errormessage will be utterly useless
#    due to its size.  To make sure whether a result has the right contents,
#    better to use the strip or count methods, or compare meaningful slices.
45 46
#
#  - Don't forget to test for large indices, offsets and results and such,
47
#    in addition to large sizes. Anything that probes the 32-bit boundary.
48 49 50 51 52
#
#  - When repeating an object (say, a substring, or a small list) to create
#    a large object, make the subobject of a length that is not a power of
#    2. That way, int-wrapping problems are more easily detected.
#
53 54 55 56
#  - Despite the bigmemtest decorator, all tests will actually be called
#    with a much smaller number too, in the normal test run (5Kb currently.)
#    This is so the tests themselves get frequent testing.
#    Consequently, always make all large allocations based on the
57 58 59 60
#    passed-in 'size', and don't rely on the size being very large. Also,
#    memuse-per-size should remain sane (less than a few thousand); if your
#    test uses more, adjust 'size' upward, instead.

61 62 63 64
# BEWARE: it seems that one failing test can yield other subsequent tests to
# fail as well. I do not know whether it is due to memory fragmentation
# issues, or other specifics of the platform malloc() routine.

65 66
ascii_char_size = 1
ucs2_char_size = 2
67
ucs4_char_size = 4
68 69 70 71


class BaseStrTest:

72
    def _test_capitalize(self, size):
73 74 75
        _ = self.from_latin1
        SUBSTR = self.from_latin1(' abc def ghi')
        s = _('-') * size + SUBSTR
76
        caps = s.capitalize()
77
        self.assertEqual(caps[-len(SUBSTR):],
78
                         SUBSTR.capitalize())
79
        self.assertEqual(caps.lstrip(_('-')), SUBSTR)
80

81
    @bigmemtest(size=_2G + 10, memuse=1)
82
    def test_center(self, size):
83
        SUBSTR = self.from_latin1(' abc def ghi')
84
        s = SUBSTR.center(size)
85
        self.assertEqual(len(s), size)
86 87 88
        lpadsize = rpadsize = (len(s) - len(SUBSTR)) // 2
        if len(s) % 2:
            lpadsize += 1
89 90
        self.assertEqual(s[lpadsize:-rpadsize], SUBSTR)
        self.assertEqual(s.strip(), SUBSTR.strip())
91

92
    @bigmemtest(size=_2G, memuse=2)
93
    def test_count(self, size):
94 95 96
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
        s = _('.') * size + SUBSTR
97
        self.assertEqual(s.count(_('.')), size)
98
        s += _('.')
99 100 101 102
        self.assertEqual(s.count(_('.')), size + 1)
        self.assertEqual(s.count(_(' ')), 3)
        self.assertEqual(s.count(_('i')), 1)
        self.assertEqual(s.count(_('j')), 0)
103

104
    @bigmemtest(size=_2G, memuse=2)
105
    def test_endswith(self, size):
106 107 108
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
        s = _('-') * size + SUBSTR
109 110
        self.assertTrue(s.endswith(SUBSTR))
        self.assertTrue(s.endswith(s))
111
        s2 = _('...') + s
112 113 114
        self.assertTrue(s2.endswith(s))
        self.assertFalse(s.endswith(_('a') + SUBSTR))
        self.assertFalse(SUBSTR.endswith(s))
115

116
    @bigmemtest(size=_2G + 10, memuse=2)
117
    def test_expandtabs(self, size):
118 119
        _ = self.from_latin1
        s = _('-') * size
120
        tabsize = 8
121
        self.assertTrue(s.expandtabs() == s)
122 123
        del s
        slen, remainder = divmod(size, tabsize)
124
        s = _('       \t') * slen
125
        s = s.expandtabs(tabsize)
126 127
        self.assertEqual(len(s), size - remainder)
        self.assertEqual(len(s.strip(_(' '))), 0)
128

129
    @bigmemtest(size=_2G, memuse=2)
130
    def test_find(self, size):
131 132
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
133
        sublen = len(SUBSTR)
134
        s = _('').join([SUBSTR, _('-') * size, SUBSTR])
135 136 137 138 139 140
        self.assertEqual(s.find(_(' ')), 0)
        self.assertEqual(s.find(SUBSTR), 0)
        self.assertEqual(s.find(_(' '), sublen), sublen + size)
        self.assertEqual(s.find(SUBSTR, len(SUBSTR)), sublen + size)
        self.assertEqual(s.find(_('i')), SUBSTR.find(_('i')))
        self.assertEqual(s.find(_('i'), sublen),
141
                         sublen + size + SUBSTR.find(_('i')))
142
        self.assertEqual(s.find(_('i'), size),
143
                         sublen + size + SUBSTR.find(_('i')))
144
        self.assertEqual(s.find(_('j')), -1)
145

146
    @bigmemtest(size=_2G, memuse=2)
147
    def test_index(self, size):
148 149
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
150
        sublen = len(SUBSTR)
151
        s = _('').join([SUBSTR, _('-') * size, SUBSTR])
152 153 154 155 156 157
        self.assertEqual(s.index(_(' ')), 0)
        self.assertEqual(s.index(SUBSTR), 0)
        self.assertEqual(s.index(_(' '), sublen), sublen + size)
        self.assertEqual(s.index(SUBSTR, sublen), sublen + size)
        self.assertEqual(s.index(_('i')), SUBSTR.index(_('i')))
        self.assertEqual(s.index(_('i'), sublen),
158
                         sublen + size + SUBSTR.index(_('i')))
159
        self.assertEqual(s.index(_('i'), size),
160 161
                         sublen + size + SUBSTR.index(_('i')))
        self.assertRaises(ValueError, s.index, _('j'))
162

163
    @bigmemtest(size=_2G, memuse=2)
164
    def test_isalnum(self, size):
165 166 167
        _ = self.from_latin1
        SUBSTR = _('123456')
        s = _('a') * size + SUBSTR
168
        self.assertTrue(s.isalnum())
169
        s += _('.')
170
        self.assertFalse(s.isalnum())
171

172
    @bigmemtest(size=_2G, memuse=2)
173
    def test_isalpha(self, size):
174 175 176
        _ = self.from_latin1
        SUBSTR = _('zzzzzzz')
        s = _('a') * size + SUBSTR
177
        self.assertTrue(s.isalpha())
178
        s += _('.')
179
        self.assertFalse(s.isalpha())
180

181
    @bigmemtest(size=_2G, memuse=2)
182
    def test_isdigit(self, size):
183 184 185
        _ = self.from_latin1
        SUBSTR = _('123456')
        s = _('9') * size + SUBSTR
186
        self.assertTrue(s.isdigit())
187
        s += _('z')
188
        self.assertFalse(s.isdigit())
189

190
    @bigmemtest(size=_2G, memuse=2)
191
    def test_islower(self, size):
192 193 194
        _ = self.from_latin1
        chars = _(''.join(
            chr(c) for c in range(255) if not chr(c).isupper()))
195 196
        repeats = size // len(chars) + 2
        s = chars * repeats
197
        self.assertTrue(s.islower())
198
        s += _('A')
199
        self.assertFalse(s.islower())
200

201
    @bigmemtest(size=_2G, memuse=2)
202
    def test_isspace(self, size):
203 204
        _ = self.from_latin1
        whitespace = _(' \f\n\r\t\v')
205 206
        repeats = size // len(whitespace) + 2
        s = whitespace * repeats
207
        self.assertTrue(s.isspace())
208
        s += _('j')
209
        self.assertFalse(s.isspace())
210

211
    @bigmemtest(size=_2G, memuse=2)
212
    def test_istitle(self, size):
213 214 215
        _ = self.from_latin1
        SUBSTR = _('123456')
        s = _('').join([_('A'), _('a') * size, SUBSTR])
216
        self.assertTrue(s.istitle())
217
        s += _('A')
218
        self.assertTrue(s.istitle())
219
        s += _('aA')
220
        self.assertFalse(s.istitle())
221

222
    @bigmemtest(size=_2G, memuse=2)
223
    def test_isupper(self, size):
224 225 226
        _ = self.from_latin1
        chars = _(''.join(
            chr(c) for c in range(255) if not chr(c).islower()))
227 228
        repeats = size // len(chars) + 2
        s = chars * repeats
229
        self.assertTrue(s.isupper())
230
        s += _('a')
231
        self.assertFalse(s.isupper())
232

233
    @bigmemtest(size=_2G, memuse=2)
234
    def test_join(self, size):
235 236 237
        _ = self.from_latin1
        s = _('A') * size
        x = s.join([_('aaaaa'), _('bbbbb')])
238 239
        self.assertEqual(x.count(_('a')), 5)
        self.assertEqual(x.count(_('b')), 5)
240 241
        self.assertTrue(x.startswith(_('aaaaaA')))
        self.assertTrue(x.endswith(_('Abbbbb')))
242

243
    @bigmemtest(size=_2G + 10, memuse=1)
244
    def test_ljust(self, size):
245 246
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
247
        s = SUBSTR.ljust(size)
248
        self.assertTrue(s.startswith(SUBSTR + _('  ')))
249 250
        self.assertEqual(len(s), size)
        self.assertEqual(s.strip(), SUBSTR.strip())
251

252
    @bigmemtest(size=_2G + 10, memuse=2)
253
    def test_lower(self, size):
254 255
        _ = self.from_latin1
        s = _('A') * size
256
        s = s.lower()
257 258
        self.assertEqual(len(s), size)
        self.assertEqual(s.count(_('a')), size)
259

260
    @bigmemtest(size=_2G + 10, memuse=1)
261
    def test_lstrip(self, size):
262 263
        _ = self.from_latin1
        SUBSTR = _('abc def ghi')
264
        s = SUBSTR.rjust(size)
265 266
        self.assertEqual(len(s), size)
        self.assertEqual(s.lstrip(), SUBSTR.lstrip())
267 268
        del s
        s = SUBSTR.ljust(size)
269
        self.assertEqual(len(s), size)
270 271 272
        # Type-specific optimization
        if isinstance(s, (str, bytes)):
            stripped = s.lstrip()
273
            self.assertTrue(stripped is s)
274

275
    @bigmemtest(size=_2G + 10, memuse=2)
276
    def test_replace(self, size):
277 278 279 280
        _ = self.from_latin1
        replacement = _('a')
        s = _(' ') * size
        s = s.replace(_(' '), replacement)
281 282
        self.assertEqual(len(s), size)
        self.assertEqual(s.count(replacement), size)
283
        s = s.replace(replacement, _(' '), size - 4)
284 285 286
        self.assertEqual(len(s), size)
        self.assertEqual(s.count(replacement), 4)
        self.assertEqual(s[-10:], _('      aaaa'))
287

288
    @bigmemtest(size=_2G, memuse=2)
289
    def test_rfind(self, size):
290 291
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
292
        sublen = len(SUBSTR)
293
        s = _('').join([SUBSTR, _('-') * size, SUBSTR])
294 295 296 297 298 299 300 301 302
        self.assertEqual(s.rfind(_(' ')), sublen + size + SUBSTR.rfind(_(' ')))
        self.assertEqual(s.rfind(SUBSTR), sublen + size)
        self.assertEqual(s.rfind(_(' '), 0, size), SUBSTR.rfind(_(' ')))
        self.assertEqual(s.rfind(SUBSTR, 0, sublen + size), 0)
        self.assertEqual(s.rfind(_('i')), sublen + size + SUBSTR.rfind(_('i')))
        self.assertEqual(s.rfind(_('i'), 0, sublen), SUBSTR.rfind(_('i')))
        self.assertEqual(s.rfind(_('i'), 0, sublen + size),
                         SUBSTR.rfind(_('i')))
        self.assertEqual(s.rfind(_('j')), -1)
303

304
    @bigmemtest(size=_2G, memuse=2)
305
    def test_rindex(self, size):
306 307
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
308
        sublen = len(SUBSTR)
309
        s = _('').join([SUBSTR, _('-') * size, SUBSTR])
310 311 312 313 314 315 316 317 318 319 320
        self.assertEqual(s.rindex(_(' ')),
                         sublen + size + SUBSTR.rindex(_(' ')))
        self.assertEqual(s.rindex(SUBSTR), sublen + size)
        self.assertEqual(s.rindex(_(' '), 0, sublen + size - 1),
                         SUBSTR.rindex(_(' ')))
        self.assertEqual(s.rindex(SUBSTR, 0, sublen + size), 0)
        self.assertEqual(s.rindex(_('i')),
                         sublen + size + SUBSTR.rindex(_('i')))
        self.assertEqual(s.rindex(_('i'), 0, sublen), SUBSTR.rindex(_('i')))
        self.assertEqual(s.rindex(_('i'), 0, sublen + size),
                         SUBSTR.rindex(_('i')))
321
        self.assertRaises(ValueError, s.rindex, _('j'))
322

323
    @bigmemtest(size=_2G + 10, memuse=1)
324
    def test_rjust(self, size):
325 326
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
327
        s = SUBSTR.ljust(size)
328
        self.assertTrue(s.startswith(SUBSTR + _('  ')))
329 330
        self.assertEqual(len(s), size)
        self.assertEqual(s.strip(), SUBSTR.strip())
331

332
    @bigmemtest(size=_2G + 10, memuse=1)
333
    def test_rstrip(self, size):
334 335
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
336
        s = SUBSTR.ljust(size)
337 338
        self.assertEqual(len(s), size)
        self.assertEqual(s.rstrip(), SUBSTR.rstrip())
339 340
        del s
        s = SUBSTR.rjust(size)
341
        self.assertEqual(len(s), size)
342 343 344
        # Type-specific optimization
        if isinstance(s, (str, bytes)):
            stripped = s.rstrip()
345
            self.assertTrue(stripped is s)
346 347 348 349

    # The test takes about size bytes to build a string, and then about
    # sqrt(size) substrings of sqrt(size) in size and a list to
    # hold sqrt(size) items. It's close but just over 2x size.
350
    @bigmemtest(size=_2G, memuse=2.1)
351
    def test_split_small(self, size):
352
        _ = self.from_latin1
353 354 355
        # Crudely calculate an estimate so that the result of s.split won't
        # take up an inordinate amount of memory
        chunksize = int(size ** 0.5 + 2)
356
        SUBSTR = _('a') + _(' ') * chunksize
357 358
        s = SUBSTR * chunksize
        l = s.split()
359
        self.assertEqual(len(l), chunksize)
360 361
        expected = _('a')
        for item in l:
362
            self.assertEqual(item, expected)
363
        del l
364
        l = s.split(_('a'))
365
        self.assertEqual(len(l), chunksize + 1)
366 367
        expected = _(' ') * chunksize
        for item in filter(None, l):
368
            self.assertEqual(item, expected)
369 370 371 372 373 374 375

    # Allocates a string of twice size (and briefly two) and a list of
    # size.  Because of internal affairs, the s.split() call produces a
    # list of size times the same one-character string, so we only
    # suffer for the list size. (Otherwise, it'd cost another 48 times
    # size in bytes!) Nevertheless, a list of size takes
    # 8*size bytes.
376
    @bigmemtest(size=_2G + 5, memuse=2 * ascii_char_size + 8)
377
    def test_split_large(self, size):
378 379
        _ = self.from_latin1
        s = _(' a') * size + _(' ')
380
        l = s.split()
381 382
        self.assertEqual(len(l), size)
        self.assertEqual(set(l), set([_('a')]))
383
        del l
384
        l = s.split(_('a'))
385 386
        self.assertEqual(len(l), size + 1)
        self.assertEqual(set(l), set([_(' ')]))
387

388
    @bigmemtest(size=_2G, memuse=2.1)
389
    def test_splitlines(self, size):
390
        _ = self.from_latin1
391 392 393
        # Crudely calculate an estimate so that the result of s.split won't
        # take up an inordinate amount of memory
        chunksize = int(size ** 0.5 + 2) // 2
394
        SUBSTR = _(' ') * chunksize + _('\n') + _(' ') * chunksize + _('\r\n')
395
        s = SUBSTR * (chunksize * 2)
396
        l = s.splitlines()
397
        self.assertEqual(len(l), chunksize * 4)
398 399
        expected = _(' ') * chunksize
        for item in l:
400
            self.assertEqual(item, expected)
401

402
    @bigmemtest(size=_2G, memuse=2)
403
    def test_startswith(self, size):
404 405 406
        _ = self.from_latin1
        SUBSTR = _(' abc def ghi')
        s = _('-') * size + SUBSTR
407 408 409
        self.assertTrue(s.startswith(s))
        self.assertTrue(s.startswith(_('-') * size))
        self.assertFalse(s.startswith(SUBSTR))
410

411
    @bigmemtest(size=_2G, memuse=1)
412
    def test_strip(self, size):
413 414
        _ = self.from_latin1
        SUBSTR = _('   abc def ghi   ')
415
        s = SUBSTR.rjust(size)
416 417
        self.assertEqual(len(s), size)
        self.assertEqual(s.strip(), SUBSTR.strip())
418 419
        del s
        s = SUBSTR.ljust(size)
420 421
        self.assertEqual(len(s), size)
        self.assertEqual(s.strip(), SUBSTR.strip())
422

423
    def _test_swapcase(self, size):
424 425
        _ = self.from_latin1
        SUBSTR = _("aBcDeFG12.'\xa9\x00")
426 427 428 429
        sublen = len(SUBSTR)
        repeats = size // sublen + 2
        s = SUBSTR * repeats
        s = s.swapcase()
430 431 432
        self.assertEqual(len(s), sublen * repeats)
        self.assertEqual(s[:sublen * 3], SUBSTR.swapcase() * 3)
        self.assertEqual(s[-sublen * 3:], SUBSTR.swapcase() * 3)
433

434
    def _test_title(self, size):
435 436
        _ = self.from_latin1
        SUBSTR = _('SpaaHAaaAaham')
437 438
        s = SUBSTR * (size // len(SUBSTR) + 2)
        s = s.title()
439 440
        self.assertTrue(s.startswith((SUBSTR * 3).title()))
        self.assertTrue(s.endswith(SUBSTR.lower() * 3))
441

442
    @bigmemtest(size=_2G, memuse=2)
443
    def test_translate(self, size):
444 445
        _ = self.from_latin1
        SUBSTR = _('aZz.z.Aaz.')
446
        trans = bytes.maketrans(b'.aZ', b'-!$')
447 448 449 450
        sublen = len(SUBSTR)
        repeats = size // sublen + 2
        s = SUBSTR * repeats
        s = s.translate(trans)
451 452 453 454 455 456
        self.assertEqual(len(s), repeats * sublen)
        self.assertEqual(s[:sublen], SUBSTR.translate(trans))
        self.assertEqual(s[-sublen:], SUBSTR.translate(trans))
        self.assertEqual(s.count(_('.')), 0)
        self.assertEqual(s.count(_('!')), repeats * 2)
        self.assertEqual(s.count(_('z')), repeats * 3)
457

458
    @bigmemtest(size=_2G + 5, memuse=2)
459
    def test_upper(self, size):
460 461
        _ = self.from_latin1
        s = _('a') * size
462
        s = s.upper()
463 464
        self.assertEqual(len(s), size)
        self.assertEqual(s.count(_('A')), size)
465

466
    @bigmemtest(size=_2G + 20, memuse=1)
467
    def test_zfill(self, size):
468 469
        _ = self.from_latin1
        SUBSTR = _('-568324723598234')
470
        s = SUBSTR.zfill(size)
471 472
        self.assertTrue(s.endswith(_('0') + SUBSTR[1:]))
        self.assertTrue(s.startswith(_('-0')))
473 474
        self.assertEqual(len(s), size)
        self.assertEqual(s.count(_('0')), size - len(SUBSTR))
475

476 477
    # This test is meaningful even with size < 2G, as long as the
    # doubled string is > 2G (but it tests more if both are > 2G :)
478
    @bigmemtest(size=_1G + 2, memuse=3)
479
    def test_concat(self, size):
480 481
        _ = self.from_latin1
        s = _('.') * size
482
        self.assertEqual(len(s), size)
483
        s = s + s
484 485
        self.assertEqual(len(s), size * 2)
        self.assertEqual(s.count(_('.')), size * 2)
486 487 488

    # This test is meaningful even with size < 2G, as long as the
    # repeated string is > 2G (but it tests more if both are > 2G :)
489
    @bigmemtest(size=_1G + 2, memuse=3)
490
    def test_repeat(self, size):
491 492
        _ = self.from_latin1
        s = _('.') * size
493
        self.assertEqual(len(s), size)
494
        s = s * 2
495 496
        self.assertEqual(len(s), size * 2)
        self.assertEqual(s.count(_('.')), size * 2)
497

498
    @bigmemtest(size=_2G + 20, memuse=2)
499
    def test_slice_and_getitem(self, size):
500 501
        _ = self.from_latin1
        SUBSTR = _('0123456789')
502 503 504 505 506
        sublen = len(SUBSTR)
        s = SUBSTR * (size // sublen)
        stepsize = len(s) // 100
        stepsize = stepsize - (stepsize % sublen)
        for i in range(0, len(s) - stepsize, stepsize):
507 508 509
            self.assertEqual(s[i], SUBSTR[0])
            self.assertEqual(s[i:i + sublen], SUBSTR)
            self.assertEqual(s[i:i + sublen:2], SUBSTR[::2])
510
            if i > 0:
511 512
                self.assertEqual(s[i + sublen - 1:i - 1:-3],
                                 SUBSTR[sublen::-3])
513 514
        # Make sure we do some slicing and indexing near the end of the
        # string, too.
515 516 517 518 519 520 521 522 523 524 525 526
        self.assertEqual(s[len(s) - 1], SUBSTR[-1])
        self.assertEqual(s[-1], SUBSTR[-1])
        self.assertEqual(s[len(s) - 10], SUBSTR[0])
        self.assertEqual(s[-sublen], SUBSTR[0])
        self.assertEqual(s[len(s):], _(''))
        self.assertEqual(s[len(s) - 1:], SUBSTR[-1:])
        self.assertEqual(s[-1:], SUBSTR[-1:])
        self.assertEqual(s[len(s) - sublen:], SUBSTR)
        self.assertEqual(s[-sublen:], SUBSTR)
        self.assertEqual(len(s[:]), len(s))
        self.assertEqual(len(s[:len(s) - 5]), len(s) - 5)
        self.assertEqual(len(s[5:-5]), len(s) - 10)
527 528 529 530 531

        self.assertRaises(IndexError, operator.getitem, s, len(s))
        self.assertRaises(IndexError, operator.getitem, s, len(s) + 1)
        self.assertRaises(IndexError, operator.getitem, s, len(s) + 1<<31)

532
    @bigmemtest(size=_2G, memuse=2)
533
    def test_contains(self, size):
534 535 536 537
        _ = self.from_latin1
        SUBSTR = _('0123456789')
        edge = _('-') * (size // 2)
        s = _('').join([edge, SUBSTR, edge])
538
        del edge
539 540 541 542
        self.assertTrue(SUBSTR in s)
        self.assertFalse(SUBSTR * 2 in s)
        self.assertTrue(_('-') in s)
        self.assertFalse(_('a') in s)
543
        s += _('a')
544
        self.assertTrue(_('a') in s)
545

546
    @bigmemtest(size=_2G + 10, memuse=2)
547
    def test_compare(self, size):
548 549 550
        _ = self.from_latin1
        s1 = _('-') * size
        s2 = _('-') * size
551
        self.assertTrue(s1 == s2)
552
        del s2
553
        s2 = s1 + _('a')
554
        self.assertFalse(s1 == s2)
555
        del s2
556
        s2 = _('.') * size
557
        self.assertFalse(s1 == s2)
558

559
    @bigmemtest(size=_2G + 10, memuse=1)
560 561 562 563 564 565 566
    def test_hash(self, size):
        # Not sure if we can do any meaningful tests here...  Even if we
        # start relying on the exact algorithm used, the result will be
        # different depending on the size of the C 'long int'.  Even this
        # test is dodgy (there's no *guarantee* that the two things should
        # have a different hash, even if they, in the current
        # implementation, almost always do.)
567 568
        _ = self.from_latin1
        s = _('\x00') * size
569 570
        h1 = hash(s)
        del s
571
        s = _('\x00') * (size + 1)
572
        self.assertNotEqual(h1, hash(s))
573

574 575 576 577 578 579 580 581 582

class StrTest(unittest.TestCase, BaseStrTest):

    def from_latin1(self, s):
        return s

    def basic_encode_test(self, size, enc, c='.', expectedsize=None):
        if expectedsize is None:
            expectedsize = size
583 584 585 586 587
        try:
            s = c * size
            self.assertEqual(len(s.encode(enc)), expectedsize)
        finally:
            s = None
588 589 590 591 592 593 594 595 596 597 598 599 600

    def setUp(self):
        # HACK: adjust memory use of tests inherited from BaseStrTest
        # according to character size.
        self._adjusted = {}
        for name in dir(BaseStrTest):
            if not name.startswith('test_'):
                continue
            meth = getattr(type(self), name)
            try:
                memuse = meth.memuse
            except AttributeError:
                continue
601
            meth.memuse = ascii_char_size * memuse
602 603 604 605 606 607
            self._adjusted[name] = memuse

    def tearDown(self):
        for name, memuse in self._adjusted.items():
            getattr(type(self), name).memuse = memuse

608 609 610 611 612 613 614 615 616 617 618 619
    @bigmemtest(size=_2G, memuse=ucs4_char_size * 3)
    def test_capitalize(self, size):
        self._test_capitalize(size)

    @bigmemtest(size=_2G, memuse=ucs4_char_size * 3)
    def test_title(self, size):
        self._test_title(size)

    @bigmemtest(size=_2G, memuse=ucs4_char_size * 3)
    def test_swapcase(self, size):
        self._test_swapcase(size)

620 621 622 623
    # Many codecs convert to the legacy representation first, explaining
    # why we add 'ucs4_char_size' to the 'memuse' below.

    @bigmemtest(size=_2G + 2, memuse=ascii_char_size + 1)
624 625 626
    def test_encode(self, size):
        return self.basic_encode_test(size, 'utf-8')

627
    @bigmemtest(size=_4G // 6 + 2, memuse=ascii_char_size + ucs4_char_size + 1)
628 629 630 631 632 633
    def test_encode_raw_unicode_escape(self, size):
        try:
            return self.basic_encode_test(size, 'raw_unicode_escape')
        except MemoryError:
            pass # acceptable on 32-bit

634
    @bigmemtest(size=_4G // 5 + 70, memuse=ascii_char_size + ucs4_char_size + 1)
635 636 637 638 639 640
    def test_encode_utf7(self, size):
        try:
            return self.basic_encode_test(size, 'utf7')
        except MemoryError:
            pass # acceptable on 32-bit

641
    @bigmemtest(size=_4G // 4 + 5, memuse=ascii_char_size + ucs4_char_size + 4)
642 643
    def test_encode_utf32(self, size):
        try:
644
            return self.basic_encode_test(size, 'utf32', expectedsize=4 * size + 4)
645 646 647
        except MemoryError:
            pass # acceptable on 32-bit

648
    @bigmemtest(size=_2G - 1, memuse=ascii_char_size + 1)
649 650 651
    def test_encode_ascii(self, size):
        return self.basic_encode_test(size, 'ascii', c='A')

652 653 654
    # str % (...) uses a Py_UCS4 intermediate representation

    @bigmemtest(size=_2G + 10, memuse=ascii_char_size * 2 + ucs4_char_size)
655 656 657
    def test_format(self, size):
        s = '-' * size
        sf = '%s' % (s,)
658
        self.assertTrue(s == sf)
659 660
        del sf
        sf = '..%s..' % (s,)
661
        self.assertEqual(len(sf), len(s) + 4)
662 663
        self.assertTrue(sf.startswith('..-'))
        self.assertTrue(sf.endswith('-..'))
664 665 666 667 668 669 670
        del s, sf

        size //= 2
        edge = '-' * size
        s = ''.join([edge, '%s', edge])
        del edge
        s = s % '...'
671 672 673
        self.assertEqual(len(s), size * 2 + 3)
        self.assertEqual(s.count('.'), 3)
        self.assertEqual(s.count('-'), size * 2)
674

675
    @bigmemtest(size=_2G + 10, memuse=ascii_char_size * 2)
676 677 678
    def test_repr_small(self, size):
        s = '-' * size
        s = repr(s)
679 680 681 682
        self.assertEqual(len(s), size + 2)
        self.assertEqual(s[0], "'")
        self.assertEqual(s[-1], "'")
        self.assertEqual(s.count('-'), size)
683 684 685 686 687 688 689
        del s
        # repr() will create a string four times as large as this 'binary
        # string', but we don't want to allocate much more than twice
        # size in total.  (We do extra testing in test_repr_large())
        size = size // 5 * 2
        s = '\x00' * size
        s = repr(s)
690 691 692 693 694
        self.assertEqual(len(s), size * 4 + 2)
        self.assertEqual(s[0], "'")
        self.assertEqual(s[-1], "'")
        self.assertEqual(s.count('\\'), size)
        self.assertEqual(s.count('0'), size * 2)
695

696
    @bigmemtest(size=_2G + 10, memuse=ascii_char_size * 5)
697 698 699
    def test_repr_large(self, size):
        s = '\x00' * size
        s = repr(s)
700 701 702 703 704
        self.assertEqual(len(s), size * 4 + 2)
        self.assertEqual(s[0], "'")
        self.assertEqual(s[-1], "'")
        self.assertEqual(s.count('\\'), size)
        self.assertEqual(s.count('0'), size * 2)
705

706 707 708 709 710 711 712
    # ascii() calls encode('ascii', 'backslashreplace'), which itself
    # creates a temporary Py_UNICODE representation in addition to the
    # original (Py_UCS2) one
    # There's also some overallocation when resizing the ascii() result
    # that isn't taken into account here.
    @bigmemtest(size=_2G // 5 + 1, memuse=ucs2_char_size +
                                          ucs4_char_size + ascii_char_size * 6)
713
    def test_unicode_repr(self, size):
714 715
        # Use an assigned, but not printable code point.
        # It is in the range of the low surrogates \uDC00-\uDFFF.
716 717 718 719 720 721 722 723 724 725
        char = "\uDCBA"
        s = char * size
        try:
            for f in (repr, ascii):
                r = f(s)
                self.assertEqual(len(r), 2 + (len(f(char)) - 2) * size)
                self.assertTrue(r.endswith(r"\udcba'"), r[-10:])
                r = None
        finally:
            r = s = None
726

727
    @bigmemtest(size=_2G // 5 + 1, memuse=ucs4_char_size * 2 + ascii_char_size * 10)
728
    def test_unicode_repr_wide(self, size):
729 730 731 732 733 734 735 736 737 738 739
        char = "\U0001DCBA"
        s = char * size
        try:
            for f in (repr, ascii):
                r = f(s)
                self.assertEqual(len(r), 2 + (len(f(char)) - 2) * size)
                self.assertTrue(r.endswith(r"\U0001dcba'"), r[-12:])
                r = None
        finally:
            r = s = None

740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
    # The original test_translate is overriden here, so as to get the
    # correct size estimate: str.translate() uses an intermediate Py_UCS4
    # representation.

    @bigmemtest(size=_2G, memuse=ascii_char_size * 2 + ucs4_char_size)
    def test_translate(self, size):
        _ = self.from_latin1
        SUBSTR = _('aZz.z.Aaz.')
        trans = {
            ord(_('.')): _('-'),
            ord(_('a')): _('!'),
            ord(_('Z')): _('$'),
        }
        sublen = len(SUBSTR)
        repeats = size // sublen + 2
        s = SUBSTR * repeats
        s = s.translate(trans)
        self.assertEqual(len(s), repeats * sublen)
        self.assertEqual(s[:sublen], SUBSTR.translate(trans))
        self.assertEqual(s[-sublen:], SUBSTR.translate(trans))
        self.assertEqual(s.count(_('.')), 0)
        self.assertEqual(s.count(_('!')), repeats * 2)
        self.assertEqual(s.count(_('z')), repeats * 3)

764 765 766 767

class BytesTest(unittest.TestCase, BaseStrTest):

    def from_latin1(self, s):
768
        return s.encode("latin-1")
769

770
    @bigmemtest(size=_2G + 2, memuse=1 + ascii_char_size)
771 772
    def test_decode(self, size):
        s = self.from_latin1('.') * size
773
        self.assertEqual(len(s.decode('utf-8')), size)
774

775 776 777 778 779 780 781 782 783 784 785 786
    @bigmemtest(size=_2G, memuse=2)
    def test_capitalize(self, size):
        self._test_capitalize(size)

    @bigmemtest(size=_2G, memuse=2)
    def test_title(self, size):
        self._test_title(size)

    @bigmemtest(size=_2G, memuse=2)
    def test_swapcase(self, size):
        self._test_swapcase(size)

787 788 789 790

class BytearrayTest(unittest.TestCase, BaseStrTest):

    def from_latin1(self, s):
791
        return bytearray(s.encode("latin-1"))
792

793
    @bigmemtest(size=_2G + 2, memuse=1 + ascii_char_size)
794 795
    def test_decode(self, size):
        s = self.from_latin1('.') * size
796
        self.assertEqual(len(s.decode('utf-8')), size)
797

798 799 800 801 802 803 804 805 806 807 808 809
    @bigmemtest(size=_2G, memuse=2)
    def test_capitalize(self, size):
        self._test_capitalize(size)

    @bigmemtest(size=_2G, memuse=2)
    def test_title(self, size):
        self._test_title(size)

    @bigmemtest(size=_2G, memuse=2)
    def test_swapcase(self, size):
        self._test_swapcase(size)

810 811 812
    test_hash = None
    test_split_large = None

813 814 815 816 817 818 819 820 821 822 823
class TupleTest(unittest.TestCase):

    # Tuples have a small, fixed-sized head and an array of pointers to
    # data.  Since we're testing 64-bit addressing, we can assume that the
    # pointers are 8 bytes, and that thus that the tuples take up 8 bytes
    # per size.

    # As a side-effect of testing long tuples, these tests happen to test
    # having more than 2<<31 references to any given object. Hence the
    # use of different types of objects as contents in different tests.

824
    @bigmemtest(size=_2G + 2, memuse=16)
825
    def test_compare(self, size):
826 827
        t1 = ('',) * size
        t2 = ('',) * size
828
        self.assertTrue(t1 == t2)
829
        del t2
830
        t2 = ('',) * (size + 1)
831
        self.assertFalse(t1 == t2)
832 833
        del t2
        t2 = (1,) * size
834
        self.assertFalse(t1 == t2)
835 836 837 838 839 840 841 842

    # Test concatenating into a single tuple of more than 2G in length,
    # and concatenating a tuple of more than 2G in length separately, so
    # the smaller test still gets run even if there isn't memory for the
    # larger test (but we still let the tester know the larger test is
    # skipped, in verbose mode.)
    def basic_concat_test(self, size):
        t = ((),) * size
843
        self.assertEqual(len(t), size)
844
        t = t + t
845
        self.assertEqual(len(t), size * 2)
846

847
    @bigmemtest(size=_2G // 2 + 2, memuse=24)
848 849 850
    def test_concat_small(self, size):
        return self.basic_concat_test(size)

851
    @bigmemtest(size=_2G + 2, memuse=24)
852 853 854
    def test_concat_large(self, size):
        return self.basic_concat_test(size)

855
    @bigmemtest(size=_2G // 5 + 10, memuse=8 * 5)
856 857
    def test_contains(self, size):
        t = (1, 2, 3, 4, 5) * size
858
        self.assertEqual(len(t), size * 5)
859 860 861
        self.assertTrue(5 in t)
        self.assertFalse((1, 2, 3, 4, 5) in t)
        self.assertFalse(0 in t)
862

863
    @bigmemtest(size=_2G + 10, memuse=8)
864 865 866 867 868
    def test_hash(self, size):
        t1 = (0,) * size
        h1 = hash(t1)
        del t1
        t2 = (0,) * (size + 1)
869
        self.assertFalse(h1 == hash(t2))
870

871
    @bigmemtest(size=_2G + 10, memuse=8)
872 873
    def test_index_and_slice(self, size):
        t = (None,) * size
874 875 876 877
        self.assertEqual(len(t), size)
        self.assertEqual(t[-1], None)
        self.assertEqual(t[5], None)
        self.assertEqual(t[size - 1], None)
878
        self.assertRaises(IndexError, operator.getitem, t, size)
879 880 881 882 883 884 885 886 887
        self.assertEqual(t[:5], (None,) * 5)
        self.assertEqual(t[-5:], (None,) * 5)
        self.assertEqual(t[20:25], (None,) * 5)
        self.assertEqual(t[-25:-20], (None,) * 5)
        self.assertEqual(t[size - 5:], (None,) * 5)
        self.assertEqual(t[size - 5:size], (None,) * 5)
        self.assertEqual(t[size - 6:size - 2], (None,) * 4)
        self.assertEqual(t[size:size], ())
        self.assertEqual(t[size:size+5], ())
888 889 890 891

    # Like test_concat, split in two.
    def basic_test_repeat(self, size):
        t = ('',) * size
892
        self.assertEqual(len(t), size)
893
        t = t * 2
894
        self.assertEqual(len(t), size * 2)
895

896
    @bigmemtest(size=_2G // 2 + 2, memuse=24)
897 898 899
    def test_repeat_small(self, size):
        return self.basic_test_repeat(size)

900
    @bigmemtest(size=_2G + 2, memuse=24)
901 902 903
    def test_repeat_large(self, size):
        return self.basic_test_repeat(size)

904
    @bigmemtest(size=_1G - 1, memuse=12)
905 906 907
    def test_repeat_large_2(self, size):
        return self.basic_test_repeat(size)

908
    @bigmemtest(size=_1G - 1, memuse=9)
909
    def test_from_2G_generator(self, size):
910
        self.skipTest("test needs much more memory than advertised, see issue5438")
911 912 913 914 915 916 917
        try:
            t = tuple(range(size))
        except MemoryError:
            pass # acceptable on 32-bit
        else:
            count = 0
            for item in t:
918
                self.assertEqual(item, count)
919
                count += 1
920
            self.assertEqual(count, size)
921

922
    @bigmemtest(size=_1G - 25, memuse=9)
923
    def test_from_almost_2G_generator(self, size):
924
        self.skipTest("test needs much more memory than advertised, see issue5438")
925 926 927 928
        try:
            t = tuple(range(size))
            count = 0
            for item in t:
929
                self.assertEqual(item, count)
930
                count += 1
931
            self.assertEqual(count, size)
932 933 934
        except MemoryError:
            pass # acceptable, expected on 32-bit

935 936 937 938 939
    # Like test_concat, split in two.
    def basic_test_repr(self, size):
        t = (0,) * size
        s = repr(t)
        # The repr of a tuple of 0's is exactly three times the tuple length.
940 941 942 943
        self.assertEqual(len(s), size * 3)
        self.assertEqual(s[:5], '(0, 0')
        self.assertEqual(s[-5:], '0, 0)')
        self.assertEqual(s.count('0'), size)
944

945
    @bigmemtest(size=_2G // 3 + 2, memuse=8 + 3 * ascii_char_size)
946 947 948
    def test_repr_small(self, size):
        return self.basic_test_repr(size)

949
    @bigmemtest(size=_2G + 2, memuse=8 + 3 * ascii_char_size)
950 951 952 953 954 955 956 957 958 959
    def test_repr_large(self, size):
        return self.basic_test_repr(size)

class ListTest(unittest.TestCase):

    # Like tuples, lists have a small, fixed-sized head and an array of
    # pointers to data, so 8 bytes per size. Also like tuples, we make the
    # lists hold references to various objects to test their refcount
    # limits.

960
    @bigmemtest(size=_2G + 2, memuse=16)
961
    def test_compare(self, size):
962 963
        l1 = [''] * size
        l2 = [''] * size
964
        self.assertTrue(l1 == l2)
965
        del l2
966
        l2 = [''] * (size + 1)
967
        self.assertFalse(l1 == l2)
968 969
        del l2
        l2 = [2] * size
970
        self.assertFalse(l1 == l2)
971 972 973 974 975 976 977 978

    # Test concatenating into a single list of more than 2G in length,
    # and concatenating a list of more than 2G in length separately, so
    # the smaller test still gets run even if there isn't memory for the
    # larger test (but we still let the tester know the larger test is
    # skipped, in verbose mode.)
    def basic_test_concat(self, size):
        l = [[]] * size
979
        self.assertEqual(len(l), size)
980
        l = l + l
981
        self.assertEqual(len(l), size * 2)
982

983
    @bigmemtest(size=_2G // 2 + 2, memuse=24)
984 985 986
    def test_concat_small(self, size):
        return self.basic_test_concat(size)

987
    @bigmemtest(size=_2G + 2, memuse=24)
988 989 990 991 992 993
    def test_concat_large(self, size):
        return self.basic_test_concat(size)

    def basic_test_inplace_concat(self, size):
        l = [sys.stdout] * size
        l += l
994
        self.assertEqual(len(l), size * 2)
995 996
        self.assertTrue(l[0] is l[-1])
        self.assertTrue(l[size - 1] is l[size + 1])
997

998
    @bigmemtest(size=_2G // 2 + 2, memuse=24)
999 1000 1001
    def test_inplace_concat_small(self, size):
        return self.basic_test_inplace_concat(size)

1002
    @bigmemtest(size=_2G + 2, memuse=24)
1003 1004 1005
    def test_inplace_concat_large(self, size):
        return self.basic_test_inplace_concat(size)

1006
    @bigmemtest(size=_2G // 5 + 10, memuse=8 * 5)
1007 1008
    def test_contains(self, size):
        l = [1, 2, 3, 4, 5] * size
1009
        self.assertEqual(len(l), size * 5)
1010 1011 1012
        self.assertTrue(5 in l)
        self.assertFalse([1, 2, 3, 4, 5] in l)
        self.assertFalse(0 in l)
1013

1014
    @bigmemtest(size=_2G + 10, memuse=8)
1015 1016
    def test_hash(self, size):
        l = [0] * size
1017
        self.assertRaises(TypeError, hash, l)
1018

1019
    @bigmemtest(size=_2G + 10, memuse=8)
1020 1021
    def test_index_and_slice(self, size):
        l = [None] * size
1022 1023 1024 1025
        self.assertEqual(len(l), size)
        self.assertEqual(l[-1], None)
        self.assertEqual(l[5], None)
        self.assertEqual(l[size - 1], None)
1026
        self.assertRaises(IndexError, operator.getitem, l, size)
1027 1028 1029 1030 1031 1032 1033 1034 1035
        self.assertEqual(l[:5], [None] * 5)
        self.assertEqual(l[-5:], [None] * 5)
        self.assertEqual(l[20:25], [None] * 5)
        self.assertEqual(l[-25:-20], [None] * 5)
        self.assertEqual(l[size - 5:], [None] * 5)
        self.assertEqual(l[size - 5:size], [None] * 5)
        self.assertEqual(l[size - 6:size - 2], [None] * 4)
        self.assertEqual(l[size:size], [])
        self.assertEqual(l[size:size+5], [])
1036 1037

        l[size - 2] = 5
1038 1039 1040
        self.assertEqual(len(l), size)
        self.assertEqual(l[-3:], [None, 5, None])
        self.assertEqual(l.count(5), 1)
1041
        self.assertRaises(IndexError, operator.setitem, l, size, 6)
1042
        self.assertEqual(len(l), size)
1043 1044 1045

        l[size - 7:] = [1, 2, 3, 4, 5]
        size -= 2
1046 1047
        self.assertEqual(len(l), size)
        self.assertEqual(l[-7:], [None, None, 1, 2, 3, 4, 5])
1048 1049 1050

        l[:7] = [1, 2, 3, 4, 5]
        size -= 2
1051 1052
        self.assertEqual(len(l), size)
        self.assertEqual(l[:7], [1, 2, 3, 4, 5, None, None])
1053 1054 1055

        del l[size - 1]
        size -= 1
1056 1057
        self.assertEqual(len(l), size)
        self.assertEqual(l[-1], 4)
1058 1059 1060

        del l[-2:]
        size -= 2
1061 1062
        self.assertEqual(len(l), size)
        self.assertEqual(l[-1], 2)
1063 1064 1065

        del l[0]
        size -= 1
1066 1067
        self.assertEqual(len(l), size)
        self.assertEqual(l[0], 2)
1068 1069 1070

        del l[:2]
        size -= 2
1071 1072
        self.assertEqual(len(l), size)
        self.assertEqual(l[0], 4)
1073 1074 1075 1076

    # Like test_concat, split in two.
    def basic_test_repeat(self, size):
        l = [] * size
1077
        self.assertFalse(l)
1078
        l = [''] * size
1079
        self.assertEqual(len(l), size)
1080
        l = l * 2
1081
        self.assertEqual(len(l), size * 2)
1082

1083
    @bigmemtest(size=_2G // 2 + 2, memuse=24)
1084 1085 1086
    def test_repeat_small(self, size):
        return self.basic_test_repeat(size)

1087
    @bigmemtest(size=_2G + 2, memuse=24)
1088 1089 1090 1091 1092 1093
    def test_repeat_large(self, size):
        return self.basic_test_repeat(size)

    def basic_test_inplace_repeat(self, size):
        l = ['']
        l *= size
1094
        self.assertEqual(len(l), size)
1095
        self.assertTrue(l[0] is l[-1])
1096 1097 1098 1099
        del l

        l = [''] * size
        l *= 2
1100
        self.assertEqual(len(l), size * 2)
1101
        self.assertTrue(l[size - 1] is l[-1])
1102

1103
    @bigmemtest(size=_2G // 2 + 2, memuse=16)
1104 1105 1106
    def test_inplace_repeat_small(self, size):
        return self.basic_test_inplace_repeat(size)

1107
    @bigmemtest(size=_2G + 2, memuse=16)
1108 1109 1110 1111 1112 1113 1114
    def test_inplace_repeat_large(self, size):
        return self.basic_test_inplace_repeat(size)

    def basic_test_repr(self, size):
        l = [0] * size
        s = repr(l)
        # The repr of a list of 0's is exactly three times the list length.
1115 1116 1117 1118
        self.assertEqual(len(s), size * 3)
        self.assertEqual(s[:5], '[0, 0')
        self.assertEqual(s[-5:], '0, 0]')
        self.assertEqual(s.count('0'), size)
1119

1120
    @bigmemtest(size=_2G // 3 + 2, memuse=8 + 3 * ascii_char_size)
1121 1122 1123
    def test_repr_small(self, size):
        return self.basic_test_repr(size)

1124
    @bigmemtest(size=_2G + 2, memuse=8 + 3 * ascii_char_size)
1125 1126 1127 1128 1129
    def test_repr_large(self, size):
        return self.basic_test_repr(size)

    # list overallocates ~1/8th of the total size (on first expansion) so
    # the single list.append call puts memuse at 9 bytes per size.
1130
    @bigmemtest(size=_2G, memuse=9)
1131 1132 1133
    def test_append(self, size):
        l = [object()] * size
        l.append(object())
1134
        self.assertEqual(len(l), size+1)
1135 1136
        self.assertTrue(l[-3] is l[-2])
        self.assertFalse(l[-2] is l[-1])
1137

1138
    @bigmemtest(size=_2G // 5 + 2, memuse=8 * 5)
1139 1140
    def test_count(self, size):
        l = [1, 2, 3, 4, 5] * size
1141 1142
        self.assertEqual(l.count(1), size)
        self.assertEqual(l.count("1"), 0)
1143 1144

    def basic_test_extend(self, size):
1145
        l = [object] * size
1146
        l.extend(l)
1147
        self.assertEqual(len(l), size * 2)
1148 1149
        self.assertTrue(l[0] is l[-1])
        self.assertTrue(l[size - 1] is l[size + 1])
1150

1151
    @bigmemtest(size=_2G // 2 + 2, memuse=16)
1152 1153 1154
    def test_extend_small(self, size):
        return self.basic_test_extend(size)

1155
    @bigmemtest(size=_2G + 2, memuse=16)
1156 1157 1158
    def test_extend_large(self, size):
        return self.basic_test_extend(size)

1159
    @bigmemtest(size=_2G // 5 + 2, memuse=8 * 5)
1160
    def test_index(self, size):
1161
        l = [1, 2, 3, 4, 5] * size
1162
        size *= 5
1163 1164 1165
        self.assertEqual(l.index(1), 0)
        self.assertEqual(l.index(5, size - 5), size - 1)
        self.assertEqual(l.index(5, size - 5, size), size - 1)
1166
        self.assertRaises(ValueError, l.index, 1, size - 4, size)
1167
        self.assertRaises(ValueError, l.index, 6)
1168 1169

    # This tests suffers from overallocation, just like test_append.
1170
    @bigmemtest(size=_2G + 10, memuse=9)
1171 1172 1173 1174
    def test_insert(self, size):
        l = [1.0] * size
        l.insert(size - 1, "A")
        size += 1
1175 1176
        self.assertEqual(len(l), size)
        self.assertEqual(l[-3:], [1.0, "A", 1.0])
1177 1178 1179

        l.insert(size + 1, "B")
        size += 1
1180 1181
        self.assertEqual(len(l), size)
        self.assertEqual(l[-3:], ["A", 1.0, "B"])
1182 1183 1184

        l.insert(1, "C")
        size += 1
1185 1186 1187
        self.assertEqual(len(l), size)
        self.assertEqual(l[:3], [1.0, "C", 1.0])
        self.assertEqual(l[size - 3:], ["A", 1.0, "B"])
1188

1189
    @bigmemtest(size=_2G // 5 + 4, memuse=8 * 5)
1190
    def test_pop(self, size):
1191
        l = ["a", "b", "c", "d", "e"] * size
1192
        size *= 5
1193
        self.assertEqual(len(l), size)
1194 1195 1196

        item = l.pop()
        size -= 1
1197 1198 1199
        self.assertEqual(len(l), size)
        self.assertEqual(item, "e")
        self.assertEqual(l[-2:], ["c", "d"])
1200 1201 1202

        item = l.pop(0)
        size -= 1
1203 1204 1205
        self.assertEqual(len(l), size)
        self.assertEqual(item, "a")
        self.assertEqual(l[:2], ["b", "c"])
1206 1207 1208

        item = l.pop(size - 2)
        size -= 1
1209 1210 1211
        self.assertEqual(len(l), size)
        self.assertEqual(item, "c")
        self.assertEqual(l[-2:], ["b", "d"])
1212

1213
    @bigmemtest(size=_2G + 10, memuse=8)
1214 1215
    def test_remove(self, size):
        l = [10] * size
1216
        self.assertEqual(len(l), size)
1217 1218 1219

        l.remove(10)
        size -= 1
1220
        self.assertEqual(len(l), size)
1221 1222 1223 1224 1225

        # Because of the earlier l.remove(), this append doesn't trigger
        # a resize.
        l.append(5)
        size += 1
1226 1227
        self.assertEqual(len(l), size)
        self.assertEqual(l[-2:], [10, 5])
1228 1229
        l.remove(5)
        size -= 1
1230 1231
        self.assertEqual(len(l), size)
        self.assertEqual(l[-2:], [10, 10])
1232

1233
    @bigmemtest(size=_2G // 5 + 2, memuse=8 * 5)
1234 1235 1236
    def test_reverse(self, size):
        l = [1, 2, 3, 4, 5] * size
        l.reverse()
1237 1238 1239
        self.assertEqual(len(l), size * 5)
        self.assertEqual(l[-5:], [5, 4, 3, 2, 1])
        self.assertEqual(l[:5], [5, 4, 3, 2, 1])
1240

1241
    @bigmemtest(size=_2G // 5 + 2, memuse=8 * 5)
1242 1243 1244
    def test_sort(self, size):
        l = [1, 2, 3, 4, 5] * size
        l.sort()
1245 1246 1247 1248
        self.assertEqual(len(l), size * 5)
        self.assertEqual(l.count(1), size)
        self.assertEqual(l[:10], [1] * 10)
        self.assertEqual(l[-10:], [5] * 10)
1249 1250

def test_main():
1251 1252
    support.run_unittest(StrTest, BytesTest, BytearrayTest,
        TupleTest, ListTest)
1253 1254 1255

if __name__ == '__main__':
    if len(sys.argv) > 1:
1256
        support.set_memlimit(sys.argv[1])
1257
    test_main()