Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

# Authors: 

#   Ana Krivokapic <akrivoka@redhat.com> 

# 

# Copyright (C) 2013  Red Hat 

# see file 'COPYING' for use and warranty information 

# 

# This program is free software; you can redistribute it and/or modify 

# it under the terms of the GNU General Public License as published by 

# the Free Software Foundation, either version 3 of the License, or 

# (at your option) any later version. 

# 

# This program 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 General Public License for more details. 

# 

# You should have received a copy of the GNU General Public License 

# along with this program.  If not, see <http://www.gnu.org/licenses/>. 

""" 

Test adding/removing external members (trusted domain objects) to IPA groups. 

These tests are skipped if trust is not established. 

""" 

 

import nose 

from ipalib import api 

from ipapython.dn import DN 

from tests.test_xmlrpc import objectclasses 

from xmlrpc_test import Declarative, fuzzy_uuid, fuzzy_user_or_group_sid 

 

group_name = u'external_group' 

group_desc = u'Test external group' 

group_dn = DN(('cn', group_name), api.env.container_group, api.env.basedn) 

 

 

def get_trusted_group_name(): 

    trusts = api.Command['trust_find']() 

    if trusts['count'] == 0: 

        return None 

 

    ad_netbios = trusts['result'][0]['ipantflatname'] 

    return u'%s\Domain Admins' % ad_netbios 

 

 

class test_external_members(Declarative): 

    @classmethod 

    def setUpClass(cls): 

        super(test_external_members, cls).setUpClass() 

        if not api.Backend.xmlclient.isconnected(): 

            api.Backend.xmlclient.connect(fallback=False) 

 

        trusts = api.Command['trust_find']() 

        if trusts['count'] == 0: 

            raise nose.SkipTest('Trust is not established') 

 

    cleanup_commands = [ 

        ('group_del', [group_name], {}), 

    ] 

 

    tests = [ 

        dict( 

            desc='Create external group "%s"' % group_name, 

            command=( 

                'group_add', [group_name], dict(description=group_desc, external=True) 

                ), 

            expected=dict( 

                value=group_name, 

                summary=u'Added group "%s"' % group_name, 

                result=dict( 

                    cn=[group_name], 

                    description=[group_desc], 

                    objectclass=objectclasses.externalgroup, 

                    ipauniqueid=[fuzzy_uuid], 

                    dn=group_dn, 

                ), 

            ), 

        ), 

        dict( 

            desc='Add external member "%s" to group "%s"' % (get_trusted_group_name(), group_name), 

            command=( 

                'group_add_member', [group_name], dict(ipaexternalmember=get_trusted_group_name()) 

            ), 

            expected=dict( 

                completed=1, 

                failed=dict( 

                    member=dict( 

                        group=tuple(), 

                        user=tuple(), 

                    ), 

                ), 

                result=dict( 

                        dn=group_dn, 

                        ipaexternalmember=[fuzzy_user_or_group_sid], 

                        cn=[group_name], 

                        description=[group_desc], 

                ), 

            ), 

        ), 

        dict( 

            desc='Try to add duplicate external member "%s" to group "%s"' % (get_trusted_group_name(), group_name), 

            command=( 

                'group_add_member', [group_name], dict(ipaexternalmember=get_trusted_group_name()) 

            ), 

            expected=dict( 

                completed=0, 

                failed=dict( 

                    member=dict( 

                        group=[(fuzzy_user_or_group_sid, u'This entry is already a member')], 

                        user=tuple(), 

                    ), 

                ), 

                result=dict( 

                        dn=group_dn, 

                        ipaexternalmember=[fuzzy_user_or_group_sid], 

                        cn=[group_name], 

                        description=[group_desc], 

                ), 

            ), 

        ), 

        dict( 

            desc='Remove external member "%s" from group "%s"' % (get_trusted_group_name(), group_name), 

            command=( 

                'group_remove_member', [group_name], dict(ipaexternalmember=get_trusted_group_name()) 

            ), 

            expected=dict( 

                completed=1, 

                failed=dict( 

                    member=dict( 

                        group=tuple(), 

                        user=tuple(), 

                    ), 

                ), 

                result=dict( 

                    dn=group_dn, 

                    cn=[group_name], 

                    ipaexternalmember=[], 

                    description=[group_desc], 

                ), 

            ), 

        ), 

        dict( 

            desc='Try to remove external entry "%s" which is not a member of group "%s" from group "%s"' % (get_trusted_group_name(), group_name, group_name), 

            command=( 

                'group_remove_member', [group_name], dict(ipaexternalmember=get_trusted_group_name()) 

            ), 

            expected=dict( 

                completed=0, 

                failed=dict( 

                    member=dict( 

                        group=[(fuzzy_user_or_group_sid, u'This entry is not a member')], 

                        user=tuple(), 

                    ), 

                ), 

                result=dict( 

                        dn=group_dn, 

                        cn=[group_name], 

                        description=[group_desc], 

                ), 

            ), 

        ), 

    ]