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

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

# Authors: 

#   Petr Viktorin <pviktori@redhat.com> 

# 

# Copyright (C) 2012  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 the `ipalib/plugins/batch.py` module. 

""" 

 

from ipalib import api, errors 

from tests.test_xmlrpc import objectclasses 

from tests.util import assert_equal, Fuzzy, assert_deepequal 

from xmlrpc_test import Declarative, fuzzy_digits, fuzzy_uuid 

from ipalib.dn import DN 

 

group1 = u'testgroup1' 

 

 

def deepequal_list(*expected): 

    """Factory for a function that checks a list 

 

    The created function asserts items of a list are "deepequal" to the given 

    argument. Unlike using assert_deepequal directly, the order matters. 

    """ 

    def checker(got): 

        if len(expected) != len(got): 

            raise AssertionError('Expected %s entries, got %s\n\n%s\n%s' % 

                (len(expected), len(got), expected, got)) 

        for e, g in zip(expected, got): 

            assert_deepequal(e, g) 

        return True 

    return checker 

 

 

class test_batch(Declarative): 

 

    cleanup_commands = [ 

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

    ] 

 

    tests = [ 

 

        dict( 

            desc='Batch ping', 

            command=('batch', [dict(method='ping', params=([], {}))], {}), 

            expected=dict( 

                count=1, 

                results=[ 

                    dict(summary=Fuzzy('IPA server version .*'), error=None), 

                ] 

            ), 

        ), 

 

        dict( 

            desc='Batch two pings', 

            command=('batch', [dict(method='ping', params=([], {}))] * 2, {}), 

            expected=dict( 

                count=2, 

                results=[ 

                    dict(summary=Fuzzy('IPA server version .*'), error=None), 

                    dict(summary=Fuzzy('IPA server version .*'), error=None), 

                ] 

            ), 

        ), 

 

        dict( 

            desc='Create and deleting a group', 

            command=('batch', [ 

                dict(method='group_add', 

                    params=([group1], dict(description=u'Test desc 1'))), 

                dict(method='group_del', params=([group1], dict())), 

            ], {}), 

            expected=dict( 

                count=2, 

                results=deepequal_list( 

                    dict( 

                        value=group1, 

                        summary=u'Added group "testgroup1"', 

                        result=dict( 

                            cn=[group1], 

                            description=[u'Test desc 1'], 

                            objectclass=objectclasses.group + [u'posixgroup'], 

                            ipauniqueid=[fuzzy_uuid], 

                            gidnumber=[fuzzy_digits], 

                            dn=lambda x: DN(x) == \ 

                                DN(('cn', 'testgroup1'), 

                                ('cn', 'groups'), 

                                ('cn', 'accounts'), 

                                api.env.basedn), 

                            ), 

                        error=None), 

                    dict( 

                        summary=u'Deleted group "%s"' % group1, 

                        result=dict(failed=u''), 

                        value=group1, 

                        error=None), 

                ), 

            ), 

        ), 

 

        dict( 

            desc='Try to delete nonexistent group twice', 

            command=('batch', [ 

                dict(method='group_del', params=([group1], dict())), 

                dict(method='group_del', params=([group1], dict())), 

            ], {}), 

            expected=dict( 

                count=2, 

                results=[ 

                    dict(error=u'%s: group not found' % group1), 

                    dict(error=u'%s: group not found' % group1), 

                ], 

            ), 

        ), 

 

        dict( 

            desc='Try to delete non-existent group first, then create it', 

            command=('batch', [ 

                dict(method='group_del', params=([group1], dict())), 

                dict(method='group_add', 

                    params=([group1], dict(description=u'Test desc 1'))), 

            ], {}), 

            expected=dict( 

                count=2, 

                results=deepequal_list( 

                    dict(error=u'%s: group not found' % group1), 

                    dict( 

                        value=group1, 

                        summary=u'Added group "testgroup1"', 

                        result=dict( 

                            cn=[group1], 

                            description=[u'Test desc 1'], 

                            objectclass=objectclasses.group + [u'posixgroup'], 

                            ipauniqueid=[fuzzy_uuid], 

                            gidnumber=[fuzzy_digits], 

                            dn=lambda x: DN(x) == \ 

                                DN(('cn', 'testgroup1'), 

                                ('cn', 'groups'), 

                                ('cn', 'accounts'), 

                                api.env.basedn), 

                            ), 

                        error=None), 

                ), 

            ), 

        ), 

 

        dict( 

            desc='Try bad command invocations', 

            command=('batch', [ 

                # bad command name 

                dict(method='nonexistent_ipa_command', params=([], dict())), 

                # dash, not underscore, in command name 

                dict(method='user-del', params=([], dict())), 

                # missing command name 

                dict(params=([group1], dict())), 

                # missing params 

                dict(method='user_del'), 

                # missing required argument 

                dict(method='user_add', params=([], dict())), 

                # missing required option 

                dict(method='group_add', params=([group1], dict())), 

                # bad type 

                dict(method='group_add', params=([group1], dict( 

                        description=u't', gidnumber=u'bad'))), 

            ], {}), 

            expected=dict( 

                count=7, 

                results=deepequal_list( 

                    dict(error=u"unknown command 'nonexistent_ipa_command'"), 

                    dict(error=u"unknown command 'user-del'"), 

                    dict(error=u"'method' is required"), 

                    dict(error=u"'params' is required"), 

                    dict(error=u"'givenname' is required"), 

                    dict(error=u"'description' is required"), 

                    dict(error=Fuzzy(u"invalid 'gid'.*")), 

                ), 

            ), 

        ), 

 

    ]