summaryrefslogtreecommitdiffstats
path: root/tests/mock/__init__.py
blob: 3fd749a9ab6a381ca3d21a4ac7c2e592c7a2b7f7 (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
# Mocking library for module and code injection, replay tests and other
# unit testing purposes
#
# Copyright (C) 2010
# Red Hat, Inc.  All rights reserved.
#
# 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/>.
#
# Author(s): Martin Sivak <msivak@redhat.com>


from disk import *
from mock import *
import unittest

def slow(f):
    """Decorates a test method as being slow, usefull for python-nose filtering"""
    f.slow = True
    return f

def acceptance(f):
    """Decorates test as belonging to acceptance testing and not useable in common devellopment unit testing. To be used with python-nose filtering."""
    f.acceptance = True
    return f

class TestCase(unittest.TestCase):
    def __init__(self, *args, **kwargs):
        unittest.TestCase.__init__(self, *args, **kwargs)
        self.injectedModules = {}

    def setupModules(self, a):
        """Mock specified list of modules and store the list so it can be
           properly unloaded during tearDown"""

        import sys
        self.preexistingModules = set(sys.modules.keys())

        for m in a:
            sys.modules[m] = Mock()
            self.injectedModules[m] = sys.modules[m]

    def modifiedModule(self, mname, mod = None):
        """Mark module (and all it's parents) as tainted"""

        oldname=""
        for m in mname.split("."):
            self.injectedModules[oldname+m] = mod
            oldname += m + "."
        self.injectedModules[mname] = mod

    def tearDownModules(self):
        """Unload previously Mocked modules"""

        import sys

        for m in sys.modules.keys():
            if m in self.preexistingModules and not m in self.injectedModules:
                continue

            del sys.modules[m]

    def take_over_io(self, disk, target_module):
        """ Trick target_module into using disk object as the filesystem.

            This is achieved by overriding the module's 'open' binding as well
            as many global bindings in os.path.
        """
        target_module.open = disk.open
        self.modifiedModule(target_module.__name__)

        import glob
        self.modifiedModule("glob")
        glob.glob = disk.glob_glob

        import os
        self.modifiedModule("os.path")
        # this is what os.path implementaion points at, reimport:
        import posixpath
        self.modifiedModule("posixpath")
        os.listdir = disk.os_listdir
        os.path.exists = disk.os_path_exists
        os.path.isdir = disk.os_path_isdir
        os.access = disk.os_access