2011-06-07 17:47:27 +00:00
from cStringIO import StringIO
2011-04-04 21:45:42 +00:00
import boto . exception
import boto . s3 . connection
2011-07-08 21:38:00 +00:00
import boto . s3 . acl
2016-08-05 15:51:48 +00:00
import boto . s3 . lifecycle
2011-04-04 21:45:42 +00:00
import bunch
2011-08-11 22:56:41 +00:00
import datetime
2013-07-27 03:33:48 +00:00
import time
2011-08-11 22:56:41 +00:00
import email . utils
import isodate
2011-06-10 18:51:18 +00:00
import nose
2011-04-18 16:58:10 +00:00
import operator
2011-06-28 19:49:20 +00:00
import socket
2011-07-14 23:26:46 +00:00
import ssl
2012-05-16 20:30:39 +00:00
import os
2012-10-15 17:59:10 +00:00
import requests
import base64
import hmac
import sha
import pytz
import json
2015-01-14 00:46:33 +00:00
import httplib2
2014-12-24 00:26:47 +00:00
import threading
2015-01-09 00:11:23 +00:00
import itertools
2015-02-27 19:50:55 +00:00
import string
import random
2015-09-09 19:28:32 +00:00
import re
2012-10-15 17:59:10 +00:00
import xml . etree . ElementTree as ET
2011-04-04 21:45:42 +00:00
2015-08-13 01:14:08 +00:00
from email . Utils import formatdate
2011-08-25 15:07:58 +00:00
from httplib import HTTPConnection , HTTPSConnection
2011-08-26 20:42:31 +00:00
from urlparse import urlparse
2011-08-25 15:07:58 +00:00
2011-04-04 21:45:42 +00:00
from nose . tools import eq_ as eq
from nose . plugins . attrib import attr
2013-07-29 20:17:46 +00:00
from nose . plugins . skip import SkipTest
2011-04-04 21:45:42 +00:00
2011-07-11 22:24:26 +00:00
from . utils import assert_raises
2014-12-23 02:19:44 +00:00
from . utils import generate_random
2013-08-29 22:37:15 +00:00
from . utils import region_sync_meta
2011-06-10 16:43:18 +00:00
import AnonymousAuth
2011-04-04 21:45:42 +00:00
2011-07-11 19:14:38 +00:00
from email . header import decode_header
2012-10-15 17:59:10 +00:00
from ordereddict import OrderedDict
2013-06-06 18:19:05 +00:00
from boto . s3 . cors import CORSConfiguration
2011-07-11 19:14:38 +00:00
2011-07-11 22:24:26 +00:00
from . import (
nuke_prefixed_buckets ,
get_new_bucket ,
2013-02-07 20:58:32 +00:00
get_new_bucket_name ,
2011-07-11 22:24:26 +00:00
s3 ,
2013-07-25 21:13:34 +00:00
targets ,
2011-07-11 22:24:26 +00:00
config ,
2011-07-13 21:49:07 +00:00
get_prefix ,
2014-10-03 22:09:27 +00:00
is_slow_backend ,
2015-06-15 05:18:07 +00:00
_make_request ,
_make_bucket_request ,
2011-07-11 22:24:26 +00:00
)
2011-04-04 21:45:42 +00:00
2011-07-11 22:24:26 +00:00
NONEXISTENT_EMAIL = ' doesnotexist@dreamhost.com.invalid '
2011-04-04 21:45:42 +00:00
2013-07-26 18:16:36 +00:00
def not_eq ( a , b ) :
assert a != b , " %r == %r " % ( a , b )
2011-04-04 21:45:42 +00:00
def check_access_denied ( fn , * args , * * kwargs ) :
e = assert_raises ( boto . exception . S3ResponseError , fn , * args , * * kwargs )
eq ( e . status , 403 )
eq ( e . reason , ' Forbidden ' )
eq ( e . error_code , ' AccessDenied ' )
2011-04-18 16:58:10 +00:00
def check_grants ( got , want ) :
"""
Check that grants list in got matches the dictionaries in want ,
in any order .
"""
eq ( len ( got ) , len ( want ) )
got = sorted ( got , key = operator . attrgetter ( ' id ' ) )
want = sorted ( want , key = operator . itemgetter ( ' id ' ) )
2011-07-11 20:19:54 +00:00
for g , w in zip ( got , want ) :
2011-04-18 16:58:10 +00:00
w = dict ( w )
eq ( g . permission , w . pop ( ' permission ' ) )
eq ( g . id , w . pop ( ' id ' ) )
eq ( g . display_name , w . pop ( ' display_name ' ) )
eq ( g . uri , w . pop ( ' uri ' ) )
eq ( g . email_address , w . pop ( ' email_address ' ) )
eq ( g . type , w . pop ( ' type ' ) )
eq ( w , { } )
2016-01-27 02:19:20 +00:00
def check_aws4_support ( ) :
if ' S3_USE_SIGV4 ' not in os . environ :
raise SkipTest
def tag ( * tags ) :
def wrap ( func ) :
for tag in tags :
setattr ( func , tag , True )
return func
return wrap
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' empty buckets return no contents ' )
2011-04-04 21:45:42 +00:00
def test_bucket_list_empty ( ) :
bucket = get_new_bucket ( )
l = bucket . list ( )
l = list ( l )
eq ( l , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' distinct buckets have different contents ' )
2011-10-05 23:04:20 +00:00
def test_bucket_list_distinct ( ) :
bucket1 = get_new_bucket ( )
bucket2 = get_new_bucket ( )
key = bucket1 . new_key ( ' asdf ' )
key . set_contents_from_string ( ' asdf ' )
l = bucket2 . list ( )
l = list ( l )
eq ( l , [ ] )
2011-08-08 22:14:31 +00:00
def _create_keys ( bucket = None , keys = [ ] ) :
2011-12-22 21:08:03 +00:00
"""
Populate a ( specified or new ) bucket with objects with
specified names ( and contents identical to their names ) .
"""
2011-08-08 22:14:31 +00:00
if bucket is None :
bucket = get_new_bucket ( )
2011-07-28 18:00:47 +00:00
for s in keys :
key = bucket . new_key ( s )
key . set_contents_from_string ( s )
2011-08-08 22:14:31 +00:00
return bucket
2011-08-10 18:40:46 +00:00
def _get_keys_prefixes ( li ) :
2011-12-22 21:08:03 +00:00
"""
figure out which of the strings in a list are actually keys
return lists of strings that are ( keys ) and are not ( prefixes )
"""
2011-08-10 18:40:46 +00:00
keys = [ x for x in li if isinstance ( x , boto . s3 . key . Key ) ]
prefixes = [ x for x in li if not isinstance ( x , boto . s3 . key . Key ) ]
return ( keys , prefixes )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' pagination w/max_keys=2, no marker ' )
2011-08-08 22:14:31 +00:00
def test_bucket_list_many ( ) :
bucket = _create_keys ( keys = [ ' foo ' , ' bar ' , ' baz ' ] )
2011-12-22 21:08:03 +00:00
# bucket.list() is high-level and will not let us set max-keys,
2011-07-28 18:00:47 +00:00
# using it would require using >1000 keys to test, and that would
# be too slow; use the lower-level call bucket.get_all_keys()
# instead
l = bucket . get_all_keys ( max_keys = 2 )
eq ( len ( l ) , 2 )
eq ( l . is_truncated , True )
names = [ e . name for e in l ]
eq ( names , [ ' bar ' , ' baz ' ] )
l = bucket . get_all_keys ( max_keys = 2 , marker = names [ - 1 ] )
eq ( len ( l ) , 1 )
eq ( l . is_truncated , False )
names = [ e . name for e in l ]
eq ( names , [ ' foo ' ] )
2011-08-08 22:14:31 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' prefixes in multi-component object names ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_basic ( ) :
2011-08-08 22:14:31 +00:00
bucket = _create_keys ( keys = [ ' foo/bar ' , ' foo/baz/xyzzy ' , ' quux/thud ' , ' asdf ' ] )
2011-12-22 21:08:03 +00:00
# listings should treat / delimiter in a directory-like fashion
2011-08-08 22:14:31 +00:00
li = bucket . list ( delimiter = ' / ' )
2011-08-10 18:40:46 +00:00
eq ( li . delimiter , ' / ' )
2011-12-22 21:08:03 +00:00
# asdf is the only terminal object that should appear in the listing
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' asdf ' ] )
2011-08-08 22:14:31 +00:00
# In Amazon, you will have two CommonPrefixes elements, each with a single
# prefix. According to Amazon documentation
# (http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html),
# the response's CommonPrefixes should contain all the prefixes, which DHO
# does.
#
# Unfortunately, boto considers a CommonPrefixes element as a prefix, and
# will store the last Prefix element within a CommonPrefixes element,
# effectively overwriting any other prefixes.
2011-12-22 21:08:03 +00:00
# the other returned values should be the pure prefixes foo/ and quux/
2011-08-10 18:40:46 +00:00
prefix_names = [ e . name for e in prefixes ]
eq ( len ( prefixes ) , 2 )
eq ( prefix_names , [ ' foo/ ' , ' quux/ ' ] )
2011-08-08 22:14:31 +00:00
2014-07-18 20:51:22 +00:00
def validate_bucket_list ( bucket , prefix , delimiter , marker , max_keys ,
is_truncated , check_objs , check_prefixes , next_marker ) :
#
li = bucket . get_all_keys ( delimiter = delimiter , prefix = prefix , max_keys = max_keys , marker = marker )
eq ( li . is_truncated , is_truncated )
eq ( li . next_marker , next_marker )
( keys , prefixes ) = _get_keys_prefixes ( li )
eq ( len ( keys ) , len ( check_objs ) )
eq ( len ( prefixes ) , len ( check_prefixes ) )
objs = [ e . name for e in keys ]
eq ( objs , check_objs )
prefix_names = [ e . name for e in prefixes ]
eq ( prefix_names , check_prefixes )
return li . next_marker
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' prefixes in multi-component object names ' )
def test_bucket_list_delimiter_prefix ( ) :
bucket = _create_keys ( keys = [ ' asdf ' , ' boo/bar ' , ' boo/baz/xyzzy ' , ' cquux/thud ' , ' cquux/bla ' ] )
delim = ' / '
marker = ' '
prefix = ' '
marker = validate_bucket_list ( bucket , prefix , delim , ' ' , 1 , True , [ ' asdf ' ] , [ ] , ' asdf ' )
marker = validate_bucket_list ( bucket , prefix , delim , marker , 1 , True , [ ] , [ ' boo/ ' ] , ' boo/ ' )
marker = validate_bucket_list ( bucket , prefix , delim , marker , 1 , False , [ ] , [ ' cquux/ ' ] , None )
marker = validate_bucket_list ( bucket , prefix , delim , ' ' , 2 , True , [ ' asdf ' ] , [ ' boo/ ' ] , ' boo/ ' )
marker = validate_bucket_list ( bucket , prefix , delim , marker , 2 , False , [ ] , [ ' cquux/ ' ] , None )
prefix = ' boo/ '
marker = validate_bucket_list ( bucket , prefix , delim , ' ' , 1 , True , [ ' boo/bar ' ] , [ ] , ' boo/bar ' )
marker = validate_bucket_list ( bucket , prefix , delim , marker , 1 , False , [ ] , [ ' boo/baz/ ' ] , None )
marker = validate_bucket_list ( bucket , prefix , delim , ' ' , 2 , False , [ ' boo/bar ' ] , [ ' boo/baz/ ' ] , None )
2011-08-08 22:14:31 +00:00
2015-08-12 00:23:08 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' prefix and delimiter handling when object ends with delimiter ' )
def test_bucket_list_delimiter_prefix_ends_with_delimiter ( ) :
bucket = _create_keys ( keys = [ ' asdf/ ' ] )
validate_bucket_list ( bucket , ' asdf/ ' , ' / ' , ' ' , 1000 , False , [ ' asdf/ ' ] , [ ] , None )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' non-slash delimiter characters ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_alt ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' cab ' , ' foo ' ] )
2011-08-08 22:14:31 +00:00
2011-08-10 18:40:46 +00:00
li = bucket . list ( delimiter = ' a ' )
eq ( li . delimiter , ' a ' )
2011-08-08 22:14:31 +00:00
2011-12-22 21:08:03 +00:00
# foo contains no 'a' and so is a complete key
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo ' ] )
2011-08-08 22:14:31 +00:00
2011-12-22 21:08:03 +00:00
# bar, baz, and cab should be broken up by the 'a' delimiters
2011-08-10 18:40:46 +00:00
prefix_names = [ e . name for e in prefixes ]
eq ( len ( prefixes ) , 2 )
eq ( prefix_names , [ ' ba ' , ' ca ' ] )
2011-08-08 22:14:31 +00:00
2015-10-23 09:52:05 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' percentage delimiter characters ' )
def test_bucket_list_delimiter_percentage ( ) :
bucket = _create_keys ( keys = [ ' b %a r ' , ' b %a z ' , ' c %a b ' , ' foo ' ] )
li = bucket . list ( delimiter = ' % ' )
eq ( li . delimiter , ' % ' )
# foo contains no 'a' and so is a complete key
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo ' ] )
# bar, baz, and cab should be broken up by the 'a' delimiters
prefix_names = [ e . name for e in prefixes ]
eq ( len ( prefixes ) , 2 )
eq ( prefix_names , [ ' b % ' , ' c % ' ] )
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' whitespace delimiter characters ' )
def test_bucket_list_delimiter_whitespace ( ) :
bucket = _create_keys ( keys = [ ' b ar ' , ' b az ' , ' c ab ' , ' foo ' ] )
li = bucket . list ( delimiter = ' ' )
eq ( li . delimiter , ' ' )
# foo contains no 'a' and so is a complete key
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo ' ] )
# bar, baz, and cab should be broken up by the 'a' delimiters
prefix_names = [ e . name for e in prefixes ]
eq ( len ( prefixes ) , 2 )
eq ( prefix_names , [ ' b ' , ' c ' ] )
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' dot delimiter characters ' )
def test_bucket_list_delimiter_dot ( ) :
bucket = _create_keys ( keys = [ ' b.ar ' , ' b.az ' , ' c.ab ' , ' foo ' ] )
li = bucket . list ( delimiter = ' . ' )
eq ( li . delimiter , ' . ' )
# foo contains no 'a' and so is a complete key
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo ' ] )
# bar, baz, and cab should be broken up by the 'a' delimiters
prefix_names = [ e . name for e in prefixes ]
eq ( len ( prefixes ) , 2 )
eq ( prefix_names , [ ' b. ' , ' c. ' ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' non-printable delimiter can be specified ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_unreadable ( ) :
key_names = [ ' bar ' , ' baz ' , ' cab ' , ' foo ' ]
bucket = _create_keys ( keys = key_names )
2011-08-09 00:24:40 +00:00
2011-08-11 18:21:17 +00:00
li = bucket . list ( delimiter = ' \x0a ' )
eq ( li . delimiter , ' \x0a ' )
2011-08-09 00:24:40 +00:00
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , key_names )
2011-08-09 00:24:40 +00:00
eq ( prefixes , [ ] )
2011-08-10 18:40:46 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' empty delimiter can be specified ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_empty ( ) :
key_names = [ ' bar ' , ' baz ' , ' cab ' , ' foo ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . list ( delimiter = ' ' )
eq ( li . delimiter , ' ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
2011-08-09 00:24:40 +00:00
names = [ e . name for e in keys ]
2011-08-10 18:40:46 +00:00
eq ( names , key_names )
eq ( prefixes , [ ] )
2011-08-09 00:24:40 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' unspecified delimiter defaults to none ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_none ( ) :
key_names = [ ' bar ' , ' baz ' , ' cab ' , ' foo ' ]
2011-08-09 00:39:02 +00:00
bucket = _create_keys ( keys = key_names )
li = bucket . list ( )
2011-08-10 18:40:46 +00:00
eq ( li . delimiter , ' ' )
2011-08-09 22:02:54 +00:00
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , key_names )
2011-08-09 22:02:54 +00:00
eq ( prefixes , [ ] )
2011-08-10 18:40:46 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list ' )
@attr ( assertion = ' unused delimiter is not found ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_delimiter_not_exist ( ) :
key_names = [ ' bar ' , ' baz ' , ' cab ' , ' foo ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . list ( delimiter = ' / ' )
eq ( li . delimiter , ' / ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
2011-08-09 22:02:54 +00:00
names = [ e . name for e in keys ]
eq ( names , key_names )
2011-08-10 18:40:46 +00:00
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' returns only objects under prefix ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_basic ( ) :
bucket = _create_keys ( keys = [ ' foo/bar ' , ' foo/baz ' , ' quux ' ] )
li = bucket . list ( prefix = ' foo/ ' )
eq ( li . prefix , ' foo/ ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo/bar ' , ' foo/baz ' ] )
eq ( prefixes , [ ] )
# just testing that we can do the delimeter and prefix logic on non-slashes
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' prefixes w/o delimiters ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_alt ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' ] )
li = bucket . list ( prefix = ' ba ' )
eq ( li . prefix , ' ba ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' bar ' , ' baz ' ] )
eq ( prefixes , [ ] )
2011-08-09 22:02:54 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' empty prefix returns everything ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_empty ( ) :
key_names = [ ' foo/bar ' , ' foo/baz ' , ' quux ' ]
2011-08-09 22:02:54 +00:00
bucket = _create_keys ( keys = key_names )
2011-08-10 18:40:46 +00:00
li = bucket . list ( prefix = ' ' )
eq ( li . prefix , ' ' )
2011-08-09 00:39:02 +00:00
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , key_names )
2011-08-09 00:39:02 +00:00
eq ( prefixes , [ ] )
2011-08-10 18:40:46 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' unspecified prefix returns everything ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_none ( ) :
key_names = [ ' foo/bar ' , ' foo/baz ' , ' quux ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . list ( )
eq ( li . prefix , ' ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
2011-08-09 00:39:02 +00:00
names = [ e . name for e in keys ]
eq ( names , key_names )
2011-08-10 18:40:46 +00:00
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' nonexistent prefix returns nothing ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_not_exist ( ) :
bucket = _create_keys ( keys = [ ' foo/bar ' , ' foo/baz ' , ' quux ' ] )
li = bucket . list ( prefix = ' d ' )
eq ( li . prefix , ' d ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
eq ( keys , [ ] )
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix ' )
@attr ( assertion = ' non-printable prefix can be specified ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_unreadable ( ) :
2011-12-22 21:08:03 +00:00
# FIX: shouldn't this test include strings that start with the tested prefix
2011-08-10 18:40:46 +00:00
bucket = _create_keys ( keys = [ ' foo/bar ' , ' foo/baz ' , ' quux ' ] )
2011-08-11 18:21:17 +00:00
li = bucket . list ( prefix = ' \x0a ' )
eq ( li . prefix , ' \x0a ' )
2011-08-10 18:40:46 +00:00
( keys , prefixes ) = _get_keys_prefixes ( li )
eq ( keys , [ ] )
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix w/delimiter ' )
@attr ( assertion = ' returns only objects directly under prefix ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_delimiter_basic ( ) :
bucket = _create_keys ( keys = [ ' foo/bar ' , ' foo/baz/xyzzy ' , ' quux/thud ' , ' asdf ' ] )
li = bucket . list ( prefix = ' foo/ ' , delimiter = ' / ' )
eq ( li . prefix , ' foo/ ' )
eq ( li . delimiter , ' / ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' foo/bar ' ] )
prefix_names = [ e . name for e in prefixes ]
eq ( prefix_names , [ ' foo/baz/ ' ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix w/delimiter ' )
@attr ( assertion = ' non-slash delimiters ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_delimiter_alt ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' bazar ' , ' cab ' , ' foo ' ] )
li = bucket . list ( prefix = ' ba ' , delimiter = ' a ' )
eq ( li . prefix , ' ba ' )
eq ( li . delimiter , ' a ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' bar ' ] )
prefix_names = [ e . name for e in prefixes ]
eq ( prefix_names , [ ' baza ' ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix w/delimiter ' )
@attr ( assertion = ' finds nothing w/unmatched prefix ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_delimiter_prefix_not_exist ( ) :
bucket = _create_keys ( keys = [ ' b/a/r ' , ' b/a/c ' , ' b/a/g ' , ' g ' ] )
li = bucket . list ( prefix = ' d ' , delimiter = ' / ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
eq ( keys , [ ] )
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix w/delimiter ' )
@attr ( assertion = ' over-ridden slash ceases to be a delimiter ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_delimiter_delimiter_not_exist ( ) :
bucket = _create_keys ( keys = [ ' b/a/c ' , ' b/a/g ' , ' b/a/r ' , ' g ' ] )
li = bucket . list ( prefix = ' b ' , delimiter = ' z ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
names = [ e . name for e in keys ]
eq ( names , [ ' b/a/c ' , ' b/a/g ' , ' b/a/r ' ] )
eq ( prefixes , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list under prefix w/delimiter ' )
@attr ( assertion = ' finds nothing w/unmatched prefix and delimiter ' )
2011-08-10 18:40:46 +00:00
def test_bucket_list_prefix_delimiter_prefix_delimiter_not_exist ( ) :
bucket = _create_keys ( keys = [ ' b/a/c ' , ' b/a/g ' , ' b/a/r ' , ' g ' ] )
li = bucket . list ( prefix = ' y ' , delimiter = ' z ' )
( keys , prefixes ) = _get_keys_prefixes ( li )
eq ( keys , [ ] )
eq ( prefixes , [ ] )
2011-08-09 00:39:02 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' pagination w/max_keys=1, marker ' )
2011-08-10 01:35:18 +00:00
def test_bucket_list_maxkeys_one ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( max_keys = 1 )
eq ( len ( li ) , 1 )
eq ( li . is_truncated , True )
names = [ e . name for e in li ]
eq ( names , key_names [ 0 : 1 ] )
li = bucket . get_all_keys ( marker = key_names [ 0 ] )
eq ( li . is_truncated , False )
names = [ e . name for e in li ]
eq ( names , key_names [ 1 : ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' pagination w/max_keys=0 ' )
2011-08-10 01:35:18 +00:00
def test_bucket_list_maxkeys_zero ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ] )
li = bucket . get_all_keys ( max_keys = 0 )
eq ( li . is_truncated , False )
2011-08-11 22:52:16 +00:00
eq ( li , [ ] )
2011-08-10 01:35:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' pagination w/o max_keys ' )
2011-08-10 01:35:18 +00:00
def test_bucket_list_maxkeys_none ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( )
eq ( li . is_truncated , False )
names = [ e . name for e in li ]
eq ( names , key_names )
eq ( li . MaxKeys , ' 1000 ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' invalid max_keys ' )
2011-08-10 01:35:18 +00:00
def test_bucket_list_maxkeys_invalid ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_all_keys , max_keys = ' blah ' )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2011-08-10 01:35:18 +00:00
eq ( e . error_code , ' InvalidArgument ' )
2011-08-11 16:28:48 +00:00
@attr ( ' fails_on_rgw ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' non-printing max_keys ' )
2011-08-10 01:35:18 +00:00
def test_bucket_list_maxkeys_unreadable ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ] )
2011-08-11 18:23:43 +00:00
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_all_keys , max_keys = ' \x0a ' )
2011-08-10 01:35:18 +00:00
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2011-08-10 01:35:18 +00:00
# Weird because you can clearly see an InvalidArgument error code. What's
# also funny is the Amazon tells us that it's not an interger or within an
# integer range. Is 'blah' in the integer range?
2011-08-11 18:23:43 +00:00
eq ( e . error_code , ' InvalidArgument ' )
2011-08-10 01:35:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' no pagination, no marker ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_none ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( )
eq ( li . marker , ' ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' no pagination, empty marker ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_empty ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( marker = ' ' )
eq ( li . marker , ' ' )
eq ( li . is_truncated , False )
names = [ e . name for e in li ]
eq ( names , key_names )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' non-printing marker ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_unreadable ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
2011-08-11 18:21:17 +00:00
li = bucket . get_all_keys ( marker = ' \x0a ' )
eq ( li . marker , ' \x0a ' )
2011-08-10 01:42:06 +00:00
eq ( li . is_truncated , False )
names = [ e . name for e in li ]
eq ( names , key_names )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' marker not-in-list ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_not_in_list ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ] )
li = bucket . get_all_keys ( marker = ' blah ' )
eq ( li . marker , ' blah ' )
names = [ e . name for e in li ]
eq ( names , [ ' foo ' , ' quxx ' ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' marker after list ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_after_list ( ) :
bucket = _create_keys ( keys = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ] )
li = bucket . get_all_keys ( marker = ' zzz ' )
eq ( li . marker , ' zzz ' )
eq ( li . is_truncated , False )
eq ( li , [ ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all keys ' )
@attr ( assertion = ' marker before list ' )
2011-08-10 01:42:06 +00:00
def test_bucket_list_marker_before_list ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' , ' quxx ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( marker = ' aaa ' )
eq ( li . marker , ' aaa ' )
eq ( li . is_truncated , False )
names = [ e . name for e in li ]
eq ( names , key_names )
2011-08-11 22:56:41 +00:00
def _compare_dates ( iso_datetime , http_datetime ) :
2011-12-22 21:08:03 +00:00
"""
compare an iso date and an http date , within an epsiolon
"""
2011-08-11 22:56:41 +00:00
date = isodate . parse_datetime ( iso_datetime )
pd = email . utils . parsedate_tz ( http_datetime )
tz = isodate . tzinfo . FixedOffset ( 0 , pd [ - 1 ] / 60 , ' who cares ' )
date2 = datetime . datetime ( * pd [ : 6 ] , tzinfo = tz )
# our tolerance
minutes = 5
acceptable_delta = datetime . timedelta ( minutes = minutes )
assert abs ( date - date2 ) < acceptable_delta , \
( " Times are not within {minutes} minutes of each other: "
+ " {date1!r} , {date2!r} "
) . format (
minutes = minutes ,
date1 = iso_datetime ,
date2 = http_datetime ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' head ' )
@attr ( operation = ' compare w/bucket list ' )
@attr ( assertion = ' return same metadata ' )
2011-08-11 22:56:41 +00:00
def test_bucket_list_return_data ( ) :
key_names = [ ' bar ' , ' baz ' , ' foo ' ]
bucket = _create_keys ( keys = key_names )
# grab the data from each key individually
data = { }
for key_name in key_names :
key = bucket . get_key ( key_name )
acl = key . get_acl ( )
data . update ( {
key_name : {
' user_id ' : acl . owner . id ,
' display_name ' : acl . owner . display_name ,
' etag ' : key . etag ,
' last_modified ' : key . last_modified ,
' size ' : key . size ,
' md5 ' : key . md5 ,
' content_encoding ' : key . content_encoding ,
}
} )
# now grab the data from each key through list
li = bucket . list ( )
for key in li :
key_data = data [ key . name ]
eq ( key . content_encoding , key_data [ ' content_encoding ' ] )
eq ( key . owner . display_name , key_data [ ' display_name ' ] )
eq ( key . etag , key_data [ ' etag ' ] )
eq ( key . md5 , key_data [ ' md5 ' ] )
eq ( key . size , key_data [ ' size ' ] )
eq ( key . owner . id , key_data [ ' user_id ' ] )
_compare_dates ( key . last_modified , key_data [ ' last_modified ' ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' head ' )
@attr ( operation = ' modification-times ' )
@attr ( assertion = ' http and ISO-6801 times agree ' )
2011-08-11 22:56:41 +00:00
def test_bucket_list_object_time ( ) :
bucket = _create_keys ( keys = [ ' foo ' ] )
# Wed, 10 Aug 2011 21:58:25 GMT'
key = bucket . get_key ( ' foo ' )
http_datetime = key . last_modified
# ISO-6801 formatted datetime
# there should be only one element, but list doesn't have a __getitem__
# only an __iter__
for key in bucket . list ( ) :
iso_datetime = key . last_modified
_compare_dates ( iso_datetime , http_datetime )
2015-10-12 22:03:24 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all objects (anonymous) ' )
@attr ( assertion = ' succeeds ' )
def test_bucket_list_objects_anonymous ( ) :
# Get a connection with bad authorization, then change it to be our new Anonymous auth mechanism,
# emulating standard HTTP access.
#
# While it may have been possible to use httplib directly, doing it this way takes care of also
# allowing us to vary the calling format in testing.
conn = _create_connection_bad_auth ( )
conn . _auth_handler = AnonymousAuth . AnonymousAuthHandler ( None , None , None ) # Doesn't need this
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read ' )
anon_bucket = conn . get_bucket ( bucket . name )
anon_bucket . get_all_keys ( )
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all objects (anonymous) ' )
@attr ( assertion = ' fails ' )
def test_bucket_list_objects_anonymous_fail ( ) :
# Get a connection with bad authorization, then change it to be our new Anonymous auth mechanism,
# emulating standard HTTP access.
#
# While it may have been possible to use httplib directly, doing it this way takes care of also
# allowing us to vary the calling format in testing.
conn = _create_connection_bad_auth ( )
conn . _auth_handler = AnonymousAuth . AnonymousAuthHandler ( None , None , None ) # Doesn't need this
bucket = get_new_bucket ( )
e = assert_raises ( boto . exception . S3ResponseError , conn . get_bucket , bucket . name )
eq ( e . status , 403 )
eq ( e . reason , ' Forbidden ' )
eq ( e . error_code , ' AccessDenied ' )
2011-08-11 22:56:41 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' non-existant bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-04-05 00:03:18 +00:00
def test_bucket_notexist ( ) :
2011-12-22 21:08:03 +00:00
# generate a (hopefully) unique, not-yet existent bucket name
2011-07-13 21:49:07 +00:00
name = ' {prefix} foo ' . format ( prefix = get_prefix ( ) )
2011-04-05 00:03:18 +00:00
print ' Trying bucket {name!r} ' . format ( name = name )
2011-12-22 21:08:03 +00:00
2011-04-05 00:03:18 +00:00
e = assert_raises ( boto . exception . S3ResponseError , s3 . main . get_bucket , name )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' delete ' )
@attr ( operation = ' non-existant bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-06-10 17:20:36 +00:00
def test_bucket_delete_notexist ( ) :
2011-07-13 21:49:07 +00:00
name = ' {prefix} foo ' . format ( prefix = get_prefix ( ) )
2011-06-10 17:20:36 +00:00
print ' Trying bucket {name!r} ' . format ( name = name )
e = assert_raises ( boto . exception . S3ResponseError , s3 . main . delete_bucket , name )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' delete ' )
@attr ( operation = ' non-empty bucket ' )
@attr ( assertion = ' fails 409 ' )
2011-07-11 19:15:33 +00:00
def test_bucket_delete_nonempty ( ) :
bucket = get_new_bucket ( )
# fill up bucket
2011-07-11 21:56:32 +00:00
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' foocontent ' )
2011-07-11 19:15:33 +00:00
# try to delete
e = assert_raises ( boto . exception . S3ResponseError , bucket . delete )
eq ( e . status , 409 )
eq ( e . reason , ' Conflict ' )
eq ( e . error_code , ' BucketNotEmpty ' )
2011-06-10 17:20:36 +00:00
2016-09-30 23:08:17 +00:00
def _do_set_bucket_canned_acl ( bucket , canned_acl , i , results ) :
try :
bucket . set_canned_acl ( canned_acl )
results [ i ] = True
except :
results [ i ] = False
# res = _make_bucket_request('PUT', bucket, policy='public-read')
# print res
# results[i] = res
def _do_set_bucket_canned_acl_concurrent ( bucket , canned_acl , num , results ) :
t = [ ]
for i in range ( num ) :
thr = threading . Thread ( target = _do_set_bucket_canned_acl , args = ( bucket , canned_acl , i , results ) )
thr . start ( )
t . append ( thr )
return t
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' concurrent set of acls on a bucket ' )
@attr ( assertion = ' works ' )
def test_bucket_concurrent_set_canned_acl ( ) :
bucket = get_new_bucket ( )
num_threads = 50 # boto retry defaults to 5 so we need a thread to fail at least 5 times
# this seems like a large enough number to get through retry (if bug
# exists)
results = [ None ] * num_threads
t = _do_set_bucket_canned_acl_concurrent ( bucket , ' public-read ' , num_threads , results )
_do_wait_completion ( t )
for r in results :
eq ( r , True )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' non-existant bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-06-10 17:20:36 +00:00
def test_object_write_to_nonexist_bucket ( ) :
2011-07-13 21:49:07 +00:00
name = ' {prefix} foo ' . format ( prefix = get_prefix ( ) )
2011-06-10 17:20:36 +00:00
print ' Trying bucket {name!r} ' . format ( name = name )
bucket = s3 . main . get_bucket ( name , validate = False )
key = bucket . new_key ( ' foo123bar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_string , ' foo ' )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' del ' )
@attr ( operation = ' deleted bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_delete ( ) :
2011-07-13 21:49:07 +00:00
name = ' {prefix} foo ' . format ( prefix = get_prefix ( ) )
2011-04-04 21:45:42 +00:00
print ' Trying bucket {name!r} ' . format ( name = name )
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default , name )
2011-04-04 21:45:42 +00:00
# make sure it's actually there
s3 . main . get_bucket ( bucket . name )
bucket . delete ( )
# make sure it's gone
e = assert_raises ( boto . exception . S3ResponseError , bucket . delete )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' read contents that were never written ' )
@attr ( assertion = ' fails 404 ' )
2011-04-04 21:45:42 +00:00
def test_object_read_notexist ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foobar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
2015-09-09 19:28:32 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' read contents that were never written to raise one error response ' )
@attr ( assertion = ' RequestId appears in the error response ' )
def test_object_requestid_on_error ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foobar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
request_id = re . search ( r ' <RequestId>.*</RequestId> ' , e . body . encode ( ' utf-8 ' ) ) . group ( 0 )
assert request_id is not None
2011-04-04 21:45:42 +00:00
2015-09-09 19:49:17 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' read contents that were never written to raise one error response ' )
@attr ( assertion = ' RequestId in the error response matchs the x-amz-request-id in the headers ' )
def test_object_requestid_matchs_header_on_error ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foobar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
request_id = re . search ( r ' <RequestId>(.*)</RequestId> ' , e . body . encode ( ' utf-8 ' ) ) . group ( 1 )
eq ( key . resp . getheader ( ' x-amz-request-id ' ) , request_id )
2011-04-04 21:45:42 +00:00
2011-07-25 17:57:34 +00:00
# While the test itself passes, there's a SAX parser error during teardown. It
# seems to be a boto bug. It happens with both amazon and dho.
2011-08-11 16:30:26 +00:00
# http://code.google.com/p/boto/issues/detail?id=501
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write to non-printing key ' )
@attr ( assertion = ' fails 404 ' )
2011-07-25 17:57:34 +00:00
def test_object_create_unreadable ( ) :
bucket = get_new_bucket ( )
2011-08-11 16:30:26 +00:00
key = bucket . new_key ( ' \x0a ' )
2011-07-25 17:57:34 +00:00
key . set_contents_from_string ( ' bar ' )
2012-08-09 22:51:07 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' delete multiple objects ' )
@attr ( assertion = ' deletes multiple objects with a single call ' )
def test_multi_object_delete ( ) :
bucket = get_new_bucket ( )
key0 = bucket . new_key ( ' key0 ' )
key0 . set_contents_from_string ( ' foo ' )
key1 = bucket . new_key ( ' key1 ' )
key1 . set_contents_from_string ( ' bar ' )
2016-11-29 10:57:03 +00:00
key2 = bucket . new_key ( ' _key2_ ' )
key2 . set_contents_from_string ( ' underscore ' )
2012-08-09 22:51:07 +00:00
stored_keys = bucket . get_all_keys ( )
2016-11-29 10:57:03 +00:00
eq ( len ( stored_keys ) , 3 )
2014-04-01 19:20:08 +00:00
result = bucket . delete_keys ( stored_keys )
2016-11-29 10:57:03 +00:00
eq ( len ( result . deleted ) , 3 )
2014-04-01 19:20:08 +00:00
eq ( len ( result . errors ) , 0 )
2014-12-31 23:49:46 +00:00
eq ( len ( bucket . get_all_keys ( ) ) , 0 )
2014-04-01 19:20:08 +00:00
# now remove again, should all succeed due to idempotency
result = bucket . delete_keys ( stored_keys )
2016-11-29 10:57:03 +00:00
eq ( len ( result . deleted ) , 3 )
2014-04-01 19:20:08 +00:00
eq ( len ( result . errors ) , 0 )
2014-12-31 23:49:46 +00:00
eq ( len ( bucket . get_all_keys ( ) ) , 0 )
2012-08-09 22:51:07 +00:00
2015-12-15 08:03:37 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write zero-byte key ' )
@attr ( assertion = ' correct content length ' )
def test_object_head_zero_bytes ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' ' )
key2 = bucket . get_key ( ' foo ' )
eq ( key2 . content_length , ' 0 ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
2014-08-22 18:04:36 +00:00
@attr ( method = ' put ' )
@attr ( operation = ' write key ' )
@attr ( assertion = ' correct etag ' )
def test_object_write_check_etag ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
res = _make_request ( ' PUT ' , bucket , key , body = ' bar ' , authenticated = True )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
eq ( res . getheader ( " ETag " ) , ' " 37b51d194a7513e45b56f6524f2d51f2 " ' )
2015-06-30 22:42:32 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write key ' )
@attr ( assertion = ' correct cache control header ' )
def test_object_write_cache_control ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
cache_control = ' public, max-age=14400 '
key . set_contents_from_string ( ' bar ' , headers = { ' Cache-Control ' : cache_control } )
key2 = bucket . get_key ( ' foo ' )
eq ( key2 . cache_control , cache_control )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write key ' )
@attr ( assertion = ' correct expires header ' )
def test_object_write_expires ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
expires = expires . strftime ( " %a , %d % b % Y % H: % M: % S GMT " )
key . set_contents_from_string ( ' bar ' , headers = { ' Expires ' : expires } )
key2 = bucket . get_key ( ' foo ' )
eq ( key2 . expires , expires )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' all ' )
@attr ( operation = ' complete object life cycle ' )
@attr ( assertion = ' read back what we wrote and rewrote ' )
2011-06-10 16:43:18 +00:00
def test_object_write_read_update_read_delete ( ) :
2011-04-04 21:45:42 +00:00
bucket = get_new_bucket ( )
2011-06-10 16:43:18 +00:00
# Write
2011-04-04 21:45:42 +00:00
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
2011-06-10 16:43:18 +00:00
# Read
2011-04-04 21:45:42 +00:00
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
2011-06-10 16:43:18 +00:00
# Update
key . set_contents_from_string ( ' soup ' )
# Read
got = key . get_contents_as_string ( )
eq ( got , ' soup ' )
# Delete
key . delete ( )
2011-04-04 21:45:42 +00:00
2011-07-11 19:14:38 +00:00
def _set_get_metadata ( metadata , bucket = None ) :
2011-12-22 21:08:03 +00:00
"""
create a new key in a ( new or specified ) bucket ,
set the meta1 property to a specified , value ,
and then re - read and return that property
"""
2011-07-11 19:14:38 +00:00
if bucket is None :
bucket = get_new_bucket ( )
2011-04-29 18:11:27 +00:00
key = boto . s3 . key . Key ( bucket )
key . key = ( ' foo ' )
2011-07-11 19:14:38 +00:00
key . set_metadata ( ' meta1 ' , metadata )
2011-04-29 18:11:27 +00:00
key . set_contents_from_string ( ' bar ' )
key2 = bucket . get_key ( ' foo ' )
2011-07-11 19:14:38 +00:00
return key2 . get_metadata ( ' meta1 ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-read ' )
@attr ( assertion = ' reread what we wrote ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_none_to_good ( ) :
got = _set_get_metadata ( ' mymeta ' )
2011-04-29 18:11:27 +00:00
eq ( got , ' mymeta ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-read ' )
@attr ( assertion = ' write empty value, returns empty value ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_none_to_empty ( ) :
got = _set_get_metadata ( ' ' )
eq ( got , ' ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-write ' )
@attr ( assertion = ' new value replaces old ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_overwrite_to_good ( ) :
2011-07-11 19:14:06 +00:00
bucket = get_new_bucket ( )
2011-07-11 19:14:38 +00:00
got = _set_get_metadata ( ' oldmeta ' , bucket )
eq ( got , ' oldmeta ' )
got = _set_get_metadata ( ' newmeta ' , bucket )
eq ( got , ' newmeta ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-write ' )
@attr ( assertion = ' empty value replaces old ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_overwrite_to_empty ( ) :
bucket = get_new_bucket ( )
got = _set_get_metadata ( ' oldmeta ' , bucket )
eq ( got , ' oldmeta ' )
got = _set_get_metadata ( ' ' , bucket )
2011-07-11 19:14:06 +00:00
eq ( got , ' ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-write ' )
@attr ( assertion = ' UTF-8 values passed through ' )
2011-07-08 02:41:03 +00:00
def test_object_set_get_unicode_metadata ( ) :
bucket = get_new_bucket ( )
key = boto . s3 . key . Key ( bucket )
key . key = ( u ' foo ' )
key . set_metadata ( ' meta1 ' , u " Hello World \xe9 " )
key . set_contents_from_string ( ' bar ' )
key2 = bucket . get_key ( ' foo ' )
got = key2 . get_metadata ( ' meta1 ' )
eq ( got , u " Hello World \xe9 " )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write/re-write ' )
@attr ( assertion = ' non-UTF-8 values detected, but preserved ' )
2012-07-03 23:28:59 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-08 02:41:03 +00:00
def test_object_set_get_non_utf8_metadata ( ) :
bucket = get_new_bucket ( )
key = boto . s3 . key . Key ( bucket )
key . key = ( ' foo ' )
key . set_metadata ( ' meta1 ' , ' \x04 mymeta ' )
key . set_contents_from_string ( ' bar ' )
key2 = bucket . get_key ( ' foo ' )
got = key2 . get_metadata ( ' meta1 ' )
eq ( got , ' =?UTF-8?Q?=04mymeta?= ' )
2011-07-11 19:14:38 +00:00
def _set_get_metadata_unreadable ( metadata , bucket = None ) :
2011-12-22 21:08:03 +00:00
"""
set and then read back a meta - data value ( which presumably
includes some interesting characters ) , and return a list
containing the stored value AND the encoding with which it
was returned .
"""
2011-07-11 19:14:38 +00:00
got = _set_get_metadata ( metadata , bucket )
got = decode_header ( got )
return got
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write ' )
@attr ( assertion = ' non-priting prefixes noted and preserved ' )
2012-07-03 23:28:59 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_empty_to_unreadable_prefix ( ) :
metadata = ' \x04 w '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write ' )
@attr ( assertion = ' non-priting suffixes noted and preserved ' )
2012-07-03 23:28:59 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_empty_to_unreadable_suffix ( ) :
metadata = ' h \x04 '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata write ' )
@attr ( assertion = ' non-priting in-fixes noted and preserved ' )
2016-06-06 23:19:27 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_empty_to_unreadable_infix ( ) :
metadata = ' h \x04 w '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata re-write ' )
@attr ( assertion = ' non-priting prefixes noted and preserved ' )
2012-07-03 23:28:59 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_overwrite_to_unreadable_prefix ( ) :
metadata = ' \x04 w '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
metadata2 = ' \x05 w '
got2 = _set_get_metadata_unreadable ( metadata2 )
eq ( got2 , [ ( metadata2 , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata re-write ' )
@attr ( assertion = ' non-priting suffixes noted and preserved ' )
2012-07-03 23:28:59 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_overwrite_to_unreadable_suffix ( ) :
metadata = ' h \x04 '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
metadata2 = ' h \x05 '
got2 = _set_get_metadata_unreadable ( metadata2 )
eq ( got2 , [ ( metadata2 , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.metadata ' )
@attr ( method = ' put ' )
@attr ( operation = ' metadata re-write ' )
@attr ( assertion = ' non-priting in-fixes noted and preserved ' )
2016-06-06 23:19:27 +00:00
@attr ( ' fails_strict_rfc2616 ' )
2011-07-11 19:14:38 +00:00
def test_object_set_get_metadata_overwrite_to_unreadable_infix ( ) :
metadata = ' h \x04 w '
got = _set_get_metadata_unreadable ( metadata )
eq ( got , [ ( metadata , ' utf-8 ' ) ] )
metadata2 = ' h \x05 w '
got2 = _set_get_metadata_unreadable ( metadata2 )
eq ( got2 , [ ( metadata2 , ' utf-8 ' ) ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' data re-write ' )
@attr ( assertion = ' replaces previous metadata ' )
2011-08-10 22:04:19 +00:00
def test_object_metadata_replaced_on_put ( ) :
bucket = get_new_bucket ( )
# create object with metadata
key = bucket . new_key ( ' foo ' )
key . set_metadata ( ' meta1 ' , ' bar ' )
key . set_contents_from_string ( ' bar ' )
# overwrite previous object, no metadata
key2 = bucket . new_key ( ' foo ' )
key2 . set_contents_from_string ( ' bar ' )
# should see no metadata, as per 2nd write
key3 = bucket . get_key ( ' foo ' )
got = key3 . get_metadata ( ' meta1 ' )
assert got is None , " did not expect to see metadata: %r " % got
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' data write from file (w/100-Continue) ' )
2012-10-15 17:59:10 +00:00
@attr ( assertion = ' succeeds and returns written data ' )
2011-06-07 17:47:27 +00:00
def test_object_write_file ( ) :
# boto Key.set_contents_from_file / .send_file uses Expect:
# 100-Continue, so this test exercises that (though a bit too
# subtly)
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
data = StringIO ( ' bar ' )
key . set_contents_from_file ( fp = data )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
2013-01-23 18:41:38 +00:00
def _get_post_url ( conn , bucket ) :
url = ' {protocol} :// {host} : {port} / {bucket} ' . format ( protocol = ' https ' if conn . is_secure else ' http ' , \
host = conn . host , port = conn . port , bucket = bucket . name )
return url
2012-10-15 17:59:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' anonymous browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
def test_post_object_anonymous_request ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
bucket . set_acl ( ' public-read-write ' )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " acl " , " public-read " ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
2012-10-15 22:57:42 +00:00
eq ( r . status_code , 204 )
2012-10-15 17:59:10 +00:00
key = bucket . get_key ( " foo.txt " )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
def test_post_object_authenticated_request ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
key = bucket . get_key ( " foo.txt " )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
2015-02-05 17:39:13 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request, bad access key ' )
@attr ( assertion = ' fails ' )
def test_post_object_authenticated_request_bad_access_key ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read-write ' )
url = _get_post_url ( s3 . main , bucket )
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
conn = s3 . main
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , ' foo ' ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
2012-10-15 17:59:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' anonymous browser based upload via POST request ' )
@attr ( assertion = ' succeeds with status 201 ' )
def test_post_object_set_success_code ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read-write ' )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " acl " , " public-read " ) , \
( " success_action_status " , " 201 " ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 201 )
message = ET . fromstring ( r . content ) . find ( ' Key ' )
eq ( message . text , ' foo.txt ' )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' anonymous browser based upload via POST request ' )
@attr ( assertion = ' succeeds with status 204 ' )
def test_post_object_set_invalid_success_code ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read-write ' )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " acl " , " public-read " ) , \
( " success_action_status " , " 404 " ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
eq ( r . content , ' ' )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
def test_post_object_upload_larger_than_chunk ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 5 * 1024 * 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
foo_string = ' foo ' * 1024 * 1024
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , foo_string ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
key = bucket . get_key ( " foo.txt " )
got = key . get_contents_as_string ( )
eq ( got , foo_string )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
def test_post_object_set_key_from_filename ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 5 * 1024 * 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " $ {filename} " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' foo.txt ' , ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
key = bucket . get_key ( " foo.txt " )
got = key . get_contents_as_string ( )
2012-10-15 22:57:42 +00:00
eq ( got , ' bar ' )
2012-10-15 17:59:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds with status 204 ' )
def test_post_object_ignored_header ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( " x-ignore-foo " , " bar " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds with status 204 ' )
def test_post_object_case_insensitive_condition_fields ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bUcKeT " : bucket . name } , \
[ " StArTs-WiTh " , " $KeY " , " foo " ] , \
{ " AcL " : " private " } , \
[ " StArTs-WiTh " , " $CoNtEnT-TyPe " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " kEy " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " aCl " , " private " ) , ( " signature " , signature ) , ( " pOLICy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds with escaped leading $ and returns written data ' )
def test_post_object_escaped_field_values ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " \ $foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " \ $foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
key = bucket . get_key ( " \ $foo.txt " )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns redirect url ' )
def test_post_object_success_redirect_action ( ) :
bucket = get_new_bucket ( )
2012-10-15 22:57:42 +00:00
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
redirect_url = _get_post_url ( s3 . main , bucket )
bucket . set_acl ( ' public-read ' )
2012-10-15 22:57:42 +00:00
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
2012-10-15 22:57:42 +00:00
[ " eq " , " $success_action_redirect " , redirect_url ] , \
2012-10-15 17:59:10 +00:00
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
2012-10-15 22:57:42 +00:00
( " Content-Type " , " text/plain " ) , ( " success_action_redirect " , redirect_url ) , \
2012-10-15 17:59:10 +00:00
( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 200 )
url = r . url
key = bucket . get_key ( " foo.txt " )
eq ( url ,
2012-10-15 22:57:42 +00:00
' {rurl} ?bucket= {bucket} &key= {key} &etag= % 22 {etag} % 22 ' . format ( rurl = redirect_url , bucket = bucket . name ,
key = key . name , etag = key . etag . strip ( ' " ' ) ) )
2012-10-15 17:59:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with invalid signature error ' )
def test_post_object_invalid_signature ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " \ $foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) ) [ : : - 1 ]
payload = OrderedDict ( [ ( " key " , " \ $foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with access key does not exist error ' )
def test_post_object_invalid_access_key ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " \ $foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " \ $foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id [ : : - 1 ] ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with invalid expiration error ' )
def test_post_object_invalid_date_format ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : str ( expires ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " \ $foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " \ $foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with missing key error ' )
def test_post_object_no_key_specified ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
2012-10-15 22:57:42 +00:00
payload = OrderedDict ( [ ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
2012-10-15 17:59:10 +00:00
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with missing signature error ' )
def test_post_object_missing_signature ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " \ $foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with extra input fields policy error ' )
def test_post_object_missing_policy_condition ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds using starts-with restriction on metadata header ' )
def test_post_object_user_specified_header ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
[ " starts-with " , " $x-amz-meta-foo " , " bar " ]
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' x-amz-meta-foo ' , ' barclamp ' ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
key = bucket . get_key ( " foo.txt " )
eq ( key . get_metadata ( ' foo ' ) , ' barclamp ' )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with policy condition failed error due to missing field in POST request ' )
def test_post_object_request_missing_policy_specified_field ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
[ " starts-with " , " $x-amz-meta-foo " , " bar " ]
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with conditions must be list error ' )
def test_post_object_condition_is_case_sensitive ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" CONDITIONS " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with expiration must be string error ' )
def test_post_object_expires_is_case_sensitive ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " EXPIRATION " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with policy expired error ' )
def test_post_object_expired_policy ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = - 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails using equality restriction on metadata header ' )
def test_post_object_invalid_request_field_value ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
[ " eq " , " $x-amz-meta-foo " , " " ]
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' x-amz-meta-foo ' , ' barclamp ' ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 403 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with policy missing expiration error ' )
def test_post_object_missing_expires_condition ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 1024 ] , \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with policy missing conditions error ' )
def test_post_object_missing_conditions_list ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with allowable upload size exceeded error ' )
def test_post_object_upload_size_limit_exceeded ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 , 0 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with invalid content length error ' )
def test_post_object_missing_content_length_argument ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 0 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with invalid JSON error ' )
def test_post_object_invalid_content_length_argument ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , - 1 , 0 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' fails with upload size less than minimum allowable error ' )
def test_post_object_upload_size_below_minimum ( ) :
bucket = get_new_bucket ( )
2013-01-23 18:41:38 +00:00
url = _get_post_url ( s3 . main , bucket )
2012-10-15 17:59:10 +00:00
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " content-length-range " , 512 , 1000 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
2013-01-23 18:41:38 +00:00
conn = s3 . main
2012-10-15 17:59:10 +00:00
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
2016-10-20 19:21:46 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' empty conditions return appropriate error response ' )
def test_post_object_empty_conditions ( ) :
bucket = get_new_bucket ( )
url = _get_post_url ( s3 . main , bucket )
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ } \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
conn = s3 . main
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , ( ' file ' , ( ' bar ' ) ) ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 400 )
2012-10-15 17:59:10 +00:00
2015-08-13 01:14:08 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Match: the latest ETag ' )
@attr ( assertion = ' succeeds ' )
def test_get_object_ifmatch_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
new_key = bucket . get_key ( ' foo ' , headers = { ' If-Match ' : key . etag } )
got = new_key . get_contents_as_string ( )
eq ( got , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Match: bogus ETag ' )
@attr ( assertion = ' fails 412 ' )
def test_get_object_ifmatch_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
2016-10-31 15:19:06 +00:00
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_key , ' foo ' , headers = { ' If-Match ' : ' " ABCORZ " ' } )
2015-08-13 01:14:08 +00:00
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-None-Match: the latest ETag ' )
@attr ( assertion = ' fails 304 ' )
def test_get_object_ifnonematch_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_key , ' foo ' , headers = { ' If-None-Match ' : key . etag } )
eq ( e . status , 304 )
eq ( e . reason , ' Not Modified ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-None-Match: bogus ETag ' )
@attr ( assertion = ' succeeds ' )
def test_get_object_ifnonematch_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
new_key = bucket . get_key ( ' foo ' , headers = { ' If-None-Match ' : ' ABCORZ ' } )
got = new_key . get_contents_as_string ( )
eq ( got , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Modified-Since: before ' )
@attr ( assertion = ' succeeds ' )
def test_get_object_ifmodifiedsince_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
new_key = bucket . get_key ( ' foo ' , headers = { ' If-Modified-Since ' : ' Sat, 29 Oct 1994 19:43:31 GMT ' } )
got = new_key . get_contents_as_string ( )
eq ( got , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Modified-Since: after ' )
@attr ( assertion = ' fails 304 ' )
def test_get_object_ifmodifiedsince_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
2016-05-17 21:33:40 +00:00
for k in bucket . get_all_keys ( ) :
key = k
2016-11-09 16:19:13 +00:00
mtime = datetime . datetime . strptime ( key . last_modified , ' % Y- % m- %d T % H: % M: % S. %f Z ' )
2016-05-17 21:33:40 +00:00
2016-11-09 16:19:13 +00:00
after = mtime + datetime . timedelta ( seconds = 1 )
after_str = time . strftime ( " %a , %d % b % Y % H: % M: % S GMT " , after . timetuple ( ) )
2016-05-17 21:33:40 +00:00
time . sleep ( 1 )
2015-08-13 01:14:08 +00:00
2016-11-09 16:19:13 +00:00
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_key , ' foo ' , headers = { ' If-Modified-Since ' : after_str } )
2015-08-13 01:14:08 +00:00
eq ( e . status , 304 )
eq ( e . reason , ' Not Modified ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Unmodified-Since: before ' )
@attr ( assertion = ' fails 412 ' )
def test_get_object_ifunmodifiedsince_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_key , ' foo ' , headers = { ' If-Unmodified-Since ' : ' Sat, 29 Oct 1994 19:43:31 GMT ' } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' get w/ If-Unmodified-Since: after ' )
@attr ( assertion = ' succeeds ' )
def test_get_object_ifunmodifiedsince_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
new_key = bucket . get_key ( ' foo ' , headers = { ' If-Unmodified-Since ' : ' Tue, 29 Oct 2030 19:43:31 GMT ' } )
got = new_key . get_contents_as_string ( )
eq ( got , ' bar ' )
2014-11-19 06:48:23 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' data re-write w/ If-Match: the latest ETag ' )
@attr ( assertion = ' replaces previous data and metadata ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifmatch_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
key . set_contents_from_string ( ' zar ' , headers = { ' If-Match ' : key . etag . replace ( ' " ' , ' ' ) . strip ( ) } )
got_new_data = key . get_contents_as_string ( )
eq ( got_new_data , ' zar ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' data re-write w/ If-Match: outdated ETag ' )
@attr ( assertion = ' fails 412 ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifmatch_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_string , ' zar ' ,
headers = { ' If-Match ' : ' ABCORZ ' } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
eq ( e . error_code , ' PreconditionFailed ' )
2014-12-15 08:47:34 +00:00
got_old_data = key . get_contents_as_string ( )
eq ( got_old_data , ' bar ' )
2014-11-19 06:48:23 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite existing object w/ If-Match: * ' )
@attr ( assertion = ' replaces previous data and metadata ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifmatch_overwrite_existed_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
key . set_contents_from_string ( ' zar ' , headers = { ' If-Match ' : ' * ' } )
got_new_data = key . get_contents_as_string ( )
eq ( got_new_data , ' zar ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite non-existing object w/ If-Match: * ' )
@attr ( assertion = ' fails 412 ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifmatch_nonexisted_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_string , ' bar ' , headers = { ' If-Match ' : ' * ' } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
eq ( e . error_code , ' PreconditionFailed ' )
2014-12-15 08:47:34 +00:00
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
2014-11-19 06:48:23 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite existing object w/ If-None-Match: outdated ETag ' )
@attr ( assertion = ' replaces previous data and metadata ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifnonmatch_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
key . set_contents_from_string ( ' zar ' , headers = { ' If-None-Match ' : ' ABCORZ ' } )
got_new_data = key . get_contents_as_string ( )
eq ( got_new_data , ' zar ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite existing object w/ If-None-Match: the latest ETag ' )
@attr ( assertion = ' fails 412 ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifnonmatch_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_string , ' zar ' ,
headers = { ' If-None-Match ' : key . etag . replace ( ' " ' , ' ' ) . strip ( ) } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
eq ( e . error_code , ' PreconditionFailed ' )
2014-12-15 08:47:34 +00:00
got_old_data = key . get_contents_as_string ( )
eq ( got_old_data , ' bar ' )
2014-11-19 06:48:23 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite non-existing object w/ If-None-Match: * ' )
@attr ( assertion = ' succeeds ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifnonmatch_nonexisted_good ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' , headers = { ' If-None-Match ' : ' * ' } )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' overwrite existing object w/ If-None-Match: * ' )
@attr ( assertion = ' fails 412 ' )
@attr ( ' fails_on_aws ' )
def test_put_object_ifnonmatch_overwrite_existed_failed ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
got_data = key . get_contents_as_string ( )
eq ( got_data , ' bar ' )
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_string ,
' zar ' , headers = { ' If-None-Match ' : ' * ' } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
eq ( e . error_code , ' PreconditionFailed ' )
2014-12-15 08:47:34 +00:00
got_old_data = key . get_contents_as_string ( )
eq ( got_old_data , ' bar ' )
2014-11-19 06:48:23 +00:00
2011-08-25 15:07:58 +00:00
def _setup_request ( bucket_acl = None , object_acl = None ) :
2011-12-22 21:08:03 +00:00
"""
add a foo key , and specified key and bucket acls to
a ( new or existing ) bucket .
"""
2011-08-25 15:07:58 +00:00
bucket = _create_keys ( keys = [ ' foo ' ] )
key = bucket . get_key ( ' foo ' )
if bucket_acl is not None :
bucket . set_acl ( bucket_acl )
if object_acl is not None :
key . set_acl ( object_acl )
return ( bucket , key )
2012-04-19 20:33:08 +00:00
def _setup_bucket_request ( bucket_acl = None ) :
"""
set up a ( new or existing ) bucket with specified acl
"""
bucket = get_new_bucket ( )
if bucket_acl is not None :
bucket . set_acl ( bucket_acl )
return bucket
2011-08-25 15:07:58 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' publically readable bucket ' )
@attr ( assertion = ' bucket is readable ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_get ( ) :
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' deleted object and bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_get_bucket_gone ( ) :
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
key . delete ( )
bucket . delete ( )
res = _make_request ( ' GET ' , bucket , key )
eq ( res . status , 404 )
eq ( res . reason , ' Not Found ' )
2014-08-22 18:05:09 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' delete ' )
@attr ( operation = ' deleted object and bucket ' )
@attr ( assertion = ' fails 404 ' )
def test_object_delete_key_bucket_gone ( ) :
( bucket , key ) = _setup_request ( )
key . delete ( )
bucket . delete ( )
e = assert_raises ( boto . exception . S3ResponseError , key . delete )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' deleted object ' )
@attr ( assertion = ' fails 404 ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_get_object_gone ( ) :
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
key . delete ( )
res = _make_request ( ' GET ' , bucket , key )
eq ( res . status , 404 )
eq ( res . reason , ' Not Found ' )
2012-04-19 20:33:08 +00:00
def _head_bucket ( bucket , authenticated = True ) :
res = _make_bucket_request ( ' HEAD ' , bucket , authenticated = authenticated )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2014-08-05 20:08:24 +00:00
result = { }
2012-04-19 20:33:08 +00:00
obj_count = res . getheader ( ' x-rgw-object-count ' )
2014-08-05 20:08:24 +00:00
if obj_count != None :
result [ ' x-rgw-object-count ' ] = int ( obj_count )
2012-04-19 20:33:08 +00:00
bytes_used = res . getheader ( ' x-rgw-bytes-used ' )
2014-08-05 20:08:24 +00:00
if bytes_used is not None :
result [ ' x-rgw-bytes-used ' ] = int ( bytes_used )
2012-04-19 20:33:08 +00:00
2014-08-05 20:08:24 +00:00
return result
2012-04-19 20:33:08 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' head ' )
@attr ( operation = ' head bucket ' )
@attr ( assertion = ' succeeds ' )
def test_bucket_head ( ) :
2014-08-05 20:08:24 +00:00
bucket = get_new_bucket ( )
2012-04-19 20:33:08 +00:00
_head_bucket ( bucket )
2014-08-05 20:08:24 +00:00
# This test relies on Ceph extensions.
# http://tracker.ceph.com/issues/2313
@attr ( ' fails_on_aws ' )
2012-04-19 20:33:08 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' head ' )
@attr ( operation = ' read bucket extended information ' )
@attr ( assertion = ' extended information is getting updated ' )
def test_bucket_head_extended ( ) :
2014-08-05 20:08:24 +00:00
bucket = get_new_bucket ( )
2012-04-19 20:33:08 +00:00
2014-08-05 20:08:24 +00:00
result = _head_bucket ( bucket )
2012-04-19 20:33:08 +00:00
2014-08-05 20:08:24 +00:00
eq ( result . get ( ' x-rgw-object-count ' , 0 ) , 0 )
eq ( result . get ( ' x-rgw-bytes-used ' , 0 ) , 0 )
2012-04-19 20:33:08 +00:00
_create_keys ( bucket , keys = [ ' foo ' , ' bar ' , ' baz ' ] )
2014-08-05 20:08:24 +00:00
result = _head_bucket ( bucket )
2012-04-19 20:33:08 +00:00
2014-08-05 20:08:24 +00:00
eq ( result . get ( ' x-rgw-object-count ' , 3 ) , 3 )
2012-04-19 20:33:08 +00:00
2014-08-05 20:08:24 +00:00
assert result . get ( ' x-rgw-bytes-used ' , 9 ) > 0
2012-04-19 20:33:08 +00:00
2011-08-25 15:07:58 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acl ' )
@attr ( method = ' get ' )
@attr ( operation = ' unauthenticated on private bucket ' )
@attr ( assertion = ' succeeds ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_get_bucket_acl ( ) :
( bucket , key ) = _setup_request ( ' private ' , ' public-read ' )
2011-08-26 20:42:31 +00:00
2011-08-25 15:07:58 +00:00
res = _make_request ( ' GET ' , bucket , key )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.acl ' )
@attr ( method = ' get ' )
@attr ( operation = ' unauthenticated on private object ' )
@attr ( assertion = ' fails 403 ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_get_object_acl ( ) :
( bucket , key ) = _setup_request ( ' public-read ' , ' private ' )
2011-08-26 20:42:31 +00:00
2011-08-25 15:07:58 +00:00
res = _make_request ( ' GET ' , bucket , key )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' authenticated on public bucket/object ' )
@attr ( assertion = ' succeeds ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_authenticated ( ) :
2011-08-26 20:42:31 +00:00
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-08-25 15:07:58 +00:00
2012-07-06 22:17:18 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' authenticated on private bucket/private object with modified response headers ' )
@attr ( assertion = ' succeeds ' )
@attr ( ' fails_on_rgw ' )
def test_object_raw_response_headers ( ) :
( bucket , key ) = _setup_request ( ' private ' , ' private ' )
response_headers = {
' response-content-type ' : ' foo/bar ' ,
' response-content-disposition ' : ' bla ' ,
' response-content-language ' : ' esperanto ' ,
' response-content-encoding ' : ' aaa ' ,
' response-expires ' : ' 123 ' ,
' response-cache-control ' : ' no-cache ' ,
}
res = _make_request ( ' GET ' , bucket , key , authenticated = True ,
response_headers = response_headers )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
eq ( res . getheader ( ' content-type ' ) , ' foo/bar ' )
eq ( res . getheader ( ' content-disposition ' ) , ' bla ' )
eq ( res . getheader ( ' content-language ' ) , ' esperanto ' )
eq ( res . getheader ( ' content-encoding ' ) , ' aaa ' )
eq ( res . getheader ( ' expires ' ) , ' 123 ' )
eq ( res . getheader ( ' cache-control ' ) , ' no-cache ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' authenticated on private bucket/public object ' )
@attr ( assertion = ' succeeds ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_authenticated_bucket_acl ( ) :
2011-08-26 20:42:31 +00:00
( bucket , key ) = _setup_request ( ' private ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-08-25 15:07:58 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' authenticated on public bucket/private object ' )
@attr ( assertion = ' succeeds ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_authenticated_object_acl ( ) :
2011-08-26 20:42:31 +00:00
( bucket , key ) = _setup_request ( ' public-read ' , ' private ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-08-25 15:07:58 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' authenticated on deleted object and bucket ' )
@attr ( assertion = ' fails 404 ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_authenticated_bucket_gone ( ) :
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
key . delete ( )
bucket . delete ( )
2011-08-26 20:42:31 +00:00
res = _make_request ( ' GET ' , bucket , key , authenticated = True )
eq ( res . status , 404 )
eq ( res . reason , ' Not Found ' )
2011-08-25 15:07:58 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' authenticated on deleted object ' )
@attr ( assertion = ' fails 404 ' )
2011-08-25 15:07:58 +00:00
def test_object_raw_authenticated_object_gone ( ) :
2011-08-26 20:42:31 +00:00
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
2011-08-25 15:07:58 +00:00
key . delete ( )
2011-08-26 20:42:31 +00:00
res = _make_request ( ' GET ' , bucket , key , authenticated = True )
eq ( res . status , 404 )
eq ( res . reason , ' Not Found ' )
2011-08-25 15:07:58 +00:00
2016-01-27 02:19:20 +00:00
@tag ( ' auth_aws4 ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' x-amz-expires check not expired ' )
@attr ( assertion = ' succeeds ' )
def test_object_raw_get_x_amz_expires_not_expired ( ) :
check_aws4_support ( )
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True , expires_in = 100000 )
eq ( res . status , 200 )
@tag ( ' auth_aws4 ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' check x-amz-expires value out of range zero ' )
@attr ( assertion = ' fails 403 ' )
def test_object_raw_get_x_amz_expires_out_range_zero ( ) :
check_aws4_support ( )
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True , expires_in = 0 )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
@tag ( ' auth_aws4 ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' check x-amz-expires value out of max range ' )
@attr ( assertion = ' fails 403 ' )
def test_object_raw_get_x_amz_expires_out_max_range ( ) :
check_aws4_support ( )
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True , expires_in = 604801 )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
@tag ( ' auth_aws4 ' )
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' check x-amz-expires value out of positive range ' )
@attr ( assertion = ' succeeds ' )
def test_object_raw_get_x_amz_expires_out_positive_range ( ) :
check_aws4_support ( )
( bucket , key ) = _setup_request ( ' public-read ' , ' public-read ' )
res = _make_request ( ' GET ' , bucket , key , authenticated = True , expires_in = - 7 )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' unauthenticated, no object acls ' )
@attr ( assertion = ' fails 403 ' )
2011-08-26 20:45:37 +00:00
def test_object_raw_put ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
res = _make_request ( ' PUT ' , bucket , key , body = ' foo ' )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' unauthenticated, publically writable object ' )
@attr ( assertion = ' succeeds ' )
2011-08-26 20:45:37 +00:00
def test_object_raw_put_write_access ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read-write ' )
key = bucket . new_key ( ' foo ' )
res = _make_request ( ' PUT ' , bucket , key , body = ' foo ' )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' authenticated, no object acls ' )
@attr ( assertion = ' succeeds ' )
2011-08-26 20:45:37 +00:00
def test_object_raw_put_authenticated ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
res = _make_request ( ' PUT ' , bucket , key , body = ' foo ' , authenticated = True )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2014-08-24 01:34:02 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' authenticated, no object acls ' )
@attr ( assertion = ' succeeds ' )
def test_object_raw_put_authenticated_expired ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
res = _make_request ( ' PUT ' , bucket , key , body = ' foo ' , authenticated = True , expires_in = - 1000 )
eq ( res . status , 403 )
eq ( res . reason , ' Forbidden ' )
2011-04-04 21:45:42 +00:00
def check_bad_bucket_name ( name ) :
2011-12-22 21:08:03 +00:00
"""
Attempt to create a bucket with a specified name , and confirm
that the request fails because of an invalid bucket name .
"""
2013-07-26 17:46:56 +00:00
e = assert_raises ( boto . exception . S3ResponseError , get_new_bucket , targets . main . default , name )
2011-04-04 21:45:42 +00:00
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2011-04-04 21:45:42 +00:00
eq ( e . error_code , ' InvalidBucketName ' )
# AWS does not enforce all documented bucket restrictions.
# http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?BucketRestrictions.html
@attr ( ' fails_on_aws ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' name begins with underscore ' )
@attr ( assertion = ' fails with subdomain: 400 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_starts_nonalpha ( ) :
2015-01-06 21:41:56 +00:00
bucket_name = get_new_bucket_name ( )
check_bad_bucket_name ( ' _ ' + bucket_name )
2011-04-04 21:45:42 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' empty name ' )
@attr ( assertion = ' fails 405 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_short_empty ( ) :
# bucket creates where name is empty look like PUTs to the parent
# resource (with slash), hence their error response is different
2013-07-26 17:46:56 +00:00
e = assert_raises ( boto . exception . S3ResponseError , get_new_bucket , targets . main . default , ' ' )
2011-04-04 21:45:42 +00:00
eq ( e . status , 405 )
eq ( e . reason , ' Method Not Allowed ' )
eq ( e . error_code , ' MethodNotAllowed ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' short (one character) name ' )
@attr ( assertion = ' fails 400 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_short_one ( ) :
check_bad_bucket_name ( ' a ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' short (two character) name ' )
@attr ( assertion = ' fails 400 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_short_two ( ) :
check_bad_bucket_name ( ' aa ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' excessively long names ' )
@attr ( assertion = ' fails with subdomain: 400 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_long ( ) :
check_bad_bucket_name ( 256 * ' a ' )
check_bad_bucket_name ( 280 * ' a ' )
check_bad_bucket_name ( 3000 * ' a ' )
2011-06-10 18:51:18 +00:00
def check_good_bucket_name ( name , _prefix = None ) :
2011-12-22 21:08:03 +00:00
"""
Attempt to create a bucket with a specified name
and ( specified or default ) prefix , returning the
results of that effort .
"""
2011-06-10 18:51:18 +00:00
# tests using this with the default prefix must *not* rely on
# being able to set the initial character, or exceed the max len
# tests using this with a custom prefix are responsible for doing
# their own setup/teardown nukes, with their custom prefix; this
# should be very rare
if _prefix is None :
2011-07-13 21:49:07 +00:00
_prefix = get_prefix ( )
2013-07-26 17:46:56 +00:00
get_new_bucket ( targets . main . default , ' {prefix} {name} ' . format (
2011-06-10 18:51:18 +00:00
prefix = _prefix ,
2011-04-04 21:45:42 +00:00
name = name ,
) )
def _test_bucket_create_naming_good_long ( length ) :
2011-12-22 21:08:03 +00:00
"""
Attempt to create a bucket whose name ( including the
prefix ) is of a specified length .
"""
2014-08-01 23:36:12 +00:00
prefix = get_new_bucket_name ( )
2011-04-04 21:45:42 +00:00
assert len ( prefix ) < 255
num = length - len ( prefix )
2013-07-26 17:46:56 +00:00
get_new_bucket ( targets . main . default , ' {prefix} {name} ' . format (
2011-04-04 21:45:42 +00:00
prefix = prefix ,
name = num * ' a ' ,
) )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/250 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_250 ( ) :
_test_bucket_create_naming_good_long ( 250 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/251 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_251 ( ) :
_test_bucket_create_naming_good_long ( 251 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/252 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_252 ( ) :
_test_bucket_create_naming_good_long ( 252 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/253 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_253 ( ) :
_test_bucket_create_naming_good_long ( 253 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/254 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_254 ( ) :
_test_bucket_create_naming_good_long ( 254 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/255 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_good_long_255 ( ) :
_test_bucket_create_naming_good_long ( 255 )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list w/251 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-05 18:10:49 +00:00
def test_bucket_list_long_name ( ) :
2014-08-01 23:36:12 +00:00
prefix = get_new_bucket_name ( )
2011-04-05 18:10:49 +00:00
length = 251
num = length - len ( prefix )
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default , ' {prefix} {name} ' . format (
2011-04-05 18:10:49 +00:00
prefix = prefix ,
name = num * ' a ' ,
) )
got = bucket . list ( )
got = list ( got )
eq ( got , [ ] )
2011-04-04 21:45:42 +00:00
# AWS does not enforce all documented bucket restrictions.
# http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?BucketRestrictions.html
@attr ( ' fails_on_aws ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/ip address for name ' )
@attr ( assertion = ' fails on aws ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_ip ( ) :
check_bad_bucket_name ( ' 192.168.5.123 ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/! in name ' )
@attr ( assertion = ' fails with subdomain ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_bad_punctuation ( ) :
# characters other than [a-zA-Z0-9._-]
check_bad_bucket_name ( ' alpha!soup ' )
# test_bucket_create_naming_dns_* are valid but not recommended
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/underscore in name ' )
@attr ( assertion = ' succeeds ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_underscore ( ) :
check_good_bucket_name ( ' foo_bar ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/100 byte name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_long ( ) :
2011-07-13 21:49:07 +00:00
prefix = get_prefix ( )
2011-04-04 21:45:42 +00:00
assert len ( prefix ) < 50
num = 100 - len ( prefix )
check_good_bucket_name ( num * ' a ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/dash at end of name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_dash_at_end ( ) :
check_good_bucket_name ( ' foo- ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/.. in name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_dot_dot ( ) :
check_good_bucket_name ( ' foo..bar ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/.- in name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_dot_dash ( ) :
check_good_bucket_name ( ' foo.-bar ' )
2011-11-04 23:29:54 +00:00
# Breaks DNS with SubdomainCallingFormat
@attr ( ' fails_with_subdomain ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create w/-. in name ' )
@attr ( assertion = ' fails with subdomain ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidBucketName</Code><Message>The specified bucket is not valid.</Message>...</Error>
2011-04-04 21:45:42 +00:00
def test_bucket_create_naming_dns_dash_dot ( ) :
check_good_bucket_name ( ' foo-.bar ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' re-create ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_exists ( ) :
Handle idempotent and BucketAlreadyOwnedByYou
AWS S3 has two behaviors for recreating a bucket depending if you use
the us-standard or another region:
>>> bucket = conn.create_bucket('gaul-default', location=Location.DEFAULT)
>>> bucket = conn.create_bucket('gaul-default', location=Location.DEFAULT)
>>> bucket = conn.create_bucket('gaul-uswest', location=Location.USWest)
>>> bucket = conn.create_bucket('gaul-uswest', location=Location.USWest)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/boto/s3/connection.py", line 499, in create_bucket
response.status, response.reason, body)
boto.exception.S3CreateError: S3CreateError: 409 Conflict
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>BucketAlreadyOwnedByYou</Code><Message>Your previous request to create the named bucket succeeded and you already own it.</Message><BucketName>gaul-uswest</BucketName><RequestId>24B6DC3170365CD7</RequestId><HostId>hUynMTyqc9WZFxAJ2RFK6P7BqmmeHHlMl9xL2NOy56xBUnOZCAlHqGvtMeGeAfVs</HostId></Error>
Additional discussion:
https://issues.apache.org/jira/browse/JCLOUDS-334
2014-07-31 08:27:57 +00:00
# aws-s3 default region allows recreation of buckets
# but all other regions fail with BucketAlreadyOwnedByYou.
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default )
Handle idempotent and BucketAlreadyOwnedByYou
AWS S3 has two behaviors for recreating a bucket depending if you use
the us-standard or another region:
>>> bucket = conn.create_bucket('gaul-default', location=Location.DEFAULT)
>>> bucket = conn.create_bucket('gaul-default', location=Location.DEFAULT)
>>> bucket = conn.create_bucket('gaul-uswest', location=Location.USWest)
>>> bucket = conn.create_bucket('gaul-uswest', location=Location.USWest)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/boto/s3/connection.py", line 499, in create_bucket
response.status, response.reason, body)
boto.exception.S3CreateError: S3CreateError: 409 Conflict
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>BucketAlreadyOwnedByYou</Code><Message>Your previous request to create the named bucket succeeded and you already own it.</Message><BucketName>gaul-uswest</BucketName><RequestId>24B6DC3170365CD7</RequestId><HostId>hUynMTyqc9WZFxAJ2RFK6P7BqmmeHHlMl9xL2NOy56xBUnOZCAlHqGvtMeGeAfVs</HostId></Error>
Additional discussion:
https://issues.apache.org/jira/browse/JCLOUDS-334
2014-07-31 08:27:57 +00:00
try :
get_new_bucket ( targets . main . default , bucket . name )
except boto . exception . S3CreateError , e :
eq ( e . status , 409 )
eq ( e . reason , ' Conflict ' )
eq ( e . error_code , ' BucketAlreadyOwnedByYou ' )
2011-04-04 21:45:42 +00:00
2016-08-05 15:51:48 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' recreate ' )
def test_bucket_configure_recreate ( ) :
# aws-s3 default region allows recreation of buckets
# but all other regions fail with BucketAlreadyOwnedByYou.
bucket = get_new_bucket ( targets . main . default )
try :
get_new_bucket ( targets . main . default , bucket . name )
except boto . exception . S3CreateError , e :
eq ( e . status , 409 )
eq ( e . reason , ' Conflict ' )
eq ( e . error_code , ' BucketAlreadyOwnedByYou ' )
2011-04-04 21:45:42 +00:00
2014-12-30 00:15:11 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' get location ' )
def test_bucket_get_location ( ) :
bucket = get_new_bucket ( targets . main . default )
actual_location = bucket . get_location ( )
expected_location = targets . main . default . conf . api_name
eq ( actual_location , expected_location )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' re-create by non-owner ' )
@attr ( assertion = ' fails 409 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_create_exists_nonowner ( ) :
# Names are shared across a global namespace. As such, no two
# users can create a bucket with that same name.
bucket = get_new_bucket ( )
2013-07-26 17:46:56 +00:00
e = assert_raises ( boto . exception . S3CreateError , get_new_bucket , targets . alt . default , bucket . name )
2011-04-04 21:45:42 +00:00
eq ( e . status , 409 )
eq ( e . reason , ' Conflict ' )
eq ( e . error_code , ' BucketAlreadyExists ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' del ' )
@attr ( operation = ' delete by non-owner ' )
@attr ( assertion = ' fails ' )
2011-04-04 21:45:42 +00:00
def test_bucket_delete_nonowner ( ) :
bucket = get_new_bucket ( )
check_access_denied ( s3 . alt . delete_bucket , bucket . name )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' default acl ' )
@attr ( assertion = ' read back expected defaults ' )
2011-04-04 21:45:42 +00:00
def test_bucket_acl_default ( ) :
bucket = get_new_bucket ( )
policy = bucket . get_acl ( )
print repr ( policy )
eq ( policy . owner . type , None )
eq ( policy . owner . id , config . main . user_id )
eq ( policy . owner . display_name , config . main . display_name )
2011-04-18 16:58:10 +00:00
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-04-04 21:45:42 +00:00
2015-03-16 01:03:45 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' public-read acl ' )
@attr ( assertion = ' read back expected defaults ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>IllegalLocationConstraintException</Code><Message>The unspecified location constraint is incompatible for the region specific endpoint this request was sent to.</Message>
2015-03-16 01:03:45 +00:00
def test_bucket_acl_canned_during_create ( ) :
name = get_new_bucket_name ( )
bucket = targets . main . default . connection . create_bucket ( name , policy = ' public-read ' )
policy = bucket . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl: public-read,private ' )
@attr ( assertion = ' read back expected values ' )
2011-04-04 21:45:42 +00:00
def test_bucket_acl_canned ( ) :
bucket = get_new_bucket ( )
# Since it defaults to private, set it public-read first
bucket . set_acl ( ' public-read ' )
policy = bucket . get_acl ( )
print repr ( policy )
2011-04-18 16:58:10 +00:00
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-04-04 21:45:42 +00:00
# Then back to private.
bucket . set_acl ( ' private ' )
policy = bucket . get_acl ( )
print repr ( policy )
2011-04-18 16:58:10 +00:00
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-04-04 21:45:42 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl: public-read-write ' )
@attr ( assertion = ' read back expected values ' )
2011-07-07 21:02:39 +00:00
def test_bucket_acl_canned_publicreadwrite ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read-write ' )
policy = bucket . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
dict (
permission = ' WRITE ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl: authenticated-read ' )
@attr ( assertion = ' read back expected values ' )
2011-07-07 21:02:39 +00:00
def test_bucket_acl_canned_authenticatedread ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' authenticated-read ' )
policy = bucket . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AuthenticatedUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' get ' )
@attr ( operation = ' default acl ' )
@attr ( assertion = ' read back expected defaults ' )
2011-07-07 21:02:39 +00:00
def test_object_acl_default ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2015-04-23 23:28:11 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl public-read ' )
@attr ( assertion = ' read back expected values ' )
def test_object_acl_canned_during_create ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' , policy = ' public-read ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl public-read,private ' )
@attr ( assertion = ' read back expected values ' )
2011-07-07 21:02:39 +00:00
def test_object_acl_canned ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
# Since it defaults to private, set it public-read first
key . set_acl ( ' public-read ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
# Then back to private.
key . set_acl ( ' private ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl public-read-write ' )
@attr ( assertion = ' read back expected values ' )
2011-07-07 21:02:39 +00:00
def test_object_acl_canned_publicreadwrite ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . set_acl ( ' public-read-write ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
dict (
permission = ' WRITE ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl authenticated-read ' )
@attr ( assertion = ' read back expected values ' )
2011-07-07 21:02:39 +00:00
def test_object_acl_canned_authenticatedread ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . set_acl ( ' authenticated-read ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AuthenticatedUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2013-02-01 21:01:31 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl bucket-owner-read ' )
@attr ( assertion = ' read back expected values ' )
def test_object_acl_canned_bucketownerread ( ) :
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default )
2013-02-01 21:01:31 +00:00
bucket . set_acl ( ' public-read-write ' )
key = s3 . alt . get_bucket ( bucket . name ) . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
bucket_policy = bucket . get_acl ( )
bucket_owner_id = bucket_policy . owner . id
bucket_owner_display = bucket_policy . owner . display_name
key . set_acl ( ' bucket-owner-read ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = bucket_owner_id ,
display_name = bucket_owner_display ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
key . delete ( )
bucket . delete ( )
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl bucket-owner-read ' )
@attr ( assertion = ' read back expected values ' )
def test_object_acl_canned_bucketownerfullcontrol ( ) :
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default )
2013-02-01 21:01:31 +00:00
bucket . set_acl ( ' public-read-write ' )
key = s3 . alt . get_bucket ( bucket . name ) . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
bucket_policy = bucket . get_acl ( )
bucket_owner_id = bucket_policy . owner . id
bucket_owner_display = bucket_policy . owner . display_name
key . set_acl ( ' bucket-owner-full-control ' )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' FULL_CONTROL ' ,
id = bucket_owner_id ,
display_name = bucket_owner_display ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
key . delete ( )
bucket . delete ( )
2015-02-28 00:49:44 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' set write-acp ' )
@attr ( assertion = ' does not modify owner ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2015-02-28 00:49:44 +00:00
def test_object_acl_full_control_verify_owner ( ) :
bucket = get_new_bucket ( targets . main . default )
bucket . set_acl ( ' public-read-write ' )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . add_user_grant ( permission = ' FULL_CONTROL ' , user_id = config . alt . user_id )
k2 = s3 . alt . get_bucket ( bucket . name ) . get_key ( ' foo ' )
k2 . add_user_grant ( permission = ' READ_ACP ' , user_id = config . alt . user_id )
policy = k2 . get_acl ( )
eq ( policy . owner . id , config . main . user_id )
2015-09-29 15:14:48 +00:00
@attr ( resource = ' object.acls ' )
@attr ( method = ' put ' )
@attr ( operation = ' set write-acp ' )
@attr ( assertion = ' does not modify other attributes ' )
def test_object_acl_full_control_verify_attributes ( ) :
bucket = get_new_bucket ( targets . main . default )
bucket . set_acl ( ' public-read-write ' )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' , { ' x-amz-foo ' : ' bar ' } )
etag = key . etag
content_type = key . content_type
for k in bucket . list ( ) :
eq ( k . etag , etag )
eq ( k . content_type , content_type )
key . add_user_grant ( permission = ' FULL_CONTROL ' , user_id = config . alt . user_id )
for k in bucket . list ( ) :
eq ( k . etag , etag )
eq ( k . content_type , content_type )
2015-02-28 00:49:44 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl private ' )
@attr ( assertion = ' a private object can be set to private ' )
2011-04-04 21:45:42 +00:00
def test_bucket_acl_canned_private_to_private ( ) :
bucket = get_new_bucket ( )
bucket . set_acl ( ' private ' )
2011-07-08 21:38:00 +00:00
def _make_acl_xml ( acl ) :
2011-12-22 21:08:03 +00:00
"""
Return the xml form of an ACL entry
"""
2011-07-08 21:38:00 +00:00
return ' <?xml version= " 1.0 " encoding= " UTF-8 " ?><AccessControlPolicy xmlns= " http://s3.amazonaws.com/doc/2006-03-01/ " ><Owner><ID> ' + config . main . user_id + ' </ID></Owner> ' + acl . to_xml ( ) + ' </AccessControlPolicy> '
2011-07-21 21:09:21 +00:00
def _build_bucket_acl_xml ( permission , bucket = None ) :
2011-12-22 21:08:03 +00:00
"""
add the specified permission for the current user to
a ( new or specified ) bucket , in XML form , set it , and
then read it back to confirm it was correctly set
"""
2011-07-08 21:38:00 +00:00
acl = boto . s3 . acl . ACL ( )
acl . add_user_grant ( permission = permission , user_id = config . main . user_id )
XML = _make_acl_xml ( acl )
2011-07-21 21:09:21 +00:00
if bucket is None :
bucket = get_new_bucket ( )
2011-07-08 21:38:00 +00:00
bucket . set_xml_acl ( XML )
policy = bucket . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = permission ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl FULL_CONTROL (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_bucket_acl_xml_fullcontrol ( ) :
_build_bucket_acl_xml ( ' FULL_CONTROL ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl WRITE (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_bucket_acl_xml_write ( ) :
_build_bucket_acl_xml ( ' WRITE ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl WRITE_ACP (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_bucket_acl_xml_writeacp ( ) :
_build_bucket_acl_xml ( ' WRITE_ACP ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl READ (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_bucket_acl_xml_read ( ) :
_build_bucket_acl_xml ( ' READ ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.acls ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl READ_ACP (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_bucket_acl_xml_readacp ( ) :
_build_bucket_acl_xml ( ' READ_ACP ' )
def _build_object_acl_xml ( permission ) :
2011-12-22 21:08:03 +00:00
"""
add the specified permission for the current user to
a new object in a new bucket , in XML form , set it , and
then read it back to confirm it was correctly set
"""
2011-07-08 21:38:00 +00:00
acl = boto . s3 . acl . ACL ( )
acl . add_user_grant ( permission = permission , user_id = config . main . user_id )
XML = _make_acl_xml ( acl )
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . set_xml_acl ( XML )
policy = key . get_acl ( )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = permission ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl FULL_CONTROL (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_object_acl_xml ( ) :
_build_object_acl_xml ( ' FULL_CONTROL ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl WRITE (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_object_acl_xml_write ( ) :
_build_object_acl_xml ( ' WRITE ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl WRITE_ACP (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_object_acl_xml_writeacp ( ) :
_build_object_acl_xml ( ' WRITE_ACP ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl READ (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_object_acl_xml_read ( ) :
_build_object_acl_xml ( ' READ ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl READ_ACP (xml) ' )
@attr ( assertion = ' reads back correctly ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-08 21:38:00 +00:00
def test_object_acl_xml_readacp ( ) :
_build_object_acl_xml ( ' READ_ACP ' )
2011-07-15 21:34:08 +00:00
def _bucket_acl_grant_userid ( permission ) :
2011-12-22 21:08:03 +00:00
"""
create a new bucket , grant a specific user the specified
permission , read back the acl and verify correct setting
"""
2011-04-04 21:45:42 +00:00
bucket = get_new_bucket ( )
# add alt user
policy = bucket . get_acl ( )
2011-07-15 21:34:08 +00:00
policy . acl . add_user_grant ( permission , config . alt . user_id )
2011-04-04 21:45:42 +00:00
bucket . set_acl ( policy )
policy = bucket . get_acl ( )
2011-04-18 16:58:10 +00:00
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
2011-07-15 21:34:08 +00:00
permission = permission ,
2011-04-18 16:58:10 +00:00
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-04-04 21:45:42 +00:00
2011-07-15 21:34:08 +00:00
return bucket
2011-07-19 17:38:55 +00:00
def _check_bucket_acl_grant_can_read ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify ability to read the specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name )
def _check_bucket_acl_grant_cant_read ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify inability to read the specified bucket
"""
2011-07-19 17:38:55 +00:00
check_access_denied ( s3 . alt . get_bucket , bucket . name )
def _check_bucket_acl_grant_can_readacp ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify ability to read acls on specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
bucket2 . get_acl ( )
def _check_bucket_acl_grant_cant_readacp ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify inability to read acls on specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
check_access_denied ( bucket2 . get_acl )
def _check_bucket_acl_grant_can_write ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify ability to write the specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
key = bucket2 . new_key ( ' foo-write ' )
key . set_contents_from_string ( ' bar ' )
def _check_bucket_acl_grant_cant_write ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify inability to write the specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
key = bucket2 . new_key ( ' foo-write ' )
check_access_denied ( key . set_contents_from_string , ' bar ' )
def _check_bucket_acl_grant_can_writeacp ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify ability to set acls on the specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
bucket2 . set_acl ( ' public-read ' )
def _check_bucket_acl_grant_cant_writeacp ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
verify inability to set acls on the specified bucket
"""
2011-07-19 17:38:55 +00:00
bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
check_access_denied ( bucket2 . set_acl , ' public-read ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/userid FULL_CONTROL ' )
@attr ( assertion = ' can read/write data/acls ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${USER}</ArgumentValue>
2011-07-15 21:34:08 +00:00
def test_bucket_acl_grant_userid_fullcontrol ( ) :
bucket = _bucket_acl_grant_userid ( ' FULL_CONTROL ' )
2011-07-19 17:38:55 +00:00
# alt user can read
_check_bucket_acl_grant_can_read ( bucket )
# can read acl
_check_bucket_acl_grant_can_readacp ( bucket )
# can write
_check_bucket_acl_grant_can_write ( bucket )
# can write acl
_check_bucket_acl_grant_can_writeacp ( bucket )
2011-04-04 21:45:42 +00:00
2015-02-28 00:49:44 +00:00
# verify owner did not change
bucket2 = s3 . main . get_bucket ( bucket . name )
policy = bucket2 . get_acl ( )
eq ( policy . owner . id , config . main . user_id )
eq ( policy . owner . display_name , config . main . display_name )
2011-04-04 21:45:42 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/userid READ ' )
@attr ( assertion = ' can read data, no other r/w ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2011-07-15 21:34:08 +00:00
def test_bucket_acl_grant_userid_read ( ) :
bucket = _bucket_acl_grant_userid ( ' READ ' )
2011-07-19 17:38:55 +00:00
# alt user can read
_check_bucket_acl_grant_can_read ( bucket )
2011-07-15 21:34:08 +00:00
# can't read acl
2011-07-19 17:38:55 +00:00
_check_bucket_acl_grant_cant_readacp ( bucket )
2011-07-15 21:34:08 +00:00
# can't write
2011-07-19 17:38:55 +00:00
_check_bucket_acl_grant_cant_write ( bucket )
# can't write acl
_check_bucket_acl_grant_cant_writeacp ( bucket )
2011-07-15 21:34:08 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/userid READ_ACP ' )
@attr ( assertion = ' can read acl, no other r/w ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2011-07-15 21:34:08 +00:00
def test_bucket_acl_grant_userid_readacp ( ) :
bucket = _bucket_acl_grant_userid ( ' READ_ACP ' )
2011-07-19 17:38:55 +00:00
# alt user can't read
_check_bucket_acl_grant_cant_read ( bucket )
# can read acl
_check_bucket_acl_grant_can_readacp ( bucket )
2011-07-15 21:34:08 +00:00
# can't write
2011-07-19 17:38:55 +00:00
_check_bucket_acl_grant_cant_write ( bucket )
# can't write acp
#_check_bucket_acl_grant_cant_writeacp_can_readacp(bucket)
_check_bucket_acl_grant_cant_writeacp ( bucket )
2011-07-15 21:34:08 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/userid WRITE ' )
@attr ( assertion = ' can write data, no other r/w ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2011-07-15 21:34:08 +00:00
def test_bucket_acl_grant_userid_write ( ) :
bucket = _bucket_acl_grant_userid ( ' WRITE ' )
2011-07-19 17:38:55 +00:00
# alt user can't read
_check_bucket_acl_grant_cant_read ( bucket )
# can't read acl
_check_bucket_acl_grant_cant_readacp ( bucket )
# can write
_check_bucket_acl_grant_can_write ( bucket )
# can't write acl
_check_bucket_acl_grant_cant_writeacp ( bucket )
2011-07-15 21:34:08 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/userid WRITE_ACP ' )
@attr ( assertion = ' can write acls, no other r/w ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2011-07-19 17:38:55 +00:00
def test_bucket_acl_grant_userid_writeacp ( ) :
bucket = _bucket_acl_grant_userid ( ' WRITE_ACP ' )
2011-07-15 21:34:08 +00:00
2011-07-19 17:38:55 +00:00
# alt user can't read
_check_bucket_acl_grant_cant_read ( bucket )
# can't read acl
_check_bucket_acl_grant_cant_readacp ( bucket )
# can't write
_check_bucket_acl_grant_cant_write ( bucket )
# can write acl
_check_bucket_acl_grant_can_writeacp ( bucket )
2011-07-15 21:34:08 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set acl w/invalid userid ' )
@attr ( assertion = ' fails 400 ' )
2011-07-15 21:34:08 +00:00
def test_bucket_acl_grant_nonexist_user ( ) :
bucket = get_new_bucket ( )
# add alt user
2011-07-15 21:57:46 +00:00
bad_user_id = ' _foo '
2011-07-15 21:34:08 +00:00
policy = bucket . get_acl ( )
policy . acl . add_user_grant ( ' FULL_CONTROL ' , bad_user_id )
print policy . to_xml ( )
e = assert_raises ( boto . exception . S3ResponseError , bucket . set_acl , policy )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2011-07-15 21:57:46 +00:00
eq ( e . error_code , ' InvalidArgument ' )
2011-07-15 21:34:08 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' revoke all ACLs ' )
@attr ( assertion = ' can: read obj, get/set bucket acl, cannot write objs ' )
2011-07-20 19:30:23 +00:00
def test_bucket_acl_no_grants ( ) :
bucket = get_new_bucket ( )
# write content to the bucket
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
# clear grants
policy = bucket . get_acl ( )
policy . acl . grants = [ ]
# remove read/write permission
bucket . set_acl ( policy )
# can read
bucket . get_key ( ' foo ' )
# can't write
key = bucket . new_key ( ' baz ' )
check_access_denied ( key . set_contents_from_string , ' bar ' )
# can read acl
bucket . get_acl ( )
# can write acl
bucket . set_acl ( ' private ' )
2013-02-07 20:58:32 +00:00
def _get_acl_header ( user = None , perms = None ) :
all_headers = [ " read " , " write " , " read-acp " , " write-acp " , " full-control " ]
headers = { }
if user == None :
user = config . alt . user_id
if perms != None :
for perm in perms :
headers [ " x-amz-grant- {perm} " . format ( perm = perm ) ] = " id= {uid} " . format ( uid = user )
else :
for perm in all_headers :
headers [ " x-amz-grant- {perm} " . format ( perm = perm ) ] = " id= {uid} " . format ( uid = user )
return headers
@attr ( resource = ' object ' )
@attr ( method = ' PUT ' )
@attr ( operation = ' add all grants to user through headers ' )
@attr ( assertion = ' adds all grants individually to second user ' )
@attr ( ' fails_on_dho ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2013-02-07 20:58:32 +00:00
def test_object_header_acl_grants ( ) :
bucket = get_new_bucket ( )
headers = _get_acl_header ( )
k = bucket . new_key ( " foo_key " )
k . set_contents_from_string ( " bar " , headers = headers )
policy = k . get_acl ( )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' READ ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' WRITE ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ_ACP ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' WRITE_ACP ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' FULL_CONTROL ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
@attr ( resource = ' bucket ' )
@attr ( method = ' PUT ' )
@attr ( operation = ' add all grants to user through headers ' )
@attr ( assertion = ' adds all grants individually to second user ' )
@attr ( ' fails_on_dho ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>InvalidArgument</Code><Message>Invalid id</Message><ArgumentName>CanonicalUser/ID</ArgumentName><ArgumentValue>${ALTUSER}</ArgumentValue>
2013-02-07 20:58:32 +00:00
def test_bucket_header_acl_grants ( ) :
headers = _get_acl_header ( )
2013-07-26 17:46:56 +00:00
bucket = get_new_bucket ( targets . main . default , get_prefix ( ) , headers )
2013-02-07 20:58:32 +00:00
policy = bucket . get_acl ( )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' READ ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' WRITE ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ_ACP ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' WRITE_ACP ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' FULL_CONTROL ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
# alt user can write
bucket2 = s3 . alt . get_bucket ( bucket . name )
key = bucket2 . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
2011-07-20 19:30:23 +00:00
2011-10-28 19:46:12 +00:00
# This test will fail on DH Objects. DHO allows multiple users with one account, which
# would violate the uniqueness requirement of a user's email. As such, DHO users are
# created without an email.
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' add second FULL_CONTROL user ' )
@attr ( assertion = ' works for S3, fails for DHO ' )
2016-01-29 03:28:51 +00:00
@attr ( ' fails_on_aws ' ) # <Error><Code>AmbiguousGrantByEmailAddress</Code><Message>The e-mail address you provided is associated with more than one account. Please retry your request using a different identification method or after resolving the ambiguity.</Message>
2011-04-04 21:45:42 +00:00
def test_bucket_acl_grant_email ( ) :
bucket = get_new_bucket ( )
# add alt user
policy = bucket . get_acl ( )
policy . acl . add_email_grant ( ' FULL_CONTROL ' , config . alt . email )
bucket . set_acl ( policy )
policy = bucket . get_acl ( )
2011-04-18 16:58:10 +00:00
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' FULL_CONTROL ' ,
id = config . alt . user_id ,
display_name = config . alt . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
] ,
)
2011-04-04 21:45:42 +00:00
# alt user can write
bucket2 = s3 . alt . get_bucket ( bucket . name )
key = bucket2 . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' add acl for nonexistent user ' )
@attr ( assertion = ' fail 400 ' )
2011-04-04 21:45:42 +00:00
def test_bucket_acl_grant_email_notexist ( ) :
# behavior not documented by amazon
bucket = get_new_bucket ( )
policy = bucket . get_acl ( )
policy . acl . add_email_grant ( ' FULL_CONTROL ' , NONEXISTENT_EMAIL )
e = assert_raises ( boto . exception . S3ResponseError , bucket . set_acl , policy )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2011-04-04 21:45:42 +00:00
eq ( e . error_code , ' UnresolvableGrantByEmailAddress ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' revoke all ACLs ' )
@attr ( assertion = ' acls read back as empty ' )
2011-04-04 21:45:42 +00:00
def test_bucket_acl_revoke_all ( ) :
# revoke all access, including the owner's access
bucket = get_new_bucket ( )
policy = bucket . get_acl ( )
policy . acl . grants = [ ]
bucket . set_acl ( policy )
policy = bucket . get_acl ( )
eq ( len ( policy . acl . grants ) , 0 )
# TODO rgw log_bucket.set_as_logging_target() gives 403 Forbidden
2011-04-05 18:10:49 +00:00
# http://tracker.newdream.net/issues/984
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket.log ' )
@attr ( method = ' put ' )
@attr ( operation = ' set/enable/disable logging target ' )
@attr ( assertion = ' operations succeed ' )
2011-04-04 21:45:42 +00:00
@attr ( ' fails_on_rgw ' )
def test_logging_toggle ( ) :
bucket = get_new_bucket ( )
2013-07-26 17:46:56 +00:00
log_bucket = get_new_bucket ( targets . main . default , bucket . name + ' -log ' )
2011-04-04 21:45:42 +00:00
log_bucket . set_as_logging_target ( )
bucket . enable_logging ( target_bucket = log_bucket , target_prefix = bucket . name )
bucket . disable_logging ( )
2011-12-22 21:08:03 +00:00
# NOTE: this does not actually test whether or not logging works
2011-04-04 21:45:42 +00:00
def _setup_access ( bucket_acl , object_acl ) :
"""
Simple test fixture : create a bucket with given ACL , with objects :
2011-12-22 21:08:03 +00:00
- a : owning user , given ACL
- a2 : same object accessed by some other user
- b : owning user , default ACL in bucket w / given ACL
- b2 : same object accessed by a some other user
2011-04-04 21:45:42 +00:00
"""
obj = bunch . Bunch ( )
bucket = get_new_bucket ( )
bucket . set_acl ( bucket_acl )
obj . a = bucket . new_key ( ' foo ' )
obj . a . set_contents_from_string ( ' foocontent ' )
obj . a . set_acl ( object_acl )
obj . b = bucket . new_key ( ' bar ' )
obj . b . set_contents_from_string ( ' barcontent ' )
2011-12-22 21:08:03 +00:00
# bucket2 is being accessed by a different user
2011-04-04 21:45:42 +00:00
obj . bucket2 = s3 . alt . get_bucket ( bucket . name , validate = False )
obj . a2 = obj . bucket2 . new_key ( obj . a . name )
obj . b2 = obj . bucket2 . new_key ( obj . b . name )
obj . new = obj . bucket2 . new_key ( ' new ' )
return obj
def get_bucket_key_names ( bucket ) :
return frozenset ( k . name for k in bucket . list ( ) )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: private/private ' )
@attr ( assertion = ' public has no access to bucket or objects ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_private_object_private ( ) :
# all the test_access_* tests follow this template
obj = _setup_access ( bucket_acl = ' private ' , object_acl = ' private ' )
2011-12-22 21:08:03 +00:00
# a should be public-read, b gets default (private)
2011-04-04 21:45:42 +00:00
# acled object read fail
check_access_denied ( obj . a2 . get_contents_as_string )
# acled object write fail
check_access_denied ( obj . a2 . set_contents_from_string , ' barcontent ' )
# default object read fail
check_access_denied ( obj . b2 . get_contents_as_string )
# default object write fail
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
# bucket read fail
check_access_denied ( get_bucket_key_names , obj . bucket2 )
# bucket write fail
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: private/public-read ' )
@attr ( assertion = ' public can only read readable object ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_private_object_publicread ( ) :
obj = _setup_access ( bucket_acl = ' private ' , object_acl = ' public-read ' )
2011-12-22 21:08:03 +00:00
# a should be public-read, b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
check_access_denied ( obj . a2 . set_contents_from_string , ' foooverwrite ' )
check_access_denied ( obj . b2 . get_contents_as_string )
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
check_access_denied ( get_bucket_key_names , obj . bucket2 )
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: private/public-read/write ' )
@attr ( assertion = ' public can only read the readable object ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_private_object_publicreadwrite ( ) :
obj = _setup_access ( bucket_acl = ' private ' , object_acl = ' public-read-write ' )
2011-12-22 21:08:03 +00:00
# a should be public-read-only ... because it is in a private bucket
# b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
check_access_denied ( obj . a2 . set_contents_from_string , ' foooverwrite ' )
check_access_denied ( obj . b2 . get_contents_as_string )
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
check_access_denied ( get_bucket_key_names , obj . bucket2 )
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read/private ' )
@attr ( assertion = ' public can only list the bucket ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicread_object_private ( ) :
obj = _setup_access ( bucket_acl = ' public-read ' , object_acl = ' private ' )
2011-12-22 21:08:03 +00:00
# a should be private, b gets default (private)
2011-04-04 21:45:42 +00:00
check_access_denied ( obj . a2 . get_contents_as_string )
check_access_denied ( obj . a2 . set_contents_from_string , ' barcontent ' )
check_access_denied ( obj . b2 . get_contents_as_string )
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read/public-read ' )
@attr ( assertion = ' public can read readable objects and list bucket ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicread_object_publicread ( ) :
obj = _setup_access ( bucket_acl = ' public-read ' , object_acl = ' public-read ' )
2011-12-22 21:08:03 +00:00
# a should be public-read, b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
check_access_denied ( obj . a2 . set_contents_from_string , ' foooverwrite ' )
check_access_denied ( obj . b2 . get_contents_as_string )
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read/public-read-write ' )
@attr ( assertion = ' public can read readable objects and list bucket ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicread_object_publicreadwrite ( ) :
obj = _setup_access ( bucket_acl = ' public-read ' , object_acl = ' public-read-write ' )
2011-12-22 21:08:03 +00:00
# a should be public-read-only ... because it is in a r/o bucket
# b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
check_access_denied ( obj . a2 . set_contents_from_string , ' foooverwrite ' )
check_access_denied ( obj . b2 . get_contents_as_string )
check_access_denied ( obj . b2 . set_contents_from_string , ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
check_access_denied ( obj . new . set_contents_from_string , ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read-write/private ' )
@attr ( assertion = ' private objects cannot be read, but can be overwritten ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicreadwrite_object_private ( ) :
obj = _setup_access ( bucket_acl = ' public-read-write ' , object_acl = ' private ' )
2011-12-22 21:08:03 +00:00
# a should be private, b gets default (private)
2011-04-04 21:45:42 +00:00
check_access_denied ( obj . a2 . get_contents_as_string )
obj . a2 . set_contents_from_string ( ' barcontent ' )
check_access_denied ( obj . b2 . get_contents_as_string )
obj . b2 . set_contents_from_string ( ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
obj . new . set_contents_from_string ( ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read-write/public-read ' )
@attr ( assertion = ' private objects cannot be read, but can be overwritten ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicreadwrite_object_publicread ( ) :
obj = _setup_access ( bucket_acl = ' public-read-write ' , object_acl = ' public-read ' )
2011-12-22 21:08:03 +00:00
# a should be public-read, b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
obj . a2 . set_contents_from_string ( ' barcontent ' )
check_access_denied ( obj . b2 . get_contents_as_string )
obj . b2 . set_contents_from_string ( ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
obj . new . set_contents_from_string ( ' newcontent ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' ACLs ' )
@attr ( operation = ' set bucket/object acls: public-read-write/public-read-write ' )
@attr ( assertion = ' private objects cannot be read, but can be overwritten ' )
2011-04-04 21:45:42 +00:00
def test_access_bucket_publicreadwrite_object_publicreadwrite ( ) :
obj = _setup_access ( bucket_acl = ' public-read-write ' , object_acl = ' public-read-write ' )
2011-12-22 21:08:03 +00:00
# a should be public-read-write, b gets default (private)
2011-04-04 21:45:42 +00:00
eq ( obj . a2 . get_contents_as_string ( ) , ' foocontent ' )
obj . a2 . set_contents_from_string ( ' foooverwrite ' )
check_access_denied ( obj . b2 . get_contents_as_string )
obj . b2 . set_contents_from_string ( ' baroverwrite ' )
eq ( get_bucket_key_names ( obj . bucket2 ) , frozenset ( [ ' foo ' , ' bar ' ] ) )
obj . new . set_contents_from_string ( ' newcontent ' )
2011-05-04 19:18:27 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' set object acls ' )
@attr ( assertion = ' valid XML ACL sets properly ' )
2011-05-04 19:18:27 +00:00
def test_object_set_valid_acl ( ) :
2011-05-04 22:13:45 +00:00
XML_1 = ' <?xml version= " 1.0 " encoding= " UTF-8 " ?><AccessControlPolicy xmlns= " http://s3.amazonaws.com/doc/2006-03-01/ " ><Owner><ID> ' + config . main . user_id + ' </ID></Owner><AccessControlList><Grant><Grantee xmlns:xsi= " http://www.w3.org/2001/XMLSchema-instance " xsi:type= " CanonicalUser " ><ID> ' + config . main . user_id + ' </ID></Grantee><Permission>FULL_CONTROL</Permission></Grant></AccessControlList></AccessControlPolicy> '
2011-05-04 19:18:27 +00:00
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . set_xml_acl ( XML_1 )
2011-05-26 23:26:24 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' set object acls ' )
@attr ( assertion = ' invalid XML ACL fails 403 ' )
2011-05-26 23:26:24 +00:00
def test_object_giveaway ( ) :
CORRECT_ACL = ' <?xml version= " 1.0 " encoding= " UTF-8 " ?><AccessControlPolicy xmlns= " http://s3.amazonaws.com/doc/2006-03-01/ " ><Owner><ID> ' + config . main . user_id + ' </ID></Owner><AccessControlList><Grant><Grantee xmlns:xsi= " http://www.w3.org/2001/XMLSchema-instance " xsi:type= " CanonicalUser " ><ID> ' + config . main . user_id + ' </ID></Grantee><Permission>FULL_CONTROL</Permission></Grant></AccessControlList></AccessControlPolicy> '
WRONG_ACL = ' <?xml version= " 1.0 " encoding= " UTF-8 " ?><AccessControlPolicy xmlns= " http://s3.amazonaws.com/doc/2006-03-01/ " ><Owner><ID> ' + config . alt . user_id + ' </ID></Owner><AccessControlList><Grant><Grantee xmlns:xsi= " http://www.w3.org/2001/XMLSchema-instance " xsi:type= " CanonicalUser " ><ID> ' + config . alt . user_id + ' </ID></Grantee><Permission>FULL_CONTROL</Permission></Grant></AccessControlList></AccessControlPolicy> '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
key . set_xml_acl ( CORRECT_ACL )
2011-06-10 17:23:57 +00:00
e = assert_raises ( boto . exception . S3ResponseError , key . set_xml_acl , WRONG_ACL )
eq ( e . status , 403 )
eq ( e . reason , ' Forbidden ' )
eq ( e . error_code , ' AccessDenied ' )
2011-06-10 16:43:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all buckets ' )
@attr ( assertion = ' returns all expected buckets ' )
2011-06-10 16:43:18 +00:00
def test_buckets_create_then_list ( ) :
2011-06-10 17:21:24 +00:00
create_buckets = [ get_new_bucket ( ) for i in xrange ( 5 ) ]
list_buckets = s3 . main . get_all_buckets ( )
names = frozenset ( bucket . name for bucket in list_buckets )
for bucket in create_buckets :
if bucket . name not in names :
raise RuntimeError ( " S3 implementation ' s GET on Service did not return bucket we created: %r " , bucket . name )
2011-06-10 16:43:18 +00:00
# Common code to create a connection object, which'll use bad authorization information
2014-12-04 04:38:00 +00:00
def _create_connection_bad_auth ( aws_access_key_id = ' badauth ' ) :
2011-06-10 17:21:24 +00:00
# We're going to need to manually build a connection using bad authorization info.
# But to save the day, lets just hijack the settings from s3.main. :)
main = s3 . main
conn = boto . s3 . connection . S3Connection (
2014-12-04 04:38:00 +00:00
aws_access_key_id = aws_access_key_id ,
2011-06-10 17:21:24 +00:00
aws_secret_access_key = ' roflmao ' ,
is_secure = main . is_secure ,
port = main . port ,
host = main . host ,
calling_format = main . calling_format ,
)
return conn
2011-06-10 16:43:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all buckets (anonymous) ' )
@attr ( assertion = ' succeeds ' )
2014-12-04 04:38:00 +00:00
@attr ( ' fails_on_aws ' )
2011-06-10 16:43:18 +00:00
def test_list_buckets_anonymous ( ) :
2011-06-10 17:21:24 +00:00
# Get a connection with bad authorization, then change it to be our new Anonymous auth mechanism,
# emulating standard HTTP access.
#
# While it may have been possible to use httplib directly, doing it this way takes care of also
# allowing us to vary the calling format in testing.
conn = _create_connection_bad_auth ( )
conn . _auth_handler = AnonymousAuth . AnonymousAuthHandler ( None , None , None ) # Doesn't need this
buckets = conn . get_all_buckets ( )
eq ( len ( buckets ) , 0 )
2011-06-10 16:43:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all buckets (bad auth) ' )
@attr ( assertion = ' fails 403 ' )
2014-12-04 04:38:00 +00:00
def test_list_buckets_invalid_auth ( ) :
2011-06-10 17:21:24 +00:00
conn = _create_connection_bad_auth ( )
e = assert_raises ( boto . exception . S3ResponseError , conn . get_all_buckets )
eq ( e . status , 403 )
eq ( e . reason , ' Forbidden ' )
2014-12-04 04:38:00 +00:00
eq ( e . error_code , ' InvalidAccessKeyId ' )
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' list all buckets (bad auth) ' )
@attr ( assertion = ' fails 403 ' )
def test_list_buckets_bad_auth ( ) :
conn = _create_connection_bad_auth ( aws_access_key_id = s3 . main . aws_access_key_id )
e = assert_raises ( boto . exception . S3ResponseError , conn . get_all_buckets )
eq ( e . status , 403 )
eq ( e . reason , ' Forbidden ' )
eq ( e . error_code , ' SignatureDoesNotMatch ' )
2011-06-10 16:43:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create bucket ' )
@attr ( assertion = ' name starts with alphabetic works ' )
2011-06-10 18:51:18 +00:00
# this test goes outside the user-configure prefix because it needs to
# control the initial character of the bucket name
@nose.with_setup (
2011-07-13 21:49:07 +00:00
setup = lambda : nuke_prefixed_buckets ( prefix = ' a ' + get_prefix ( ) ) ,
teardown = lambda : nuke_prefixed_buckets ( prefix = ' a ' + get_prefix ( ) ) ,
2011-06-10 18:51:18 +00:00
)
def test_bucket_create_naming_good_starts_alpha ( ) :
2011-07-13 21:49:07 +00:00
check_good_bucket_name ( ' foo ' , _prefix = ' a ' + get_prefix ( ) )
2011-06-10 18:51:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create bucket ' )
@attr ( assertion = ' name starts with numeric works ' )
2011-06-10 18:51:18 +00:00
# this test goes outside the user-configure prefix because it needs to
# control the initial character of the bucket name
@nose.with_setup (
2011-07-13 21:49:07 +00:00
setup = lambda : nuke_prefixed_buckets ( prefix = ' 0 ' + get_prefix ( ) ) ,
teardown = lambda : nuke_prefixed_buckets ( prefix = ' 0 ' + get_prefix ( ) ) ,
2011-06-10 18:51:18 +00:00
)
def test_bucket_create_naming_good_starts_digit ( ) :
2011-07-13 21:49:07 +00:00
check_good_bucket_name ( ' foo ' , _prefix = ' 0 ' + get_prefix ( ) )
2011-06-10 18:51:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create bucket ' )
@attr ( assertion = ' name containing dot works ' )
2011-06-10 16:43:18 +00:00
def test_bucket_create_naming_good_contains_period ( ) :
2011-06-10 17:21:24 +00:00
check_good_bucket_name ( ' aaa.111 ' )
2011-06-10 16:43:18 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create bucket ' )
@attr ( assertion = ' name containing hyphen works ' )
2011-06-10 16:43:18 +00:00
def test_bucket_create_naming_good_contains_hyphen ( ) :
2011-06-10 17:21:24 +00:00
check_good_bucket_name ( ' aaa-111 ' )
2011-06-10 16:43:18 +00:00
2012-04-02 21:38:39 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' create bucket with objects and recreate it ' )
@attr ( assertion = ' bucket recreation not overriding index ' )
def test_bucket_recreate_not_overriding ( ) :
key_names = [ ' mykey1 ' , ' mykey2 ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . list ( )
names = [ e . name for e in list ( li ) ]
eq ( names , key_names )
2013-07-26 17:46:56 +00:00
bucket2 = get_new_bucket ( targets . main . default , bucket . name )
2012-04-02 21:38:39 +00:00
li = bucket . list ( )
names = [ e . name for e in list ( li ) ]
eq ( names , key_names )
2012-02-07 00:38:42 +00:00
@attr ( resource = ' object ' )
2012-02-07 01:04:24 +00:00
@attr ( method = ' put ' )
@attr ( operation = ' create and list objects with special names ' )
@attr ( assertion = ' special names work ' )
def test_bucket_create_special_key_names ( ) :
2015-09-11 17:50:14 +00:00
key_names = [
' ' ,
' " ' ,
' $ ' ,
' % ' ,
' & ' ,
' \' ' ,
' < ' ,
' > ' ,
' _ ' ,
' _ ' ,
' _ _ ' ,
' __ ' ,
]
2012-02-07 01:04:24 +00:00
bucket = _create_keys ( keys = key_names )
li = bucket . list ( )
names = [ e . name for e in list ( li ) ]
eq ( names , key_names )
2016-09-05 07:53:27 +00:00
for name in key_names :
key = bucket . get_key ( name )
eq ( key . name , name )
content = key . get_contents_as_string ( )
eq ( content , name )
2016-10-20 10:11:08 +00:00
key . set_acl ( ' private ' )
2016-09-05 07:53:27 +00:00
2013-06-17 18:44:01 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' create and list objects with underscore as prefix, list using prefix ' )
@attr ( assertion = ' listing works correctly ' )
def test_bucket_list_special_prefix ( ) :
key_names = [ ' _bla/1 ' , ' _bla/2 ' , ' _bla/3 ' , ' _bla/4 ' , ' abcd ' ]
bucket = _create_keys ( keys = key_names )
li = bucket . get_all_keys ( )
eq ( len ( li ) , 5 )
li2 = bucket . get_all_keys ( prefix = ' _bla/ ' )
eq ( len ( li2 ) , 4 )
2012-02-07 01:04:24 +00:00
@attr ( resource = ' object ' )
2012-02-07 00:38:42 +00:00
@attr ( method = ' put ' )
@attr ( operation = ' copy zero sized object in same bucket ' )
@attr ( assertion = ' works ' )
def test_object_copy_zero_size ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
fp_a = FakeWriteFile ( 0 , ' ' )
key . set_contents_from_file ( fp_a )
key . copy ( bucket , ' bar321foo ' )
key2 = bucket . get_key ( ' bar321foo ' )
eq ( key2 . size , 0 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object in same bucket ' )
@attr ( assertion = ' works ' )
2011-06-10 16:43:18 +00:00
def test_object_copy_same_bucket ( ) :
2011-06-10 17:21:24 +00:00
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
key . copy ( bucket , ' bar321foo ' )
key2 = bucket . get_key ( ' bar321foo ' )
eq ( key2 . get_contents_as_string ( ) , ' foo ' )
2011-06-10 16:43:18 +00:00
2015-11-13 06:06:21 +00:00
# http://tracker.ceph.com/issues/11563
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object with content-type ' )
@attr ( assertion = ' works ' )
def test_object_copy_verify_contenttype ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
content_type = ' text/bla '
key . set_contents_from_string ( ' foo ' , headers = { ' Content-Type ' : content_type } )
key . copy ( bucket , ' bar321foo ' )
key2 = bucket . get_key ( ' bar321foo ' )
eq ( key2 . get_contents_as_string ( ) , ' foo ' )
eq ( key2 . content_type , content_type )
2012-06-15 00:07:46 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object to itself ' )
@attr ( assertion = ' fails ' )
def test_object_copy_to_itself ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
e = assert_raises ( boto . exception . S3ResponseError , key . copy , bucket , ' foo123bar ' )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2012-06-15 00:07:46 +00:00
eq ( e . error_code , ' InvalidRequest ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' modify object metadata by copying ' )
@attr ( assertion = ' fails ' )
def test_object_copy_to_itself_with_metadata ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
key . copy ( bucket , ' foo123bar ' , { ' foo ' : ' bar ' } )
key . close ( )
bucket2 = s3 . main . get_bucket ( bucket . name )
key2 = bucket2 . get_key ( ' foo123bar ' )
md = key2 . get_metadata ( ' foo ' )
eq ( md , ' bar ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object from different bucket ' )
@attr ( assertion = ' works ' )
2011-06-10 16:43:18 +00:00
def test_object_copy_diff_bucket ( ) :
2011-06-10 17:21:24 +00:00
buckets = [ get_new_bucket ( ) , get_new_bucket ( ) ]
key = buckets [ 0 ] . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
key . copy ( buckets [ 1 ] , ' bar321foo ' )
key2 = buckets [ 1 ] . get_key ( ' bar321foo ' )
eq ( key2 . get_contents_as_string ( ) , ' foo ' )
2011-06-17 18:02:39 +00:00
2011-07-11 19:13:48 +00:00
# is this a necessary check? a NoneType object is being touched here
# it doesn't get to the S3 level
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy from an inaccessible bucket ' )
@attr ( assertion = ' fails w/AttributeError ' )
2011-07-11 19:13:48 +00:00
def test_object_copy_not_owned_bucket ( ) :
2013-07-26 17:46:56 +00:00
buckets = [ get_new_bucket ( ) , get_new_bucket ( targets . alt . default ) ]
2011-07-11 19:13:48 +00:00
print repr ( buckets [ 1 ] )
key = buckets [ 0 ] . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
try :
key . copy ( buckets [ 1 ] , ' bar321foo ' )
except AttributeError :
pass
2011-06-17 18:02:39 +00:00
2015-05-27 09:27:08 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy a non-owned object in a non-owned bucket, but with perms ' )
@attr ( assertion = ' works ' )
def test_object_copy_not_owned_object_bucket ( ) :
bucket = get_new_bucket ( targets . main . default )
key = bucket . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
bucket . add_user_grant ( permission = ' FULL_CONTROL ' , user_id = config . alt . user_id , recursive = True )
k2 = s3 . alt . get_bucket ( bucket . name ) . get_key ( ' foo123bar ' )
k2 . copy ( bucket . name , ' bar321foo ' )
2013-01-16 22:39:25 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object and change acl ' )
@attr ( assertion = ' works ' )
def test_object_copy_canned_acl ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
key . set_contents_from_string ( ' foo ' )
# use COPY directive
key2 = bucket . copy_key ( ' bar321foo ' , bucket . name , ' foo123bar ' , headers = { ' x-amz-acl ' : ' public-read ' } )
res = _make_request ( ' GET ' , bucket , key2 )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
# use REPLACE directive
key3 = bucket . copy_key ( ' bar321foo2 ' , bucket . name , ' foo123bar ' , headers = { ' x-amz-acl ' : ' public-read ' } , metadata = { ' abc ' : ' def ' } )
res = _make_request ( ' GET ' , bucket , key3 )
eq ( res . status , 200 )
eq ( res . reason , ' OK ' )
2015-03-02 22:12:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object and retain metadata ' )
def test_object_copy_retaining_metadata ( ) :
2015-06-17 20:10:23 +00:00
for size in [ 3 , 1024 * 1024 ] :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
metadata = { ' key1 ' : ' value1 ' , ' key2 ' : ' value2 ' }
key . set_metadata ( ' key1 ' , ' value1 ' )
key . set_metadata ( ' key2 ' , ' value2 ' )
content_type = ' audio/ogg '
key . content_type = content_type
key . set_contents_from_string ( str ( bytearray ( size ) ) )
bucket . copy_key ( ' bar321foo ' , bucket . name , ' foo123bar ' )
key2 = bucket . get_key ( ' bar321foo ' )
eq ( key2 . size , size )
eq ( key2 . metadata , metadata )
eq ( key2 . content_type , content_type )
2015-03-02 22:12:10 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object and replace metadata ' )
def test_object_copy_replacing_metadata ( ) :
2015-06-17 20:10:23 +00:00
for size in [ 3 , 1024 * 1024 ] :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo123bar ' )
key . set_metadata ( ' key1 ' , ' value1 ' )
key . set_metadata ( ' key2 ' , ' value2 ' )
key . content_type = ' audio/ogg '
key . set_contents_from_string ( str ( bytearray ( size ) ) )
metadata = { ' key3 ' : ' value3 ' , ' key1 ' : ' value4 ' }
content_type = ' audio/mpeg '
bucket . copy_key ( ' bar321foo ' , bucket . name , ' foo123bar ' , metadata = metadata , headers = { ' Content-Type ' : content_type } )
key2 = bucket . get_key ( ' bar321foo ' )
eq ( key2 . size , size )
eq ( key2 . metadata , metadata )
eq ( key2 . content_type , content_type )
2015-03-02 22:12:10 +00:00
2015-04-18 10:54:37 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy from non-existent bucket ' )
def test_object_copy_bucket_not_found ( ) :
bucket = get_new_bucket ( )
e = assert_raises ( boto . exception . S3ResponseError , bucket . copy_key , ' foo123bar ' , bucket . name + " -fake " , ' bar321foo ' )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy from non-existent object ' )
def test_object_copy_key_not_found ( ) :
bucket = get_new_bucket ( )
e = assert_raises ( boto . exception . S3ResponseError , bucket . copy_key , ' foo123bar ' , bucket . name , ' bar321foo ' )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
2016-09-14 08:23:29 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' copy object to/from versioned bucket ' )
@attr ( assertion = ' works ' )
def test_object_copy_versioned_bucket ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
key = bucket . new_key ( ' foo123bar ' )
2016-09-14 12:23:49 +00:00
size = 1 * 1024 * 1024
data = str ( bytearray ( size ) )
key . set_contents_from_string ( data )
2016-09-14 08:23:29 +00:00
# copy object in the same bucket
key2 = bucket . copy_key ( ' bar321foo ' , bucket . name , key . name , src_version_id = key . version_id )
2016-09-14 12:23:49 +00:00
key2 = bucket . get_key ( key2 . name )
eq ( key2 . size , size )
got = key2 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
# second copy
key3 = bucket . copy_key ( ' bar321foo2 ' , bucket . name , key2 . name , src_version_id = key2 . version_id )
2016-09-14 12:23:49 +00:00
key3 = bucket . get_key ( key3 . name )
eq ( key3 . size , size )
got = key3 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
# copy to another versioned bucket
bucket2 = get_new_bucket ( )
check_configure_versioning_retry ( bucket2 , True , " Enabled " )
key4 = bucket2 . copy_key ( ' bar321foo3 ' , bucket . name , key . name , src_version_id = key . version_id )
2016-09-14 12:23:49 +00:00
key4 = bucket2 . get_key ( key4 . name )
eq ( key4 . size , size )
got = key4 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
# copy to another non versioned bucket
bucket3 = get_new_bucket ( )
key5 = bucket3 . copy_key ( ' bar321foo4 ' , bucket . name , key . name , src_version_id = key . version_id )
2016-09-14 12:23:49 +00:00
key5 = bucket3 . get_key ( key5 . name )
eq ( key5 . size , size )
got = key5 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
# copy from a non versioned bucket
key6 = bucket . copy_key ( ' foo123bar2 ' , bucket3 . name , key5 . name )
2016-09-14 12:23:49 +00:00
key6 = bucket . get_key ( key6 . name )
eq ( key6 . size , size )
got = key6 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
2016-09-16 08:30:17 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' test copy object of a multipart upload ' )
@attr ( assertion = ' successful ' )
def test_object_copy_versioning_multipart_upload ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
key_name = " srcmultipart "
content_type = ' text/bla '
objlen = 30 * 1024 * 1024
( upload , data ) = _multipart_upload ( bucket , key_name , objlen , headers = { ' Content-Type ' : content_type } , metadata = { ' foo ' : ' bar ' } )
upload . complete_upload ( )
key = bucket . get_key ( key_name )
# copy object in the same bucket
key2 = bucket . copy_key ( ' dstmultipart ' , bucket . name , key . name , src_version_id = key . version_id )
key2 = bucket . get_key ( key2 . name )
eq ( key2 . metadata [ ' foo ' ] , ' bar ' )
eq ( key2 . content_type , content_type )
eq ( key2 . size , key . size )
got = key2 . get_contents_as_string ( )
eq ( got , data )
# second copy
key3 = bucket . copy_key ( ' dstmultipart2 ' , bucket . name , key2 . name , src_version_id = key2 . version_id )
key3 = bucket . get_key ( key3 . name )
eq ( key3 . metadata [ ' foo ' ] , ' bar ' )
eq ( key3 . content_type , content_type )
eq ( key3 . size , key . size )
got = key3 . get_contents_as_string ( )
eq ( got , data )
# copy to another versioned bucket
bucket2 = get_new_bucket ( )
check_configure_versioning_retry ( bucket2 , True , " Enabled " )
key4 = bucket2 . copy_key ( ' dstmultipart3 ' , bucket . name , key . name , src_version_id = key . version_id )
key4 = bucket2 . get_key ( key4 . name )
eq ( key4 . metadata [ ' foo ' ] , ' bar ' )
eq ( key4 . content_type , content_type )
eq ( key4 . size , key . size )
got = key4 . get_contents_as_string ( )
eq ( got , data )
# copy to another non versioned bucket
bucket3 = get_new_bucket ( )
key5 = bucket3 . copy_key ( ' dstmultipart4 ' , bucket . name , key . name , src_version_id = key . version_id )
key5 = bucket3 . get_key ( key5 . name )
eq ( key5 . metadata [ ' foo ' ] , ' bar ' )
eq ( key5 . content_type , content_type )
eq ( key5 . size , key . size )
got = key5 . get_contents_as_string ( )
eq ( got , data )
# copy from a non versioned bucket
2016-11-01 23:08:00 +00:00
key6 = bucket3 . copy_key ( ' dstmultipart5 ' , bucket3 . name , key5 . name )
2016-09-16 08:30:17 +00:00
key6 = bucket3 . get_key ( key6 . name )
eq ( key6 . metadata [ ' foo ' ] , ' bar ' )
eq ( key6 . content_type , content_type )
eq ( key6 . size , key . size )
got = key6 . get_contents_as_string ( )
eq ( got , data )
2016-09-14 08:23:29 +00:00
2016-06-02 16:13:56 +00:00
def transfer_part ( bucket , mp_id , mp_keyname , i , part , headers = None ) :
2011-06-17 18:02:39 +00:00
""" Transfer a part of a multipart upload. Designed to be run in parallel.
"""
mp = boto . s3 . multipart . MultiPartUpload ( bucket )
mp . key_name = mp_keyname
mp . id = mp_id
part_out = StringIO ( part )
2016-06-02 16:13:56 +00:00
mp . upload_part_from_file ( part_out , i + 1 , headers = headers )
2011-06-17 18:02:39 +00:00
2016-09-30 01:17:52 +00:00
def copy_part ( src_bucket , src_keyname , dst_bucket , dst_keyname , mp_id , i , start = None , end = None , src_version_id = None ) :
2015-09-02 16:46:07 +00:00
""" Copy a part of a multipart upload from other bucket.
"""
mp = boto . s3 . multipart . MultiPartUpload ( dst_bucket )
mp . key_name = dst_keyname
2016-09-30 01:17:52 +00:00
mp . src_version_id = src_version_id
2015-09-02 16:46:07 +00:00
mp . id = mp_id
mp . copy_part_from_key ( src_bucket , src_keyname , i + 1 , start , end )
2015-05-13 00:06:11 +00:00
def generate_random ( size , part_size = 5 * 1024 * 1024 ) :
"""
Generate the specified number random data .
( actually each MB is a repetition of the first KB )
"""
chunk = 1024
allowed = string . ascii_letters
for x in range ( 0 , size , part_size ) :
strpart = ' ' . join ( [ allowed [ random . randint ( 0 , len ( allowed ) - 1 ) ] for _ in xrange ( chunk ) ] )
s = ' '
left = size - x
this_part_size = min ( left , part_size )
for y in range ( this_part_size / chunk ) :
s = s + strpart
2015-06-16 22:32:19 +00:00
if this_part_size > len ( s ) :
s = s + strpart [ 0 : this_part_size - len ( s ) ]
2015-05-13 00:06:11 +00:00
yield s
if ( x == size ) :
return
2015-05-14 00:10:07 +00:00
def _multipart_upload ( bucket , s3_key_name , size , part_size = 5 * 1024 * 1024 , do_list = None , headers = None , metadata = None , resend_parts = [ ] ) :
2011-12-22 21:08:03 +00:00
"""
generate a multi - part upload for a random file of specifed size ,
if requested , generate a list of the parts
return the upload descriptor
"""
2014-06-03 23:14:59 +00:00
upload = bucket . initiate_multipart_upload ( s3_key_name , headers = headers , metadata = metadata )
2015-05-13 00:06:11 +00:00
s = ' '
2014-10-13 14:10:27 +00:00
for i , part in enumerate ( generate_random ( size , part_size ) ) :
2015-05-13 00:06:11 +00:00
s + = part
2016-06-02 16:13:56 +00:00
transfer_part ( bucket , upload . id , upload . key_name , i , part , headers )
2015-05-14 00:10:07 +00:00
if i in resend_parts :
2016-06-02 16:13:56 +00:00
transfer_part ( bucket , upload . id , upload . key_name , i , part , headers )
2011-06-17 18:02:39 +00:00
if do_list is not None :
l = bucket . list_multipart_uploads ( )
l = list ( l )
2015-05-13 00:06:11 +00:00
return ( upload , s )
2011-06-17 18:02:39 +00:00
2016-09-30 01:17:52 +00:00
def _multipart_copy ( src_bucketname , src_keyname , dst_bucket , dst_keyname , size , part_size = 5 * 1024 * 1024 ,
do_list = None , headers = None , metadata = None , resend_parts = [ ] , src_version_id = None ) :
2015-09-02 16:46:07 +00:00
upload = dst_bucket . initiate_multipart_upload ( dst_keyname , headers = headers , metadata = metadata )
i = 0
for start_offset in range ( 0 , size , part_size ) :
end_offset = min ( start_offset + part_size - 1 , size - 1 )
2016-09-30 01:17:52 +00:00
copy_part ( src_bucketname , src_keyname , dst_bucket , dst_keyname , upload . id , i , start_offset , end_offset , src_version_id = src_version_id )
2015-09-02 16:46:07 +00:00
if i in resend_parts :
2016-09-30 01:17:52 +00:00
copy_part ( src_bucketname , src_keyname , dst_bucket , dst_name , upload . id , i , start_offset , end_offset , src_version_id = src_version_id )
2015-09-02 16:46:07 +00:00
i = i + 1
if do_list is not None :
l = dst_bucket . list_multipart_uploads ( )
l = list ( l )
return upload
2016-09-30 01:17:52 +00:00
def _create_key_with_random_content ( keyname , size = 7 * 1024 * 1024 , bucket = None ) :
if bucket is None :
bucket = get_new_bucket ( )
2015-09-02 16:46:07 +00:00
key = bucket . new_key ( keyname )
data = StringIO ( str ( generate_random ( size , size ) . next ( ) ) )
key . set_contents_from_file ( fp = data )
return ( bucket , key )
2014-12-23 04:15:33 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart upload without parts ' )
def test_multipart_upload_empty ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 0 )
2014-12-23 04:15:33 +00:00
e = assert_raises ( boto . exception . S3ResponseError , upload . complete_upload )
eq ( e . status , 400 )
eq ( e . error_code , u ' MalformedXML ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart uploads with single small part ' )
def test_multipart_upload_small ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
size = 1
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , size )
2014-12-23 04:15:33 +00:00
upload . complete_upload ( )
key2 = bucket . get_key ( key )
eq ( key2 . size , size )
2015-11-25 14:50:18 +00:00
def _check_key_content ( src , dst ) :
assert ( src . size > = dst . size )
src_content = src . get_contents_as_string ( headers = { ' Range ' : ' bytes= {s} - {e} ' . format ( s = 0 , e = dst . size - 1 ) } )
dst_content = dst . get_contents_as_string ( )
eq ( src_content , dst_content )
2015-09-02 16:46:07 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart copies with single small part ' )
def test_multipart_copy_small ( ) :
( src_bucket , src_key ) = _create_key_with_random_content ( ' foo ' )
dst_bucket = get_new_bucket ( )
dst_keyname = " mymultipart "
size = 1
copy = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , size )
copy . complete_upload ( )
key2 = dst_bucket . get_key ( dst_keyname )
eq ( key2 . size , size )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , key2 )
2015-09-02 16:46:07 +00:00
2016-09-30 01:17:52 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart copies with single small part ' )
def test_multipart_copy_special_names ( ) :
src_bucket = get_new_bucket ( )
dst_bucket = get_new_bucket ( )
dst_keyname = " mymultipart "
size = 1
for name in ( ' ' , ' _ ' , ' __ ' , ' ?versionId ' ) :
( src_bucket , src_key ) = _create_key_with_random_content ( name , bucket = src_bucket )
copy = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , size )
copy . complete_upload ( )
key2 = dst_bucket . get_key ( dst_keyname )
eq ( key2 . size , size )
_check_key_content ( src_key , key2 )
2015-05-14 00:10:07 +00:00
def _check_content_using_range ( k , data , step ) :
objlen = k . size
for ofs in xrange ( 0 , k . size , step ) :
toread = k . size - ofs
if toread > step :
toread = step
end = ofs + toread - 1
read_range = k . get_contents_as_string ( headers = { ' Range ' : ' bytes= {s} - {e} ' . format ( s = ofs , e = end ) } )
eq ( len ( read_range ) , toread )
eq ( read_range , data [ ofs : end + 1 ] )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete multi-part upload ' )
@attr ( assertion = ' successful ' )
2011-06-17 18:02:39 +00:00
def test_multipart_upload ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2014-06-03 23:14:59 +00:00
content_type = ' text/bla '
2015-05-14 00:10:07 +00:00
objlen = 30 * 1024 * 1024
( upload , data ) = _multipart_upload ( bucket , key , objlen , headers = { ' Content-Type ' : content_type } , metadata = { ' foo ' : ' bar ' } )
2011-06-17 18:02:39 +00:00
upload . complete_upload ( )
2014-08-05 20:08:24 +00:00
result = _head_bucket ( bucket )
2013-02-06 18:31:19 +00:00
2014-08-05 20:08:24 +00:00
eq ( result . get ( ' x-rgw-object-count ' , 1 ) , 1 )
eq ( result . get ( ' x-rgw-bytes-used ' , 30 * 1024 * 1024 ) , 30 * 1024 * 1024 )
2013-02-06 18:31:19 +00:00
2014-06-03 23:14:59 +00:00
k = bucket . get_key ( key )
eq ( k . metadata [ ' foo ' ] , ' bar ' )
eq ( k . content_type , content_type )
2015-05-14 00:10:07 +00:00
test_string = k . get_contents_as_string ( )
eq ( len ( test_string ) , k . size )
eq ( test_string , data )
2014-06-03 23:14:59 +00:00
2015-05-14 00:10:07 +00:00
_check_content_using_range ( k , data , 1000000 )
_check_content_using_range ( k , data , 10000000 )
2016-09-30 01:17:52 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart copies with single small part ' )
def test_multipart_copy_special_names ( ) :
src_bucket = get_new_bucket ( )
dst_bucket = get_new_bucket ( )
dst_keyname = " mymultipart "
size = 1
for name in ( ' ' , ' _ ' , ' __ ' , ' ?versionId ' ) :
( src_bucket , src_key ) = _create_key_with_random_content ( name , bucket = src_bucket )
copy = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , size )
copy . complete_upload ( )
key2 = dst_bucket . get_key ( dst_keyname )
eq ( key2 . size , size )
_check_key_content ( src_key , key2 )
2016-09-30 22:12:11 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check multipart copies of versioned objects ' )
2016-09-30 01:17:52 +00:00
def test_multipart_copy_versioned ( ) :
src_bucket = get_new_bucket ( )
dst_bucket = get_new_bucket ( )
dst_keyname = " mymultipart "
check_versioning ( src_bucket , None )
src_name = ' foo '
check_configure_versioning_retry ( src_bucket , True , " Enabled " )
size = 15 * 1024 * 1024
( src_bucket , src_key ) = _create_key_with_random_content ( src_name , size = size , bucket = src_bucket )
( src_bucket , src_key ) = _create_key_with_random_content ( src_name , size = size , bucket = src_bucket )
( src_bucket , src_key ) = _create_key_with_random_content ( src_name , size = size , bucket = src_bucket )
version_id = [ ]
for k in src_bucket . list_versions ( ) :
version_id . append ( k . version_id )
break
for vid in version_id :
src_key = src_bucket . get_key ( src_name , version_id = vid )
copy = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , size , src_version_id = vid )
copy . complete_upload ( )
key2 = dst_bucket . get_key ( dst_keyname )
eq ( key2 . size , size )
_check_key_content ( src_key , key2 )
2015-05-14 00:10:07 +00:00
def _check_upload_multipart_resend ( bucket , key , objlen , resend_parts ) :
2015-05-13 00:06:11 +00:00
content_type = ' text/bla '
2015-05-14 00:10:07 +00:00
( upload , data ) = _multipart_upload ( bucket , key , objlen , headers = { ' Content-Type ' : content_type } , metadata = { ' foo ' : ' bar ' } , resend_parts = resend_parts )
2015-05-13 00:06:11 +00:00
upload . complete_upload ( )
k = bucket . get_key ( key )
eq ( k . metadata [ ' foo ' ] , ' bar ' )
eq ( k . content_type , content_type )
test_string = k . get_contents_as_string ( )
eq ( k . size , len ( test_string ) )
eq ( k . size , objlen )
eq ( test_string , data )
2015-05-14 00:10:07 +00:00
_check_content_using_range ( k , data , 1000000 )
_check_content_using_range ( k , data , 10000000 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete multiple multi-part upload with different sizes ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete multi-part upload ' )
@attr ( assertion = ' successful ' )
def test_multipart_upload_resend_part ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
objlen = 30 * 1024 * 1024
_check_upload_multipart_resend ( bucket , key , objlen , [ 0 ] )
_check_upload_multipart_resend ( bucket , key , objlen , [ 1 ] )
_check_upload_multipart_resend ( bucket , key , objlen , [ 2 ] )
_check_upload_multipart_resend ( bucket , key , objlen , [ 1 , 2 ] )
_check_upload_multipart_resend ( bucket , key , objlen , [ 0 , 1 , 2 , 3 , 4 , 5 ] )
2014-07-16 20:22:38 +00:00
@attr ( assertion = ' successful ' )
def test_multipart_upload_multiple_sizes ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 5 * 1024 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 5 * 1024 * 1024 + 100 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 5 * 1024 * 1024 + 600 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 10 * 1024 * 1024 + 100 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 10 * 1024 * 1024 + 600 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 10 * 1024 * 1024 )
2014-07-16 20:22:38 +00:00
upload . complete_upload ( )
2015-09-02 16:46:43 +00:00
@attr ( assertion = ' successful ' )
2016-03-28 09:18:18 +00:00
@attr ( ' fails_on_rgw ' )
2015-09-02 16:46:43 +00:00
def test_multipart_copy_multiple_sizes ( ) :
( src_bucket , src_key ) = _create_key_with_random_content ( ' foo ' , 12 * 1024 * 1024 )
dst_bucket = get_new_bucket ( )
dst_keyname = " mymultipart "
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 5 * 1024 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 5 * 1024 * 1024 + 100 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 5 * 1024 * 1024 + 600 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 10 * 1024 * 1024 + 100 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 10 * 1024 * 1024 + 600 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
upload = _multipart_copy ( src_bucket . name , src_key . name , dst_bucket , dst_keyname , 10 * 1024 * 1024 )
upload . complete_upload ( )
2015-11-25 14:50:18 +00:00
_check_key_content ( src_key , dst_bucket . get_key ( dst_keyname ) )
2015-09-02 16:46:43 +00:00
2014-10-13 14:10:27 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check failure on multiple multi-part upload with size too small ' )
@attr ( assertion = ' fails 400 ' )
def test_multipart_upload_size_too_small ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 100 * 1024 , part_size = 10 * 1024 )
2014-10-13 14:10:27 +00:00
e = assert_raises ( boto . exception . S3ResponseError , upload . complete_upload )
eq ( e . status , 400 )
eq ( e . error_code , u ' EntityTooSmall ' )
2014-11-17 19:08:13 +00:00
def gen_rand_string ( size , chars = string . ascii_uppercase + string . digits ) :
return ' ' . join ( random . choice ( chars ) for _ in range ( size ) )
2014-12-12 18:14:37 +00:00
def _do_test_multipart_upload_contents ( bucket , key_name , num_parts ) :
2014-11-17 19:08:13 +00:00
payload = gen_rand_string ( 5 ) * 1024 * 1024
2012-10-31 19:32:03 +00:00
mp = bucket . initiate_multipart_upload ( key_name )
for i in range ( 0 , num_parts ) :
mp . upload_part_from_file ( StringIO ( payload ) , i + 1 )
2014-04-01 19:20:16 +00:00
last_payload = ' 123 ' * 1024 * 1024
2014-11-17 19:08:13 +00:00
mp . upload_part_from_file ( StringIO ( last_payload ) , num_parts + 1 )
2014-04-01 19:20:16 +00:00
2012-10-31 19:32:03 +00:00
mp . complete_upload ( )
key = bucket . get_key ( key_name )
test_string = key . get_contents_as_string ( )
2014-11-17 19:08:13 +00:00
all_payload = payload * num_parts + last_payload
print ' JJJ ' , key_name , len ( all_payload ) , len ( test_string )
assert test_string == all_payload
return all_payload
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' check contents of multi-part upload ' )
@attr ( assertion = ' successful ' )
def test_multipart_upload_contents ( ) :
2014-12-12 18:14:37 +00:00
_do_test_multipart_upload_contents ( get_new_bucket ( ) , ' mymultipart ' , 3 )
2012-10-31 19:32:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multi-part upload overwrites existing key ' )
@attr ( assertion = ' successful ' )
def test_multipart_upload_overwrite_existing_object ( ) :
bucket = get_new_bucket ( )
key_name = " mymultipart "
2013-02-20 21:55:35 +00:00
payload = ' 12345 ' * 1024 * 1024
num_parts = 2
2012-10-31 19:32:03 +00:00
key = bucket . new_key ( key_name )
key . set_contents_from_string ( payload )
mp = bucket . initiate_multipart_upload ( key_name )
for i in range ( 0 , num_parts ) :
mp . upload_part_from_file ( StringIO ( payload ) , i + 1 )
mp . complete_upload ( )
key = bucket . get_key ( key_name )
test_string = key . get_contents_as_string ( )
assert test_string == payload * num_parts
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' abort multi-part upload ' )
@attr ( assertion = ' successful ' )
2011-06-17 18:02:39 +00:00
def test_abort_multipart_upload ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2015-05-13 00:06:11 +00:00
( upload , data ) = _multipart_upload ( bucket , key , 10 * 1024 * 1024 )
2011-06-17 18:02:39 +00:00
upload . cancel_upload ( )
2014-08-05 20:08:24 +00:00
result = _head_bucket ( bucket )
2013-02-06 18:31:19 +00:00
2014-08-05 20:08:24 +00:00
eq ( result . get ( ' x-rgw-object-count ' , 0 ) , 0 )
eq ( result . get ( ' x-rgw-bytes-used ' , 0 ) , 0 )
2011-06-17 18:02:39 +00:00
2015-01-03 03:28:21 +00:00
def test_abort_multipart_upload_not_found ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
e = assert_raises ( boto . exception . S3ResponseError , bucket . cancel_multipart_upload , key , ' 1 ' )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchUpload ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' concurrent multi-part uploads ' )
@attr ( assertion = ' successful ' )
2011-06-17 18:02:39 +00:00
def test_list_multipart_upload ( ) :
bucket = get_new_bucket ( )
key = " mymultipart "
2014-07-16 20:22:38 +00:00
mb = 1024 * 1024
2015-05-13 00:06:11 +00:00
( upload1 , data ) = _multipart_upload ( bucket , key , 5 * mb , do_list = True )
( upload2 , data ) = _multipart_upload ( bucket , key , 6 * mb , do_list = True )
2011-06-17 18:02:39 +00:00
key2 = " mymultipart2 "
2015-05-13 00:06:11 +00:00
( upload3 , data ) = _multipart_upload ( bucket , key2 , 5 * mb , do_list = True )
2011-06-17 18:02:39 +00:00
2013-02-20 01:58:54 +00:00
l = bucket . list_multipart_uploads ( )
l = list ( l )
index = dict ( [ ( key , 2 ) , ( key2 , 1 ) ] )
for upload in l :
index [ upload . key_name ] - = 1 ;
for k , c in index . items ( ) :
eq ( c , 0 )
2011-06-17 18:02:39 +00:00
upload1 . cancel_upload ( )
upload2 . cancel_upload ( )
upload3 . cancel_upload ( )
2011-06-28 19:49:20 +00:00
2015-05-02 17:51:30 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multi-part upload with missing part ' )
def test_multipart_upload_missing_part ( ) :
bucket = get_new_bucket ( )
key_name = " mymultipart "
mp = bucket . initiate_multipart_upload ( key_name )
mp . upload_part_from_file ( StringIO ( ' \x00 ' ) , 1 )
xml = mp . to_xml ( )
xml = xml . replace ( ' <PartNumber>1</PartNumber> ' , ' <PartNumber>9999</PartNumber> ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . complete_multipart_upload , key_name , mp . id , xml )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2015-05-02 17:51:30 +00:00
eq ( e . error_code , ' InvalidPart ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multi-part upload with incorrect ETag ' )
def test_multipart_upload_incorrect_etag ( ) :
bucket = get_new_bucket ( )
key_name = " mymultipart "
mp = bucket . initiate_multipart_upload ( key_name )
mp . upload_part_from_file ( StringIO ( ' \x00 ' ) , 1 )
xml = mp . to_xml ( )
xml = xml . replace ( ' <ETag> " 93b885adfe0da089cdf634904fd59f71 " </ETag> ' , ' <ETag> " ffffffffffffffffffffffffffffffff " </ETag> ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . complete_multipart_upload , key_name , mp . id , xml )
eq ( e . status , 400 )
2015-10-07 19:31:31 +00:00
eq ( e . reason . lower ( ) , ' bad request ' ) # some proxies vary the case
2015-05-02 17:51:30 +00:00
eq ( e . error_code , ' InvalidPart ' )
2011-07-14 23:26:46 +00:00
def _simple_http_req_100_cont ( host , port , is_secure , method , resource ) :
2011-12-22 21:08:03 +00:00
"""
Send the specified request w / expect 100 - continue
and await confirmation .
"""
2011-06-28 19:49:20 +00:00
req = ' {method} {resource} HTTP/1.1 \r \n Host: {host} \r \n Accept-Encoding: identity \r \n Content-Length: 123 \r \n Expect: 100-continue \r \n \r \n ' . format (
2011-07-11 20:19:54 +00:00
method = method ,
resource = resource ,
host = host ,
)
2011-06-28 19:49:20 +00:00
s = socket . socket ( socket . AF_INET , socket . SOCK_STREAM )
2011-07-14 23:26:46 +00:00
if is_secure :
s = ssl . wrap_socket ( s ) ;
2011-06-28 19:49:20 +00:00
s . settimeout ( 5 )
s . connect ( ( host , port ) )
s . send ( req )
try :
data = s . recv ( 1024 )
except socket . error , msg :
print ' got response: ' , msg
print ' most likely server doesn \' t support 100-continue '
s . close ( )
l = data . split ( ' ' )
assert l [ 0 ] . startswith ( ' HTTP ' )
return l [ 1 ]
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' w/expect continue ' )
@attr ( assertion = ' succeeds if object is public-read-write ' )
2015-02-27 18:23:09 +00:00
@attr ( ' 100_continue ' )
2015-03-04 21:10:40 +00:00
@attr ( ' fails_on_mod_proxy_fcgi ' )
2011-06-28 19:49:20 +00:00
def test_100_continue ( ) :
bucket = get_new_bucket ( )
objname = ' testobj '
2011-07-11 20:19:54 +00:00
resource = ' / {bucket} / {obj} ' . format ( bucket = bucket . name , obj = objname )
2011-06-28 19:49:20 +00:00
2011-07-14 23:26:46 +00:00
status = _simple_http_req_100_cont ( s3 . main . host , s3 . main . port , s3 . main . is_secure , ' PUT ' , resource )
2011-06-28 19:49:20 +00:00
eq ( status , ' 403 ' )
bucket . set_acl ( ' public-read-write ' )
2011-07-14 23:26:46 +00:00
status = _simple_http_req_100_cont ( s3 . main . host , s3 . main . port , s3 . main . is_secure , ' PUT ' , resource )
2011-06-28 19:49:20 +00:00
eq ( status , ' 100 ' )
2011-07-07 00:15:48 +00:00
2011-07-21 21:09:21 +00:00
def _test_bucket_acls_changes_persistent ( bucket ) :
2011-12-22 21:08:03 +00:00
"""
set and verify readback of each possible permission
"""
2011-07-21 21:09:21 +00:00
perms = ( ' FULL_CONTROL ' , ' WRITE ' , ' WRITE_ACP ' , ' READ ' , ' READ_ACP ' )
for p in perms :
_build_bucket_acl_xml ( p , bucket )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' acl set ' )
@attr ( assertion = ' all permissions are persistent ' )
2011-07-21 21:09:21 +00:00
def test_bucket_acls_changes_persistent ( ) :
bucket = get_new_bucket ( )
_test_bucket_acls_changes_persistent ( bucket ) ;
2011-12-22 21:08:03 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' repeated acl set ' )
@attr ( assertion = ' all permissions are persistent ' )
2011-07-21 21:09:21 +00:00
def test_stress_bucket_acls_changes ( ) :
bucket = get_new_bucket ( )
for i in xrange ( 10 ) :
_test_bucket_acls_changes_persistent ( bucket ) ;
2013-06-06 18:19:05 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' set cors ' )
@attr ( assertion = ' succeeds ' )
def test_set_cors ( ) :
bucket = get_new_bucket ( )
cfg = CORSConfiguration ( )
2013-08-01 20:24:28 +00:00
cfg . add_rule ( ' GET ' , ' *.get ' )
cfg . add_rule ( ' PUT ' , ' *.put ' )
2013-06-06 18:19:05 +00:00
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_cors )
eq ( e . status , 404 )
bucket . set_cors ( cfg )
new_cfg = bucket . get_cors ( )
2013-08-01 20:24:28 +00:00
eq ( len ( new_cfg ) , 2 )
result = bunch . Bunch ( )
for c in new_cfg :
eq ( len ( c . allowed_method ) , 1 )
eq ( len ( c . allowed_origin ) , 1 )
result [ c . allowed_method [ 0 ] ] = c . allowed_origin [ 0 ]
eq ( result [ ' GET ' ] , ' *.get ' )
eq ( result [ ' PUT ' ] , ' *.put ' )
bucket . delete_cors ( )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_cors )
eq ( e . status , 404 )
2013-08-28 02:47:07 +00:00
def _cors_request_and_check ( func , url , headers , expect_status , expect_allow_origin , expect_allow_methods ) :
r = func ( url , headers = headers )
eq ( r . status_code , expect_status )
assert r . headers [ ' access-control-allow-origin ' ] == expect_allow_origin
assert r . headers [ ' access-control-allow-methods ' ] == expect_allow_methods
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' check cors response when origin header set ' )
@attr ( assertion = ' returning cors header ' )
def test_cors_origin_response ( ) :
cfg = CORSConfiguration ( )
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read ' )
cfg . add_rule ( ' GET ' , ' *suffix ' )
cfg . add_rule ( ' GET ' , ' start*end ' )
cfg . add_rule ( ' GET ' , ' prefix* ' )
cfg . add_rule ( ' PUT ' , ' *.put ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_cors )
eq ( e . status , 404 )
bucket . set_cors ( cfg )
2013-09-04 23:45:00 +00:00
time . sleep ( 3 ) # waiting, since if running against amazon data consistency model is not strict read-after-write
2013-08-28 02:47:07 +00:00
url = _get_post_url ( s3 . main , bucket )
_cors_request_and_check ( requests . get , url , None , 200 , None , None )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' foo.suffix ' } , 200 , ' foo.suffix ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' foo.bar ' } , 200 , None , None )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' foo.suffix.get ' } , 200 , None , None )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' startend ' } , 200 , ' startend ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' start1end ' } , 200 , ' start1end ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' start12end ' } , 200 , ' start12end ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' 0start12end ' } , 200 , None , None )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' prefix ' } , 200 , ' prefix ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' prefix.suffix ' } , 200 , ' prefix.suffix ' , ' GET ' )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' bla.prefix ' } , 200 , None , None )
obj_url = ' {u} / {o} ' . format ( u = url , o = ' bar ' )
_cors_request_and_check ( requests . get , obj_url , { ' Origin ' : ' foo.suffix ' } , 404 , ' foo.suffix ' , ' GET ' )
2013-09-04 23:45:00 +00:00
_cors_request_and_check ( requests . put , obj_url , { ' Origin ' : ' foo.suffix ' , ' Access-Control-Request-Method ' : ' GET ' ,
' content-length ' : ' 0 ' } , 403 , ' foo.suffix ' , ' GET ' )
_cors_request_and_check ( requests . put , obj_url , { ' Origin ' : ' foo.suffix ' , ' Access-Control-Request-Method ' : ' PUT ' ,
' content-length ' : ' 0 ' } , 403 , None , None )
_cors_request_and_check ( requests . put , obj_url , { ' Origin ' : ' foo.suffix ' , ' Access-Control-Request-Method ' : ' DELETE ' ,
' content-length ' : ' 0 ' } , 403 , None , None )
_cors_request_and_check ( requests . put , obj_url , { ' Origin ' : ' foo.suffix ' , ' content-length ' : ' 0 ' } , 403 , None , None )
2013-08-28 02:47:07 +00:00
2013-09-04 23:45:00 +00:00
_cors_request_and_check ( requests . put , obj_url , { ' Origin ' : ' foo.put ' , ' content-length ' : ' 0 ' } , 403 , ' foo.put ' , ' PUT ' )
2013-08-28 02:47:07 +00:00
_cors_request_and_check ( requests . get , obj_url , { ' Origin ' : ' foo.suffix ' } , 404 , ' foo.suffix ' , ' GET ' )
2013-09-04 23:45:00 +00:00
_cors_request_and_check ( requests . options , url , None , 400 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' foo.suffix ' } , 400 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' bla ' } , 400 , None , None )
_cors_request_and_check ( requests . options , obj_url , { ' Origin ' : ' foo.suffix ' , ' Access-Control-Request-Method ' : ' GET ' ,
' content-length ' : ' 0 ' } , 200 , ' foo.suffix ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' foo.bar ' , ' Access-Control-Request-Method ' : ' GET ' } , 403 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' foo.suffix.get ' , ' Access-Control-Request-Method ' : ' GET ' } , 403 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' startend ' , ' Access-Control-Request-Method ' : ' GET ' } , 200 , ' startend ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' start1end ' , ' Access-Control-Request-Method ' : ' GET ' } , 200 , ' start1end ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' start12end ' , ' Access-Control-Request-Method ' : ' GET ' } , 200 , ' start12end ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' 0start12end ' , ' Access-Control-Request-Method ' : ' GET ' } , 403 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' prefix ' , ' Access-Control-Request-Method ' : ' GET ' } , 200 , ' prefix ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' prefix.suffix ' , ' Access-Control-Request-Method ' : ' GET ' } , 200 , ' prefix.suffix ' , ' GET ' )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' bla.prefix ' , ' Access-Control-Request-Method ' : ' GET ' } , 403 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' foo.put ' , ' Access-Control-Request-Method ' : ' GET ' } , 403 , None , None )
_cors_request_and_check ( requests . options , url , { ' Origin ' : ' foo.put ' , ' Access-Control-Request-Method ' : ' PUT ' } , 200 , ' foo.put ' , ' PUT ' )
2016-04-19 15:12:12 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' check cors response when origin is set to wildcard ' )
@attr ( assertion = ' returning cors header ' )
def test_cors_origin_wildcard ( ) :
cfg = CORSConfiguration ( )
bucket = get_new_bucket ( )
bucket . set_acl ( ' public-read ' )
cfg . add_rule ( ' GET ' , ' * ' )
e = assert_raises ( boto . exception . S3ResponseError , bucket . get_cors )
eq ( e . status , 404 )
bucket . set_cors ( cfg )
time . sleep ( 3 )
url = _get_post_url ( s3 . main , bucket )
_cors_request_and_check ( requests . get , url , None , 200 , None , None )
_cors_request_and_check ( requests . get , url , { ' Origin ' : ' example.origin ' } , 200 , ' * ' , ' GET ' )
2013-08-01 20:24:28 +00:00
2011-07-07 20:20:32 +00:00
class FakeFile ( object ) :
2011-12-22 21:08:03 +00:00
"""
file that simulates seek , tell , and current character
"""
2011-08-25 21:32:45 +00:00
def __init__ ( self , char = ' A ' , interrupt = None ) :
2011-07-07 20:20:32 +00:00
self . offset = 0
self . char = char
self . interrupt = interrupt
2012-05-16 20:30:39 +00:00
def seek ( self , offset , whence = os . SEEK_SET ) :
if whence == os . SEEK_SET :
self . offset = offset
elif whence == os . SEEK_END :
self . offset = self . size + offset ;
elif whence == os . SEEK_CUR :
self . offset + = offset
2011-07-07 20:20:32 +00:00
def tell ( self ) :
return self . offset
2011-08-25 21:32:45 +00:00
class FakeWriteFile ( FakeFile ) :
2011-12-22 21:08:03 +00:00
"""
file that simulates interruptable reads of constant data
"""
2011-08-25 21:32:45 +00:00
def __init__ ( self , size , char = ' A ' , interrupt = None ) :
FakeFile . __init__ ( self , char , interrupt )
self . size = size
2011-07-07 20:20:32 +00:00
def read ( self , size = - 1 ) :
if size < 0 :
size = self . size - self . offset
count = min ( size , self . size - self . offset )
self . offset + = count
# Sneaky! do stuff before we return (the last time)
if self . interrupt != None and self . offset == self . size and count > 0 :
self . interrupt ( )
return self . char * count
2011-08-25 21:32:45 +00:00
class FakeReadFile ( FakeFile ) :
2011-12-22 21:08:03 +00:00
"""
file that simulates writes , interrupting after the second
"""
2011-08-25 21:32:45 +00:00
def __init__ ( self , size , char = ' A ' , interrupt = None ) :
FakeFile . __init__ ( self , char , interrupt )
self . interrupted = False
self . size = 0
self . expected_size = size
def write ( self , chars ) :
eq ( chars , self . char * len ( chars ) )
self . offset + = len ( chars )
self . size + = len ( chars )
# Sneaky! do stuff on the second seek
if not self . interrupted and self . interrupt != None \
and self . offset > 0 :
self . interrupt ( )
self . interrupted = True
def close ( self ) :
eq ( self . size , self . expected_size )
2011-07-07 20:20:32 +00:00
class FakeFileVerifier ( object ) :
2011-12-22 21:08:03 +00:00
"""
file that verifies expected data has been written
"""
2011-07-08 21:15:47 +00:00
def __init__ ( self , char = None ) :
2011-07-07 20:20:32 +00:00
self . char = char
self . size = 0
def write ( self , data ) :
size = len ( data )
if self . char == None :
self . char = data [ 0 ]
self . size + = size
eq ( data , self . char * size )
def _verify_atomic_key_data ( key , size = - 1 , char = None ) :
2011-12-22 21:08:03 +00:00
"""
Make sure file is of the expected size and ( simulated ) content
"""
2011-07-07 20:20:32 +00:00
fp_verify = FakeFileVerifier ( char )
key . get_contents_to_file ( fp_verify )
if size > = 0 :
eq ( fp_verify . size , size )
2011-08-25 21:32:45 +00:00
def _test_atomic_read ( file_size ) :
2011-12-22 21:08:03 +00:00
"""
Create a file of A ' s, use it to set_contents_from_file.
Create a file of B ' s, use it to re-set_contents_from_file.
Re - read the contents , and confirm we get B ' s
"""
2011-08-25 21:32:45 +00:00
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
# create object of <file_size> As
fp_a = FakeWriteFile ( file_size , ' A ' )
key . set_contents_from_file ( fp_a )
read_conn = boto . s3 . connection . S3Connection (
aws_access_key_id = s3 [ ' main ' ] . aws_access_key_id ,
aws_secret_access_key = s3 [ ' main ' ] . aws_secret_access_key ,
is_secure = s3 [ ' main ' ] . is_secure ,
port = s3 [ ' main ' ] . port ,
host = s3 [ ' main ' ] . host ,
calling_format = s3 [ ' main ' ] . calling_format ,
)
read_bucket = read_conn . get_bucket ( bucket . name )
read_key = read_bucket . get_key ( ' testobj ' )
fp_b = FakeWriteFile ( file_size , ' B ' )
fp_a2 = FakeReadFile ( file_size , ' A ' ,
lambda : key . set_contents_from_file ( fp_b )
)
# read object while writing it to it
read_key . get_contents_to_file ( fp_a2 )
fp_a2 . close ( )
_verify_atomic_key_data ( key , file_size , ' B ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' read atomicity ' )
@attr ( assertion = ' 1MB successful ' )
2011-08-25 21:32:45 +00:00
def test_atomic_read_1mb ( ) :
_test_atomic_read ( 1024 * 1024 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' read atomicity ' )
@attr ( assertion = ' 4MB successful ' )
2011-08-25 21:32:45 +00:00
def test_atomic_read_4mb ( ) :
_test_atomic_read ( 1024 * 1024 * 4 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' read atomicity ' )
@attr ( assertion = ' 8MB successful ' )
2011-08-25 21:32:45 +00:00
def test_atomic_read_8mb ( ) :
_test_atomic_read ( 1024 * 1024 * 8 )
2011-07-07 00:15:48 +00:00
def _test_atomic_write ( file_size ) :
2011-12-22 21:08:03 +00:00
"""
Create a file of A ' s, use it to set_contents_from_file.
Verify the contents are all A ' s.
Create a file of B ' s, use it to re-set_contents_from_file.
Before re - set continues , verify content ' s still A ' s
Re - read the contents , and confirm we get B ' s
"""
2011-07-07 00:15:48 +00:00
bucket = get_new_bucket ( )
objname = ' testobj '
key = bucket . new_key ( objname )
# create <file_size> file of A's
2011-08-25 21:32:45 +00:00
fp_a = FakeWriteFile ( file_size , ' A ' )
2011-07-07 00:15:48 +00:00
key . set_contents_from_file ( fp_a )
2011-07-11 20:19:54 +00:00
2011-07-07 00:15:48 +00:00
# verify A's
2011-07-07 20:20:32 +00:00
_verify_atomic_key_data ( key , file_size , ' A ' )
2011-07-07 00:15:48 +00:00
2012-02-15 20:45:31 +00:00
read_key = bucket . get_key ( objname )
2011-07-07 00:15:48 +00:00
# create <file_size> file of B's
# but try to verify the file before we finish writing all the B's
2011-08-25 21:32:45 +00:00
fp_b = FakeWriteFile ( file_size , ' B ' ,
2012-02-15 20:45:31 +00:00
lambda : _verify_atomic_key_data ( read_key , file_size )
2011-07-07 00:15:48 +00:00
)
key . set_contents_from_file ( fp_b )
# verify B's
2011-07-07 20:20:32 +00:00
_verify_atomic_key_data ( key , file_size , ' B ' )
2011-07-07 00:15:48 +00:00
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write atomicity ' )
@attr ( assertion = ' 1MB successful ' )
2011-07-07 00:15:48 +00:00
def test_atomic_write_1mb ( ) :
_test_atomic_write ( 1024 * 1024 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write atomicity ' )
@attr ( assertion = ' 4MB successful ' )
2011-07-07 00:15:48 +00:00
def test_atomic_write_4mb ( ) :
_test_atomic_write ( 1024 * 1024 * 4 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write atomicity ' )
@attr ( assertion = ' 8MB successful ' )
2011-07-07 00:15:48 +00:00
def test_atomic_write_8mb ( ) :
_test_atomic_write ( 1024 * 1024 * 8 )
2011-07-07 20:20:32 +00:00
def _test_atomic_dual_write ( file_size ) :
2011-12-22 21:08:03 +00:00
"""
create an object , two sessions writing different contents
confirm that it is all one or the other
"""
2011-07-07 20:20:32 +00:00
bucket = get_new_bucket ( )
objname = ' testobj '
key = bucket . new_key ( objname )
2011-07-11 20:19:54 +00:00
2011-07-07 20:20:32 +00:00
# get a second key object (for the same key)
# so both can be writing without interfering
key2 = bucket . new_key ( objname )
# write <file_size> file of B's
# but before we're done, try to write all A's
2011-08-25 21:32:45 +00:00
fp_a = FakeWriteFile ( file_size , ' A ' )
fp_b = FakeWriteFile ( file_size , ' B ' ,
2012-05-16 20:32:33 +00:00
lambda : key2 . set_contents_from_file ( fp_a , rewind = True )
2011-07-07 20:20:32 +00:00
)
key . set_contents_from_file ( fp_b )
# verify the file
_verify_atomic_key_data ( key , file_size )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write one or the other ' )
@attr ( assertion = ' 1MB successful ' )
2011-07-07 20:20:32 +00:00
def test_atomic_dual_write_1mb ( ) :
_test_atomic_dual_write ( 1024 * 1024 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write one or the other ' )
@attr ( assertion = ' 4MB successful ' )
2011-07-07 20:20:32 +00:00
def test_atomic_dual_write_4mb ( ) :
_test_atomic_dual_write ( 1024 * 1024 * 4 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write one or the other ' )
@attr ( assertion = ' 8MB successful ' )
2011-07-07 20:20:32 +00:00
def test_atomic_dual_write_8mb ( ) :
_test_atomic_dual_write ( 1024 * 1024 * 8 )
2011-07-26 23:58:15 +00:00
2014-11-19 06:48:23 +00:00
def _test_atomic_conditional_write ( file_size ) :
"""
Create a file of A ' s, use it to set_contents_from_file.
Verify the contents are all A ' s.
Create a file of B ' s, use it to re-set_contents_from_file.
Before re - set continues , verify content ' s still A ' s
Re - read the contents , and confirm we get B ' s
"""
bucket = get_new_bucket ( )
objname = ' testobj '
key = bucket . new_key ( objname )
# create <file_size> file of A's
fp_a = FakeWriteFile ( file_size , ' A ' )
key . set_contents_from_file ( fp_a )
# verify A's
_verify_atomic_key_data ( key , file_size , ' A ' )
read_key = bucket . get_key ( objname )
# create <file_size> file of B's
# but try to verify the file before we finish writing all the B's
fp_b = FakeWriteFile ( file_size , ' B ' ,
lambda : _verify_atomic_key_data ( read_key , file_size )
)
key . set_contents_from_file ( fp_b , headers = { ' If-Match ' : ' * ' } )
# verify B's
_verify_atomic_key_data ( key , file_size , ' B ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write atomicity ' )
@attr ( assertion = ' 1MB successful ' )
@attr ( ' fails_on_aws ' )
def test_atomic_conditional_write_1mb ( ) :
_test_atomic_conditional_write ( 1024 * 1024 )
def _test_atomic_dual_conditional_write ( file_size ) :
"""
create an object , two sessions writing different contents
confirm that it is all one or the other
"""
bucket = get_new_bucket ( )
objname = ' testobj '
key = bucket . new_key ( objname )
fp_a = FakeWriteFile ( file_size , ' A ' )
key . set_contents_from_file ( fp_a )
_verify_atomic_key_data ( key , file_size , ' A ' )
etag_fp_a = key . etag . replace ( ' " ' , ' ' ) . strip ( )
# get a second key object (for the same key)
# so both can be writing without interfering
key2 = bucket . new_key ( objname )
# write <file_size> file of C's
# but before we're done, try to write all B's
fp_b = FakeWriteFile ( file_size , ' B ' )
fp_c = FakeWriteFile ( file_size , ' C ' ,
lambda : key2 . set_contents_from_file ( fp_b , rewind = True , headers = { ' If-Match ' : etag_fp_a } )
)
# key.set_contents_from_file(fp_c, headers={'If-Match': etag_fp_a})
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_file , fp_c ,
headers = { ' If-Match ' : etag_fp_a } )
eq ( e . status , 412 )
eq ( e . reason , ' Precondition Failed ' )
eq ( e . error_code , ' PreconditionFailed ' )
# verify the file
_verify_atomic_key_data ( key , file_size , ' B ' )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write one or the other ' )
@attr ( assertion = ' 1MB successful ' )
@attr ( ' fails_on_aws ' )
def test_atomic_dual_conditional_write_1mb ( ) :
_test_atomic_dual_conditional_write ( 1024 * 1024 )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write file in deleted bucket ' )
@attr ( assertion = ' fail 404 ' )
2011-08-25 23:44:18 +00:00
@attr ( ' fails_on_aws ' )
def test_atomic_write_bucket_gone ( ) :
bucket = get_new_bucket ( )
def remove_bucket ( ) :
bucket . delete ( )
# create file of A's but delete the bucket it's in before we finish writing
# all of them
2011-08-29 19:36:00 +00:00
key = bucket . new_key ( ' foo ' )
2011-08-25 21:32:45 +00:00
fp_a = FakeWriteFile ( 1024 * 1024 , ' A ' , remove_bucket )
2011-08-25 23:44:18 +00:00
e = assert_raises ( boto . exception . S3ResponseError , key . set_contents_from_file , fp_a )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchBucket ' )
2015-12-18 20:12:59 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' begin to overwrite file with multipart upload then abort ' )
@attr ( assertion = ' read back original key contents ' )
def test_atomic_multipart_upload_write ( ) :
bucket = get_new_bucket ( )
key = bucket . new_key ( ' foo ' )
key . set_contents_from_string ( ' bar ' )
upload = bucket . initiate_multipart_upload ( key )
key = bucket . get_key ( ' foo ' )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
upload . cancel_upload ( )
key = bucket . get_key ( ' foo ' )
got = key . get_contents_as_string ( )
eq ( got , ' bar ' )
2016-05-16 21:44:22 +00:00
class Counter :
def __init__ ( self , default_val ) :
self . val = default_val
def inc ( self ) :
self . val = self . val + 1
class ActionOnCount :
def __init__ ( self , trigger_count , action ) :
self . count = 0
self . trigger_count = trigger_count
self . action = action
def trigger ( self ) :
self . count = self . count + 1
if self . count == self . trigger_count :
self . action ( )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multipart check for two writes of the same part, first write finishes last ' )
@attr ( assertion = ' object contains correct content ' )
def test_multipart_resend_first_finishes_last ( ) :
bucket = get_new_bucket ( )
key_name = " mymultipart "
mp = bucket . initiate_multipart_upload ( key_name )
file_size = 8 * 1024 * 1024
counter = Counter ( 0 )
# mp.upload_part_from_file might read multiple times from the object
# first time when it calculates md5, second time when it writes data
# out. We want to interject only on the last time, but we can't be
# sure how many times it's going to read, so let's have a test run
# and count the number of reads
fp_dryrun = FakeWriteFile ( file_size , ' C ' ,
lambda : counter . inc ( )
)
mp . upload_part_from_file ( fp_dryrun , 1 )
2016-09-09 00:54:18 +00:00
mp . complete_upload ( )
2016-05-16 21:44:22 +00:00
bucket . delete_key ( key_name )
# ok, now for the actual test
fp_b = FakeWriteFile ( file_size , ' B ' )
action = ActionOnCount ( counter . val , lambda : mp . upload_part_from_file ( fp_b , 1 ) )
fp_a = FakeWriteFile ( file_size , ' A ' ,
lambda : action . trigger ( )
)
mp = bucket . initiate_multipart_upload ( key_name )
mp . upload_part_from_file ( fp_a , 1 )
mp . complete_upload ( )
key = bucket . get_key ( key_name )
_verify_atomic_key_data ( key , file_size , ' A ' )
2011-12-22 21:08:03 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' range ' )
@attr ( assertion = ' returns correct data, 206 ' )
2011-07-26 23:58:15 +00:00
def test_ranged_request_response_code ( ) :
content = ' testcontent '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
key . set_contents_from_string ( content )
key . open ( ' r ' , headers = { ' Range ' : ' bytes=4-7 ' } )
status = key . resp . status
2015-06-17 15:26:15 +00:00
content_range = key . resp . getheader ( ' Content-Range ' )
2011-07-26 23:58:15 +00:00
fetched_content = ' '
for data in key :
fetched_content + = data ;
key . close ( )
eq ( fetched_content , content [ 4 : 8 ] )
eq ( status , 206 )
2015-06-17 15:26:15 +00:00
eq ( content_range , ' bytes 4-7/11 ' )
2011-07-26 23:58:15 +00:00
2014-08-12 19:25:56 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' range ' )
@attr ( assertion = ' returns correct data, 206 ' )
def test_ranged_request_skip_leading_bytes_response_code ( ) :
content = ' testcontent '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
key . set_contents_from_string ( content )
# test trailing bytes
key . open ( ' r ' , headers = { ' Range ' : ' bytes=4- ' } )
status = key . resp . status
2015-06-17 15:26:15 +00:00
content_range = key . resp . getheader ( ' Content-Range ' )
2014-08-12 19:25:56 +00:00
fetched_content = ' '
for data in key :
fetched_content + = data ;
key . close ( )
eq ( fetched_content , content [ 4 : ] )
eq ( status , 206 )
2015-06-17 15:26:15 +00:00
eq ( content_range , ' bytes 4-10/11 ' )
2014-08-12 19:25:56 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' range ' )
@attr ( assertion = ' returns correct data, 206 ' )
def test_ranged_request_return_trailing_bytes_response_code ( ) :
content = ' testcontent '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
key . set_contents_from_string ( content )
# test leading bytes
key . open ( ' r ' , headers = { ' Range ' : ' bytes=-7 ' } )
status = key . resp . status
2015-06-17 15:26:15 +00:00
content_range = key . resp . getheader ( ' Content-Range ' )
2014-08-12 19:25:56 +00:00
fetched_content = ' '
for data in key :
fetched_content + = data ;
key . close ( )
eq ( fetched_content , content [ - 7 : ] )
eq ( status , 206 )
2015-06-17 15:26:15 +00:00
eq ( content_range , ' bytes 4-10/11 ' )
2014-08-12 19:25:56 +00:00
2015-06-17 04:06:34 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' range ' )
@attr ( assertion = ' returns invalid range, 416 ' )
def test_ranged_request_invalid_range ( ) :
content = ' testcontent '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
key . set_contents_from_string ( content )
# test invalid range
e = assert_raises ( boto . exception . S3ResponseError , key . open , ' r ' , headers = { ' Range ' : ' bytes=40-50 ' } )
eq ( e . status , 416 )
eq ( e . error_code , ' InvalidRange ' )
2016-07-22 12:49:21 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' get ' )
@attr ( operation = ' range ' )
@attr ( assertion = ' returns invalid range, 416 ' )
def test_ranged_request_empty_object ( ) :
content = ' '
bucket = get_new_bucket ( )
key = bucket . new_key ( ' testobj ' )
key . set_contents_from_string ( content )
# test invalid range
e = assert_raises ( boto . exception . S3ResponseError , key . open , ' r ' , headers = { ' Range ' : ' bytes=40-50 ' } )
eq ( e . status , 416 )
eq ( e . error_code , ' InvalidRange ' )
2013-07-29 20:17:46 +00:00
def check_can_test_multiregion ( ) :
if not targets . main . master or len ( targets . main . secondaries ) == 0 :
raise SkipTest
2013-07-26 18:16:36 +00:00
2015-01-14 00:46:33 +00:00
def create_presigned_url ( conn , method , bucket_name , key_name , expiration ) :
return conn . generate_url ( expires_in = expiration ,
method = method ,
bucket = bucket_name ,
key = key_name ,
query_auth = True ,
)
def send_raw_http_request ( conn , method , bucket_name , key_name , follow_redirects = False ) :
url = create_presigned_url ( conn , method , bucket_name , key_name , 3600 )
print url
h = httplib2 . Http ( )
h . follow_redirects = follow_redirects
return h . request ( url , method )
2013-07-26 18:16:36 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' create on one region, access in another ' )
@attr ( assertion = ' can \' t access in other region ' )
@attr ( ' multiregion ' )
2013-07-27 01:07:52 +00:00
def test_region_bucket_create_secondary_access_remove_master ( ) :
2013-07-29 20:17:46 +00:00
check_can_test_multiregion ( )
2013-07-26 18:16:36 +00:00
master_conn = targets . main . master . connection
for r in targets . main . secondaries :
conn = r . connection
bucket = get_new_bucket ( r )
2015-01-14 00:46:33 +00:00
r , content = send_raw_http_request ( master_conn , ' GET ' , bucket . name , ' ' , follow_redirects = False )
eq ( r . status , 301 )
2013-07-26 18:16:36 +00:00
2015-01-14 00:46:33 +00:00
r , content = send_raw_http_request ( master_conn , ' DELETE ' , bucket . name , ' ' , follow_redirects = False )
eq ( r . status , 301 )
2013-07-26 18:16:36 +00:00
conn . delete_bucket ( bucket )
2013-07-27 01:07:52 +00:00
2013-07-27 03:33:48 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' create on one region, access in another ' )
@attr ( assertion = ' can \' t access in other region ' )
@attr ( ' multiregion ' )
def test_region_bucket_create_master_access_remove_secondary ( ) :
2013-07-29 20:17:46 +00:00
check_can_test_multiregion ( )
2013-07-27 03:33:48 +00:00
master = targets . main . master
master_conn = master . connection
for r in targets . main . secondaries :
conn = r . connection
bucket = get_new_bucket ( master )
2013-07-27 05:19:36 +00:00
region_sync_meta ( targets . main , master )
2013-07-27 03:33:48 +00:00
2015-01-14 00:46:33 +00:00
r , content = send_raw_http_request ( conn , ' GET ' , bucket . name , ' ' , follow_redirects = False )
eq ( r . status , 301 )
2013-07-27 03:33:48 +00:00
2015-01-14 00:46:33 +00:00
r , content = send_raw_http_request ( conn , ' DELETE ' , bucket . name , ' ' , follow_redirects = False )
eq ( r . status , 301 )
2013-07-27 03:33:48 +00:00
master_conn . delete_bucket ( bucket )
2013-08-28 16:36:42 +00:00
region_sync_meta ( targets . main , master )
e = assert_raises ( boto . exception . S3ResponseError , conn . get_bucket , bucket . name )
eq ( e . status , 404 )
e = assert_raises ( boto . exception . S3ResponseError , master_conn . get_bucket , bucket . name )
eq ( e . status , 404 )
2013-07-27 03:33:48 +00:00
2014-10-03 22:09:27 +00:00
2013-07-27 01:07:52 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' copy ' )
2013-07-27 03:33:48 +00:00
@attr ( operation = ' copy object between regions, verify ' )
2013-07-27 01:07:52 +00:00
@attr ( assertion = ' can read object ' )
@attr ( ' multiregion ' )
def test_region_copy_object ( ) :
2013-07-29 20:17:46 +00:00
check_can_test_multiregion ( )
2013-07-27 01:07:52 +00:00
2013-07-27 05:19:36 +00:00
for ( k , dest ) in targets . main . iteritems ( ) :
dest_conn = dest . connection
dest_bucket = get_new_bucket ( dest )
print ' created new dest bucket ' , dest_bucket . name
region_sync_meta ( targets . main , dest )
2014-10-03 22:09:27 +00:00
if is_slow_backend ( ) :
sizes = ( 1024 , 10 * 1024 * 1024 )
else :
sizes = ( 1024 , 10 * 1024 * 1024 , 100 * 1024 * 1024 )
for file_size in sizes :
2013-07-27 05:19:36 +00:00
for ( k2 , r ) in targets . main . iteritems ( ) :
if r == dest_conn :
continue
conn = r . connection
bucket = get_new_bucket ( r )
print ' created bucket ' , bucket . name
region_sync_meta ( targets . main , r )
content = ' testcontent '
2013-07-27 01:07:52 +00:00
2014-04-01 19:20:24 +00:00
print ' creating key=testobj ' , ' bucket= ' , bucket . name
2013-07-27 05:19:36 +00:00
key = bucket . new_key ( ' testobj ' )
fp_a = FakeWriteFile ( file_size , ' A ' )
key . set_contents_from_file ( fp_a )
2013-07-27 01:07:52 +00:00
2014-04-01 19:20:24 +00:00
print ' calling region_sync_meta '
2013-08-28 16:36:42 +00:00
region_sync_meta ( targets . main , r )
2014-04-01 19:20:24 +00:00
print ' dest_bucket= ' , dest_bucket . name , ' key= ' , key . name
2013-07-27 05:19:36 +00:00
dest_key = dest_bucket . copy_key ( ' testobj-dest ' , bucket . name , key . name )
2013-07-27 01:07:52 +00:00
2014-04-01 19:20:24 +00:00
print
2013-07-27 05:19:36 +00:00
# verify dest
_verify_atomic_key_data ( dest_key , file_size , ' A ' )
2013-07-27 01:07:52 +00:00
2013-07-27 05:19:36 +00:00
bucket . delete_key ( key . name )
2013-08-28 16:36:42 +00:00
# confirm that the key was deleted as expected
region_sync_meta ( targets . main , r )
temp_key = bucket . get_key ( key . name )
assert temp_key == None
2013-07-27 05:19:36 +00:00
print ' removing bucket ' , bucket . name
conn . delete_bucket ( bucket )
2013-07-27 01:07:52 +00:00
2013-08-28 16:36:42 +00:00
# confirm that the bucket was deleted as expected
region_sync_meta ( targets . main , r )
e = assert_raises ( boto . exception . S3ResponseError , conn . get_bucket , bucket . name )
eq ( e . status , 404 )
e = assert_raises ( boto . exception . S3ResponseError , dest_conn . get_bucket , bucket . name )
eq ( e . status , 404 )
# confirm that the key was deleted as expected
2013-07-27 05:19:36 +00:00
dest_bucket . delete_key ( dest_key . name )
2013-08-28 16:36:42 +00:00
temp_key = dest_bucket . get_key ( dest_key . name )
assert temp_key == None
2013-07-27 03:33:48 +00:00
2013-07-27 05:19:36 +00:00
dest_conn . delete_bucket ( dest_bucket )
2013-08-28 16:36:42 +00:00
region_sync_meta ( targets . main , dest )
# ensure that dest_bucket was deleted on this host and all other hosts
e = assert_raises ( boto . exception . S3ResponseError , dest_conn . get_bucket , dest_bucket . name )
eq ( e . status , 404 )
for ( k2 , r ) in targets . main . iteritems ( ) :
if r == dest_conn :
continue
conn = r . connection
e = assert_raises ( boto . exception . S3ResponseError , conn . get_bucket , dest_bucket . name )
eq ( e . status , 404 )
2014-10-28 23:04:39 +00:00
def check_versioning ( bucket , status ) :
try :
eq ( bucket . get_versioning_status ( ) [ ' Versioning ' ] , status )
except KeyError :
eq ( status , None )
2014-11-15 00:57:51 +00:00
# amazon is eventual consistent, retry a bit if failed
def check_configure_versioning_retry ( bucket , status , expected_string ) :
bucket . configure_versioning ( status )
read_status = None
for i in xrange ( 5 ) :
try :
read_status = bucket . get_versioning_status ( ) [ ' Versioning ' ]
except KeyError :
read_status = None
if ( expected_string == read_status ) :
break
time . sleep ( 1 )
eq ( expected_string , read_status )
2014-10-28 23:04:39 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' create ' )
@attr ( operation = ' create versioned bucket ' )
@attr ( assertion = ' can create and suspend bucket versioning ' )
@attr ( ' versioning ' )
def test_versioning_bucket_create_suspend ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
2014-11-15 00:57:51 +00:00
check_configure_versioning_retry ( bucket , False , " Suspended " )
check_configure_versioning_retry ( bucket , True , " Enabled " )
check_configure_versioning_retry ( bucket , True , " Enabled " )
check_configure_versioning_retry ( bucket , False , " Suspended " )
2013-08-28 16:36:42 +00:00
2014-10-31 00:05:13 +00:00
def check_head_obj_content ( key , content ) :
if content is not None :
eq ( key . get_contents_as_string ( ) , content )
else :
print ' check head ' , key
eq ( key , None )
def check_obj_content ( key , content ) :
if content is not None :
eq ( key . get_contents_as_string ( ) , content )
else :
eq ( isinstance ( key , boto . s3 . deletemarker . DeleteMarker ) , True )
2014-11-15 00:57:51 +00:00
def check_obj_versions ( bucket , objname , keys , contents ) :
2014-10-30 20:19:59 +00:00
# check to see if object is pointing at correct version
key = bucket . get_key ( objname )
2014-10-29 22:26:57 +00:00
2014-10-30 20:19:59 +00:00
if len ( contents ) > 0 :
print ' testing obj head ' , objname
2014-10-31 00:05:13 +00:00
check_head_obj_content ( key , contents [ - 1 ] )
2014-10-30 20:19:59 +00:00
i = len ( contents )
for key in bucket . list_versions ( ) :
2015-01-09 00:11:23 +00:00
if key . name != objname :
continue
2014-10-30 20:19:59 +00:00
i - = 1
2014-11-15 00:57:51 +00:00
eq ( keys [ i ] . version_id or ' null ' , key . version_id )
2014-10-30 20:19:59 +00:00
print ' testing obj version-id= ' , key . version_id
2014-10-31 00:05:13 +00:00
check_obj_content ( key , contents [ i ] )
2014-10-30 20:19:59 +00:00
else :
eq ( key , None )
2014-10-29 22:26:57 +00:00
2014-11-15 00:57:51 +00:00
def create_multiple_versions ( bucket , objname , num_versions , k = None , c = None ) :
c = c or [ ]
k = k or [ ]
2014-10-30 20:19:59 +00:00
for i in xrange ( num_versions ) :
2014-10-29 22:26:57 +00:00
c . append ( ' content- {i} ' . format ( i = i ) )
key = bucket . new_key ( objname )
key . set_contents_from_string ( c [ i ] )
if i == 0 :
2014-11-15 00:57:51 +00:00
check_configure_versioning_retry ( bucket , True , " Enabled " )
k_pos = len ( k )
i = 0
2014-10-29 22:26:57 +00:00
for o in bucket . list_versions ( ) :
2015-01-09 00:11:23 +00:00
if o . name != objname :
continue
2014-11-15 00:57:51 +00:00
i + = 1
if i > num_versions :
break
2014-10-30 20:19:59 +00:00
print o , o . version_id
2014-11-15 00:57:51 +00:00
k . insert ( k_pos , o )
2014-10-30 20:19:59 +00:00
print ' created obj name= ' , objname , ' version-id= ' , o . version_id
2014-10-29 22:26:57 +00:00
2014-10-30 20:19:59 +00:00
eq ( len ( k ) , len ( c ) )
for j in xrange ( num_versions ) :
2014-10-29 22:26:57 +00:00
print j , k [ j ] , k [ j ] . version_id
2014-11-15 00:57:51 +00:00
check_obj_versions ( bucket , objname , k , c )
2014-10-30 20:19:59 +00:00
return ( k , c )
def remove_obj_version ( bucket , k , c , i ) :
# check by versioned key
i = i % len ( k )
rmkey = k . pop ( i )
2014-10-31 00:05:13 +00:00
content = c . pop ( i )
if ( not rmkey . delete_marker ) :
eq ( rmkey . get_contents_as_string ( ) , content )
2014-10-30 20:19:59 +00:00
# remove version
print ' removing version_id= ' , rmkey . version_id
bucket . delete_key ( rmkey . name , version_id = rmkey . version_id )
2014-11-15 00:57:51 +00:00
check_obj_versions ( bucket , rmkey . name , k , c )
2014-10-30 20:19:59 +00:00
2014-10-31 00:05:13 +00:00
def remove_obj_head ( bucket , objname , k , c ) :
print ' removing obj= ' , objname
key = bucket . delete_key ( objname )
k . append ( key )
c . append ( None )
eq ( key . delete_marker , True )
2014-11-15 00:57:51 +00:00
check_obj_versions ( bucket , objname , k , c )
2014-10-31 00:05:13 +00:00
2014-12-12 18:14:37 +00:00
def _do_test_create_remove_versions ( bucket , objname , num_versions , remove_start_idx , idx_inc ) :
2014-10-30 20:19:59 +00:00
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
idx = remove_start_idx
for j in xrange ( num_versions ) :
remove_obj_version ( bucket , k , c , idx )
idx + = idx_inc
2014-10-31 00:05:13 +00:00
2014-12-12 18:14:37 +00:00
def _do_remove_versions ( bucket , objname , remove_start_idx , idx_inc , head_rm_ratio , k , c ) :
2014-10-31 00:05:13 +00:00
idx = remove_start_idx
r = 0
2014-11-15 00:57:51 +00:00
total = len ( k )
for j in xrange ( total ) :
2014-10-31 00:05:13 +00:00
r + = head_rm_ratio
if r > = 1 :
r % = 1
remove_obj_head ( bucket , objname , k , c )
else :
remove_obj_version ( bucket , k , c , idx )
idx + = idx_inc
2014-11-15 00:57:51 +00:00
check_obj_versions ( bucket , objname , k , c )
2014-12-12 18:14:37 +00:00
def _do_test_create_remove_versions_and_head ( bucket , objname , num_versions , num_ops , remove_start_idx , idx_inc , head_rm_ratio ) :
2014-11-15 00:57:51 +00:00
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
2014-12-12 18:14:37 +00:00
_do_remove_versions ( bucket , objname , remove_start_idx , idx_inc , head_rm_ratio , k , c )
2014-10-30 20:19:59 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
2014-10-31 00:05:13 +00:00
@attr ( operation = ' create and remove versioned object ' )
2014-10-30 20:19:59 +00:00
@attr ( assertion = ' can create access and remove appropriate versions ' )
@attr ( ' versioning ' )
def test_versioning_obj_create_read_remove ( ) :
bucket = get_new_bucket ( )
objname = ' testobj '
num_vers = 5
2014-12-12 18:14:37 +00:00
_do_test_create_remove_versions ( bucket , objname , num_vers , - 1 , 0 )
_do_test_create_remove_versions ( bucket , objname , num_vers , - 1 , 0 )
_do_test_create_remove_versions ( bucket , objname , num_vers , 0 , 0 )
_do_test_create_remove_versions ( bucket , objname , num_vers , 1 , 0 )
_do_test_create_remove_versions ( bucket , objname , num_vers , 4 , - 1 )
_do_test_create_remove_versions ( bucket , objname , num_vers , 3 , 3 )
2014-10-29 22:26:57 +00:00
2014-10-31 00:05:13 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' create and remove versioned object and head ' )
@attr ( assertion = ' can create access and remove appropriate versions ' )
@attr ( ' versioning ' )
def test_versioning_obj_create_read_remove_head ( ) :
bucket = get_new_bucket ( )
objname = ' testobj '
num_vers = 5
2014-12-12 18:14:37 +00:00
_do_test_create_remove_versions_and_head ( bucket , objname , num_vers , num_vers * 2 , - 1 , 0 , 0.5 )
2014-10-31 00:05:13 +00:00
2014-11-15 00:57:51 +00:00
def is_null_key ( k ) :
return ( k . version_id is None ) or ( k . version_id == ' null ' )
def delete_suspended_versioning_obj ( bucket , objname , k , c ) :
key = bucket . delete_key ( objname )
i = 0
while i < len ( k ) :
if is_null_key ( k [ i ] ) :
k . pop ( i )
c . pop ( i )
else :
i + = 1
key . version_id = " null "
k . append ( key )
c . append ( None )
check_obj_versions ( bucket , objname , k , c )
def overwrite_suspended_versioning_obj ( bucket , objname , k , c , content ) :
key = bucket . new_key ( objname )
key . set_contents_from_string ( content )
i = 0
while i < len ( k ) :
print ' kkk ' , i , k [ i ] , k [ i ] . version_id
if is_null_key ( k [ i ] ) :
print ' null key! '
k . pop ( i )
c . pop ( i )
else :
i + = 1
k . append ( key )
c . append ( content )
check_obj_versions ( bucket , objname , k , c )
2016-03-23 01:40:39 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' create object, then switch to versioning ' )
@attr ( assertion = ' behaves correctly ' )
@attr ( ' versioning ' )
def test_versioning_obj_plain_null_version_removal ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
content = ' fooz '
objname = ' testobj '
key = bucket . new_key ( objname )
key . set_contents_from_string ( content )
check_configure_versioning_retry ( bucket , True , " Enabled " )
bucket . delete_key ( key , version_id = ' null ' )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
k = [ ]
for key in bucket . list_versions ( ) :
k . insert ( 0 , key )
eq ( len ( k ) , 0 )
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' create object, then switch to versioning ' )
@attr ( assertion = ' behaves correctly ' )
@attr ( ' versioning ' )
def test_versioning_obj_plain_null_version_overwrite ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
content = ' fooz '
objname = ' testobj '
key = bucket . new_key ( objname )
key . set_contents_from_string ( content )
check_configure_versioning_retry ( bucket , True , " Enabled " )
content2 = ' zzz '
key . set_contents_from_string ( content2 )
eq ( key . get_contents_as_string ( ) , content2 )
version_id = None
for k in bucket . list_versions ( ) :
version_id = k . version_id
break
print ' version_id= ' , version_id
bucket . delete_key ( key , version_id = version_id )
eq ( key . get_contents_as_string ( ) , content )
bucket . delete_key ( key , version_id = ' null ' )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
k = [ ]
for key in bucket . list_versions ( ) :
k . insert ( 0 , key )
eq ( len ( k ) , 0 )
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' create object, then switch to versioning ' )
@attr ( assertion = ' behaves correctly ' )
@attr ( ' versioning ' )
def test_versioning_obj_plain_null_version_overwrite_suspended ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
content = ' fooz '
objname = ' testobj '
key = bucket . new_key ( objname )
key . set_contents_from_string ( content )
check_configure_versioning_retry ( bucket , True , " Enabled " )
check_configure_versioning_retry ( bucket , False , " Suspended " )
content2 = ' zzz '
key . set_contents_from_string ( content2 )
eq ( key . get_contents_as_string ( ) , content2 )
version_id = None
for k in bucket . list_versions ( ) :
version_id = k . version_id
break
print ' version_id= ' , version_id
bucket . delete_key ( key , version_id = version_id )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 404 )
eq ( e . reason , ' Not Found ' )
eq ( e . error_code , ' NoSuchKey ' )
k = [ ]
for key in bucket . list_versions ( ) :
k . insert ( 0 , key )
eq ( len ( k ) , 0 )
2014-11-15 00:57:51 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' suspend versioned bucket ' )
@attr ( assertion = ' suspended versioning behaves correctly ' )
@attr ( ' versioning ' )
def test_versioning_obj_suspend_versions ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
check_configure_versioning_retry ( bucket , True , " Enabled " )
num_versions = 5
objname = ' testobj '
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
check_configure_versioning_retry ( bucket , False , " Suspended " )
delete_suspended_versioning_obj ( bucket , objname , k , c )
delete_suspended_versioning_obj ( bucket , objname , k , c )
overwrite_suspended_versioning_obj ( bucket , objname , k , c , ' null content 1 ' )
overwrite_suspended_versioning_obj ( bucket , objname , k , c , ' null content 2 ' )
delete_suspended_versioning_obj ( bucket , objname , k , c )
overwrite_suspended_versioning_obj ( bucket , objname , k , c , ' null content 3 ' )
delete_suspended_versioning_obj ( bucket , objname , k , c )
check_configure_versioning_retry ( bucket , True , " Enabled " )
( k , c ) = create_multiple_versions ( bucket , objname , 3 , k , c )
2014-12-12 18:14:37 +00:00
_do_remove_versions ( bucket , objname , 0 , 5 , 0.5 , k , c )
_do_remove_versions ( bucket , objname , 0 , 5 , 0 , k , c )
2014-11-15 00:57:51 +00:00
eq ( len ( k ) , 0 )
eq ( len ( k ) , len ( c ) )
@attr ( resource = ' object ' )
@attr ( method = ' create ' )
@attr ( operation = ' suspend versioned bucket ' )
@attr ( assertion = ' suspended versioning behaves correctly ' )
@attr ( ' versioning ' )
def test_versioning_obj_suspend_versions_simple ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
check_configure_versioning_retry ( bucket , True , " Enabled " )
num_versions = 1
objname = ' testobj '
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
check_configure_versioning_retry ( bucket , False , " Suspended " )
delete_suspended_versioning_obj ( bucket , objname , k , c )
check_configure_versioning_retry ( bucket , True , " Enabled " )
( k , c ) = create_multiple_versions ( bucket , objname , 1 , k , c )
for i in xrange ( len ( k ) ) :
print ' JJJ: ' , k [ i ] . version_id , c [ i ]
2014-12-12 18:14:37 +00:00
_do_remove_versions ( bucket , objname , 0 , 0 , 0.5 , k , c )
_do_remove_versions ( bucket , objname , 0 , 0 , 0 , k , c )
2014-11-15 00:57:51 +00:00
eq ( len ( k ) , 0 )
eq ( len ( k ) , len ( c ) )
@attr ( resource = ' object ' )
@attr ( method = ' remove ' )
@attr ( operation = ' create and remove versions ' )
@attr ( assertion = ' everything works ' )
@attr ( ' versioning ' )
def test_versioning_obj_create_versions_remove_all ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
check_configure_versioning_retry ( bucket , True , " Enabled " )
num_versions = 10
objname = ' testobj '
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
2014-12-12 18:14:37 +00:00
_do_remove_versions ( bucket , objname , 0 , 5 , 0.5 , k , c )
_do_remove_versions ( bucket , objname , 0 , 5 , 0 , k , c )
2014-11-15 00:57:51 +00:00
eq ( len ( k ) , 0 )
eq ( len ( k ) , len ( c ) )
2015-09-10 20:18:28 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' remove ' )
@attr ( operation = ' create and remove versions ' )
@attr ( assertion = ' everything works ' )
@attr ( ' versioning ' )
def test_versioning_obj_create_versions_remove_special_names ( ) :
bucket = get_new_bucket ( )
check_versioning ( bucket , None )
check_configure_versioning_retry ( bucket , True , " Enabled " )
num_versions = 10
objnames = [ ' _testobj ' , ' _ ' , ' : ' , ' ' ]
for objname in objnames :
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
_do_remove_versions ( bucket , objname , 0 , 5 , 0.5 , k , c )
_do_remove_versions ( bucket , objname , 0 , 5 , 0 , k , c )
eq ( len ( k ) , 0 )
eq ( len ( k ) , len ( c ) )
2014-11-17 19:08:13 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' multipart ' )
@attr ( operation = ' create and test multipart object ' )
@attr ( assertion = ' everything works ' )
@attr ( ' versioning ' )
def test_versioning_obj_create_overwrite_multipart ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
objname = ' testobj '
c = [ ]
num_vers = 3
for i in xrange ( num_vers ) :
2014-12-12 18:14:37 +00:00
c . append ( _do_test_multipart_upload_contents ( bucket , objname , 3 ) )
2014-11-17 19:08:13 +00:00
k = [ ]
for key in bucket . list_versions ( ) :
k . insert ( 0 , key )
eq ( len ( k ) , num_vers )
check_obj_versions ( bucket , objname , k , c )
2014-12-12 18:14:37 +00:00
_do_remove_versions ( bucket , objname , 0 , 3 , 0.5 , k , c )
_do_remove_versions ( bucket , objname , 0 , 3 , 0 , k , c )
2014-11-17 19:08:13 +00:00
eq ( len ( k ) , 0 )
eq ( len ( k ) , len ( c ) )
2014-11-24 18:47:16 +00:00
2014-12-22 23:47:13 +00:00
2015-01-09 00:11:23 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' multipart ' )
@attr ( operation = ' list versioned objects ' )
@attr ( assertion = ' everything works ' )
@attr ( ' versioning ' )
def test_versioning_obj_list_marker ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
objname = ' testobj '
objname2 = ' testobj-1 '
num_vers = 5
( k , c ) = create_multiple_versions ( bucket , objname , num_vers )
( k2 , c2 ) = create_multiple_versions ( bucket , objname2 , num_vers )
k . reverse ( )
k2 . reverse ( )
allkeys = k + k2
names = [ ]
for key1 , key2 in itertools . izip_longest ( bucket . list_versions ( ) , allkeys ) :
eq ( key1 . version_id , key2 . version_id )
names . append ( key1 . name )
for i in xrange ( len ( allkeys ) ) :
for key1 , key2 in itertools . izip_longest ( bucket . list_versions ( key_marker = names [ i ] , version_id_marker = allkeys [ i ] . version_id ) , allkeys [ i + 1 : ] ) :
eq ( key1 . version_id , key2 . version_id )
# with nonexisting version id, skip to next object
for key1 , key2 in itertools . izip_longest ( bucket . list_versions ( key_marker = objname , version_id_marker = ' nosuchversion ' ) , allkeys [ 5 : ] ) :
eq ( key1 . version_id , key2 . version_id )
2014-12-22 23:47:13 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' multipart ' )
@attr ( operation = ' create and test versioned object copying ' )
@attr ( assertion = ' everything works ' )
@attr ( ' versioning ' )
2014-11-24 18:47:16 +00:00
def test_versioning_copy_obj_version ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
num_versions = 3
objname = ' testobj '
( k , c ) = create_multiple_versions ( bucket , objname , num_versions )
# copy into the same bucket
for i in xrange ( num_versions ) :
new_key_name = ' key_ {i} ' . format ( i = i )
new_key = bucket . copy_key ( new_key_name , bucket . name , k [ i ] . name , src_version_id = k [ i ] . version_id )
eq ( new_key . get_contents_as_string ( ) , c [ i ] )
another_bucket = get_new_bucket ( )
# copy into a different bucket
for i in xrange ( num_versions ) :
new_key_name = ' key_ {i} ' . format ( i = i )
new_key = another_bucket . copy_key ( new_key_name , bucket . name , k [ i ] . name , src_version_id = k [ i ] . version_id )
eq ( new_key . get_contents_as_string ( ) , c [ i ] )
# test copy of head object
new_key = another_bucket . copy_key ( ' new_key ' , bucket . name , objname )
eq ( new_key . get_contents_as_string ( ) , c [ num_versions - 1 ] )
2014-12-24 00:26:47 +00:00
def _count_bucket_versioned_objs ( bucket ) :
2014-12-22 23:47:13 +00:00
k = [ ]
for key in bucket . list_versions ( ) :
k . insert ( 0 , key )
return len ( k )
@attr ( resource = ' object ' )
@attr ( method = ' delete ' )
@attr ( operation = ' delete multiple versions ' )
@attr ( assertion = ' deletes multiple versions of an object with a single call ' )
@attr ( ' versioning ' )
def test_versioning_multi_object_delete ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' key '
key0 = bucket . new_key ( keyname )
key0 . set_contents_from_string ( ' foo ' )
key1 = bucket . new_key ( keyname )
key1 . set_contents_from_string ( ' bar ' )
stored_keys = [ ]
for key in bucket . list_versions ( ) :
stored_keys . insert ( 0 , key )
eq ( len ( stored_keys ) , 2 )
result = bucket . delete_keys ( stored_keys )
eq ( len ( result . deleted ) , 2 )
eq ( len ( result . errors ) , 0 )
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
2014-12-22 23:47:13 +00:00
# now remove again, should all succeed due to idempotency
result = bucket . delete_keys ( stored_keys )
eq ( len ( result . deleted ) , 2 )
eq ( len ( result . errors ) , 0 )
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
2014-12-22 23:47:13 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' delete ' )
@attr ( operation = ' delete multiple versions ' )
@attr ( assertion = ' deletes multiple versions of an object and delete marker with a single call ' )
@attr ( ' versioning ' )
def test_versioning_multi_object_delete_with_marker ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' key '
key0 = bucket . new_key ( keyname )
key0 . set_contents_from_string ( ' foo ' )
key1 = bucket . new_key ( keyname )
key1 . set_contents_from_string ( ' bar ' )
key2 = bucket . delete_key ( keyname )
eq ( key2 . delete_marker , True )
stored_keys = [ ]
for key in bucket . list_versions ( ) :
stored_keys . insert ( 0 , key )
eq ( len ( stored_keys ) , 3 )
result = bucket . delete_keys ( stored_keys )
eq ( len ( result . deleted ) , 3 )
eq ( len ( result . errors ) , 0 )
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
2014-12-22 23:47:13 +00:00
delete_markers = [ ]
for o in result . deleted :
if o . delete_marker :
delete_markers . insert ( 0 , o )
eq ( len ( delete_markers ) , 1 )
eq ( key2 . version_id , delete_markers [ 0 ] . version_id )
# now remove again, should all succeed due to idempotency
result = bucket . delete_keys ( stored_keys )
eq ( len ( result . deleted ) , 3 )
eq ( len ( result . errors ) , 0 )
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
2014-12-22 23:47:13 +00:00
2014-12-23 01:00:43 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' delete ' )
@attr ( operation = ' multi delete create marker ' )
@attr ( assertion = ' returns correct marker version id ' )
@attr ( ' versioning ' )
def test_versioning_multi_object_delete_with_marker_create ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' key '
2015-06-30 18:26:35 +00:00
rmkeys = [ bucket . new_key ( keyname ) ]
2014-12-23 01:00:43 +00:00
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
2014-12-23 01:00:43 +00:00
result = bucket . delete_keys ( rmkeys )
eq ( len ( result . deleted ) , 1 )
2014-12-24 00:26:47 +00:00
eq ( _count_bucket_versioned_objs ( bucket ) , 1 )
2014-12-23 01:00:43 +00:00
delete_markers = [ ]
for o in result . deleted :
if o . delete_marker :
delete_markers . insert ( 0 , o )
eq ( len ( delete_markers ) , 1 )
for o in bucket . list_versions ( ) :
eq ( o . name , keyname )
eq ( o . version_id , delete_markers [ 0 ] . delete_marker_version_id )
2014-12-23 18:14:38 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' change acl on an object version changes specific version ' )
@attr ( assertion = ' works ' )
@attr ( ' versioning ' )
def test_versioned_object_acl ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' foo '
key0 = bucket . new_key ( keyname )
key0 . set_contents_from_string ( ' bar ' )
key1 = bucket . new_key ( keyname )
key1 . set_contents_from_string ( ' bla ' )
key2 = bucket . new_key ( keyname )
key2 . set_contents_from_string ( ' zxc ' )
stored_keys = [ ]
for key in bucket . list_versions ( ) :
stored_keys . insert ( 0 , key )
k1 = stored_keys [ 1 ]
policy = bucket . get_acl ( key_name = k1 . name , version_id = k1 . version_id )
default_policy = [
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
]
print repr ( policy )
check_grants ( policy . acl . grants , default_policy )
bucket . set_canned_acl ( ' public-read ' , key_name = k1 . name , version_id = k1 . version_id )
policy = bucket . get_acl ( key_name = k1 . name , version_id = k1 . version_id )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
k = bucket . new_key ( keyname )
check_grants ( k . get_acl ( ) . acl . grants , default_policy )
2017-02-14 03:20:56 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' change acl on an object with no version specified changes latest version ' )
@attr ( assertion = ' works ' )
@attr ( ' versioning ' )
def test_versioned_object_acl_no_version_specified ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' foo '
key0 = bucket . new_key ( keyname )
key0 . set_contents_from_string ( ' bar ' )
key1 = bucket . new_key ( keyname )
key1 . set_contents_from_string ( ' bla ' )
key2 = bucket . new_key ( keyname )
key2 . set_contents_from_string ( ' zxc ' )
stored_keys = [ ]
for key in bucket . list_versions ( ) :
stored_keys . insert ( 0 , key )
k2 = stored_keys [ 2 ]
policy = bucket . get_acl ( key_name = k2 . name , version_id = k2 . version_id )
default_policy = [
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
]
print repr ( policy )
check_grants ( policy . acl . grants , default_policy )
bucket . set_canned_acl ( ' public-read ' , key_name = k2 . name )
policy = bucket . get_acl ( key_name = k2 . name , version_id = k2 . version_id )
print repr ( policy )
check_grants (
policy . acl . grants ,
[
dict (
permission = ' FULL_CONTROL ' ,
id = policy . owner . id ,
display_name = policy . owner . display_name ,
uri = None ,
email_address = None ,
type = ' CanonicalUser ' ,
) ,
dict (
permission = ' READ ' ,
id = None ,
display_name = None ,
uri = ' http://acs.amazonaws.com/groups/global/AllUsers ' ,
email_address = None ,
type = ' Group ' ,
) ,
] ,
)
2014-12-24 00:26:47 +00:00
def _do_create_object ( bucket , objname , i ) :
k = bucket . new_key ( objname )
k . set_contents_from_string ( ' data {i} ' . format ( i = i ) )
def _do_remove_ver ( bucket , obj ) :
bucket . delete_key ( obj . name , version_id = obj . version_id )
def _do_create_versioned_obj_concurrent ( bucket , objname , num ) :
t = [ ]
for i in range ( num ) :
thr = threading . Thread ( target = _do_create_object , args = ( bucket , objname , i ) )
thr . start ( )
t . append ( thr )
return t
def _do_clear_versioned_bucket_concurrent ( bucket ) :
t = [ ]
for o in bucket . list_versions ( ) :
thr = threading . Thread ( target = _do_remove_ver , args = ( bucket , o ) )
thr . start ( )
t . append ( thr )
return t
def _do_wait_completion ( t ) :
for thr in t :
thr . join ( )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' concurrent creation of objects, concurrent removal ' )
@attr ( assertion = ' works ' )
@attr ( ' versioning ' )
def test_versioned_concurrent_object_create_concurrent_remove ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' myobj '
num_objs = 5
for i in xrange ( 5 ) :
t = _do_create_versioned_obj_concurrent ( bucket , keyname , num_objs )
_do_wait_completion ( t )
eq ( _count_bucket_versioned_objs ( bucket ) , num_objs )
eq ( len ( bucket . get_all_keys ( ) ) , 1 )
t = _do_clear_versioned_bucket_concurrent ( bucket )
_do_wait_completion ( t )
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
eq ( len ( bucket . get_all_keys ( ) ) , 0 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' concurrent creation and removal of objects ' )
@attr ( assertion = ' works ' )
@attr ( ' versioning ' )
def test_versioned_concurrent_object_create_and_remove ( ) :
bucket = get_new_bucket ( )
check_configure_versioning_retry ( bucket , True , " Enabled " )
keyname = ' myobj '
num_objs = 3
all_threads = [ ]
for i in xrange ( 3 ) :
t = _do_create_versioned_obj_concurrent ( bucket , keyname , num_objs )
all_threads . append ( t )
t = _do_clear_versioned_bucket_concurrent ( bucket )
all_threads . append ( t )
for t in all_threads :
_do_wait_completion ( t )
t = _do_clear_versioned_bucket_concurrent ( bucket )
_do_wait_completion ( t )
eq ( _count_bucket_versioned_objs ( bucket ) , 0 )
eq ( len ( bucket . get_all_keys ( ) ) , 0 )
2016-08-05 15:51:48 +00:00
# Create a lifecycle config. Either days (int) and prefix (string) is given, or rules.
# Rules is an array of dictionaries, each dict has a 'days' and a 'prefix' key
def create_lifecycle ( days = None , prefix = ' test/ ' , rules = None ) :
lifecycle = boto . s3 . lifecycle . Lifecycle ( )
if rules == None :
expiration = boto . s3 . lifecycle . Expiration ( days = days )
rule = boto . s3 . lifecycle . Rule ( id = prefix , prefix = prefix , status = ' Enabled ' ,
expiration = expiration )
lifecycle . append ( rule )
else :
for rule in rules :
expiration = boto . s3 . lifecycle . Expiration ( days = rule [ ' days ' ] )
2017-01-16 08:44:40 +00:00
rule = boto . s3 . lifecycle . Rule ( id = rule [ ' id ' ] , prefix = rule [ ' prefix ' ] ,
status = rule [ ' status ' ] , expiration = expiration )
2016-08-05 15:51:48 +00:00
lifecycle . append ( rule )
return lifecycle
def set_lifecycle ( rules = None ) :
bucket = get_new_bucket ( )
lifecycle = create_lifecycle ( rules = rules )
bucket . configure_lifecycle ( lifecycle )
return bucket
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' set lifecycle config ' )
@attr ( ' lifecycle ' )
def test_lifecycle_set ( ) :
bucket = get_new_bucket ( )
2017-01-16 08:44:40 +00:00
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 1 , ' prefix ' : ' test1/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' rule2 ' , ' days ' : 2 , ' prefix ' : ' test2/ ' , ' status ' : ' Disabled ' } ] )
2016-08-05 15:51:48 +00:00
eq ( bucket . configure_lifecycle ( lifecycle ) , True )
@attr ( resource = ' bucket ' )
@attr ( method = ' get ' )
@attr ( operation = ' get lifecycle config ' )
@attr ( ' lifecycle ' )
def test_lifecycle_get ( ) :
2017-01-16 08:44:40 +00:00
bucket = set_lifecycle ( rules = [ { ' id ' : ' test1/ ' , ' days ' : 31 , ' prefix ' : ' test1/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' test2/ ' , ' days ' : 120 , ' prefix ' : ' test2/ ' , ' status ' : ' Enabled ' } ] )
2016-08-05 15:51:48 +00:00
current = bucket . get_lifecycle_config ( )
eq ( current [ 0 ] . expiration . days , 31 )
eq ( current [ 0 ] . id , ' test1/ ' )
eq ( current [ 0 ] . prefix , ' test1/ ' )
eq ( current [ 1 ] . expiration . days , 120 )
eq ( current [ 1 ] . id , ' test2/ ' )
eq ( current [ 1 ] . prefix , ' test2/ ' )
# The test harnass for lifecycle is configured to treat days as 2 second intervals.
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' test lifecycle expiration ' )
@attr ( ' lifecycle ' )
@attr ( ' fails_on_aws ' )
def test_lifecycle_expiration ( ) :
2017-01-16 08:44:40 +00:00
bucket = set_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' expire1/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' rule2 ' , ' days ' : 6 , ' prefix ' : ' expire3/ ' , ' status ' : ' Enabled ' } ] )
2016-08-05 15:51:48 +00:00
_create_keys ( bucket = bucket , keys = [ ' expire1/foo ' , ' expire1/bar ' , ' keep2/foo ' ,
' keep2/bar ' , ' expire3/foo ' , ' expire3/bar ' ] )
# Get list of all keys
init_keys = bucket . get_all_keys ( )
# Wait for first expiration (plus fudge to handle the timer window)
time . sleep ( 35 )
expire1_keys = bucket . get_all_keys ( )
# Wait for next expiration cycle
time . sleep ( 15 )
keep2_keys = bucket . get_all_keys ( )
# Wait for final expiration cycle
time . sleep ( 25 )
expire3_keys = bucket . get_all_keys ( )
eq ( len ( init_keys ) , 6 )
eq ( len ( expire1_keys ) , 4 )
eq ( len ( keep2_keys ) , 4 )
eq ( len ( expire3_keys ) , 2 )
2017-01-16 08:44:40 +00:00
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' id too long in lifecycle rule ' )
@attr ( ' lifecycle ' )
@attr ( assertion = ' fails 400 ' )
def test_lifecycle_id_too_long ( ) :
bucket = get_new_bucket ( )
lifecycle = create_lifecycle ( rules = [ { ' id ' : 256 * ' a ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' Enabled ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' InvalidArgument ' )
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' same id ' )
@attr ( ' lifecycle ' )
@attr ( assertion = ' fails 400 ' )
def test_lifecycle_same_id ( ) :
bucket = get_new_bucket ( )
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test2/ ' , ' status ' : ' Enabled ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' InvalidArgument ' )
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' invalid status in lifecycle rule ' )
@attr ( ' lifecycle ' )
@attr ( assertion = ' fails 400 ' )
def test_lifecycle_invalid_status ( ) :
bucket = get_new_bucket ( )
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' enabled ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' MalformedXML ' )
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' disabled ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' MalformedXML ' )
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' invalid ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' MalformedXML ' )
@attr ( resource = ' bucket ' )
@attr ( method = ' put ' )
@attr ( operation = ' rules conflicted in lifecycle ' )
@attr ( ' lifecycle ' )
@attr ( assertion = ' fails 400 ' )
def test_lifecycle_rules_conflicted ( ) :
bucket = get_new_bucket ( )
lifecycle = create_lifecycle ( rules = [ { ' id ' : ' rule1 ' , ' days ' : 2 , ' prefix ' : ' test1/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' rule2 ' , ' days ' : 3 , ' prefix ' : ' test3/ ' , ' status ' : ' Enabled ' } ,
{ ' id ' : ' rule3 ' , ' days ' : 5 , ' prefix ' : ' test1/abc ' , ' status ' : ' Enabled ' } ] )
e = assert_raises ( boto . exception . S3ResponseError , bucket . configure_lifecycle , lifecycle )
eq ( e . status , 400 )
eq ( e . error_code , ' InvalidRequest ' )
2016-06-02 16:13:56 +00:00
def _test_encryption_sse_customer_write ( file_size ) :
"""
Tests Create a file of A ' s, use it to set_contents_from_file.
Create a file of B ' s, use it to re-set_contents_from_file.
Re - read the contents , and confirm we get B ' s
"""
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * file_size
key . set_contents_from_string ( data , headers = sse_client_headers )
rdata = key . get_contents_as_string ( headers = sse_client_headers )
eq ( data , rdata )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-C encrypted transfer 1 byte ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_encrypted_transfer_1b ( ) :
_test_encryption_sse_customer_write ( 1 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-C encrypted transfer 1KB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_encrypted_transfer_1kb ( ) :
_test_encryption_sse_customer_write ( 1024 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-C encrypted transfer 1MB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_encrypted_transfer_1MB ( ) :
_test_encryption_sse_customer_write ( 1024 * 1024 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-C encrypted transfer 13 bytes ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_encrypted_transfer_13b ( ) :
_test_encryption_sse_customer_write ( 13 )
2017-02-22 10:26:28 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' head ' )
@attr ( operation = ' Test SSE-C encrypted does perform head properly ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_method_head ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 1000
key . set_contents_from_string ( data , headers = sse_client_headers )
res = _make_request ( ' HEAD ' , bucket , key , authenticated = True )
eq ( res . status , 400 )
res = _make_request ( ' HEAD ' , bucket , key , authenticated = True , request_headers = sse_client_headers )
eq ( res . status , 200 )
2016-06-02 16:13:56 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-C and read without SSE-C ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_present ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_client_headers )
e = assert_raises ( boto . exception . S3ResponseError , key . get_contents_as_string )
eq ( e . status , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-C but read with other key ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_other_key ( ) :
bucket = get_new_bucket ( )
sse_client_headers_A = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
sse_client_headers_B = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' 6b+WOZ1T3cqZMxgThRcXAQBrS5mXKdDUphvpxptl9/4= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' arxBvwY2V4SiOne6yppVPQ== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_client_headers_A )
e = assert_raises ( boto . exception . S3ResponseError ,
key . get_contents_as_string , headers = sse_client_headers_B )
eq ( e . status , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-C, but md5 is bad ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_invalid_md5 ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' AAAAAAAAAAAAAAAAAAAAAA== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
e = assert_raises ( boto . exception . S3ResponseError ,
key . set_contents_from_string , data , headers = sse_client_headers )
eq ( e . status , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-C, but dont provide MD5 ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_no_md5 ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
e = assert_raises ( boto . exception . S3ResponseError ,
key . set_contents_from_string , data , headers = sse_client_headers )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' declare SSE-C but do not provide key ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_no_key ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
e = assert_raises ( boto . exception . S3ResponseError ,
key . set_contents_from_string , data , headers = sse_client_headers )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Do not declare SSE-C but provide key and MD5 ' )
@attr ( assertion = ' operation successfull, no encryption ' )
@attr ( ' encryption ' )
def test_encryption_key_no_sse_c ( ) :
bucket = get_new_bucket ( )
sse_client_headers = {
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_client_headers )
rdata = key . get_contents_as_string ( )
eq ( data , rdata )
def _multipart_upload_enc ( bucket , s3_key_name , size , part_size = 5 * 1024 * 1024 ,
do_list = None , init_headers = None , part_headers = None ,
metadata = None , resend_parts = [ ] ) :
"""
generate a multi - part upload for a random file of specifed size ,
if requested , generate a list of the parts
return the upload descriptor
"""
upload = bucket . initiate_multipart_upload ( s3_key_name , headers = init_headers , metadata = metadata )
s = ' '
for i , part in enumerate ( generate_random ( size , part_size ) ) :
s + = part
transfer_part ( bucket , upload . id , upload . key_name , i , part , part_headers )
if i in resend_parts :
transfer_part ( bucket , upload . id , upload . key_name , i , part , part_headers )
if do_list is not None :
l = bucket . list_multipart_uploads ( )
l = list ( l )
return ( upload , s )
def _check_content_using_range_enc ( k , data , step , enc_headers = None ) :
objlen = k . size
for ofs in xrange ( 0 , k . size , step ) :
toread = k . size - ofs
if toread > step :
toread = step
end = ofs + toread - 1
read_range = k . get_contents_as_string (
headers = dict ( { ' Range ' : ' bytes= {s} - {e} ' . format ( s = ofs , e = end ) } , * * enc_headers ) )
eq ( len ( read_range ) , toread )
eq ( read_range , data [ ofs : end + 1 ] )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete multi-part upload ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_multipart_upload ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/plain '
objlen = 30 * 1024 * 1024
enc_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== ' ,
' Content-Type ' : content_type
}
( upload , data ) = _multipart_upload_enc ( bucket , key , objlen ,
init_headers = enc_headers , part_headers = enc_headers ,
metadata = { ' foo ' : ' bar ' } )
upload . complete_upload ( )
result = _head_bucket ( bucket )
eq ( result . get ( ' x-rgw-object-count ' , 1 ) , 1 )
eq ( result . get ( ' x-rgw-bytes-used ' , 30 * 1024 * 1024 ) , 30 * 1024 * 1024 )
2017-02-28 21:58:17 +00:00
k = bucket . get_key ( key , headers = enc_headers )
2016-06-02 16:13:56 +00:00
eq ( k . metadata [ ' foo ' ] , ' bar ' )
eq ( k . content_type , content_type )
test_string = k . get_contents_as_string ( headers = enc_headers )
eq ( len ( test_string ) , k . size )
eq ( data , test_string )
eq ( test_string , data )
_check_content_using_range_enc ( k , data , 1000000 , enc_headers = enc_headers )
_check_content_using_range_enc ( k , data , 10000000 , enc_headers = enc_headers )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multipart upload with bad key for uploading chunks ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_multipart_invalid_chunks_1 ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/bla '
objlen = 30 * 1024 * 1024
init_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== ' ,
' Content-Type ' : content_type
}
part_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' 6b+WOZ1T3cqZMxgThRcXAQBrS5mXKdDUphvpxptl9/4= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' arxBvwY2V4SiOne6yppVPQ== '
}
e = assert_raises ( boto . exception . S3ResponseError ,
_multipart_upload_enc , bucket , key , objlen ,
init_headers = init_headers , part_headers = part_headers ,
metadata = { ' foo ' : ' bar ' } )
eq ( e . status , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multipart upload with bad md5 for chunks ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_multipart_invalid_chunks_2 ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/plain '
objlen = 30 * 1024 * 1024
init_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== ' ,
' Content-Type ' : content_type
}
part_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' AAAAAAAAAAAAAAAAAAAAAA== '
}
e = assert_raises ( boto . exception . S3ResponseError ,
_multipart_upload_enc , bucket , key , objlen ,
init_headers = init_headers , part_headers = part_headers ,
metadata = { ' foo ' : ' bar ' } )
eq ( e . status , 400 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete multi-part upload and download with bad key ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_multipart_bad_download ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/plain '
objlen = 30 * 1024 * 1024
put_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== ' ,
' Content-Type ' : content_type
}
get_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' 6b+WOZ1T3cqZMxgThRcXAQBrS5mXKdDUphvpxptl9/4= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' arxBvwY2V4SiOne6yppVPQ== '
}
( upload , data ) = _multipart_upload_enc ( bucket , key , objlen ,
init_headers = put_headers , part_headers = put_headers ,
metadata = { ' foo ' : ' bar ' } )
upload . complete_upload ( )
result = _head_bucket ( bucket )
eq ( result . get ( ' x-rgw-object-count ' , 1 ) , 1 )
eq ( result . get ( ' x-rgw-bytes-used ' , 30 * 1024 * 1024 ) , 30 * 1024 * 1024 )
2017-02-28 21:58:17 +00:00
k = bucket . get_key ( key , headers = put_headers )
2016-06-02 16:13:56 +00:00
eq ( k . metadata [ ' foo ' ] , ' bar ' )
eq ( k . content_type , content_type )
e = assert_raises ( boto . exception . S3ResponseError ,
k . get_contents_as_string , headers = get_headers )
2016-07-11 13:43:52 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
@attr ( ' encryption ' )
def test_encryption_sse_c_post_object_authenticated_request ( ) :
bucket = get_new_bucket ( )
url = _get_post_url ( s3 . main , bucket )
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " starts-with " , " $x-amz-server-side-encryption-customer-algorithm " , " " ] , \
[ " starts-with " , " $x-amz-server-side-encryption-customer-key " , " " ] , \
[ " starts-with " , " $x-amz-server-side-encryption-customer-key-md5 " , " " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
conn = s3 . main
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , \
( ' x-amz-server-side-encryption-customer-algorithm ' , ' AES256 ' ) , \
( ' x-amz-server-side-encryption-customer-key ' , ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ) , \
( ' x-amz-server-side-encryption-customer-key-md5 ' , ' DWygnHRtgiJ77HCm+1rvHw== ' ) , \
( ' file ' , ( ' bar ' ) , ) , ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
get_headers = {
' x-amz-server-side-encryption-customer-algorithm ' : ' AES256 ' ,
' x-amz-server-side-encryption-customer-key ' : ' pO3upElrwuEXSoFwCfnZPdSsmt/xWeFa0N9KgDijwVs= ' ,
' x-amz-server-side-encryption-customer-key-md5 ' : ' DWygnHRtgiJ77HCm+1rvHw== '
}
2017-02-28 21:58:17 +00:00
key = bucket . get_key ( " foo.txt " , headers = get_headers )
2016-07-11 13:43:52 +00:00
got = key . get_contents_as_string ( headers = get_headers )
eq ( got , ' bar ' )
2016-09-16 15:37:15 +00:00
def _test_sse_kms_customer_write ( file_size , key_id = ' testkey-1 ' ) :
2016-07-11 13:43:52 +00:00
"""
Tests Create a file of A ' s, use it to set_contents_from_file.
Create a file of B ' s, use it to re-set_contents_from_file.
Re - read the contents , and confirm we get B ' s
"""
bucket = get_new_bucket ( )
sse_kms_client_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
2016-09-16 15:37:15 +00:00
' x-amz-server-side-encryption-aws-kms-key-id ' : key_id
2016-07-11 13:43:52 +00:00
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * file_size
key . set_contents_from_string ( data , headers = sse_kms_client_headers )
rdata = key . get_contents_as_string ( headers = sse_kms_client_headers )
eq ( data , rdata )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1 byte ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_transfer_1b ( ) :
_test_sse_kms_customer_write ( 1 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1KB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_transfer_1kb ( ) :
_test_sse_kms_customer_write ( 1024 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1MB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_transfer_1MB ( ) :
_test_sse_kms_customer_write ( 1024 * 1024 )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 13 bytes ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_transfer_13b ( ) :
_test_sse_kms_customer_write ( 13 )
2017-02-22 10:26:28 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' head ' )
@attr ( operation = ' Test SSE-KMS encrypted does perform head properly ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_method_head ( ) :
bucket = get_new_bucket ( )
sse_kms_client_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 1000
key . set_contents_from_string ( data , headers = sse_kms_client_headers )
res = _make_request ( ' HEAD ' , bucket , key , authenticated = True )
eq ( res . status , 200 )
eq ( res . getheader ( ' x-amz-server-side-encryption ' ) , ' aws:kms ' )
eq ( res . getheader ( ' x-amz-server-side-encryption-aws-kms-key-id ' ) , ' testkey-1 ' )
2016-07-11 13:43:52 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-KMS and read without SSE-KMS ' )
@attr ( assertion = ' operation success ' )
@attr ( ' encryption ' )
def test_sse_kms_present ( ) :
bucket = get_new_bucket ( )
sse_kms_client_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_kms_client_headers )
result = key . get_contents_as_string ( )
eq ( data , result )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' write encrypted with SSE-KMS but read with other key ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_sse_kms_other_key ( ) :
bucket = get_new_bucket ( )
sse_kms_client_headers_A = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 '
}
sse_kms_client_headers_B = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-2 '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_kms_client_headers_A )
result = key . get_contents_as_string ( headers = sse_kms_client_headers_B )
eq ( data , result )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' declare SSE-KMS but do not provide key_id ' )
@attr ( assertion = ' operation fails ' )
@attr ( ' encryption ' )
def test_sse_kms_no_key ( ) :
bucket = get_new_bucket ( )
sse_kms_client_headers = {
' x-amz-server-side-encryption ' : ' aws:kms '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
e = assert_raises ( boto . exception . S3ResponseError ,
key . set_contents_from_string , data , headers = sse_kms_client_headers )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Do not declare SSE-KMS but provide key_id ' )
@attr ( assertion = ' operation successfull, no encryption ' )
@attr ( ' encryption ' )
def test_sse_kms_not_declared ( ) :
bucket = get_new_bucket ( )
sse_kms_client_headers = {
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-2 '
}
key = bucket . new_key ( ' testobj ' )
data = ' A ' * 100
key . set_contents_from_string ( data , headers = sse_kms_client_headers )
rdata = key . get_contents_as_string ( )
eq ( data , rdata )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' complete KMS multi-part upload ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_sse_kms_multipart_upload ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/plain '
objlen = 30 * 1024 * 1024
enc_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-2 ' ,
' Content-Type ' : content_type
}
( upload , data ) = _multipart_upload_enc ( bucket , key , objlen ,
init_headers = enc_headers , part_headers = enc_headers ,
metadata = { ' foo ' : ' bar ' } )
upload . complete_upload ( )
result = _head_bucket ( bucket )
eq ( result . get ( ' x-rgw-object-count ' , 1 ) , 1 )
eq ( result . get ( ' x-rgw-bytes-used ' , 30 * 1024 * 1024 ) , 30 * 1024 * 1024 )
2016-09-16 15:37:15 +00:00
2016-07-11 13:43:52 +00:00
k = bucket . get_key ( key )
eq ( k . metadata [ ' foo ' ] , ' bar ' )
eq ( k . content_type , content_type )
test_string = k . get_contents_as_string ( headers = enc_headers )
eq ( len ( test_string ) , k . size )
eq ( data , test_string )
eq ( test_string , data )
_check_content_using_range_enc ( k , data , 1000000 , enc_headers = enc_headers )
_check_content_using_range_enc ( k , data , 10000000 , enc_headers = enc_headers )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multipart KMS upload with bad key_id for uploading chunks ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_sse_kms_multipart_invalid_chunks_1 ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/bla '
objlen = 30 * 1024 * 1024
init_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 ' ,
' Content-Type ' : content_type
}
part_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-2 '
}
_multipart_upload_enc ( bucket , key , objlen ,
init_headers = init_headers , part_headers = part_headers ,
metadata = { ' foo ' : ' bar ' } )
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' multipart KMS upload with unexistent key_id for chunks ' )
@attr ( assertion = ' successful ' )
@attr ( ' encryption ' )
def test_sse_kms_multipart_invalid_chunks_2 ( ) :
bucket = get_new_bucket ( )
key = " multipart_enc "
content_type = ' text/plain '
objlen = 30 * 1024 * 1024
init_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 ' ,
' Content-Type ' : content_type
}
part_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-not-present '
}
_multipart_upload_enc ( bucket , key , objlen ,
init_headers = init_headers , part_headers = part_headers ,
metadata = { ' foo ' : ' bar ' } )
@attr ( resource = ' object ' )
@attr ( method = ' post ' )
@attr ( operation = ' authenticated KMS browser based upload via POST request ' )
@attr ( assertion = ' succeeds and returns written data ' )
@attr ( ' encryption ' )
def test_sse_kms_post_object_authenticated_request ( ) :
bucket = get_new_bucket ( )
url = _get_post_url ( s3 . main , bucket )
utc = pytz . utc
expires = datetime . datetime . now ( utc ) + datetime . timedelta ( seconds = + 6000 )
policy_document = { " expiration " : expires . strftime ( " % Y- % m- %d T % H: % M: % SZ " ) , \
" conditions " : [ \
{ " bucket " : bucket . name } , \
[ " starts-with " , " $key " , " foo " ] , \
{ " acl " : " private " } , \
[ " starts-with " , " $Content-Type " , " text/plain " ] , \
[ " starts-with " , " $x-amz-server-side-encryption " , " " ] , \
[ " starts-with " , " $x-amz-server-side-encryption-aws-kms-key-id " , " " ] , \
[ " content-length-range " , 0 , 1024 ] \
] \
}
json_policy_document = json . JSONEncoder ( ) . encode ( policy_document )
policy = base64 . b64encode ( json_policy_document )
conn = s3 . main
signature = base64 . b64encode ( hmac . new ( conn . aws_secret_access_key , policy , sha ) . digest ( ) )
payload = OrderedDict ( [ ( " key " , " foo.txt " ) , ( " AWSAccessKeyId " , conn . aws_access_key_id ) , \
( " acl " , " private " ) , ( " signature " , signature ) , ( " policy " , policy ) , \
( " Content-Type " , " text/plain " ) , \
( ' x-amz-server-side-encryption ' , ' aws:kms ' ) , \
( ' x-amz-server-side-encryption-aws-kms-key-id ' , ' testkey-1 ' ) , \
( ' file ' , ( ' bar ' ) , ) , ] )
r = requests . post ( url , files = payload )
eq ( r . status_code , 204 )
get_headers = {
' x-amz-server-side-encryption ' : ' aws:kms ' ,
' x-amz-server-side-encryption-aws-kms-key-id ' : ' testkey-1 ' ,
}
key = bucket . get_key ( " foo.txt " )
got = key . get_contents_as_string ( headers = get_headers )
eq ( got , ' bar ' )
2016-09-16 15:37:15 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1 byte ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_barb_transfer_1b ( ) :
2016-12-15 10:09:36 +00:00
if ' kms_keyid ' not in config [ ' main ' ] :
raise SkipTest
_test_sse_kms_customer_write ( 1 , key_id = config [ ' main ' ] [ ' kms_keyid ' ] )
2016-09-16 15:37:15 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1KB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_barb_transfer_1kb ( ) :
2016-12-15 10:09:36 +00:00
if ' kms_keyid ' not in config [ ' main ' ] :
raise SkipTest
_test_sse_kms_customer_write ( 1024 , key_id = config [ ' main ' ] [ ' kms_keyid ' ] )
2016-09-16 15:37:15 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 1MB ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_barb_transfer_1MB ( ) :
2016-12-15 10:09:36 +00:00
if ' kms_keyid ' not in config [ ' main ' ] :
raise SkipTest
_test_sse_kms_customer_write ( 1024 * 1024 , key_id = config [ ' main ' ] [ ' kms_keyid ' ] )
2016-09-16 15:37:15 +00:00
@attr ( resource = ' object ' )
@attr ( method = ' put ' )
@attr ( operation = ' Test SSE-KMS encrypted transfer 13 bytes ' )
@attr ( assertion = ' success ' )
@attr ( ' encryption ' )
def test_sse_kms_barb_transfer_13b ( ) :
2016-12-15 10:09:36 +00:00
if ' kms_keyid ' not in config [ ' main ' ] :
raise SkipTest
_test_sse_kms_customer_write ( 13 , key_id = config [ ' main ' ] [ ' kms_keyid ' ] )