2015-05-13 11:42:28 +00:00
|
|
|
# -*- 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 (
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON,
|
|
|
|
MagicMock,
|
|
|
|
patch)
|
|
|
|
|
|
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
|
|
|
|
ensure_in_syspath('../../')
|
|
|
|
|
|
|
|
# Import Salt Libs
|
|
|
|
from salt.states import linux_acl
|
|
|
|
|
|
|
|
linux_acl.__salt__ = {}
|
|
|
|
linux_acl.__opts__ = {}
|
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
class LinuxAclTestCase(TestCase):
|
|
|
|
'''
|
|
|
|
Test cases for salt.states.linux_acl
|
|
|
|
'''
|
|
|
|
# 'present' function tests: 1
|
|
|
|
|
|
|
|
def test_present(self):
|
|
|
|
'''
|
|
|
|
Test to ensure a Linux ACL is present
|
|
|
|
'''
|
|
|
|
name = '/root'
|
|
|
|
acl_type = 'users'
|
|
|
|
acl_name = 'damian'
|
|
|
|
perms = 'rwx'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': None,
|
|
|
|
'comment': '',
|
|
|
|
'changes': {}}
|
|
|
|
|
|
|
|
mock = MagicMock(side_effect=[{name: {acl_type: [{acl_name:
|
|
|
|
{'octal': 'A'}}]}},
|
2015-05-13 12:32:35 +00:00
|
|
|
{name: {acl_type: [{}]}},
|
2015-05-13 11:42:28 +00:00
|
|
|
{name: {acl_type: ''}}])
|
|
|
|
with patch.dict(linux_acl.__salt__, {'acl.getfacl': mock}):
|
|
|
|
with patch.dict(linux_acl.__opts__, {'test': True}):
|
|
|
|
comt = ('Permissions have been updated')
|
|
|
|
ret.update({'comment': comt})
|
|
|
|
self.assertDictEqual(linux_acl.present(name, acl_type, acl_name,
|
|
|
|
perms), ret)
|
|
|
|
|
|
|
|
comt = ('Permissions will be applied')
|
|
|
|
ret.update({'comment': comt})
|
|
|
|
self.assertDictEqual(linux_acl.present(name, acl_type, acl_name,
|
|
|
|
perms), ret)
|
|
|
|
|
|
|
|
comt = ('ACL Type does not exist')
|
|
|
|
ret.update({'comment': comt, 'result': False})
|
|
|
|
self.assertDictEqual(linux_acl.present(name, acl_type, acl_name,
|
|
|
|
perms), ret)
|
|
|
|
|
|
|
|
# 'absent' function tests: 1
|
|
|
|
|
|
|
|
def test_absent(self):
|
|
|
|
'''
|
|
|
|
Test to ensure a Linux ACL does not exist
|
|
|
|
'''
|
|
|
|
name = '/root'
|
|
|
|
acl_type = 'users'
|
|
|
|
acl_name = 'damian'
|
|
|
|
perms = 'rwx'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': None,
|
|
|
|
'comment': '',
|
|
|
|
'changes': {}}
|
|
|
|
|
|
|
|
mock = MagicMock(side_effect=[{name: {acl_type: [{acl_name:
|
|
|
|
{'octal': 'A'}}]}},
|
|
|
|
{name: {acl_type: ''}}])
|
|
|
|
with patch.dict(linux_acl.__salt__, {'acl.getfacl': mock}):
|
|
|
|
with patch.dict(linux_acl.__opts__, {'test': True}):
|
|
|
|
comt = ('Removing permissions')
|
|
|
|
ret.update({'comment': comt})
|
|
|
|
self.assertDictEqual(linux_acl.absent(name, acl_type, acl_name,
|
|
|
|
perms), ret)
|
|
|
|
|
|
|
|
comt = ('ACL Type does not exist')
|
|
|
|
ret.update({'comment': comt, 'result': False})
|
|
|
|
self.assertDictEqual(linux_acl.absent(name, acl_type, acl_name,
|
|
|
|
perms), ret)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
|
|
|
run_tests(LinuxAclTestCase, needs_daemon=False)
|