aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/manhole/test/test_explorer.py
blob: a52d3c1ae44df3ae55707b441ab7b6ca6ba3ee83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Tests for L{twisted.manhole.explorer}.
"""

from twisted.trial import unittest
from twisted.manhole.explorer import (
    CRUFT_WatchyThingie,
    ExplorerImmutable,
    Pool,
    _WatchMonkey,
    )


class Foo:
    """
    Test helper.
    """


class PoolTestCase(unittest.TestCase):
    """
    Tests for the Pool class.
    """

    def test_instanceBuilding(self):
        """
        If the object is not in the pool a new instance is created and
        returned.
        """
        p = Pool()
        e = p.getExplorer(123, 'id')
        self.assertIsInstance(e, ExplorerImmutable)
        self.assertEqual(e.value, 123)
        self.assertEqual(e.identifier, 'id')



class CRUFTWatchyThingieTestCase(unittest.TestCase):
    """
    Tests for the CRUFT_WatchyThingie class.
    """
    def test_watchObjectConstructedClass(self):
        """
        L{CRUFT_WatchyThingie.watchObject} changes the class of its
        first argument to a custom watching class.
        """
        foo = Foo()
        cwt = CRUFT_WatchyThingie()
        cwt.watchObject(foo, 'id', 'cback')

        # check new constructed class
        newClassName = foo.__class__.__name__
        self.assertEqual(newClassName, "WatchingFoo%X" % (id(foo),))


    def test_watchObjectConstructedInstanceMethod(self):
        """
        L{CRUFT_WatchyThingie.watchingfoo} adds a C{_watchEmitChanged}
        attribute which refers to a bound method on the instance
        passed to it.
        """
        foo = Foo()
        cwt = CRUFT_WatchyThingie()
        cwt.watchObject(foo, 'id', 'cback')

        # check new constructed instance method
        self.assertIdentical(foo._watchEmitChanged.im_self, foo)



class WatchMonkeyTestCase(unittest.TestCase):
    """
    Tests for the _WatchMonkey class.
    """
    def test_install(self):
        """
        When _WatchMonkey is installed on a method, calling that
        method calls the _WatchMonkey.
        """
        class Foo:
            """
            Helper.
            """
            def someMethod(self):
                """
                Just a method.
                """

        foo = Foo()
        wm = _WatchMonkey(foo)
        wm.install('someMethod')

        # patch wm's method to check that the method was exchanged
        called = []
        wm.__call__ = lambda s: called.append(True)

        # call and check
        foo.someMethod()
        self.assertTrue(called)