Merge pull request #1961 from gbataille/fix_1959_location_constraint_us_east_1
Fix 1959 location constraint us east 1
This commit is contained in:
commit
65364a8e71
3 changed files with 43 additions and 3 deletions
|
|
@ -977,6 +977,15 @@ def test_bucket_location():
|
|||
bucket.get_location().should.equal("us-west-2")
|
||||
|
||||
|
||||
@mock_s3_deprecated
|
||||
def test_bucket_location_us_east_1():
|
||||
cli = boto3.client('s3')
|
||||
bucket_name = 'mybucket'
|
||||
# No LocationConstraint ==> us-east-1
|
||||
cli.create_bucket(Bucket=bucket_name)
|
||||
cli.get_bucket_location(Bucket=bucket_name)['LocationConstraint'].should.equal(None)
|
||||
|
||||
|
||||
@mock_s3_deprecated
|
||||
def test_ranged_get():
|
||||
conn = boto.connect_s3()
|
||||
|
|
@ -1300,6 +1309,16 @@ def test_bucket_create_duplicate():
|
|||
exc.exception.response['Error']['Code'].should.equal('BucketAlreadyExists')
|
||||
|
||||
|
||||
@mock_s3
|
||||
def test_bucket_create_force_us_east_1():
|
||||
s3 = boto3.resource('s3', region_name='us-east-1')
|
||||
with assert_raises(ClientError) as exc:
|
||||
s3.create_bucket(Bucket="blah", CreateBucketConfiguration={
|
||||
'LocationConstraint': 'us-east-1',
|
||||
})
|
||||
exc.exception.response['Error']['Code'].should.equal('InvalidLocationConstraint')
|
||||
|
||||
|
||||
@mock_s3
|
||||
def test_boto3_bucket_create_eu_central():
|
||||
s3 = boto3.resource('s3', region_name='eu-central-1')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue