summaryrefslogtreecommitdiffstats
path: root/src/account/test/TestMemberOfGroup.py
blob: d44ca5a6aafb93087c6328f11dd09708f6ce1b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# -*- encoding: utf-8 -*-
# Copyright (C) 2012-2013 Red Hat, Inc.  All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#
# Authors: Roman Rakus <rrakus@redhat.com>
#

from common import AccountBase
from methods import *
from lmi.shell import LMIInstance
from lmi.shell import LMIInstanceName

class TestMemberOfGroup(AccountBase):
    """
    Class for testing LMI_MemberOfGroup class
    """

    def tearDown(self):
        clean_account(self.user_name)
        clean_group(self.group_name)

    def test_add_user_to_group(self):
        """
        Account: Test to add user to group
        """
        create_account(self.user_name)
        create_group(self.group_name)
        user = self.ns.LMI_Account.first_instance({"Name": self.user_name})
        group = self.ns.LMI_Group.first_instance_name({"Name": self.group_name})
        self.assertIsInstance(user, LMIInstance)
        self.assertIsInstance(group, LMIInstanceName)
        identity = user.first_associator_name(ResultClass = 'LMI_Identity')
        self.assertIsInstance(identity, LMIInstanceName)
        tocreate = self.ns.LMI_MemberOfGroup.create_instance(
            { 'Collection' : group,
              'Member' : identity })
        self.assertIsInstance(tocreate, LMIInstance)

    def test_remove_user_from_group(self):
        """
        Account: Test remove user from group
        """
        # make sure the account will exist
        create_account(self.user_name)
        inst = self.ns.LMI_Account.first_instance({"Name": self.user_name})
        self.assertIsInstance(inst, LMIInstance)
        r = inst.delete()
        self.assertTrue(r)
        # check if it was really deleted
        self.assertFalse(user_exists(self.user_name))

    def test_user_in_groups(self):
        """
        Account: Test correct list of groups for user
        """
        create_account(self.user_name)
        create_group(self.group_name)
        add_user_to_group(self.user_name, self.group_name)
        user = self.ns.LMI_Account.first_instance({"Name": self.user_name})
        self.assertIsInstance(user, LMIInstance)
        ident = self.ns.LMI_Identity.first_instance({"InstanceID": "LMI:UID:%s" % user.UserID})
        self.assertIsInstance(ident, LMIInstance)
        insts = ident.associators(AssocClass = 'LMI_MemberOfGroup')
        self.assertEqual(len(insts), 2)
        found_user = False
        found_group = False
        for inst in insts:
            if inst.Name == self.user_name:
                found_user = True
            elif inst.Name == self.group_name:
                found_group = True
        self.assertTrue(found_user)
        self.assertTrue(found_group)