~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__static_tuple.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-04 16:06:36 UTC
  • mfrom: (5007 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100204160636-xqeuwz8bwt8bbts4
Merge bzr.dev 5007, resolve conflict, update NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright (C) 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
17
17
"""Tests for the StaticTuple type."""
18
18
 
19
19
import cPickle
 
20
import gc
20
21
import sys
21
22
 
22
23
from bzrlib import (
23
24
    _static_tuple_py,
24
25
    debug,
 
26
    errors,
25
27
    osutils,
26
28
    static_tuple,
27
29
    tests,
28
30
    )
29
 
from bzrlib.tests import (
30
 
    features,
31
 
    )
32
31
 
33
32
 
34
33
def load_tests(standard_tests, module, loader):
40
39
    return suite
41
40
 
42
41
 
 
42
class _Meliae(tests.Feature):
 
43
 
 
44
    def _probe(self):
 
45
        try:
 
46
            from meliae import scanner
 
47
        except ImportError:
 
48
            return False
 
49
        return True
 
50
 
 
51
    def feature_name(self):
 
52
        return "Meliae - python memory debugger"
 
53
 
 
54
Meliae = _Meliae()
 
55
 
 
56
 
43
57
class TestStaticTuple(tests.TestCase):
44
58
 
45
59
    def assertRefcount(self, count, obj):
63
77
    def test_create_bad_args(self):
64
78
        args_256 = ['a']*256
65
79
        # too many args
66
 
        self.assertRaises(TypeError, self.module.StaticTuple, *args_256)
 
80
        self.assertRaises(ValueError, self.module.StaticTuple, *args_256)
67
81
        args_300 = ['a']*300
68
 
        self.assertRaises(TypeError, self.module.StaticTuple, *args_300)
 
82
        self.assertRaises(ValueError, self.module.StaticTuple, *args_300)
69
83
        # not a string
70
84
        self.assertRaises(TypeError, self.module.StaticTuple, object())
71
85
 
432
446
        # amount of referenced memory. Unfortunately gc.get_referents() first
433
447
        # checks the IS_GC flag before it traverses anything. We could write a
434
448
        # helper func, but that won't work for the generic implementation...
435
 
        self.requireFeature(features.meliae_feature)
 
449
        self.requireFeature(Meliae)
436
450
        from meliae import scanner
437
451
        strs = ['foo', 'bar', 'baz', 'bing']
438
452
        k = self.module.StaticTuple(*strs)
443
457
        self.assertEqual(sorted(refs), sorted(scanner.get_referents(k)))
444
458
 
445
459
    def test_nested_referents(self):
446
 
        self.requireFeature(features.meliae_feature)
 
460
        self.requireFeature(Meliae)
447
461
        from meliae import scanner
448
462
        strs = ['foo', 'bar', 'baz', 'bing']
449
463
        k1 = self.module.StaticTuple(*strs[:2])