515 lines
23 KiB
Python
515 lines
23 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, tostring, Element, \
|
|
SubElement
|
|
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 TestS3ApiBucket(S3ApiBase):
|
|
def setUp(self):
|
|
super(TestS3ApiBucket, self).setUp()
|
|
|
|
def _gen_location_xml(self, location):
|
|
elem = Element('CreateBucketConfiguration')
|
|
SubElement(elem, 'LocationConstraint').text = location
|
|
return tostring(elem)
|
|
|
|
def test_bucket(self):
|
|
bucket = 'bucket'
|
|
max_bucket_listing = tf.cluster_info['s3api'].get(
|
|
'max_bucket_listing', 1000)
|
|
|
|
# PUT Bucket
|
|
status, headers, body = self.conn.make_request('PUT', bucket)
|
|
self.assertEqual(status, 200)
|
|
|
|
self.assertCommonResponseHeaders(headers)
|
|
self.assertIn(headers['location'], (
|
|
'/' + bucket, # swob won't touch it...
|
|
# but webob (which we get because of auth_token) *does*
|
|
'http://%s%s/%s' % (
|
|
self.conn.host,
|
|
'' if self.conn.port == 80 else ':%d' % self.conn.port,
|
|
bucket),
|
|
# This is all based on the Host header the client provided,
|
|
# and boto will double-up ports for sig v4. See
|
|
# - https://github.com/boto/boto/issues/2623
|
|
# - https://github.com/boto/boto/issues/3716
|
|
# with proposed fixes at
|
|
# - https://github.com/boto/boto/pull/3513
|
|
# - https://github.com/boto/boto/pull/3676
|
|
'http://%s%s:%d/%s' % (
|
|
self.conn.host,
|
|
'' if self.conn.port == 80 else ':%d' % self.conn.port,
|
|
self.conn.port,
|
|
bucket),
|
|
))
|
|
self.assertEqual(headers['content-length'], '0')
|
|
|
|
# GET Bucket(Without Object)
|
|
status, headers, body = self.conn.make_request('GET', bucket)
|
|
self.assertEqual(status, 200)
|
|
|
|
self.assertCommonResponseHeaders(headers)
|
|
self.assertIsNotNone(headers['content-type'])
|
|
self.assertEqual(headers['content-length'], str(len(body)))
|
|
# TODO; requires consideration
|
|
# self.assertEqual(headers['transfer-encoding'], 'chunked')
|
|
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('Name').text, bucket)
|
|
self.assertIsNone(elem.find('Prefix').text)
|
|
self.assertIsNone(elem.find('Marker').text)
|
|
self.assertEqual(
|
|
elem.find('MaxKeys').text, str(max_bucket_listing))
|
|
self.assertEqual(elem.find('IsTruncated').text, 'false')
|
|
objects = elem.findall('./Contents')
|
|
self.assertEqual(list(objects), [])
|
|
|
|
# GET Bucket(With Object)
|
|
req_objects = ('object', 'object2')
|
|
for obj in req_objects:
|
|
self.conn.make_request('PUT', bucket, obj)
|
|
status, headers, body = self.conn.make_request('GET', bucket)
|
|
self.assertEqual(status, 200)
|
|
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('Name').text, bucket)
|
|
self.assertIsNone(elem.find('Prefix').text)
|
|
self.assertIsNone(elem.find('Marker').text)
|
|
self.assertEqual(elem.find('MaxKeys').text,
|
|
str(max_bucket_listing))
|
|
self.assertEqual(elem.find('IsTruncated').text, 'false')
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), 2)
|
|
for o in resp_objects:
|
|
self.assertIn(o.find('Key').text, req_objects)
|
|
self.assertIsNotNone(o.find('LastModified').text)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertIsNotNone(o.find('ETag').text)
|
|
self.assertIsNotNone(o.find('Size').text)
|
|
self.assertIsNotNone(o.find('StorageClass').text)
|
|
self.assertEqual(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertEqual(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
|
|
# HEAD Bucket
|
|
status, headers, body = self.conn.make_request('HEAD', bucket)
|
|
self.assertEqual(status, 200)
|
|
|
|
self.assertCommonResponseHeaders(headers)
|
|
self.assertIsNotNone(headers['content-type'])
|
|
self.assertEqual(headers['content-length'], str(len(body)))
|
|
# TODO; requires consideration
|
|
# self.assertEqual(headers['transfer-encoding'], 'chunked')
|
|
|
|
# DELETE Bucket
|
|
for obj in req_objects:
|
|
self.conn.make_request('DELETE', bucket, obj)
|
|
status, headers, body = self.conn.make_request('DELETE', bucket)
|
|
self.assertEqual(status, 204)
|
|
|
|
self.assertCommonResponseHeaders(headers)
|
|
|
|
def test_put_bucket_error(self):
|
|
status, headers, body = \
|
|
self.conn.make_request('PUT', 'bucket+invalid')
|
|
self.assertEqual(get_error_code(body), 'InvalidBucketName')
|
|
|
|
auth_error_conn = Connection(aws_secret_key='invalid')
|
|
status, headers, body = auth_error_conn.make_request('PUT', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'SignatureDoesNotMatch')
|
|
|
|
self.conn.make_request('PUT', 'bucket')
|
|
status, headers, body = self.conn.make_request('PUT', 'bucket')
|
|
self.assertEqual(status, 409)
|
|
self.assertEqual(get_error_code(body), 'BucketAlreadyExists')
|
|
|
|
if 's3_access_key2' not in tf.config or \
|
|
's3_secret_key2' not in tf.config:
|
|
raise tf.SkipTest(
|
|
'Cannot test for BucketAlreadyExists with second user; need '
|
|
's3_access_key2 and s3_secret_key2 configured')
|
|
# Other users of the same account get the same error
|
|
conn2 = Connection(tf.config['s3_access_key2'],
|
|
tf.config['s3_secret_key2'],
|
|
tf.config['s3_access_key2'])
|
|
status, headers, body = conn2.make_request('PUT', 'bucket')
|
|
self.assertEqual(status, 409)
|
|
self.assertEqual(get_error_code(body), 'BucketAlreadyExists')
|
|
|
|
if 's3_access_key3' not in tf.config or \
|
|
's3_secret_key3' not in tf.config:
|
|
raise tf.SkipTest('Cannot test for AccessDenied; need '
|
|
's3_access_key3 and s3_secret_key3 configured')
|
|
# If the user can't create buckets, they shouldn't even know
|
|
# whether the bucket exists.
|
|
conn3 = Connection(tf.config['s3_access_key3'],
|
|
tf.config['s3_secret_key3'],
|
|
tf.config['s3_access_key3'])
|
|
status, headers, body = conn3.make_request('PUT', 'bucket')
|
|
self.assertEqual(status, 403)
|
|
self.assertEqual(get_error_code(body), 'AccessDenied')
|
|
|
|
def test_put_bucket_with_LocationConstraint(self):
|
|
bucket = 'bucket'
|
|
xml = self._gen_location_xml('US')
|
|
status, headers, body = \
|
|
self.conn.make_request('PUT', bucket, body=xml)
|
|
self.assertEqual(status, 200)
|
|
|
|
def test_get_bucket_error(self):
|
|
self.conn.make_request('PUT', 'bucket')
|
|
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', 'bucket+invalid')
|
|
self.assertEqual(get_error_code(body), 'InvalidBucketName')
|
|
|
|
auth_error_conn = Connection(aws_secret_key='invalid')
|
|
status, headers, body = auth_error_conn.make_request('GET', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'SignatureDoesNotMatch')
|
|
|
|
status, headers, body = self.conn.make_request('GET', 'nothing')
|
|
self.assertEqual(get_error_code(body), 'NoSuchBucket')
|
|
|
|
def _prepare_test_get_bucket(self, bucket, objects):
|
|
self.conn.make_request('PUT', bucket)
|
|
for obj in objects:
|
|
self.conn.make_request('PUT', bucket, obj)
|
|
|
|
def test_get_bucket_with_delimiter(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
delimiter = '/'
|
|
query = 'delimiter=%s' % delimiter
|
|
expect_objects = ('object', 'object2')
|
|
expect_prefixes = ('dir/', 'subdir/', 'subdir2/')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('Delimiter').text, delimiter)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertIsNotNone(o.find('LastModified').text)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertIsNotNone(o.find('ETag').text)
|
|
self.assertIsNotNone(o.find('Size').text)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertEqual(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertEqual(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
resp_prefixes = elem.findall('CommonPrefixes')
|
|
self.assertEqual(len(resp_prefixes), len(expect_prefixes))
|
|
for i, p in enumerate(resp_prefixes):
|
|
self.assertEqual(p.find('./Prefix').text, expect_prefixes[i])
|
|
|
|
def test_get_bucket_with_encoding_type(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
encoding_type = 'url'
|
|
query = 'encoding-type=%s' % encoding_type
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('EncodingType').text, encoding_type)
|
|
|
|
def test_get_bucket_with_marker(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
marker = 'object'
|
|
query = 'marker=%s' % marker
|
|
expect_objects = ('object2', 'subdir/object', 'subdir2/object')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('Marker').text, marker)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertIsNotNone(o.find('LastModified').text)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertIsNotNone(o.find('ETag').text)
|
|
self.assertIsNotNone(o.find('Size').text)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertEqual(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertEqual(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
|
|
def test_get_bucket_with_max_keys(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
max_keys = '2'
|
|
query = 'max-keys=%s' % max_keys
|
|
expect_objects = ('dir/subdir/object', 'object')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('MaxKeys').text, max_keys)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertIsNotNone(o.find('LastModified').text)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertIsNotNone(o.find('ETag').text)
|
|
self.assertIsNotNone(o.find('Size').text)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertEqual(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertEqual(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
|
|
def test_get_bucket_with_prefix(self):
|
|
bucket = 'bucket'
|
|
req_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, req_objects)
|
|
|
|
prefix = 'object'
|
|
query = 'prefix=%s' % prefix
|
|
expect_objects = ('object', 'object2')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('Prefix').text, prefix)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertIsNotNone(o.find('LastModified').text)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertIsNotNone(o.find('ETag').text)
|
|
self.assertIsNotNone(o.find('Size').text)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertEqual(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertEqual(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
|
|
def test_get_bucket_v2_with_start_after(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
marker = 'object'
|
|
query = 'list-type=2&start-after=%s' % marker
|
|
expect_objects = ('object2', 'subdir/object', 'subdir2/object')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('StartAfter').text, marker)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertTrue(o.find('LastModified').text is not None)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertTrue(o.find('ETag').text is not None)
|
|
self.assertTrue(o.find('Size').text is not None)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertIsNone(o.find('Owner/ID'))
|
|
self.assertIsNone(o.find('Owner/DisplayName'))
|
|
|
|
def test_get_bucket_v2_with_fetch_owner(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
query = 'list-type=2&fetch-owner=true'
|
|
expect_objects = ('dir/subdir/object', 'object', 'object2',
|
|
'subdir/object', 'subdir2/object')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('KeyCount').text, '5')
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertTrue(o.find('LastModified').text is not None)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertTrue(o.find('ETag').text is not None)
|
|
self.assertTrue(o.find('Size').text is not None)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertTrue(o.find('Owner/ID').text, self.conn.user_id)
|
|
self.assertTrue(o.find('Owner/DisplayName').text,
|
|
self.conn.user_id)
|
|
|
|
def test_get_bucket_v2_with_continuation_token(self):
|
|
bucket = 'bucket'
|
|
put_objects = ('object', 'object2', 'subdir/object', 'subdir2/object',
|
|
'dir/subdir/object')
|
|
self._prepare_test_get_bucket(bucket, put_objects)
|
|
|
|
query = 'list-type=2&max-keys=3'
|
|
expect_objects = ('dir/subdir/object', 'object', 'object2')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('MaxKeys').text, '3')
|
|
self.assertEqual(elem.find('KeyCount').text, '3')
|
|
self.assertEqual(elem.find('IsTruncated').text, 'true')
|
|
next_cont_token_elem = elem.find('NextContinuationToken')
|
|
self.assertIsNotNone(next_cont_token_elem)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertTrue(o.find('LastModified').text is not None)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertTrue(o.find('ETag').text is not None)
|
|
self.assertTrue(o.find('Size').text is not None)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertIsNone(o.find('Owner/ID'))
|
|
self.assertIsNone(o.find('Owner/DisplayName'))
|
|
|
|
query = 'list-type=2&max-keys=3&continuation-token=%s' % \
|
|
next_cont_token_elem.text
|
|
expect_objects = ('subdir/object', 'subdir2/object')
|
|
status, headers, body = \
|
|
self.conn.make_request('GET', bucket, query=query)
|
|
self.assertEqual(status, 200)
|
|
elem = fromstring(body, 'ListBucketResult')
|
|
self.assertEqual(elem.find('MaxKeys').text, '3')
|
|
self.assertEqual(elem.find('KeyCount').text, '2')
|
|
self.assertEqual(elem.find('IsTruncated').text, 'false')
|
|
self.assertIsNone(elem.find('NextContinuationToken'))
|
|
cont_token_elem = elem.find('ContinuationToken')
|
|
self.assertEqual(cont_token_elem.text, next_cont_token_elem.text)
|
|
resp_objects = elem.findall('./Contents')
|
|
self.assertEqual(len(list(resp_objects)), len(expect_objects))
|
|
for i, o in enumerate(resp_objects):
|
|
self.assertEqual(o.find('Key').text, expect_objects[i])
|
|
self.assertTrue(o.find('LastModified').text is not None)
|
|
self.assertRegexpMatches(
|
|
o.find('LastModified').text,
|
|
r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$')
|
|
self.assertTrue(o.find('ETag').text is not None)
|
|
self.assertTrue(o.find('Size').text is not None)
|
|
self.assertEqual(o.find('StorageClass').text, 'STANDARD')
|
|
self.assertIsNone(o.find('Owner/ID'))
|
|
self.assertIsNone(o.find('Owner/DisplayName'))
|
|
|
|
def test_head_bucket_error(self):
|
|
self.conn.make_request('PUT', 'bucket')
|
|
|
|
status, headers, body = \
|
|
self.conn.make_request('HEAD', 'bucket+invalid')
|
|
self.assertEqual(status, 400)
|
|
self.assertEqual(body, '') # sanity
|
|
|
|
auth_error_conn = Connection(aws_secret_key='invalid')
|
|
status, headers, body = \
|
|
auth_error_conn.make_request('HEAD', 'bucket')
|
|
self.assertEqual(status, 403)
|
|
self.assertEqual(body, '') # sanity
|
|
|
|
status, headers, body = self.conn.make_request('HEAD', 'nothing')
|
|
self.assertEqual(status, 404)
|
|
self.assertEqual(body, '') # sanity
|
|
|
|
def test_delete_bucket_error(self):
|
|
status, headers, body = \
|
|
self.conn.make_request('DELETE', 'bucket+invalid')
|
|
self.assertEqual(get_error_code(body), 'InvalidBucketName')
|
|
|
|
auth_error_conn = Connection(aws_secret_key='invalid')
|
|
status, headers, body = \
|
|
auth_error_conn.make_request('DELETE', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'SignatureDoesNotMatch')
|
|
|
|
status, headers, body = self.conn.make_request('DELETE', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'NoSuchBucket')
|
|
|
|
def test_bucket_invalid_method_error(self):
|
|
# non existed verb in the controller
|
|
status, headers, body = \
|
|
self.conn.make_request('GETPUT', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'MethodNotAllowed')
|
|
# the method exists in the controller but deny as MethodNotAllowed
|
|
status, headers, body = \
|
|
self.conn.make_request('_delete_segments_bucket', 'bucket')
|
|
self.assertEqual(get_error_code(body), 'MethodNotAllowed')
|
|
|
|
|
|
class TestS3ApiBucketSigV4(TestS3ApiBucket):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
os.environ['S3_USE_SIGV4'] = "True"
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
del os.environ['S3_USE_SIGV4']
|
|
|
|
def setUp(self):
|
|
super(TestS3ApiBucket, self).setUp()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|