moto/tests/test_s3/test_server.py

81 lines
2.3 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2013-08-03 21:21:25 +00:00
import sure # noqa
2013-03-05 13:14:43 +00:00
import moto.server as server
'''
Test the different server responses
'''
def test_s3_server_get():
2013-12-29 01:15:37 +00:00
backend = server.create_backend_app("s3")
test_client = backend.test_client()
2013-03-05 13:14:43 +00:00
res = test_client.get('/')
2014-08-26 17:25:50 +00:00
res.data.should.contain(b'ListAllMyBucketsResult')
2013-03-05 13:14:43 +00:00
def test_s3_server_bucket_create():
2013-12-29 01:15:37 +00:00
backend = server.create_backend_app("s3")
test_client = backend.test_client()
res = test_client.put('/', 'http://foobaz.localhost:5000/')
2013-03-05 13:14:43 +00:00
res.status_code.should.equal(200)
res = test_client.get('/')
2014-08-26 17:25:50 +00:00
res.data.should.contain(b'<Name>foobaz</Name>')
2013-03-05 13:14:43 +00:00
res = test_client.get('/', 'http://foobaz.localhost:5000/')
2013-03-05 13:14:43 +00:00
res.status_code.should.equal(200)
2014-08-26 17:25:50 +00:00
res.data.should.contain(b"ListBucketResult")
2013-03-05 13:14:43 +00:00
2017-02-24 02:37:43 +00:00
res = test_client.put(
'/bar', 'http://foobaz.localhost:5000/', data='test value')
2013-03-05 13:14:43 +00:00
res.status_code.should.equal(200)
assert 'ETag' in dict(res.headers)
2013-03-05 13:14:43 +00:00
res = test_client.get('/bar', 'http://foobaz.localhost:5000/')
2013-03-05 13:14:43 +00:00
res.status_code.should.equal(200)
2014-08-26 17:25:50 +00:00
res.data.should.equal(b"test value")
2013-05-17 23:41:39 +00:00
2015-02-22 15:13:34 +00:00
def test_s3_server_bucket_versioning():
backend = server.create_backend_app("s3")
test_client = backend.test_client()
# Just enough XML to enable versioning
body = '<Status>Enabled</Status>'
2017-02-24 02:37:43 +00:00
res = test_client.put(
'/?versioning', 'http://foobaz.localhost:5000', data=body)
2015-02-22 15:13:34 +00:00
res.status_code.should.equal(200)
2013-05-17 23:41:39 +00:00
def test_s3_server_post_to_bucket():
2013-12-29 01:15:37 +00:00
backend = server.create_backend_app("s3")
test_client = backend.test_client()
res = test_client.put('/', 'http://tester.localhost:5000/')
2013-05-17 23:41:39 +00:00
res.status_code.should.equal(200)
test_client.post('/', "https://tester.localhost:5000/", data={
2013-05-17 23:41:39 +00:00
'key': 'the-key',
'file': 'nothing'
})
res = test_client.get('/the-key', 'http://tester.localhost:5000/')
2013-05-17 23:41:39 +00:00
res.status_code.should.equal(200)
2014-08-26 17:25:50 +00:00
res.data.should.equal(b"nothing")
def test_s3_server_post_without_content_length():
backend = server.create_backend_app("s3")
test_client = backend.test_client()
res = test_client.put('/', 'http://tester.localhost:5000/', environ_overrides={'CONTENT_LENGTH': ''})
res.status_code.should.equal(411)
res = test_client.post('/', "https://tester.localhost:5000/", environ_overrides={'CONTENT_LENGTH': ''})
res.status_code.should.equal(411)