summaryrefslogtreecommitdiffstats
path: root/di/core_test.py
blob: 828df374e86d07b9539aa122e86001df7a1e40a2 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Tests for the dependency injection core
#
# Copyright (C) 2012  Red Hat, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see
# <http://www.gnu.org/licenses/>.
#
# Red Hat Author(s): Martin Sivak <msivak@redhat.com>
#

from .core import *
import unittest

def method_to_inject():
    pass

class BareFuncEnableTestCase(unittest.TestCase):
    @inject(injected_func = str.lower)
    def method(self, arg):
        return injected_func(arg)
    
class BareFuncTestCase(unittest.TestCase):
    @inject(injected_func = str.lower)
    def method(self, arg):
        return injected_func(arg)

    @inject(injected_func = method)
    def method2(self, arg):
        return injected_func(self, arg)
    
    def test_bare_inject(self):
        """Tests the injection to plain methods."""
        self.assertEqual("a", self.method("A"))

    def test_double_inject(self):
        """Tests the injection to two plain methods."""
        self.assertEqual("a", self.method2("A"))

    def test_inject_global_tainting(self):
        """Tests whether the global namespace is clean
           after the injection is done."""
        global injected_func
        injected_func = None
        self.method("A")
        self.assertEqual(None, injected_func)
        
    
@inject(injected_func = str.lower)
class Test(object):
    """Test fixture for class injection."""
    @usesclassinject
    def method(self, arg):
        return injected_func(arg)

    
@inject(injected_func = str.lower)
class TestInit(object):
    """Test fixture for injection to __init__."""
    @usesclassinject
    def __init__(self, arg):
        self.value = injected_func(arg)


@inject(injected_func = str.lower)
class TestCallable(object):
    """Test fixture for callable classes."""
    @usesclassinject
    def __call__(self, arg):
        return injected_func(arg)

class TestCallableSingle(object):
    """Test fixture for callable classes with
       simple method injection."""
    @inject(injected_func = str.lower)
    def __call__(self, arg):
        return injected_func(arg)
    
class ClassDITestCase(unittest.TestCase):
    
    def test_class_inject(self):
        """Test injection to instance method."""
        obj = Test()
        self.assertEqual("a", obj.method("A"))

    def test_named_register(self):
        """Test injection to instance method."""
        Test._inject_(method_to_inject)

    def test_class_init_inject(self):
        """Test injection to class constructor."""
        obj = TestInit("A")
        self.assertEqual("a", obj.value)

    def test_callable_class(self):
        """Test class injection to callable class."""
        obj = TestCallable()
        self.assertEqual("a", obj("A"))
        
    def test_callable_class_single(self):
        """Test method injection to callable class."""
        obj = TestCallableSingle()
        self.assertEqual("a", obj("A"))
        
if __name__ == "__main__":
    unittest.main()