2013-11-27 11:19:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-09-30 17:01:47 +00:00
|
|
|
# Import python libs
|
2014-11-21 19:05:13 +00:00
|
|
|
from __future__ import absolute_import
|
2012-09-30 17:41:44 +00:00
|
|
|
import os
|
2012-09-30 17:01:47 +00:00
|
|
|
import string
|
|
|
|
import random
|
|
|
|
|
2013-06-24 22:53:59 +00:00
|
|
|
# Import Salt Testing libs
|
|
|
|
from salttesting import skipIf
|
2013-09-05 03:43:39 +00:00
|
|
|
from salttesting.helpers import (
|
|
|
|
destructiveTest,
|
|
|
|
ensure_in_syspath,
|
|
|
|
requires_system_grains
|
|
|
|
)
|
2013-06-27 11:57:03 +00:00
|
|
|
ensure_in_syspath('../../')
|
|
|
|
|
|
|
|
# Import salt libs
|
2016-03-03 01:41:38 +00:00
|
|
|
import salt.utils
|
2013-06-27 11:57:03 +00:00
|
|
|
import integration
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2014-11-22 11:09:05 +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
|
|
|
|
2016-03-03 03:42:12 +00:00
|
|
|
@destructiveTest
|
|
|
|
@skipIf(os.geteuid() != 0, 'you must be root to run these tests')
|
2016-03-03 01:41:38 +00:00
|
|
|
# Only run on linux for now until or if we can figure out a way to use
|
|
|
|
# __grains__ inside of useradd.__virtual__
|
|
|
|
@skipIf(not salt.utils.is_linux(), 'These tests can only be run on linux')
|
2012-09-30 17:01:47 +00:00
|
|
|
class UseraddModuleTest(integration.ModuleCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(UseraddModuleTest, self).setUp()
|
|
|
|
os_grain = self.run_function('grains.item', ['kernel'])
|
2013-01-23 22:51:45 +00:00
|
|
|
if os_grain['kernel'] not in ('Linux', 'Darwin'):
|
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):
|
2013-09-05 03:50:51 +00:00
|
|
|
return 'RS-' + ''.join(
|
2012-09-30 17:01:47 +00:00
|
|
|
random.choice(string.ascii_uppercase + string.digits)
|
|
|
|
for x in range(size)
|
|
|
|
)
|
|
|
|
|
2013-09-05 03:43:39 +00:00
|
|
|
@requires_system_grains
|
|
|
|
def test_groups_includes_primary(self, grains=None):
|
2012-09-30 17:01:47 +00:00
|
|
|
# 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:51:29 +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:51:29 +00:00
|
|
|
try:
|
|
|
|
uinfo = self.run_function('user.info', [uname])
|
2013-09-05 03:39:54 +00:00
|
|
|
if grains['os_family'] in ('Suse',):
|
|
|
|
self.assertIn('users', uinfo['groups'])
|
|
|
|
else:
|
|
|
|
self.assertIn(uname, uinfo['groups'])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:51:29 +00:00
|
|
|
# This uid is available, store it
|
|
|
|
uid = uinfo['uid']
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:51:29 +00:00
|
|
|
self.run_function('user.delete', [uname, True, True])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:51:29 +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:51:29 +00:00
|
|
|
ginfo = self.run_function('group.info', [gname])
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2013-09-02 04:51:29 +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:51:29 +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:51:29 +00:00
|
|
|
except AssertionError:
|
|
|
|
self.run_function('user.delete', [uname, True, True])
|
|
|
|
raise
|
2012-09-30 17:01:47 +00:00
|
|
|
|
2016-03-03 04:23:28 +00:00
|
|
|
def test_linux_user_primary_group(self, grains=None):
|
|
|
|
'''
|
|
|
|
Tests the primary_group function
|
|
|
|
'''
|
|
|
|
name = 'saltyuser'
|
|
|
|
|
|
|
|
# Create a user to test primary group function
|
|
|
|
if self.run_function('user.add', [name]) is not True:
|
|
|
|
self.run_function('user.delete', [name])
|
|
|
|
self.skipTest('Failed to create a user')
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Test useradd.primary_group
|
|
|
|
primary_group = self.run_function('user.primary_group', [name])
|
|
|
|
uid_info = self.run_function('user.info', [name])
|
|
|
|
self.assertIn(primary_group, uid_info['groups'])
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.run_function('user.delete', [name])
|
|
|
|
raise
|
|
|
|
|
2012-09-30 17:01:47 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
2012-09-30 17:24:54 +00:00
|
|
|
run_tests(UseraddModuleTest)
|