636b922f3b
This attempts to import openstack/swift3 package into swift upstream repository, namespace. This is almost simple porting except following items. 1. Rename swift3 namespace to swift.common.middleware.s3api 1.1 Rename also some conflicted class names (e.g. Request/Response) 2. Port unittests to test/unit/s3api dir to be able to run on the gate. 3. Port functests to test/functional/s3api and setup in-process testing 4. Port docs to doc dir, then address the namespace change. 5. Use get_logger() instead of global logger instance 6. Avoid global conf instance Ex. fix various minor issue on those steps (e.g. packages, dependencies, deprecated things) The details and patch references in the work on feature/s3api are listed at https://trello.com/b/ZloaZ23t/s3api (completed board) Note that, because this is just a porting, no new feature is developed since the last swift3 release, and in the future work, Swift upstream may continue to work on remaining items for further improvements and the best compatibility of Amazon S3. Please read the new docs for your deployment and keep track to know what would be changed in the future releases. Change-Id: Ib803ea89cfee9a53c429606149159dd136c036fd Co-Authored-By: Thiago da Silva <thiago@redhat.com> Co-Authored-By: Tim Burke <tim.burke@gmail.com>
101 lines
3.4 KiB
Python
101 lines
3.4 KiB
Python
# Copyright (c) 2015 OpenStack Foundation
|
|
#
|
|
# 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 unittest2
|
|
import os
|
|
|
|
import test.functional as tf
|
|
|
|
from swift.common.middleware.s3api.etree import fromstring
|
|
|
|
from test.functional.s3api import S3ApiBase
|
|
from test.functional.s3api.s3_test_client import Connection
|
|
from test.functional.s3api.utils import get_error_code
|
|
|
|
|
|
def setUpModule():
|
|
tf.setup_package()
|
|
|
|
|
|
def tearDownModule():
|
|
tf.teardown_package()
|
|
|
|
|
|
class TestS3ApiService(S3ApiBase):
|
|
def setUp(self):
|
|
super(TestS3ApiService, self).setUp()
|
|
|
|
def test_service(self):
|
|
# GET Service(without bucket)
|
|
status, headers, body = self.conn.make_request('GET')
|
|
self.assertEqual(status, 200)
|
|
|
|
self.assertCommonResponseHeaders(headers)
|
|
self.assertTrue(headers['content-type'] is not None)
|
|
# TODO; requires consideration
|
|
# self.assertEqual(headers['transfer-encoding'], 'chunked')
|
|
|
|
elem = fromstring(body, 'ListAllMyBucketsResult')
|
|
buckets = elem.findall('./Buckets/Bucket')
|
|
self.assertEqual(list(buckets), [])
|
|
owner = elem.find('Owner')
|
|
self.assertEqual(self.conn.user_id, owner.find('ID').text)
|
|
self.assertEqual(self.conn.user_id, owner.find('DisplayName').text)
|
|
|
|
# GET Service(with Bucket)
|
|
req_buckets = ('bucket', 'bucket2')
|
|
for bucket in req_buckets:
|
|
self.conn.make_request('PUT', bucket)
|
|
status, headers, body = self.conn.make_request('GET')
|
|
self.assertEqual(status, 200)
|
|
|
|
elem = fromstring(body, 'ListAllMyBucketsResult')
|
|
resp_buckets = elem.findall('./Buckets/Bucket')
|
|
self.assertEqual(len(list(resp_buckets)), 2)
|
|
for b in resp_buckets:
|
|
self.assertTrue(b.find('Name').text in req_buckets)
|
|
self.assertTrue(b.find('CreationDate') is not None)
|
|
|
|
def test_service_error_signature_not_match(self):
|
|
auth_error_conn = Connection(aws_secret_key='invalid')
|
|
status, headers, body = auth_error_conn.make_request('GET')
|
|
self.assertEqual(get_error_code(body), 'SignatureDoesNotMatch')
|
|
self.assertEqual(headers['content-type'], 'application/xml')
|
|
|
|
def test_service_error_no_date_header(self):
|
|
# Without x-amz-date/Date header, that makes 403 forbidden
|
|
status, headers, body = self.conn.make_request(
|
|
'GET', headers={'Date': '', 'x-amz-date': ''})
|
|
self.assertEqual(status, 403)
|
|
self.assertEqual(get_error_code(body), 'AccessDenied')
|
|
self.assertIn('AWS authentication requires a valid Date '
|
|
'or x-amz-date header', body)
|
|
|
|
|
|
class TestS3ApiServiceSigV4(TestS3ApiService):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
os.environ['S3_USE_SIGV4'] = "True"
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
del os.environ['S3_USE_SIGV4']
|
|
|
|
def setUp(self):
|
|
super(TestS3ApiServiceSigV4, self).setUp()
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|