mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
3273bbdab7
Conflicts: - doc/ref/configuration/master.rst - doc/ref/modules/all/index.rst - doc/topics/grains/index.rst - doc/topics/releases/2016.3.4.rst - doc/topics/spm/spm_formula.rst - doc/topics/tutorials/cron.rst - doc/topics/tutorials/index.rst - doc/topics/tutorials/stormpath.rst - salt/engines/slack.py - salt/log/handlers/fluent_mod.py - salt/modules/cyg.py - salt/modules/junos.py - salt/modules/namecheap_dns.py - salt/modules/namecheap_domains.py - salt/modules/namecheap_ns.py - salt/modules/namecheap_ssl.py - salt/modules/namecheap_users.py - salt/modules/reg.py - salt/modules/tomcat.py - salt/modules/vault.py - salt/modules/win_file.py - salt/modules/zpool.py - salt/output/highstate.py - salt/renderers/pass.py - salt/runners/cache.py - salt/states/boto_apigateway.py - salt/states/boto_iam.py - salt/states/boto_route53.py - salt/states/msteams.py - salt/states/reg.py - salt/states/win_iis.py - tests/integration/modules/test_cmdmod.py - tests/integration/states/test_user.py - tests/support/helpers.py - tests/unit/cloud/clouds/test_openstack.py - tests/unit/fileserver/test_gitfs.py - tests/unit/modules/test_junos.py - tests/unit/pillar/test_git.py - tests/unit/states/test_win_path.py - tests/unit/test_pillar.py - tests/unit/utils/test_format_call.py - tests/unit/utils/test_utils.py - tests/unit/utils/test_warnings.py
192 lines
6.7 KiB
Python
192 lines
6.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Nicole Thomas <nicole@saltstack.com>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
import random
|
|
import string
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.helpers import destructiveTest, skip_if_not_root
|
|
|
|
# Import Salt Libs
|
|
from salt.exceptions import CommandExecutionError
|
|
|
|
# Import 3rd-party libs
|
|
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
|
from salt.ext import six
|
|
|
|
|
|
def __random_string(size=6):
|
|
'''
|
|
Generates a random username
|
|
'''
|
|
return 'RS-' + ''.join(
|
|
random.choice(string.ascii_uppercase + string.digits)
|
|
for x in range(size)
|
|
)
|
|
|
|
|
|
# Create group name strings for tests
|
|
ADD_GROUP = __random_string()
|
|
DEL_GROUP = __random_string()
|
|
CHANGE_GROUP = __random_string()
|
|
ADD_USER = __random_string()
|
|
REP_USER_GROUP = __random_string()
|
|
|
|
|
|
@destructiveTest
|
|
@skip_if_not_root
|
|
class MacGroupModuleTest(ModuleCase):
|
|
'''
|
|
Integration tests for the mac_group module
|
|
'''
|
|
|
|
def setUp(self):
|
|
'''
|
|
Sets up test requirements
|
|
'''
|
|
os_grain = self.run_function('grains.item', ['kernel'])
|
|
if os_grain['kernel'] not in 'Darwin':
|
|
self.skipTest(
|
|
'Test not applicable to \'{kernel}\' kernel'.format(
|
|
**os_grain
|
|
)
|
|
)
|
|
|
|
def test_mac_group_add(self):
|
|
'''
|
|
Tests the add group function
|
|
'''
|
|
try:
|
|
self.run_function('group.add', [ADD_GROUP, 3456])
|
|
group_info = self.run_function('group.info', [ADD_GROUP])
|
|
self.assertEqual(group_info['name'], ADD_GROUP)
|
|
except CommandExecutionError:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
raise
|
|
|
|
def test_mac_group_delete(self):
|
|
'''
|
|
Tests the delete group function
|
|
'''
|
|
# Create a group to delete - If unsuccessful, skip the test
|
|
if self.run_function('group.add', [DEL_GROUP, 4567]) is not True:
|
|
self.run_function('group.delete', [DEL_GROUP])
|
|
self.skipTest('Failed to create a group to delete')
|
|
|
|
try:
|
|
# Now try to delete the added group
|
|
ret = self.run_function('group.delete', [DEL_GROUP])
|
|
self.assertTrue(ret)
|
|
except CommandExecutionError:
|
|
raise
|
|
|
|
def test_mac_group_chgid(self):
|
|
'''
|
|
Tests changing the group id
|
|
'''
|
|
# Create a group to delete - If unsuccessful, skip the test
|
|
if self.run_function('group.add', [CHANGE_GROUP, 5678]) is not True:
|
|
self.run_function('group.delete', [CHANGE_GROUP])
|
|
self.skipTest('Failed to create a group to manipulate')
|
|
|
|
try:
|
|
self.run_function('group.chgid', [CHANGE_GROUP, 6789])
|
|
group_info = self.run_function('group.info', [CHANGE_GROUP])
|
|
self.assertEqual(group_info['gid'], 6789)
|
|
except AssertionError:
|
|
self.run_function('group.delete', [CHANGE_GROUP])
|
|
raise
|
|
|
|
def test_mac_adduser(self):
|
|
'''
|
|
Tests adding user to the group
|
|
'''
|
|
# Create a group to use for test - If unsuccessful, skip the test
|
|
if self.run_function('group.add', [ADD_GROUP, 5678]) is not True:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
self.skipTest('Failed to create a group to manipulate')
|
|
|
|
try:
|
|
self.run_function('group.adduser', [ADD_GROUP, ADD_USER])
|
|
group_info = self.run_function('group.info', [ADD_GROUP])
|
|
self.assertEqual(ADD_USER, ''.join(group_info['members']))
|
|
except AssertionError:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
raise
|
|
|
|
def test_mac_deluser(self):
|
|
'''
|
|
Test deleting user from a group
|
|
'''
|
|
# Create a group to use for test - If unsuccessful, skip the test
|
|
if self.run_function('group.add', [ADD_GROUP, 5678]) and \
|
|
self.run_function('group.adduser', [ADD_GROUP, ADD_USER]) is not True:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
self.skipTest('Failed to create a group to manipulate')
|
|
|
|
delusr = self.run_function('group.deluser', [ADD_GROUP, ADD_USER])
|
|
self.assertTrue(delusr)
|
|
|
|
group_info = self.run_function('group.info', [ADD_GROUP])
|
|
self.assertNotIn(ADD_USER, ''.join(group_info['members']))
|
|
|
|
def test_mac_members(self):
|
|
'''
|
|
Test replacing members of a group
|
|
'''
|
|
if self.run_function('group.add', [ADD_GROUP, 5678]) and \
|
|
self.run_function('group.adduser', [ADD_GROUP, ADD_USER]) is not True:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
self.skipTest('Failed to create the {0} group or add user {1} to group '
|
|
'to manipulate'.format(ADD_GROUP,
|
|
ADD_USER))
|
|
|
|
rep_group_mem = self.run_function('group.members',
|
|
[ADD_GROUP, REP_USER_GROUP])
|
|
self.assertTrue(rep_group_mem)
|
|
|
|
# ensure new user is added to group and previous user is removed
|
|
group_info = self.run_function('group.info', [ADD_GROUP])
|
|
self.assertIn(REP_USER_GROUP, six.text_type(group_info['members']))
|
|
self.assertNotIn(ADD_USER, six.text_type(group_info['members']))
|
|
|
|
def test_mac_getent(self):
|
|
'''
|
|
Test returning info on all groups
|
|
'''
|
|
if self.run_function('group.add', [ADD_GROUP, 5678]) and \
|
|
self.run_function('group.adduser', [ADD_GROUP, ADD_USER])is not True:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
self.skipTest('Failed to create the {0} group or add user {1} to group '
|
|
'to manipulate'.format(ADD_GROUP,
|
|
ADD_USER))
|
|
|
|
getinfo = self.run_function('group.getent')
|
|
self.assertTrue(getinfo)
|
|
self.assertIn(ADD_GROUP, six.text_type(getinfo))
|
|
self.assertIn(ADD_USER, six.text_type(getinfo))
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Clean up after tests
|
|
'''
|
|
# Delete ADD_GROUP
|
|
add_info = self.run_function('group.info', [ADD_GROUP])
|
|
if add_info:
|
|
self.run_function('group.delete', [ADD_GROUP])
|
|
|
|
# Delete DEL_GROUP if something failed
|
|
del_info = self.run_function('group.info', [DEL_GROUP])
|
|
if del_info:
|
|
self.run_function('group.delete', [DEL_GROUP])
|
|
|
|
# Delete CHANGE_GROUP
|
|
change_info = self.run_function('group.info', [CHANGE_GROUP])
|
|
if change_info:
|
|
self.run_function('group.delete', [CHANGE_GROUP])
|