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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
#! /usr/bin/env ruby
require 'spec_helper'
describe Puppet::Type.type(:user).provider(:useradd) do
before :each do
described_class.stubs(:command).with(:password).returns '/usr/bin/chage'
described_class.stubs(:command).with(:add).returns '/usr/sbin/useradd'
described_class.stubs(:command).with(:localadd).returns '/usr/sbin/luseradd'
described_class.stubs(:command).with(:modify).returns '/usr/sbin/usermod'
described_class.stubs(:command).with(:delete).returns '/usr/sbin/userdel'
end
let(:resource) do
Puppet::Type.type(:user).new(
:name => 'myuser',
:managehome => :false,
:system => :false,
:provider => provider
)
end
let(:provider) { described_class.new(:name => 'myuser') }
let(:shadow_entry) {
return unless Puppet.features.libshadow?
entry = Struct::PasswdEntry.new
entry[:sp_namp] = 'myuser' # login name
entry[:sp_pwdp] = '$6$FvW8Ib8h$qQMI/CR9m.QzIicZKutLpBgCBBdrch1IX0rTnxuI32K1pD9.RXZrmeKQlaC.RzODNuoUtPPIyQDufunvLOQWF0' # encrypted password
entry[:sp_lstchg] = 15573 # date of last password change
entry[:sp_min] = 10 # minimum password age
entry[:sp_max] = 20 # maximum password age
entry[:sp_warn] = 7 # password warning period
entry[:sp_inact] = -1 # password inactivity period
entry[:sp_expire] = 15706 # account expiration date
entry
}
describe "#create" do
before do
provider.stubs(:exists?).returns(false)
end
it "should add -g when no gid is specified and group already exists" do
Puppet::Util.stubs(:gid).returns(true)
resource[:ensure] = :present
provider.expects(:execute).with(includes('-g'), kind_of(Hash))
provider.create
end
it "should add -o when allowdupe is enabled and the user is being created" do
resource[:allowdupe] = true
provider.expects(:execute).with(includes('-o'), kind_of(Hash))
provider.create
end
describe "on systems that support has_system", :if => described_class.system_users? do
it "should add -r when system is enabled" do
resource[:system] = :true
provider.should be_system_users
provider.expects(:execute).with(includes('-r'), kind_of(Hash))
provider.create
end
end
describe "on systems that do not support has_system", :unless => described_class.system_users? do
it "should not add -r when system is enabled" do
resource[:system] = :true
provider.should_not be_system_users
provider.expects(:execute).with(['/usr/sbin/useradd', 'myuser'], kind_of(Hash))
provider.create
end
end
it "should set password age rules" do
described_class.has_feature :manages_password_age
resource[:password_min_age] = 5
resource[:password_max_age] = 10
provider.expects(:execute).with(includes('/usr/sbin/useradd'), kind_of(Hash))
provider.expects(:execute).with(['/usr/bin/chage', '-m', 5, '-M', 10, 'myuser'])
provider.create
end
describe "on systems with the libuser and forcelocal=true" do
before do
described_class.has_feature :libuser
resource[:forcelocal] = true
end
it "should use luseradd instead of useradd" do
provider.expects(:execute).with(includes('/usr/sbin/luseradd'), has_entry(:custom_environment, has_key('LIBUSER_CONF')))
provider.create
end
it "should NOT use -o when allowdupe=true" do
resource[:allowdupe] = :true
provider.expects(:execute).with(Not(includes('-o')), has_entry(:custom_environment, has_key('LIBUSER_CONF')))
provider.create
end
it "should raise an exception for duplicate UIDs" do
resource[:uid] = 505
provider.stubs(:finduser).returns(true)
lambda { provider.create }.should raise_error(Puppet::Error, "UID 505 already exists, use allowdupe to force user creation")
end
it "should not use -G for luseradd and should call usermod with -G after luseradd when groups property is set" do
resource[:groups] = ['group1', 'group2']
provider.expects(:execute).with(Not(includes("-G")), has_entry(:custom_environment, has_key('LIBUSER_CONF')))
provider.expects(:execute).with(includes('/usr/sbin/usermod'))
provider.create
end
it "should not use -m when managehome set" do
resource[:managehome] = :true
provider.expects(:execute).with(Not(includes('-m')), has_entry(:custom_environment, has_key('LIBUSER_CONF')))
provider.create
end
it "should not use -e with luseradd, should call usermod with -e after luseradd when expiry is set" do
resource[:expiry] = '2038-01-24'
provider.expects(:execute).with(all_of(includes('/usr/sbin/luseradd'), Not(includes('-e'))), has_entry(:custom_environment, has_key('LIBUSER_CONF')))
provider.expects(:execute).with(all_of(includes('/usr/sbin/usermod'), includes('-e')))
provider.create
end
it "should use userdel to delete users" do
resource[:ensure] = :absent
provider.stubs(:exists?).returns(true)
provider.expects(:execute).with(includes('/usr/sbin/userdel'))
provider.delete
end
end
describe "on systems that allow to set shell" do
it "should trigger shell validation" do
resource[:shell] = '/bin/bash'
provider.expects(:check_valid_shell)
provider.expects(:execute).with(includes('-s'), kind_of(Hash))
provider.create
end
end
end
describe "#uid=" do
it "should add -o when allowdupe is enabled and the uid is being modified" do
resource[:allowdupe] = :true
provider.expects(:execute).with(['/usr/sbin/usermod', '-u', 150, '-o', 'myuser'])
provider.uid = 150
end
end
describe "#expiry=" do
it "should pass expiry to usermod as MM/DD/YY when on Solaris" do
Facter.expects(:value).with(:operatingsystem).returns 'Solaris'
resource[:expiry] = '2012-10-31'
provider.expects(:execute).with(['/usr/sbin/usermod', '-e', '10/31/2012', 'myuser'])
provider.expiry = '2012-10-31'
end
it "should pass expiry to usermod as YYYY-MM-DD when not on Solaris" do
Facter.expects(:value).with(:operatingsystem).returns 'not_solaris'
resource[:expiry] = '2012-10-31'
provider.expects(:execute).with(['/usr/sbin/usermod', '-e', '2012-10-31', 'myuser'])
provider.expiry = '2012-10-31'
end
it "should use -e with an empty string when the expiry property is removed" do
resource[:expiry] = :absent
provider.expects(:execute).with(['/usr/sbin/usermod', '-e', '', 'myuser'])
provider.expiry = :absent
end
end
describe "#check_allow_dup" do
it "should return an array with a flag if dup is allowed" do
resource[:allowdupe] = :true
provider.check_allow_dup.must == ["-o"]
end
it "should return an empty array if no dup is allowed" do
resource[:allowdupe] = :false
provider.check_allow_dup.must == []
end
end
describe "#check_system_users" do
it "should check system users" do
described_class.expects(:system_users?).returns true
resource.expects(:system?)
provider.check_system_users
end
it "should return an array with a flag if it's a system user" do
described_class.expects(:system_users?).returns true
resource[:system] = :true
provider.check_system_users.must == ["-r"]
end
it "should return an empty array if it's not a system user" do
described_class.expects(:system_users?).returns true
resource[:system] = :false
provider.check_system_users.must == []
end
it "should return an empty array if system user is not featured" do
described_class.expects(:system_users?).returns false
resource[:system] = :true
provider.check_system_users.must == []
end
end
describe "#check_manage_home" do
it "should return an array with -m flag if home is managed" do
resource[:managehome] = :true
provider.expects(:execute).with(includes('-m'), kind_of(Hash))
provider.create
end
it "should return an array with -r flag if home is managed" do
resource[:managehome] = :true
resource[:ensure] = :absent
provider.stubs(:exists?).returns(true)
provider.expects(:execute).with(includes('-r'))
provider.delete
end
it "should use -M flag if home is not managed and on Redhat" do
Facter.stubs(:value).with(:osfamily).returns("RedHat")
resource[:managehome] = :false
provider.expects(:execute).with(includes('-M'), kind_of(Hash))
provider.create
end
it "should not use -M flag if home is not managed and not on Redhat" do
Facter.stubs(:value).with(:osfamily).returns("not RedHat")
resource[:managehome] = :false
provider.expects(:execute).with(Not(includes('-M')), kind_of(Hash))
provider.create
end
end
describe "#addcmd" do
before do
resource[:allowdupe] = :true
resource[:managehome] = :true
resource[:system] = :true
resource[:groups] = [ 'somegroup' ]
end
it "should call command with :add" do
provider.expects(:command).with(:add)
provider.addcmd
end
it "should add properties" do
provider.expects(:add_properties).returns(['-foo_add_properties'])
provider.addcmd.should include '-foo_add_properties'
end
it "should check and add if dup allowed" do
provider.expects(:check_allow_dup).returns(['-allow_dup_flag'])
provider.addcmd.should include '-allow_dup_flag'
end
it "should check and add if home is managed" do
provider.expects(:check_manage_home).returns(['-manage_home_flag'])
provider.addcmd.should include '-manage_home_flag'
end
it "should add the resource :name" do
provider.addcmd.should include 'myuser'
end
describe "on systems featuring system_users", :if => described_class.system_users? do
it "should return an array with -r if system? is true" do
resource[:system] = :true
provider.addcmd.should include("-r")
end
it "should return an array without -r if system? is false" do
resource[:system] = :false
provider.addcmd.should_not include("-r")
end
end
describe "on systems not featuring system_users", :unless => described_class.system_users? do
[:false, :true].each do |system|
it "should return an array without -r if system? is #{system}" do
resource[:system] = system
provider.addcmd.should_not include("-r")
end
end
end
it "should return an array with the full command and expiry as MM/DD/YY when on Solaris" do
Facter.stubs(:value).with(:operatingsystem).returns 'Solaris'
described_class.expects(:system_users?).returns true
resource[:expiry] = "2012-08-18"
provider.addcmd.must == ['/usr/sbin/useradd', '-e', '08/18/2012', '-G', 'somegroup', '-o', '-m', '-r', 'myuser']
end
it "should return an array with the full command and expiry as YYYY-MM-DD when not on Solaris" do
Facter.stubs(:value).with(:operatingsystem).returns 'not_solaris'
described_class.expects(:system_users?).returns true
resource[:expiry] = "2012-08-18"
provider.addcmd.must == ['/usr/sbin/useradd', '-e', '2012-08-18', '-G', 'somegroup', '-o', '-m', '-r', 'myuser']
end
it "should return an array without -e if expiry is undefined full command" do
described_class.expects(:system_users?).returns true
provider.addcmd.must == ["/usr/sbin/useradd", "-G", "somegroup", "-o", "-m", "-r", "myuser"]
end
it "should pass -e \"\" if the expiry has to be removed" do
described_class.expects(:system_users?).returns true
resource[:expiry] = :absent
provider.addcmd.must == ['/usr/sbin/useradd', '-e', '', '-G', 'somegroup', '-o', '-m', '-r', 'myuser']
end
end
{
:password_min_age => 10,
:password_max_age => 20,
:password => '$6$FvW8Ib8h$qQMI/CR9m.QzIicZKutLpBgCBBdrch1IX0rTnxuI32K1pD9.RXZrmeKQlaC.RzODNuoUtPPIyQDufunvLOQWF0'
}.each_pair do |property, expected_value|
describe "##{property}" do
before :each do
resource # just to link the resource to the provider
end
it "should return absent if libshadow feature is not present" do
Puppet.features.stubs(:libshadow?).returns false
# Shadow::Passwd.expects(:getspnam).never # if we really don't have libshadow we dont have Shadow::Passwd either
provider.send(property).should == :absent
end
it "should return absent if user cannot be found", :if => Puppet.features.libshadow? do
Shadow::Passwd.expects(:getspnam).with('myuser').returns nil
provider.send(property).should == :absent
end
it "should return the correct value if libshadow is present", :if => Puppet.features.libshadow? do
Shadow::Passwd.expects(:getspnam).with('myuser').returns shadow_entry
provider.send(property).should == expected_value
end
end
end
describe '#expiry' do
before :each do
resource # just to link the resource to the provider
end
it "should return absent if libshadow feature is not present" do
Puppet.features.stubs(:libshadow?).returns false
provider.expiry.should == :absent
end
it "should return absent if user cannot be found", :if => Puppet.features.libshadow? do
Shadow::Passwd.expects(:getspnam).with('myuser').returns nil
provider.expiry.should == :absent
end
it "should return absent if expiry is -1", :if => Puppet.features.libshadow? do
shadow_entry.sp_expire = -1
Shadow::Passwd.expects(:getspnam).with('myuser').returns shadow_entry
provider.expiry.should == :absent
end
it "should convert to YYYY-MM-DD", :if => Puppet.features.libshadow? do
Shadow::Passwd.expects(:getspnam).with('myuser').returns shadow_entry
provider.expiry.should == '2013-01-01'
end
end
describe "#passcmd" do
before do
resource[:allowdupe] = :true
resource[:managehome] = :true
resource[:system] = :true
described_class.has_feature :manages_password_age
end
it "should call command with :pass" do
# command(:password) is only called inside passcmd if
# password_min_age or password_max_age is set
resource[:password_min_age] = 123
provider.expects(:command).with(:password)
provider.passcmd
end
it "should return nil if neither min nor max is set" do
provider.passcmd.must be_nil
end
it "should return a chage command array with -m <value> and the user name if password_min_age is set" do
resource[:password_min_age] = 123
provider.passcmd.must == ['/usr/bin/chage','-m',123,'myuser']
end
it "should return a chage command array with -M <value> if password_max_age is set" do
resource[:password_max_age] = 999
provider.passcmd.must == ['/usr/bin/chage','-M',999,'myuser']
end
it "should return a chage command array with -M <value> -m <value> if both password_min_age and password_max_age are set" do
resource[:password_min_age] = 123
resource[:password_max_age] = 999
provider.passcmd.must == ['/usr/bin/chage','-m',123,'-M',999,'myuser']
end
end
describe "#check_valid_shell" do
it "should raise an error if shell does not exist" do
resource[:shell] = 'foo/bin/bash'
lambda { provider.check_valid_shell }.should raise_error(Puppet::Error, /Shell foo\/bin\/bash must exist/)
end
it "should raise an error if the shell is not executable" do
resource[:shell] = 'LICENSE'
lambda { provider.check_valid_shell }.should raise_error(Puppet::Error, /Shell LICENSE must be executable/)
end
end
end
|