mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 23:29:47 +00:00
Add tests for Cache-Control and Expires headers
Signed-off-by: Andrew Gaul <andrew@gaul.org>
This commit is contained in:
parent
29a0fc3725
commit
553007eb4a
1 changed files with 26 additions and 0 deletions
|
@ -895,6 +895,32 @@ def test_object_write_check_etag():
|
|||
eq(res.reason, 'OK')
|
||||
eq(res.getheader("ETag"), '"37b51d194a7513e45b56f6524f2d51f2"')
|
||||
|
||||
@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)
|
||||
|
||||
@attr(resource='object')
|
||||
@attr(method='all')
|
||||
@attr(operation='complete object life cycle')
|
||||
|
|
Loading…
Reference in a new issue