File size: 5,768 Bytes
d439dc1 | 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 | # -*- coding: utf-8 -*-
# MinIO Python Library for Amazon S3 Compatible Cloud Storage,
# (C) 2015, 2016, 2017 MinIO, 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.
from unittest import TestCase
from urllib.parse import urlunsplit
from nose.tools import eq_, raises
from minio import Minio
from minio import __version__ as minio_version
from minio.api import _DEFAULT_USER_AGENT
from minio.definitions import BaseURL
from minio.helpers import check_bucket_name
class ValidBucketName(TestCase):
@raises(ValueError)
def test_bucket_name(self):
check_bucket_name('bucketName=', False)
@raises(ValueError)
def test_bucket_name_invalid_characters(self):
check_bucket_name('$$$bcuket', False)
@raises(ValueError)
def test_bucket_name_length(self):
check_bucket_name('dd', False)
@raises(ValueError)
def test_bucket_name_periods(self):
check_bucket_name('dd..mybucket', False)
@raises(ValueError)
def test_bucket_name_begins_period(self):
check_bucket_name('.ddmybucket', False)
class GetURLTests(TestCase):
def test_url_build(self):
url = BaseURL('http://localhost:9000', None)
eq_(
urlunsplit(url.build("GET", None, bucket_name='bucket-name')),
'http://localhost:9000/bucket-name',
)
eq_(
urlunsplit(
url.build("GET", None, bucket_name='bucket-name',
object_name='objectName'),
),
'http://localhost:9000/bucket-name/objectName',
)
eq_(
urlunsplit(
url.build("GET", 'us-east-1', bucket_name='bucket-name',
object_name='objectName',
query_params={'foo': 'bar'}),
),
'http://localhost:9000/bucket-name/objectName?foo=bar',
)
eq_(
urlunsplit(
url.build("GET", 'us-east-1', bucket_name='bucket-name',
object_name='objectName',
query_params={'foo': 'bar', 'b': 'c', 'a': 'b'}),
),
'http://localhost:9000/bucket-name/objectName?a=b&b=c&foo=bar',
)
eq_(
urlunsplit(
url.build("GET", 'us-east-1', bucket_name='bucket-name',
object_name='path/to/objectName/'),
),
'http://localhost:9000/bucket-name/path/to/objectName/',
)
# S3 urls.
url = BaseURL('https://s3.amazonaws.com', None)
eq_(
urlunsplit(url.build("GET", "us-east-1")),
'https://s3.us-east-1.amazonaws.com/',
)
eq_(
urlunsplit(
url.build("GET", "eu-west-1", bucket_name='my.bucket.name'),
),
'https://s3.eu-west-1.amazonaws.com/my.bucket.name',
)
eq_(
urlunsplit(
url.build("GET", 'us-west-2', bucket_name='bucket-name',
object_name='objectName'),
),
'https://bucket-name.s3.us-west-2.amazonaws.com/objectName',
)
eq_(
urlunsplit(
url.build("GET", "us-east-1", bucket_name='bucket-name',
object_name='objectName',
query_params={'versionId': 'uuid'}),
),
"https://bucket-name.s3.us-east-1.amazonaws.com"
"/objectName?versionId=uuid",
)
@raises(TypeError)
def test_minio_requires_string(self):
Minio(10)
@raises(ValueError)
def test_minio_requires_hostname(self):
Minio('http://')
class UserAgentTests(TestCase):
def test_default_user_agent(self):
client = Minio('localhost')
eq_(client._user_agent, _DEFAULT_USER_AGENT)
def test_set_app_info(self):
client = Minio('localhost')
expected_user_agent = _DEFAULT_USER_AGENT + ' hello/' + minio_version
client.set_app_info('hello', minio_version)
eq_(client._user_agent, expected_user_agent)
@raises(ValueError)
def test_set_app_info_requires_non_empty_name(self):
client = Minio('localhost:9000')
client.set_app_info('', minio_version)
@raises(ValueError)
def test_set_app_info_requires_non_empty_version(self):
client = Minio('localhost:9000')
client.set_app_info('hello', '')
class GetRegionTests(TestCase):
def test_region_none(self):
region = BaseURL('http://localhost', None).region
eq_(region, None)
def test_region_us_west(self):
region = BaseURL('https://s3-us-west-1.amazonaws.com', None).region
eq_(region, None)
def test_region_with_dot(self):
region = BaseURL('https://s3.us-west-1.amazonaws.com', None).region
eq_(region, 'us-west-1')
def test_region_with_dualstack(self):
region = BaseURL(
'https://s3.dualstack.us-west-1.amazonaws.com', None,
).region
eq_(region, 'us-west-1')
def test_region_us_east(self):
region = BaseURL('http://s3.amazonaws.com', None).region
eq_(region, None)
@raises(ValueError)
def test_invalid_value(self):
BaseURL(None, None)
|