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
|
# 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 S3 backend store"""
from glance_store._drivers import s3
from glance_store.tests import base
from glance_store.tests.unit import test_s3_store_base
from glance_store.tests.unit import test_store_capabilities
S3_CONF = {
's3_store_access_key': 'user',
's3_store_secret_key': 'key',
's3_store_region_name': '',
's3_store_host': 'localhost',
's3_store_bucket': 'glance',
's3_store_large_object_size': 9, # over 9MB is large
's3_store_large_object_chunk_size': 6, # part size is 6MB
's3_store_enable_data_integrity_protection': False,
's3_store_request_checksum_calculation': 'when_required',
's3_store_response_checksum_validation': 'when_required',
}
class TestStore(base.StoreBaseTest,
test_s3_store_base.TestS3StoreBase,
test_store_capabilities.TestStoreCapabilitiesChecking):
def setUp(self):
"""Establish a clean test environment."""
super(TestStore, self).setUp()
# Set default values for multistore and backend
self.multistore = False
self.backend = 'glance_store'
self.store = s3.Store(self.conf)
self.config(**S3_CONF)
self.store.configure()
self.register_store_schemes(self.store, 's3')
self.hash_algo = 'sha256'
def test_get_invalid_bucket_name(self):
self._test_get_invalid_bucket_name()
def test_client_custom_region_name(self):
self._test_client_custom_region_name()
def test_client_custom_ca_cert_bundle(self):
self._test_client_custom_ca_cert_bundle()
def test_get(self):
self._test_get()
def test_partial_get(self):
self._test_partial_get()
def test_get_non_existing(self):
self._test_get_non_existing()
def test_add_singlepart(self):
self._test_add_singlepart()
def test_add_singlepart_size_exceeding_max_size(self):
self._test_add_singlepart_size_exceeding_max_size()
def test_add_singlepart_write_less_than_declared(self):
self._test_add_singlepart_write_less_than_declared()
def test_add_singlepart_bigger_than_write_chunk(self):
self._test_add_singlepart_bigger_than_write_chunk()
def test_add_with_verifier(self):
self._test_add_with_verifier()
def test_add_multipart(self):
self._test_add_multipart()
def test_add_multipart_size_exceeding_max_size(self):
self._test_add_multipart_size_exceeding_max_size()
def test_add_multipart_write_less_than_declared(self):
self._test_add_multipart_write_less_than_declared()
def test_add_already_existing(self):
self._test_add_already_existing()
def test_no_access_key(self):
self._test_no_access_key()
def test_no_secret_key(self):
self._test_no_secret_key()
def test_no_host(self):
self._test_no_host()
def test_no_bucket(self):
self._test_no_bucket()
def test_delete_non_existing(self):
self._test_delete_non_existing()
def test_get_s3_good_location(self):
self._test_get_s3_good_location()
def test_get_my_object_storage_location(self):
self._test_get_my_object_storage_location()
def test_config_with_data_integrity_protection_disabled(self):
self._test_config_with_data_integrity_protection_disabled()
def test_config_with_data_integrity_protection_enabled(self):
self._test_config_with_data_integrity_protection_enabled()
def test_config_fallback_for_old_boto3(self):
self._test_config_fallback_for_old_boto3()
|