summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestClient/TestTools/TestPOSIX/TestDirectory.py
blob: 1ce6562c51f8199ee60818d23cf329275bac746b (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import os
import sys
import stat
import copy
import lxml.etree
from mock import Mock, MagicMock, patch
from Bcfg2.Client.Tools.POSIX.Directory import *

# add all parent testsuite directories to sys.path to allow (most)
# relative imports in python 2.4
path = os.path.dirname(__file__)
while path != "/":
    if os.path.basename(path).lower().startswith("test"):
        sys.path.append(path)
    if os.path.basename(path) == "testsuite":
        break
    path = os.path.dirname(path)
from Test__init import get_posix_object
from Testbase import TestPOSIXTool
from common import *

class TestPOSIXDirectory(TestPOSIXTool):
    test_obj = POSIXDirectory

    @patch("os.listdir")
    @patch("Bcfg2.Client.Tools.POSIX.base.POSIXTool.verify")
    @patch("Bcfg2.Client.Tools.POSIX.Directory.%s._exists" % test_obj.__name__)
    def test_verify(self, mock_exists, mock_verify, mock_listdir):
        entry = lxml.etree.Element("Path", name="/test", type="directory",
                                   perms='0644', owner='root', group='root')

        mock_exists.return_value = False
        self.assertFalse(self.ptool.verify(entry, []))
        mock_exists.assert_called_with(entry)

        mock_exists.reset_mock()
        exists_rv = MagicMock()
        exists_rv.__getitem__.return_value = stat.S_IFREG | 420 # 0o644
        mock_exists.return_value = exists_rv
        self.assertFalse(self.ptool.verify(entry, []))
        mock_exists.assert_called_with(entry)

        mock_exists.reset_mock()
        mock_verify.return_value = False
        exists_rv.__getitem__.return_value = stat.S_IFDIR | 420 # 0o644
        self.assertFalse(self.ptool.verify(entry, []))
        mock_exists.assert_called_with(entry)
        mock_verify.assert_called_with(self.ptool, entry, [])

        mock_exists.reset_mock()
        mock_verify.reset_mock()
        mock_verify.return_value = True
        self.assertTrue(self.ptool.verify(entry, []))
        mock_exists.assert_called_with(entry)
        mock_verify.assert_called_with(self.ptool, entry, [])

        mock_exists.reset_mock()
        mock_verify.reset_mock()
        entry.set("prune", "true")
        orig_entry = copy.deepcopy(entry)

        entries = ["foo", "bar", "bar/baz"]
        mock_listdir.return_value = entries
        modlist = [os.path.join(entry.get("name"), entries[0])]
        self.assertFalse(self.ptool.verify(entry, modlist))
        mock_exists.assert_called_with(entry)
        mock_verify.assert_called_with(self.ptool, entry, modlist)
        mock_listdir.assert_called_with(entry.get("name"))
        expected = [os.path.join(entry.get("name"), e)
                    for e in entries
                    if os.path.join(entry.get("name"), e) not in modlist]
        actual = [e.get("path") for e in entry.findall("Prune")]
        self.assertItemsEqual(expected, actual)

        mock_verify.reset_mock()
        mock_exists.reset_mock()
        mock_listdir.reset_mock()
        entry = copy.deepcopy(orig_entry)
        modlist = [os.path.join(entry.get("name"), e)
                   for e in entries]
        self.assertTrue(self.ptool.verify(entry, modlist))
        mock_exists.assert_called_with(entry)
        mock_verify.assert_called_with(self.ptool, entry, modlist)
        mock_listdir.assert_called_with(entry.get("name"))
        self.assertEqual(len(entry.findall("Prune")), 0)
    
    @patch("os.unlink")
    @patch("os.path.isdir")
    @patch("shutil.rmtree")
    @patch("Bcfg2.Client.Tools.POSIX.base.POSIXTool.install")
    @patch("Bcfg2.Client.Tools.POSIX.Directory.%s._exists" % test_obj.__name__)
    @patch("Bcfg2.Client.Tools.POSIX.Directory.%s._makedirs" %
           test_obj.__name__)
    def test_install(self, mock_makedirs, mock_exists, mock_install,
                     mock_rmtree, mock_isdir, mock_unlink):
        entry = lxml.etree.Element("Path", name="/test/foo/bar",
                                   type="directory", perms='0644',
                                   owner='root', group='root')
        
        def reset():
            mock_exists.reset_mock()
            mock_install.reset_mock()
            mock_unlink.reset_mock()
            mock_rmtree.reset_mock()
            mock_rmtree.mock_makedirs()

        mock_makedirs.return_value = True
        mock_exists.return_value = False
        mock_install.return_value = True
        self.assertTrue(self.ptool.install(entry))
        mock_exists.assert_called_with(entry)
        mock_install.assert_called_with(self.ptool, entry)
        mock_makedirs.assert_called_with(entry)

        reset()
        exists_rv = MagicMock()
        exists_rv.__getitem__.return_value = stat.S_IFREG | 420 # 0o644
        mock_exists.return_value = exists_rv
        self.assertTrue(self.ptool.install(entry))
        mock_unlink.assert_called_with(entry.get("name"))
        mock_exists.assert_called_with(entry)
        mock_makedirs.assert_called_with(entry)
        mock_install.assert_called_with(self.ptool, entry)

        reset()
        exists_rv.__getitem__.return_value = stat.S_IFDIR | 420 # 0o644
        mock_install.return_value = True
        self.assertTrue(self.ptool.install(entry))
        mock_exists.assert_called_with(entry)
        mock_install.assert_called_with(self.ptool, entry)

        reset()
        mock_install.return_value = False
        self.assertFalse(self.ptool.install(entry))
        mock_install.assert_called_with(self.ptool, entry)

        entry.set("prune", "true")
        prune = ["/test/foo/bar/prune1", "/test/foo/bar/prune2"]
        for path in prune:
            lxml.etree.SubElement(entry, "Prune", path=path)
        
        reset()
        mock_install.return_value = True

        def isdir_rv(path):
            if path.endswith("prune2"):
                return True
            else:
                return False
        mock_isdir.side_effect = isdir_rv
        self.assertTrue(self.ptool.install(entry))
        mock_exists.assert_called_with(entry)
        mock_install.assert_called_with(self.ptool, entry)
        self.assertItemsEqual(mock_isdir.call_args_list,
                              [call(p) for p in prune])
        mock_unlink.assert_called_with("/test/foo/bar/prune1")
        mock_rmtree.assert_called_with("/test/foo/bar/prune2")