4eade5480e
Co-Authored-By: Andrey Pavlov <apavlov@mirantis.com> Change-Id: I6c64f4b975d12ccaca564d248f9ccbb02615e19f Closes-bug: #1371856
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# 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 mock
|
|
|
|
from sahara.swift import swift_helper as h
|
|
from sahara.tests.unit import base
|
|
|
|
|
|
GENERAL_PREFIX = "fs.swift."
|
|
SERVICE_PREFIX = "service.sahara."
|
|
|
|
GENERAL = ["impl", "connect.timeout", "socket.timeout",
|
|
"connect.retry.count", "connect.throttle.delay",
|
|
"blocksize", "partsize", "requestsize"]
|
|
|
|
SERVICE_SPECIFIC = ["auth.url", "tenant",
|
|
"username", "password", "http.port",
|
|
"https.port", "public", "location-aware",
|
|
"region", "apikey"]
|
|
|
|
|
|
class SwiftIntegrationTestCase(base.SaharaTestCase):
|
|
@mock.patch('sahara.utils.openstack.base.retrieve_auth_url')
|
|
def test_get_swift_configs(self, url_for_mock):
|
|
url_for_mock.return_value = 'http://localhost:5000/v2.0'
|
|
self.setup_context(tenant_name='test_tenant')
|
|
self.override_config("os_region_name", 'regionOne')
|
|
|
|
result = h.get_swift_configs()
|
|
self.assertEqual(8, len(result))
|
|
self.assertIn({'name': "fs.swift.service.sahara.tenant",
|
|
'value': 'test_tenant', 'description': ''}, result)
|
|
self.assertIn({'name': "fs.swift.service.sahara.http.port",
|
|
'value': '8080', 'description': ''}, result)
|
|
self.assertIn({'name': "fs.swift.service.sahara.region",
|
|
'value': 'regionOne', 'description': ''}, result)
|