forked from TrueCloudLab/s3-tests
Compare commits
6 commits
master
...
wip-pytest
Author | SHA1 | Date | |
---|---|---|---|
|
d98d2b7c8e | ||
|
2b2a557095 | ||
|
2785f0ce32 | ||
|
41e230be8f | ||
|
9ce8b69cc9 | ||
|
299b076baa |
30 changed files with 43 additions and 2 deletions
0
s3tests/tests/operations/buckets/__init__.py
Normal file
0
s3tests/tests/operations/buckets/__init__.py
Normal file
6
s3tests/tests/operations/buckets/test_delete.py
Normal file
6
s3tests/tests/operations/buckets/test_delete.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
DELETE operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
6
s3tests/tests/operations/buckets/test_get.py
Normal file
6
s3tests/tests/operations/buckets/test_get.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
GET operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
6
s3tests/tests/operations/buckets/test_head.py
Normal file
6
s3tests/tests/operations/buckets/test_head.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
HEAD operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
6
s3tests/tests/operations/buckets/test_list.py
Normal file
6
s3tests/tests/operations/buckets/test_list.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
LIST operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
6
s3tests/tests/operations/buckets/test_post.py
Normal file
6
s3tests/tests/operations/buckets/test_post.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
POST operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
6
s3tests/tests/operations/buckets/test_put.py
Normal file
6
s3tests/tests/operations/buckets/test_put.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
"""
|
||||||
|
PUT operations on buckets
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
|
||||||
|
"""
|
||||||
|
|
0
s3tests/tests/operations/objects/__init__.py
Normal file
0
s3tests/tests/operations/objects/__init__.py
Normal file
0
s3tests/tests/operations/objects/test_abort_multipart.py
Normal file
0
s3tests/tests/operations/objects/test_abort_multipart.py
Normal file
0
s3tests/tests/operations/objects/test_delete.py
Normal file
0
s3tests/tests/operations/objects/test_delete.py
Normal file
0
s3tests/tests/operations/objects/test_delete_multiple.py
Normal file
0
s3tests/tests/operations/objects/test_delete_multiple.py
Normal file
0
s3tests/tests/operations/objects/test_get.py
Normal file
0
s3tests/tests/operations/objects/test_get.py
Normal file
0
s3tests/tests/operations/objects/test_get_acl.py
Normal file
0
s3tests/tests/operations/objects/test_get_acl.py
Normal file
0
s3tests/tests/operations/objects/test_get_torrent.py
Normal file
0
s3tests/tests/operations/objects/test_get_torrent.py
Normal file
0
s3tests/tests/operations/objects/test_head.py
Normal file
0
s3tests/tests/operations/objects/test_head.py
Normal file
0
s3tests/tests/operations/objects/test_list.py
Normal file
0
s3tests/tests/operations/objects/test_list.py
Normal file
0
s3tests/tests/operations/objects/test_options.py
Normal file
0
s3tests/tests/operations/objects/test_options.py
Normal file
0
s3tests/tests/operations/objects/test_post.py
Normal file
0
s3tests/tests/operations/objects/test_post.py
Normal file
0
s3tests/tests/operations/objects/test_post_restore.py
Normal file
0
s3tests/tests/operations/objects/test_post_restore.py
Normal file
0
s3tests/tests/operations/objects/test_put.py
Normal file
0
s3tests/tests/operations/objects/test_put.py
Normal file
0
s3tests/tests/operations/objects/test_put_acl.py
Normal file
0
s3tests/tests/operations/objects/test_put_acl.py
Normal file
0
s3tests/tests/operations/objects/test_put_copy.py
Normal file
0
s3tests/tests/operations/objects/test_put_copy.py
Normal file
0
s3tests/tests/operations/objects/test_upload_part.py
Normal file
0
s3tests/tests/operations/objects/test_upload_part.py
Normal file
0
s3tests/tests/operations/service/__init__.py
Normal file
0
s3tests/tests/operations/service/__init__.py
Normal file
5
s3tests/tests/operations/service/test_get.py
Normal file
5
s3tests/tests/operations/service/test_get.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
"""
|
||||||
|
GET operations on the Service
|
||||||
|
|
||||||
|
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTServiceGET.html
|
||||||
|
"""
|
4
setup.py
4
setup.py
|
@ -6,8 +6,8 @@ setup(
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|
||||||
author='Tommi Virtanen',
|
author='Red Hat Storage',
|
||||||
author_email='tommi.virtanen@dreamhost.com',
|
author_email='ceph-qa@ceph.com',
|
||||||
description='Unofficial Amazon AWS S3 compatibility tests',
|
description='Unofficial Amazon AWS S3 compatibility tests',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
keywords='s3 web testing',
|
keywords='s3 web testing',
|
||||||
|
|
Loading…
Reference in a new issue