示例#1
0
    def test_present(self):
        '''
            Test to ensure that the named user is present with
            the specified properties
        '''
        ret = {'name': 'salt', 'changes': {}, 'result': False, 'comment': ''}
        mock = MagicMock(return_value=False)
        mock2 = MagicMock(return_value=[])
        with patch.dict(
                user.__salt__, {
                    'group.info': mock,
                    'user.info': mock2,
                    "user.chkey": mock2,
                    'user.add': mock
                }):
            ret.update(
                {'comment': 'The following group(s) are'
                 ' not present: salt'})
            self.assertDictEqual(user.present('salt', groups=['salt']), ret)

            mock = MagicMock(side_effect=[{
                'key': 'value'
            }, {
                'key': 'value'
            }, {
                'key': 'value'
            }, False, False])
            with patch.object(user, '_changes', mock):
                with patch.dict(user.__opts__, {"test": True}):
                    ret.update({
                        'comment': 'The following user attributes are'
                        ' set to be changed:\nkey: value\n',
                        'result': None
                    })
                    self.assertDictEqual(user.present('salt'), ret)

                with patch.dict(user.__opts__, {"test": False}):
                    with patch.dict(user.__grains__, {"kernel": False}):
                        ret.update({
                            'comment': "These values could not be"
                            " changed: {'key': 'value'}",
                            'result': False
                        })
                        self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": True}):
                            ret.update({
                                'comment': 'User salt set to'
                                ' be added',
                                'result': None
                            })
                            self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": False}):
                            ret.update({
                                'comment': 'Failed to create new'
                                ' user salt',
                                'result': False
                            })
                            self.assertDictEqual(user.present('salt'), ret)
示例#2
0
    def test_present(self):
        '''
            Test to ensure that the named user is present with
            the specified properties
        '''
        ret = {'name': 'salt',
               'changes': {},
               'result': False,
               'comment': ''}
        mock_false = MagicMock(return_value=False)
        mock_empty_list = MagicMock(return_value=[])
        with patch.dict(user.__grains__, {"kernel": 'Linux'}):
            with patch.dict(user.__salt__, {'group.info': mock_false,
                                            'user.info': mock_empty_list,
                                            "user.chkey": mock_empty_list,
                                            'user.add': mock_false}):
                ret.update({'comment': 'The following group(s) are'
                            ' not present: salt'})
                self.assertDictEqual(user.present('salt', groups=['salt']), ret)

                mock_false = MagicMock(side_effect=[{'key': 'value'}, {'key': 'value'},
                                              {'key': 'value'}, False, False])
                with patch.object(user, '_changes', mock_false):
                    with patch.dict(user.__opts__, {"test": True}):
                        ret.update(
                            {'comment': 'The following user attributes are set '
                                        'to be changed:\n'
                                        'key: value\n',
                             'result': None})
                        self.assertDictEqual(user.present('salt'), ret)

                    with patch.dict(user.__opts__, {"test": False}):
                        # pylint: disable=repr-flag-used-in-string
                        comment = (
                            'These values could not be changed: {0!r}'
                            .format({'key': 'value'})
                        )
                        # pylint: enable=repr-flag-used-in-string
                        ret.update({'comment': comment, 'result': False})
                        self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": True}):
                            ret.update({'comment': 'User salt set to'
                                        ' be added', 'result': None})
                            self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": False}):
                            ret.update({'comment': 'Failed to create new'
                                        ' user salt', 'result': False})
                            self.assertDictEqual(user.present('salt'), ret)
示例#3
0
文件: user_test.py 项目: DaveQB/salt
    def test_present(self):
        '''
            Test to ensure that the named user is present with
            the specified properties
        '''
        ret = {'name': 'salt',
               'changes': {},
               'result': False,
               'comment': ''}
        mock = MagicMock(return_value=False)
        mock2 = MagicMock(return_value=[])
        with patch.dict(user.__salt__, {'group.info': mock,
                                        'user.info': mock2,
                                        "user.chkey": mock2,
                                        'user.add': mock}):
            ret.update({'comment': 'The following group(s) are'
                        ' not present: salt'})
            self.assertDictEqual(user.present('salt', groups=['salt']), ret)

            mock = MagicMock(side_effect=[{'key': 'value'}, {'key': 'value'},
                                          {'key': 'value'}, False, False])
            with patch.object(user, '_changes', mock):
                with patch.dict(user.__opts__, {"test": True}):
                    ret.update({'comment': 'The following user attributes are'
                                ' set to be changed:\nkey: value\n',
                                'result': None})
                    self.assertDictEqual(user.present('salt'), ret)

                with patch.dict(user.__opts__, {"test": False}):
                    with patch.dict(user.__grains__, {"kernel": False}):
                        ret.update({'comment': "These values could not be"
                                    " changed: {'key': 'value'}",
                                    'result': False})
                        self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": True}):
                            ret.update({'comment': 'User salt set to'
                                        ' be added', 'result': None})
                            self.assertDictEqual(user.present('salt'), ret)

                        with patch.dict(user.__opts__, {"test": False}):
                            ret.update({'comment': 'Failed to create new'
                                        ' user salt', 'result': False})
                            self.assertDictEqual(user.present('salt'), ret)
示例#4
0
文件: test_user.py 项目: zxstar/salt
 def test_present_uid_gid_change(self):
     before = {
         "uid": 5000,
         "gid": 5000,
         "groups": ["foo"],
         "home": "/home/foo",
         "fullname": "Foo Bar",
     }
     after = {
         "uid": 5001,
         "gid": 5001,
         "groups": ["othergroup"],
         "home": "/home/foo",
         "fullname": "Foo Bar",
     }
     # user.info should be called 4 times. Once the first time that
     # _changes() is called, once before and after changes are applied (to
     # get the before/after for the changes dict, and one last time to
     # confirm that no changes still need to be made.
     mock_info = MagicMock(side_effect=[before, before, after, after])
     mock_group_to_gid = MagicMock(side_effect=["foo", "othergroup"])
     mock_gid_to_group = MagicMock(side_effect=[5000, 5001])
     dunder_salt = {
         "user.info": mock_info,
         "user.chuid": Mock(),
         "user.chgid": Mock(),
         "file.group_to_gid": mock_group_to_gid,
         "file.gid_to_group": mock_gid_to_group,
     }
     # side_effect used because these mocks should only be called once
     with patch.dict(user.__grains__, {"kernel": "Linux"}), patch.dict(
             user.__salt__, dunder_salt), patch.dict(
                 user.__opts__,
                 {"test": False}), patch("os.path.isdir",
                                         MagicMock(return_value=True)):
         ret = user.present("foo",
                            uid=5001,
                            gid=5001,
                            allow_uid_change=True,
                            allow_gid_change=True)
         self.assertEqual(
             ret,
             {
                 "comment": "Updated user foo",
                 "changes": {
                     "gid": 5001,
                     "uid": 5001,
                     "groups": ["othergroup"]
                 },
                 "name": "foo",
                 "result": True,
             },
         )
示例#5
0
文件: test_user.py 项目: zlfei/salt
 def test_present_uid_gid_change(self):
     before = {
         'uid': 5000,
         'gid': 5000,
         'groups': ['foo'],
         'home': '/home/foo',
         'fullname': 'Foo Bar'
     }
     after = {
         'uid': 5001,
         'gid': 5001,
         'groups': ['othergroup'],
         'home': '/home/foo',
         'fullname': 'Foo Bar'
     }
     # user.info should be called 4 times. Once the first time that
     # _changes() is called, once before and after changes are applied (to
     # get the before/after for the changes dict, and one last time to
     # confirm that no changes still need to be made.
     mock_info = MagicMock(side_effect=[before, before, after, after])
     mock_group_to_gid = MagicMock(side_effect=['foo', 'othergroup'])
     mock_gid_to_group = MagicMock(side_effect=[5000, 5001])
     dunder_salt = {
         'user.info': mock_info,
         'user.chuid': Mock(),
         'user.chgid': Mock(),
         'file.group_to_gid': mock_group_to_gid,
         'file.gid_to_group': mock_gid_to_group
     }
     # side_effect used because these mocks should only be called once
     with patch.dict(user.__grains__, {'kernel': 'Linux'}), \
             patch.dict(user.__salt__, dunder_salt), \
             patch.dict(user.__opts__, {'test': False}), \
             patch('os.path.isdir', MagicMock(return_value=True)):
         ret = user.present('foo',
                            uid=5001,
                            gid=5001,
                            allow_uid_change=True,
                            allow_gid_change=True)
         self.assertEqual(
             ret, {
                 'comment': 'Updated user foo',
                 'changes': {
                     'gid': 5001,
                     'uid': 5001,
                     'groups': ['othergroup']
                 },
                 'name': 'foo',
                 'result': True
             })
示例#6
0
def test_gecos_field_changes_in_user_present():
    """
    Test if the gecos fields change in salt.states.user.present
    """
    shadow_info = MagicMock(return_value={
        "min": 2,
        "max": 88888,
        "inact": 77,
        "warn": 14,
        "passwd": ""
    })
    shadow_hash = MagicMock(return_value="abcd")
    mock_info = MagicMock(side_effect=[
        {
            "uid": 5000,
            "gid": 5000,
            "groups": ["foo"],
            "home": "/home/foo",
            "fullname": "Foo Bar",
            "homephone": "667788",
        },
        {
            "uid": 5000,
            "gid": 5000,
            "groups": ["foo"],
            "home": "/home/foo",
            "fullname": "Bar Bar",
            "homephone": "44566",
        },
    ])
    mock_changes = MagicMock(side_effect=[{"homephone": "667788"}, None])
    dunder_salt = {
        "user.info": mock_info,
        "user.chhomephone": MagicMock(return_value=True),
        "shadow.info": shadow_info,
        "shadow.default_hash": shadow_hash,
        "file.group_to_gid": MagicMock(side_effect=["foo"]),
        "file.gid_to_group": MagicMock(side_effect=[5000, 5000]),
    }
    with patch.dict(user.__grains__, {"kernel": "Linux"}), patch.dict(
            user.__salt__,
            dunder_salt), patch.dict(user.__opts__,
                                     {"test": False}), patch.object(
                                         user, "_changes", mock_changes):
        res = user.present("Foo", homephone=44566, fullname="Bar Bar")
        assert res["changes"] == {"homephone": "44566", "fullname": "Bar Bar"}
示例#7
0
def test_present_invalid_uid_change():
    mock_info = MagicMock(side_effect=[{
        "uid": 5000,
        "gid": 5000,
        "groups": ["foo"],
        "home": "/home/foo",
        "fullname": "Foo Bar",
    }])
    dunder_salt = {
        "user.info": mock_info,
        "file.group_to_gid": MagicMock(side_effect=["foo"]),
        "file.gid_to_group": MagicMock(side_effect=[5000, 5000]),
    }
    with patch.dict(user.__grains__,
                    {"kernel": "Linux"}), patch.dict(user.__salt__,
                                                     dunder_salt):
        ret = user.present("foo", uid=5001)
        assert not ret["result"]
        assert ret["comment"].count("not permitted") == 1
示例#8
0
 def test_present_invalid_uid_change(self):
     mock_info = MagicMock(side_effect=[
         {'uid': 5000,
          'gid': 5000,
          'groups': ['foo'],
          'home': '/home/foo',
          'fullname': 'Foo Bar'}
     ])
     dunder_salt = {'user.info': mock_info,
                    'file.group_to_gid': MagicMock(side_effect=['foo']),
                    'file.gid_to_group': MagicMock(side_effect=[5000])}
     # side_effect used because these mocks should only be called once
     with patch.dict(user.__grains__, {'kernel': 'Linux'}), \
             patch.dict(user.__salt__, dunder_salt):
         ret = user.present('foo', uid=5001)
         # State should have failed
         self.assertFalse(ret['result'])
         # Only one of uid/gid should have been flagged in the comment
         self.assertEqual(ret['comment'].count('not permitted'), 1)
示例#9
0
文件: test_user.py 项目: zxstar/salt
 def test_present_invalid_uid_gid_change(self):
     mock_info = MagicMock(side_effect=[{
         "uid": 5000,
         "gid": 5000,
         "groups": ["foo"],
         "home": "/home/foo",
         "fullname": "Foo Bar",
     }])
     dunder_salt = {
         "user.info": mock_info,
         "file.group_to_gid": MagicMock(side_effect=["foo"]),
         "file.gid_to_group": MagicMock(side_effect=[5000]),
     }
     # side_effect used because these mocks should only be called once
     with patch.dict(user.__grains__, {"kernel": "Linux"}), patch.dict(
             user.__salt__, dunder_salt):
         ret = user.present("foo", uid=5001, gid=5001)
         # State should have failed
         self.assertFalse(ret["result"])
         # Both the uid and gid should have been flagged in the comment
         self.assertEqual(ret["comment"].count("not permitted"), 2)
示例#10
0
def test_present():
    """
    Test to ensure that the named user is present with
    the specified properties
    """
    ret = {"name": "salt", "changes": {}, "result": False, "comment": ""}
    mock_false = MagicMock(return_value=False)
    mock_empty_list = MagicMock(return_value=[])
    with patch.dict(user.__grains__, {"kernel": "Linux"}):
        with patch.dict(
                user.__salt__,
            {
                "group.info": mock_false,
                "user.info": mock_empty_list,
                "user.chkey": mock_empty_list,
                "user.add": mock_false,
            },
        ):
            ret.update(
                {"comment": "The following group(s) are not present: salt"})
            assert user.present("salt", groups=["salt"]) == ret

            mock_false = MagicMock(side_effect=[
                {
                    "key": "value"
                },
                {
                    "key": "value"
                },
                {
                    "key": "value"
                },
                False,
                False,
            ])
            with patch.object(user, "_changes", mock_false):
                with patch.dict(user.__opts__, {"test": True}):
                    ret.update({
                        "comment":
                        "The following user attributes are set to be changed:\n"
                        "key: value\n",
                        "result":
                        None,
                    })
                    assert user.present("salt") == ret

                with patch.dict(user.__opts__, {"test": False}):
                    comment = "These values could not be changed: {!r}".format(
                        {"key": "value"})
                    ret.update({"comment": comment, "result": False})
                    assert user.present("salt") == ret

                    with patch.dict(user.__opts__, {"test": True}):
                        ret.update({
                            "comment": "User salt set to be added",
                            "result": None
                        })
                        assert user.present("salt") == ret

                    with patch.dict(user.__opts__, {"test": False}):
                        ret.update({
                            "comment": "Failed to create new user salt",
                            "result": False,
                        })
                        assert user.present("salt") == ret