File: test_inject_files.py

package info (click to toggle)
ironic-python-agent 11.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,488 kB
  • sloc: python: 36,080; sh: 60; makefile: 29
file content (421 lines) | stat: -rw-r--r-- 17,870 bytes parent folder | download | duplicates (2)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import os
import shutil
import stat
import tempfile
from unittest import mock

from ironic_python_agent import errors
from ironic_python_agent import inject_files
from ironic_python_agent.tests.unit import base


@mock.patch('ironic_python_agent.utils.mounted', autospec=True)
@mock.patch('ironic_python_agent.disk_utils.list_partitions', autospec=True)
@mock.patch('ironic_python_agent.hardware.dispatch_to_managers',
            lambda _call: '/dev/fake')
class TestFindPartitionWithPath(base.IronicAgentTest):

    def setUp(self):
        super().setUp()
        self.tempdir = tempfile.mkdtemp()
        self.addCleanup(lambda: shutil.rmtree(self.tempdir))

    def test_found(self, mock_list_parts, mock_mount):
        mock_list_parts.return_value = [
            {'number': 1, 'flags': 'lvm'},
            {'number': 2, 'flags': 'boot'},
        ]
        mock_mount.return_value.__enter__.return_value = self.tempdir
        expected = os.path.join(self.tempdir, "some/path")
        os.makedirs(expected)

        with inject_files.find_partition_with_path("/some/path") as path:
            self.assertEqual(expected, path)

        mock_mount.assert_called_once_with('/dev/fake2')

    def test_found_with_dev(self, mock_list_parts, mock_mount):
        mock_list_parts.return_value = [
            {'number': 1, 'flags': 'lvm'},
            {'number': 2, 'flags': 'boot'},
        ]
        mock_mount.return_value.__enter__.return_value = self.tempdir
        expected = os.path.join(self.tempdir, "some/path")
        os.makedirs(expected)

        with inject_files.find_partition_with_path("/some/path",
                                                   "/dev/nvme0n1") as path:
            self.assertEqual(expected, path)

        mock_mount.assert_called_once_with('/dev/nvme0n1p2')

    def test_not_found(self, mock_list_parts, mock_mount):
        mock_list_parts.return_value = [
            {'number': 1, 'flags': 'lvm'},
            {'number': 2, 'flags': 'boot'},
            {'number': 3, 'flags': ''},
        ]
        mock_mount.return_value.__enter__.return_value = self.tempdir

        self.assertRaises(
            errors.DeviceNotFound,
            inject_files.find_partition_with_path("/some/path").__enter__)

        mock_mount.assert_has_calls([
            mock.call('/dev/fake2'),
            mock.call('/dev/fake3'),
        ], any_order=True)


class TestFindAndMountPath(base.IronicAgentTest):

    @mock.patch.object(inject_files, 'find_partition_with_path', autospec=True)
    def test_without_on(self, mock_find_part):
        mock_find_part.return_value.__enter__.return_value = '/mount/path'
        with inject_files._find_and_mount_path('/etc/sysctl.d/my.conf',
                                               None, '/dev/fake') as result:
            # "etc" is included in a real result of find_partition_with_path
            self.assertEqual('/mount/path/sysctl.d/my.conf', result)
        mock_find_part.assert_called_once_with('etc', '/dev/fake')

    def test_without_on_wrong_path(self):
        self.assertRaises(
            errors.InvalidCommandParamsError,
            inject_files._find_and_mount_path('/etc', None,
                                              '/dev/fake').__enter__)

    @mock.patch('ironic_python_agent.utils.mounted', autospec=True)
    def test_with_on_as_path(self, mock_mount):
        mock_mount.return_value.__enter__.return_value = '/mount/path'
        with inject_files._find_and_mount_path('/etc/sysctl.d/my.conf',
                                               '/dev/on',
                                               '/dev/fake') as result:
            self.assertEqual('/mount/path/etc/sysctl.d/my.conf', result)
        mock_mount.assert_called_once_with('/dev/on')

    @mock.patch('ironic_python_agent.utils.mounted', autospec=True)
    def test_with_on_as_number(self, mock_mount):
        mock_mount.return_value.__enter__.return_value = '/mount/path'
        with inject_files._find_and_mount_path('/etc/sysctl.d/my.conf',
                                               2, '/dev/fake') as result:
            self.assertEqual('/mount/path/etc/sysctl.d/my.conf', result)
        mock_mount.assert_called_once_with('/dev/fake2')

    @mock.patch('ironic_python_agent.utils.mounted', autospec=True)
    def test_with_on_as_number_nvme(self, mock_mount):
        mock_mount.return_value.__enter__.return_value = '/mount/path'
        with inject_files._find_and_mount_path('/etc/sysctl.d/my.conf',
                                               2, '/dev/nvme0n1') as result:
            self.assertEqual('/mount/path/etc/sysctl.d/my.conf', result)
        mock_mount.assert_called_once_with('/dev/nvme0n1p2')


@mock.patch.object(inject_files, '_find_and_mount_path', autospec=True)
class TestInjectOne(base.IronicAgentTest):

    def setUp(self):
        super().setUp()
        self.tempdir = tempfile.mkdtemp()
        self.addCleanup(lambda: shutil.rmtree(self.tempdir))
        self.dirpath = os.path.join(self.tempdir, 'dir1', 'dir2')
        self.path = os.path.join(self.dirpath, 'file.name')

        self.http_get = mock.MagicMock()
        self.http_get.return_value.__enter__.return_value = iter(
            [b'con', b'tent', b''])

        self.node = {'uuid': '1234'}
        self.ports = [{'address': 'aabb'}]

    def test_delete(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'deleted': True}
        os.makedirs(self.dirpath)
        with open(self.path, 'wb') as fp:
            fp.write(b'content')

        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        self.assertFalse(os.path.exists(self.path))
        self.assertTrue(os.path.isdir(self.dirpath))
        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_not_called()

    def test_delete_not_exists(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'deleted': True}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        self.assertFalse(os.path.exists(self.path))
        self.assertFalse(os.path.isdir(self.dirpath))
        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_not_called()

    def test_plain_content(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA=='}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())
        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_not_called()

    def test_plain_content_with_on(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA==',
              'partition': '/dev/sda1'}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())
        mock_find_and_mount.assert_called_once_with(fl['path'], '/dev/sda1',
                                                    '/dev/root')
        self.http_get.assert_not_called()

    def test_plain_content_with_modes(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA==',
              'mode': 0o602, 'dirmode': 0o703}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())
        self.assertEqual(0o602, stat.S_IMODE(os.stat(self.path).st_mode))
        self.assertEqual(0o703, stat.S_IMODE(os.stat(self.dirpath).st_mode))

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_not_called()

    def test_plain_content_with_modes_exists(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA==',
              'mode': 0o602, 'dirmode': 0o703}
        os.makedirs(self.dirpath)
        with open(self.path, 'wb') as fp:
            fp.write(b"I'm not a cat, I'm a lawyer")

        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())
        self.assertEqual(0o602, stat.S_IMODE(os.stat(self.path).st_mode))
        # Existing directories do not change their permissions
        self.assertNotEqual(0o703, stat.S_IMODE(os.stat(self.dirpath).st_mode))

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_not_called()

    @mock.patch.object(os, 'chown', autospec=True)
    def test_plain_content_with_owner(self, mock_chown, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA==',
              'owner': 42}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        mock_chown.assert_called_once_with(self.path, 42, -1)
        self.http_get.assert_not_called()

    @mock.patch.object(os, 'chown', autospec=True)
    def test_plain_content_with_owner_and_group(self, mock_chown,
                                                mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name', 'content': 'Y29udGVudA==',
              'owner': 0, 'group': 0}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        mock_chown.assert_called_once_with(self.path, 0, 0)
        self.http_get.assert_not_called()

    def test_url(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name',
              'content': 'http://example.com/path'}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_called_once_with('http://example.com/path')

    def test_url_formatting(self, mock_find_and_mount):
        mock_find_and_mount.return_value.__enter__.return_value = self.path

        fl = {'path': '/etc/dir1/dir2/file.name',
              'content': 'http://example.com/{node[uuid]}/{ports[0][address]}'}
        inject_files._inject_one(self.node, self.ports, fl,
                                 '/dev/root', self.http_get)

        with open(self.path, 'rb') as fp:
            self.assertEqual(b'content', fp.read())

        mock_find_and_mount.assert_called_once_with(fl['path'], None,
                                                    '/dev/root')
        self.http_get.assert_called_once_with('http://example.com/1234/aabb')


@mock.patch('ironic_python_agent.hardware.dispatch_to_managers',
            lambda _call: '/dev/root')
@mock.patch.object(inject_files, '_inject_one', autospec=True)
class TestInjectFiles(base.IronicAgentTest):

    def test_empty(self, mock_inject):
        node = {
            'properties': {}
        }

        inject_files.inject_files(node, [mock.sentinel.port], [])
        mock_inject.assert_not_called()

    def test_ok(self, mock_inject):
        node = {
            'properties': {
                'inject_files': [
                    {'path': '/etc/default/grub', 'content': 'abcdef'},
                    {'path': '/etc/default/bluetooth', 'deleted': True},
                ]
            }
        }
        files = [
            {'path': '/boot/special.conf',
             'content': 'http://example.com/data',
             'mode': 0o600, 'dirmode': 0o750, 'owner': 0, 'group': 0},
            {'path': 'service.conf', 'partition': '/dev/disk/by-label/OPT'},
        ]

        inject_files.inject_files(node, [mock.sentinel.port], files)

        mock_inject.assert_has_calls([
            mock.call(node, [mock.sentinel.port], fl, '/dev/root', mock.ANY)
            for fl in node['properties']['inject_files'] + files
        ])
        http_get = mock_inject.call_args_list[0][0][4]
        self.assertTrue(http_get.verify)
        self.assertIsNone(http_get.cert)

    def test_verify_false(self, mock_inject):
        node = {
            'properties': {
                'inject_files': [
                    {'path': '/etc/default/grub', 'content': 'abcdef'},
                    {'path': '/etc/default/bluetooth', 'deleted': True},
                ]
            }
        }
        files = [
            {'path': '/boot/special.conf',
             'content': 'http://example.com/data',
             'mode': 0o600, 'dirmode': 0o750, 'owner': 0, 'group': 0},
            {'path': 'service.conf', 'partition': '/dev/disk/by-label/OPT'},
        ]

        inject_files.inject_files(node, [mock.sentinel.port], files, False)

        mock_inject.assert_has_calls([
            mock.call(node, [mock.sentinel.port], fl, '/dev/root', mock.ANY)
            for fl in node['properties']['inject_files'] + files
        ])
        http_get = mock_inject.call_args_list[0][0][4]
        self.assertFalse(http_get.verify)
        self.assertIsNone(http_get.cert)

    def test_invalid_type_on_node(self, mock_inject):
        node = {
            'properties': {
                'inject_files': 42
            }
        }
        self.assertRaises(errors.InvalidCommandParamsError,
                          inject_files.inject_files, node, [], [])
        mock_inject.assert_not_called()

    def test_invalid_type_in_param(self, mock_inject):
        node = {
            'properties': {}
        }
        self.assertRaises(errors.InvalidCommandParamsError,
                          inject_files.inject_files, node, [], 42)
        mock_inject.assert_not_called()


class TestValidateFiles(base.IronicAgentTest):

    def test_missing_path(self):
        fl = {'deleted': True}
        self.assertRaisesRegex(errors.InvalidCommandParamsError, 'path',
                               inject_files._validate_files, [fl], [])

    def test_unknown_fields(self):
        fl = {'path': '/etc/passwd', 'cat': 'meow'}
        self.assertRaisesRegex(errors.InvalidCommandParamsError, 'cat',
                               inject_files._validate_files, [fl], [])

    def test_root_without_on(self):
        fl = {'path': '/something', 'content': 'abcd'}
        self.assertRaisesRegex(errors.InvalidCommandParamsError, 'partition',
                               inject_files._validate_files, [fl], [])

    def test_no_directories(self):
        fl = {'path': '/something/else/', 'content': 'abcd'}
        self.assertRaisesRegex(errors.InvalidCommandParamsError, 'directories',
                               inject_files._validate_files, [fl], [])

    def test_content_and_deleted(self):
        fl = {'path': '/etc/password', 'content': 'abcd', 'deleted': True}
        self.assertRaisesRegex(errors.InvalidCommandParamsError,
                               'content .* with deleted',
                               inject_files._validate_files, [fl], [])

    def test_numeric_fields(self):
        for field in ('owner', 'group', 'mode', 'dirmode'):
            fl = {'path': '/etc/password', 'content': 'abcd', field: 'name'}
            self.assertRaisesRegex(errors.InvalidCommandParamsError,
                                   'must be a number',
                                   inject_files._validate_files, [fl], [])