2013-09-02 04:50:06 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
|
2013-09-16 16:24:00 +00:00
|
|
|
|
|
|
|
tests.integration.modules.pw_user
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-09-02 04:50:06 +00:00
|
|
|
'''
|
2012-09-30 17:01:47 +00:00
|
|
|
# Import python libs
|
2018-01-24 20:47:14 +00:00
|
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
2012-09-30 17:01:47 +00:00
|
|
|
import string
|
|
|
|
import random
|
|
|
|
|
2013-06-24 22:53:59 +00:00
|
|
|
# Import Salt Testing libs
|
2017-04-03 16:04:09 +00:00
|
|
|
from tests.support.case import ModuleCase
|
2017-04-04 17:57:27 +00:00
|
|
|
from tests.support.helpers import destructiveTest, skip_if_not_root
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2014-11-22 11:13:11 +00:00
|
|
|
# Import 3rd-party libs
|
|
|
|
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
|
|
|
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2017-04-03 16:04:09 +00:00
|
|
|
class PwUserModuleTest(ModuleCase):
|
2012-09-30 17:01:47 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
2013-09-02 04:50:06 +00:00
|
|
|
super(PwUserModuleTest, self).setUp()
|
2012-09-30 17:01:47 +00:00
|
|
|
os_grain = self.run_function('grains.item', ['kernel'])
|
2013-01-23 22:51:45 +00:00
|
|
|
if os_grain['kernel'] != 'FreeBSD':
|
2012-09-30 17:01:47 +00:00
|
|
|
self.skipTest(
|
2013-01-23 22:51:45 +00:00
|
|
|
'Test not applicable to \'{kernel}\' kernel'.format(
|
|
|
|
**os_grain
|
2012-09-30 17:01:47 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def __random_string(self, size=6):
|
|
|
|
return ''.join(
|
|
|
|
random.choice(string.ascii_uppercase + string.digits)
|
|
|
|
for x in range(size)
|
|
|
|
)
|
|
|
|
|
|
|
|
@destructiveTest
|
2017-04-04 17:57:27 +00:00
|
|
|
@skip_if_not_root
|
2012-09-30 17:01:47 +00:00
|
|
|
def test_groups_includes_primary(self):
|
|
|
|
# Let's create a user, which usually creates the group matching the
|
|
|
|
# name
|
|
|
|
uname = self.__random_string()
|
|
|
|
if self.run_function('user.add', [uname]) is not True:
|
|
|
|
# Skip because creating is not what we're testing here
|
2013-09-02 04:50:06 +00:00
|
|
|
self.run_function('user.delete', [uname, True, True])
|
2012-09-30 17:01:47 +00:00
|
|
|
self.skipTest('Failed to create user')
|
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
try:
|
|
|
|
uinfo = self.run_function('user.info', [uname])
|
|
|
|
self.assertIn(uname, uinfo['groups'])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
# This uid is available, store it
|
|
|
|
uid = uinfo['uid']
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
self.run_function('user.delete', [uname, True, True])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
# Now, a weird group id
|
|
|
|
gname = self.__random_string()
|
|
|
|
if self.run_function('group.add', [gname]) is not True:
|
|
|
|
self.run_function('group.delete', [gname, True, True])
|
|
|
|
self.skipTest('Failed to create group')
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
ginfo = self.run_function('group.info', [gname])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
# And create the user with that gid
|
|
|
|
if self.run_function('user.add', [uname, uid, ginfo['gid']]) is False:
|
|
|
|
# Skip because creating is not what we're testing here
|
|
|
|
self.run_function('user.delete', [uname, True, True])
|
|
|
|
self.skipTest('Failed to create user')
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
uinfo = self.run_function('user.info', [uname])
|
|
|
|
self.assertIn(gname, uinfo['groups'])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:50:06 +00:00
|
|
|
except AssertionError:
|
|
|
|
self.run_function('user.delete', [uname, True, True])
|
|
|
|
raise
|