mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
076b49a4ca
Conflicts: README.rst doc/conf.py doc/ref/index.rst doc/ref/proxy/all/salt.proxy.ssh_sample.rst doc/topics/installation/rhel.rst doc/topics/releases/2015.8.4.rst doc/topics/tutorials/states_pt5.rst salt/cloud/clouds/ec2.py salt/cloud/clouds/opennebula.py salt/config/__init__.py salt/modules/boto_dynamodb.py salt/modules/boto_ec2.py salt/modules/boto_elasticache.py salt/modules/boto_elb.py salt/modules/boto_iam.py salt/modules/boto_rds.py salt/modules/boto_sns.py salt/modules/boto_sqs.py salt/modules/dracr.py salt/modules/git.py salt/modules/mine.py salt/modules/systemd.py salt/modules/win_pkg.py salt/modules/yumpkg.py salt/pillar/__init__.py salt/states/git.py salt/states/rabbitmq_vhost.py salt/states/saltmod.py salt/utils/pkg/rpm.py setup.py tests/unit/modules/systemd_test.py tests/unit/states/rabbitmq_vhost_test.py
91 lines
3.1 KiB
Python
91 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
'''
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import skipIf, TestCase
|
|
from salttesting.mock import (
|
|
MagicMock,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON,
|
|
patch
|
|
)
|
|
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import Salt Libs
|
|
import salt.utils.s3
|
|
from salt.modules import s3
|
|
|
|
s3.__salt__ = {}
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class S3TestCase(TestCase):
|
|
def test__get_key_defaults(self):
|
|
mock = MagicMock(return_value='')
|
|
with patch.dict(s3.__salt__, {'config.option': mock}):
|
|
key, keyid, service_url, verify_ssl, location, role_arn = (
|
|
s3._get_key(None, None, None, None, None, None))
|
|
self.assertEqual(None, role_arn)
|
|
self.assertEqual(None, key)
|
|
self.assertEqual(None, keyid)
|
|
self.assertEqual('s3.amazonaws.com', service_url)
|
|
self.assertEqual('', verify_ssl)
|
|
self.assertEqual('', location)
|
|
|
|
def test_delete(self):
|
|
'''
|
|
Test for delete a bucket, or delete an object from a bucket.
|
|
'''
|
|
with patch.object(s3, '_get_key',
|
|
return_value=('key', 'keyid', 'service_url',
|
|
'verify_ssl', 'kms_keyid', 'location',
|
|
'role_arn')):
|
|
with patch.object(salt.utils.s3, 'query', return_value='A'):
|
|
self.assertEqual(s3.delete('bucket'), 'A')
|
|
|
|
def test_get(self):
|
|
'''
|
|
Test for list the contents of a bucket, or return an object from a
|
|
bucket.
|
|
'''
|
|
with patch.object(s3, '_get_key',
|
|
return_value=('key', 'keyid', 'service_url',
|
|
'verify_ssl', 'kms_keyid', 'location',
|
|
'role_arn')):
|
|
with patch.object(salt.utils.s3, 'query', return_value='A'):
|
|
self.assertEqual(s3.get(), 'A')
|
|
|
|
def test_head(self):
|
|
'''
|
|
Test for return the metadata for a bucket, or an object in a bucket.
|
|
'''
|
|
with patch.object(s3, '_get_key',
|
|
return_value=('key', 'keyid', 'service_url',
|
|
'verify_ssl', 'kms_keyid', 'location',
|
|
'role_arn')):
|
|
with patch.object(salt.utils.s3, 'query', return_value='A'):
|
|
self.assertEqual(s3.head('bucket'), 'A')
|
|
|
|
def test_put(self):
|
|
'''
|
|
Test for create a new bucket, or upload an object to a bucket.
|
|
'''
|
|
with patch.object(s3, '_get_key',
|
|
return_value=('key', 'keyid', 'service_url',
|
|
'verify_ssl', 'kms_keyid', 'location',
|
|
'role_arn')):
|
|
with patch.object(salt.utils.s3, 'query', return_value='A'):
|
|
self.assertEqual(s3.put('bucket'), 'A')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(S3TestCase, needs_daemon=False)
|