2015-02-20 19:50:49 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import boto
|
|
|
|
from boto.s3.connection import OrdinaryCallingFormat
|
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
from moto import mock_s3_deprecated
|
2015-02-20 19:50:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def create_connection(key=None, secret=None):
|
|
|
|
return boto.connect_s3(key, secret, calling_format=OrdinaryCallingFormat())
|
|
|
|
|
|
|
|
|
|
|
|
def test_bucketpath_combo_serial():
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_s3_deprecated
|
2015-02-20 19:50:49 +00:00
|
|
|
def make_bucket_path():
|
|
|
|
conn = create_connection()
|
|
|
|
conn.create_bucket('mybucketpath')
|
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_s3_deprecated
|
2015-02-20 19:50:49 +00:00
|
|
|
def make_bucket():
|
|
|
|
conn = boto.connect_s3('the_key', 'the_secret')
|
|
|
|
conn.create_bucket('mybucket')
|
|
|
|
|
|
|
|
make_bucket()
|
|
|
|
make_bucket_path()
|