File: test_filesystem_store.py

package info (click to toggle)
python-glance-store 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,956 kB
  • sloc: python: 18,826; sh: 41; makefile: 34
file content (452 lines) | stat: -rw-r--r-- 17,564 bytes parent folder | download
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
#    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.

"""Tests the filesystem backend store"""

import errno
import io
import json
import os
import threading
import time
import uuid

from unittest import mock

import futurist
from oslo_utils import units

from glance_store._drivers import filesystem
from glance_store import exceptions
from glance_store import location
from glance_store.tests import base
from glance_store.tests.unit import test_filesystem_store_base as file_base
from glance_store.tests.unit import test_store_capabilities


class TestStore(base.StoreBaseTest,
                file_base.TestFilerStoreBase,
                test_store_capabilities.TestStoreCapabilitiesChecking):

    def setUp(self):
        super(TestStore, self).setUp()
        # Set default values for multistore and backend
        self.multistore = False
        self.backend = 'glance_store'

        self.store = filesystem.Store(self.conf)
        self.config(filesystem_store_datadir=self.test_dir,
                    filesystem_store_chunk_size=10,
                    stores=['glance.store.filesystem.Store'],
                    group="glance_store")
        self.store.configure()
        self.register_store_schemes(self.store, 'file')
        self.hash_algo = 'sha256'

    def _create_metadata_json_file(self, metadata, group=None):
        expected_image_id = str(uuid.uuid4())
        jsonfilename = os.path.join(self.test_dir,
                                    "storage_metadata.%s" % expected_image_id)
        self.config(filesystem_store_metadata_file=jsonfilename,
                    group=group)
        with open(jsonfilename, 'w') as fptr:
            json.dump(metadata, fptr)

    def _store_image(self, in_metadata):
        expected_image_id = str(uuid.uuid4())
        expected_file_size = 10
        expected_file_contents = b"*" * expected_file_size
        image_file = io.BytesIO(expected_file_contents)
        self.store.FILESYSTEM_STORE_METADATA = in_metadata
        return self.store.add(expected_image_id, image_file,
                              expected_file_size, self.hash_algo)

    def test_get(self):
        self._test_get()

    def test_get_random_access(self):
        self._test_get_random_access()

    def test_get_non_existing(self):
        """
        Test that trying to retrieve a file that doesn't exist
        raises an error
        """
        self._test_get_non_existing()

    def test_add(self):
        self._test_add()

    def test_add_image_exceeding_max_size_raises_exception(self):
        self._test_add_image_exceeding_max_size_raises_exception()

    def test_write_less_than_declared_raises_exception(self):
        self._test_write_less_than_declared_raises_exception()

    def test_thin_provisioning_is_disabled_by_default(self):
        self.assertEqual(self.store.thin_provisioning, False)

    def test_add_with_thick_provisioning(self):
        self._do_test_add(enable_thin_provisoning=False)

    def test_add_with_thin_provisioning(self):
        self._do_test_add(enable_thin_provisoning=True)

    def test_add_thick_provisioning_with_holes_in_file(self):
        """
        Tests that a file which contains null bytes chunks is fully
        written with a thick provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        content = b"*" * chunk_size + b"\x00" * chunk_size + b"*" * chunk_size
        self._do_test_thin_provisioning(content, 3 * chunk_size, 0, 3, False)

    def test_add_thin_provisioning_with_holes_in_file(self):
        """
        Tests that a file which contains null bytes chunks is sparsified
        with a thin provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        content = b"*" * chunk_size + b"\x00" * chunk_size + b"*" * chunk_size
        self._do_test_thin_provisioning(content, 3 * chunk_size, 1, 2, True)

    def test_add_thick_provisioning_without_holes_in_file(self):
        """
        Tests that a file which not contain null bytes chunks is fully
        written with a thick provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        content = b"*" * 3 * chunk_size
        self._do_test_thin_provisioning(content, 3 * chunk_size, 0, 3, False)

    def test_add_thin_provisioning_without_holes_in_file(self):
        """
        Tests that a file which not contain null bytes chunks is fully
        written with a thin provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        content = b"*" * 3 * chunk_size
        self._do_test_thin_provisioning(content, 3 * chunk_size, 0, 3, True)

    def test_add_thick_provisioning_with_partial_holes_in_file(self):
        """
        Tests that a file which contains null bytes not aligned with
        chunk size is fully written with a thick provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        my_chunk = int(chunk_size * 1.5)
        content = b"*" * my_chunk + b"\x00" * my_chunk + b"*" * my_chunk
        self._do_test_thin_provisioning(content, 3 * my_chunk, 0, 5, False)

    def test_add_thin_provisioning_with_partial_holes_in_file(self):
        """
        Tests that a file which contains null bytes not aligned with
        chunk size is sparsified with a thin provisioning configuration.
        """
        chunk_size = units.Ki  # 1K
        my_chunk = int(chunk_size * 1.5)
        content = b"*" * my_chunk + b"\x00" * my_chunk + b"*" * my_chunk
        self._do_test_thin_provisioning(content, 3 * my_chunk, 1, 4, True)

    def test_add_with_verifier(self):
        self._test_add_with_verifier()

    def test_add_check_metadata_with_invalid_mountpoint_location(self):
        self._test_add_check_metadata_with_invalid_mountpoint_location()

    def test_add_check_metadata_list_with_invalid_mountpoint_locations(self):
        self._test_add_check_metadata_list_with_invalid_mountpoint_locations()

    def test_add_check_metadata_list_with_valid_mountpoint_locations(self):
        self._test_add_check_metadata_list_with_valid_mountpoint_locations()

    def test_add_check_metadata_bad_nosuch_file(self):
        self._test_add_check_metadata_bad_nosuch_file()

    def test_add_already_existing(self):
        self._test_add_already_existing()

    def test_add_storage_full(self):
        """
        Tests that adding an image without enough space on disk
        raises an appropriate exception
        """
        self._do_test_add_write_failure(errno.ENOSPC, exceptions.StorageFull)

    def test_add_file_too_big(self):
        """
        Tests that adding an excessively large image file
        raises an appropriate exception
        """
        self._do_test_add_write_failure(errno.EFBIG, exceptions.StorageFull)

    def test_add_storage_write_denied(self):
        """
        Tests that adding an image with insufficient filestore permissions
        raises an appropriate exception
        """
        self._do_test_add_write_failure(errno.EACCES,
                                        exceptions.StorageWriteDenied)

    def test_add_other_failure(self):
        """
        Tests that a non-space-related IOError does not raise a
        StorageFull exceptions.
        """
        self._do_test_add_write_failure(errno.ENOTDIR, IOError)

    def test_add_cleanup_on_read_failure(self):
        self._test_add_cleanup_on_read_failure()

    def test_delete(self):
        self._test_delete()

    def test_delete_non_existing(self):
        self._test_delete_non_existing()

    def test_delete_forbidden(self):
        self._test_delete_forbidden()

    def test_configure_add_with_multi_datadirs(self):
        self._test_configure_add_with_multi_datadirs()

    def test_configure_add_with_metadata_file_success(self):
        self._test_configure_add_with_metadata_file_success()

    def test_configure_add_check_metadata_list_of_dicts_success(self):
        self._test_configure_add_check_metadata_list_of_dicts_success()

    def test_configure_add_check_metadata_success_list_val_for_some_key(self):
        self._test_configure_add_check_metadata_success_list_val_for_some_key()

    def test_configure_add_check_metadata_bad_data(self):
        self._test_configure_add_check_metadata_bad_data()

    def test_configure_add_check_metadata_with_no_id_or_mountpoint(self):
        self._test_configure_add_check_metadata_with_no_id_or_mountpoint()

    def test_configure_add_check_metadata_id_or_mountpoint_is_not_string(self):
        self._test_cfg_add_check_metadata_id_or_mountpoint_is_not_string()

    def test_configure_add_check_metadata_list_with_no_id_or_mountpoint(self):
        self._test_cfg_add_check_metadata_list_with_no_id_or_mountpoint()

    def test_add_check_metadata_list_id_or_mountpoint_is_not_string(self):
        self._test_add_check_metadata_list_id_or_mountpoint_is_not_string()

    def test_configure_add_same_dir_multiple_times(self):
        self._test_configure_add_same_dir_multiple_times()

    def test_configure_add_same_dir_multiple_times_same_priority(self):
        self._test_configure_add_same_dir_multiple_times_same_priority()

    def test_add_with_multiple_dirs(self):
        self._test_add_with_multiple_dirs()

    def test_add_with_multiple_dirs_storage_full(self):
        self._test_add_with_multiple_dirs_storage_full()

    def test_configure_add_with_file_perm(self):
        self._test_configure_add_with_file_perm()

    def test_configure_add_with_inaccessible_file_perm(self):
        self._test_configure_add_with_inaccessible_file_perm()

    def test_add_with_file_perm_for_group_other_users_access(self):
        self._test_add_with_file_perm_for_group_other_users_access()

    def test_add_with_file_perm_for_owner_users_access(self):
        self._test_add_with_file_perm_for_owner_users_access()

    def test_configure_add_chunk_size(self):
        self._test_configure_add_chunk_size()

    def test_timeout_executor_disabled_by_default(self):
        self.store.configure()
        self.assertEqual(self.store.timeout_executor.timeout, 0)
        self.assertIsInstance(self.store.timeout_executor.executor,
                              futurist.SynchronousExecutor)

    def test_timeout_executor_enabled_with_timeout(self):
        self.config(filesystem_store_timeout=30,
                    filesystem_store_thread_pool_size=5,
                    filesystem_store_threadpool_threshold=80,
                    group="glance_store")
        self.store.configure()
        self.assertEqual(self.store.timeout_executor.timeout, 30)
        self.assertEqual(self.store.timeout_executor.pool_size, 5)
        self.assertEqual(self.store.timeout_executor.threshold, 80)
        self.assertIsNotNone(self.store.timeout_executor.executor)

    def test_delete_with_timeout_success(self):
        image_id = str(uuid.uuid4())
        file_contents = b"test content"
        image_file = io.BytesIO(file_contents)
        uri, size, checksum, multihash, _ = self.store.add(
            image_id, image_file, len(file_contents), self.hash_algo)
        self.config(filesystem_store_timeout=30, group="glance_store")
        self.store.configure()
        loc = location.get_location_from_uri(uri, conf=self.conf)
        self.store.delete(loc)
        loc2 = location.get_location_from_uri(uri, conf=self.conf)
        self.assertRaises(exceptions.NotFound, self.store.get, loc2)

    def test_delete_with_timeout_failure(self):
        image_id = str(uuid.uuid4())
        file_contents = b"test content"
        image_file = io.BytesIO(file_contents)
        uri, size, checksum, multihash, _ = self.store.add(
            image_id, image_file, len(file_contents), self.hash_algo)
        self.config(filesystem_store_timeout=1, group="glance_store")
        self.store.configure()
        loc = location.get_location_from_uri(uri, conf=self.conf)
        with mock.patch('os.unlink') as mock_unlink:

            def slow_unlink(path):
                time.sleep(2)

            mock_unlink.side_effect = slow_unlink
            self.assertRaises(exceptions.TimeoutError, self.store.delete, loc)

    def test_get_size_with_timeout_success(self):
        image_id = str(uuid.uuid4())
        file_contents = b"test content"
        image_file = io.BytesIO(file_contents)
        uri, size, checksum, multihash, _ = self.store.add(
            image_id, image_file, len(file_contents), self.hash_algo)
        self.config(filesystem_store_timeout=30, group="glance_store")
        self.store.configure()
        loc = location.get_location_from_uri(uri, conf=self.conf)
        result_size = self.store.get_size(loc)
        self.assertEqual(result_size, len(file_contents))

    def test_get_size_with_timeout_failure(self):
        image_id = str(uuid.uuid4())
        file_contents = b"test content"
        image_file = io.BytesIO(file_contents)
        uri, size, checksum, multihash, _ = self.store.add(
            image_id, image_file, len(file_contents), self.hash_algo)
        self.config(filesystem_store_timeout=1, group="glance_store")
        self.store.configure()
        loc = location.get_location_from_uri(uri, conf=self.conf)
        with mock.patch('os.path.getsize') as mock_getsize:
            def slow_getsize(path):
                time.sleep(2)
                return len(file_contents)
            mock_getsize.side_effect = slow_getsize
            self.assertRaises(exceptions.TimeoutError,
                              self.store.get_size, loc)

    def test_get_capacity_info_with_timeout_success(self):
        self.config(filesystem_store_timeout=30, group="glance_store")
        self.store.configure()
        capacity = self.store._get_capacity_info(self.test_dir)
        self.assertGreaterEqual(capacity, 0)

    def test_get_capacity_info_with_timeout_failure(self):
        self.config(filesystem_store_timeout=1, group="glance_store")
        self.store.configure()
        with mock.patch('os.statvfs') as mock_statvfs:

            def slow_statvfs(path):
                time.sleep(2)

                class FakeStatvfs:
                    f_bavail = 1000
                    f_bsize = 4096

                return FakeStatvfs()

            mock_statvfs.side_effect = slow_statvfs
            self.assertRaises(exceptions.TimeoutError,
                              self.store._get_capacity_info,
                              self.test_dir)

    def test_timeout_executor_no_overhead_when_disabled(self):
        image_id = str(uuid.uuid4())
        file_contents = b"test content"
        image_file = io.BytesIO(file_contents)
        uri, size, checksum, multihash, _ = self.store.add(
            image_id, image_file, len(file_contents), self.hash_algo)
        self.config(filesystem_store_timeout=0, group="glance_store")
        self.store.configure()
        self.assertIsInstance(self.store.timeout_executor.executor,
                              futurist.SynchronousExecutor)
        loc = location.get_location_from_uri(uri, conf=self.conf)
        result_size = self.store.get_size(loc)
        self.assertEqual(result_size, len(file_contents))


class TestTimeoutExecutor(base.StoreBaseTest):
    """Test TimeoutExecutor utility class"""

    def test_thread_pool_threshold_warning(self):
        """Test that warning is logged when thread pool usage exceeds
        threshold
        """
        pool_size = 3
        threshold = 66
        timeout = 10

        executor = filesystem.TimeoutExecutor(timeout, pool_size, threshold)
        event = threading.Event()

        def blocking_func():
            event.wait()

        with mock.patch.object(filesystem.LOG, 'warning') as mock_warning:
            def worker():
                executor.execute(blocking_func)

            threads = []
            for i in range(2):
                t = threading.Thread(target=worker)
                t.start()
                threads.append(t)

            time.sleep(0.2)
            executor.execute(lambda: 1)

            mock_warning.assert_called_once()
            call_args = mock_warning.call_args[0][0]
            self.assertIn('Thread pool usage', call_args)
            self.assertIn('threshold', call_args)
            self.assertIn('%d%%' % threshold, call_args)
            self.assertIn('Pool may start blocking', call_args)

            event.set()
            for t in threads:
                t.join(timeout=5)

        executor.shutdown(wait=True)

    def test_timeout_behavior(self):
        """Test that operations timeout cleanly when timeout is exceeded"""
        pool_size = 1
        threshold = 80
        timeout = 0.1

        executor = filesystem.TimeoutExecutor(timeout, pool_size, threshold)
        event = threading.Event()

        def blocking_func():
            event.wait()

        self.assertRaises(exceptions.TimeoutError,
                          executor.execute, blocking_func)

        event.set()

        executor.shutdown(wait=True)