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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
|
#
# Author:: Dreamcat4 (<dreamcat4@gmail.com>)
# Copyright:: Copyright 2009-2016, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
ShellCmdResult = Struct.new(:stdout, :stderr, :exitstatus)
require "spec_helper"
require "ostruct"
require "mixlib/shellout"
describe Chef::Provider::User::Dscl do
before do
allow(ChefConfig).to receive(:windows?) { false }
end
let(:node) {
node = Chef::Node.new
allow(node).to receive(:[]).with(:platform_version).and_return(mac_version)
allow(node).to receive(:[]).with(:platform).and_return("mac_os_x")
node
}
let(:events) {
Chef::EventDispatch::Dispatcher.new
}
let(:run_context) {
Chef::RunContext.new(node, {}, events)
}
let(:new_resource) {
r = Chef::Resource::User.new("toor")
r.password(password)
r.salt(salt)
r.iterations(iterations)
r
}
let(:provider) {
Chef::Provider::User::Dscl.new(new_resource, run_context)
}
let(:mac_version) {
"10.9.1"
}
let(:password) { nil }
let(:salt) { nil }
let(:iterations) { nil }
let(:salted_sha512_password) {
"0f543f021c63255e64e121a3585601b8ecfedf6d2\
705ddac69e682a33db5dbcdb9b56a2520bc8fff63a\
2ba6b7984c0737ff0b7949455071581f7affcd536d\
402b6cdb097"
}
let(:salted_sha512_pbkdf2_password) {
"c734b6e4787c3727bb35e29fdd92b97c\
1de12df509577a045728255ec7c6c5f5\
c18efa05ed02b682ffa7ebc05119900e\
b1d4880833aa7a190afc13e2bf0936b8\
20123e8c98f0f9bcac2a629d9163caac\
9464a8c234f3919082400b4f939bb77b\
c5adbbac718b7eb99463a7b679571e0f\
1c9fef2ef08d0b9e9c2bcf644eed2ffc"
}
let(:salted_sha512_pbkdf2_salt) {
"2d942d8364a9ccf2b8e5cb7ed1ff58f78\
e29dbfee7f9db58859144d061fd0058"
}
let(:salted_sha512_pbkdf2_iterations) {
25000
}
let(:vagrant_sha_512) {
"6f75d7190441facc34291ebbea1fc756b242d4f\
e9bcff141bccb84f1979e27e539539aa31f9f7dcc92c0cea959\
ea18e18b720e358e7fbe3cfbeaa561456f6ba008937a30"
}
let(:vagrant_sha_512_pbkdf2) {
"12601a90db17cbf\
8ba4808e6382fb0d3b9d8a6c1a190477bf680ab21afb\
6065467136e55cc208a6f74156e3daf20fb13369ef4b\
7bafa047d80359fb46a48a4adccd548ebb33851b093\
47cca84341a7f93a27147343f89fb843fb46c0017d2\
64afa4976baacf941b915bd1ec1ca24c30b3e759e02\
403e02f59fe7ff5938a7636c"
}
let(:vagrant_sha_512_pbkdf2_salt) {
"ee954be472fdc60ddf89484781433993625f006af6ec810c08f49a7e413946a1"
}
let(:vagrant_sha_512_pbkdf2_iterations) {
34482
}
describe "when shelling out to dscl" do
it "should run dscl with the supplied cmd /Path args" do
shell_return = ShellCmdResult.new("stdout", "err", 0)
expect(provider).to receive(:shell_out).with("dscl . -cmd /Path args").and_return(shell_return)
expect(provider.run_dscl("cmd /Path args")).to eq("stdout")
end
it "returns an empty string from delete commands" do
shell_return = ShellCmdResult.new("out", "err", 23)
expect(provider).to receive(:shell_out).with("dscl . -delete /Path args").and_return(shell_return)
expect(provider.run_dscl("delete /Path args")).to eq("")
end
it "should raise an exception for any other command" do
shell_return = ShellCmdResult.new("out", "err", 23)
expect(provider).to receive(:shell_out).with("dscl . -cmd /Path arguments").and_return(shell_return)
expect { provider.run_dscl("cmd /Path arguments") }.to raise_error(Chef::Exceptions::DsclCommandFailed)
end
it "raises an exception when dscl reports 'no such key'" do
shell_return = ShellCmdResult.new("No such key: ", "err", 23)
expect(provider).to receive(:shell_out).with("dscl . -cmd /Path args").and_return(shell_return)
expect { provider.run_dscl("cmd /Path args") }.to raise_error(Chef::Exceptions::DsclCommandFailed)
end
it "raises an exception when dscl reports 'eDSRecordNotFound'" do
shell_return = ShellCmdResult.new("<dscl_cmd> DS Error: -14136 (eDSRecordNotFound)", "err", -14136)
expect(provider).to receive(:shell_out).with("dscl . -cmd /Path args").and_return(shell_return)
expect { provider.run_dscl("cmd /Path args") }.to raise_error(Chef::Exceptions::DsclCommandFailed)
end
end
describe "get_free_uid" do
before do
expect(provider).to receive(:run_dscl).with("list /Users uid").and_return("\nwheel 200\nstaff 201\nbrahms 500\nchopin 501\n")
end
describe "when resource is configured as system" do
before do
new_resource.system(true)
end
it "should return the first unused uid number on or above 500" do
expect(provider.get_free_uid).to eq(202)
end
end
it "should return the first unused uid number on or above 200" do
expect(provider.get_free_uid).to eq(502)
end
it "should raise an exception when the search limit is exhausted" do
search_limit = 1
expect { provider.get_free_uid(search_limit) }.to raise_error(RuntimeError)
end
end
describe "uid_used?" do
it "should return false if not given any valid uid number" do
expect(provider.uid_used?(nil)).to be_falsey
end
describe "when called with a user id" do
before do
expect(provider).to receive(:run_dscl).with("list /Users uid").and_return("\naj 500\n")
end
it "should return true for a used uid number" do
expect(provider.uid_used?(500)).to be_truthy
end
it "should return false for an unused uid number" do
expect(provider.uid_used?(501)).to be_falsey
end
end
end
describe "when determining the uid to set" do
it "raises RequestedUIDUnavailable if the requested uid is already in use" do
allow(provider).to receive(:uid_used?).and_return(true)
expect(provider).to receive(:get_free_uid).and_return(501)
expect { provider.dscl_set_uid }.to raise_error(Chef::Exceptions::RequestedUIDUnavailable)
end
it "finds a valid, unused uid when none is specified" do
expect(provider).to receive(:run_dscl).with("list /Users uid").and_return("")
expect(provider).to receive(:run_dscl).with("create /Users/toor UniqueID 501")
expect(provider).to receive(:get_free_uid).and_return(501)
provider.dscl_set_uid
expect(new_resource.uid).to eq(501)
end
it "sets the uid specified in the resource" do
new_resource.uid(1000)
expect(provider).to receive(:run_dscl).with("create /Users/toor UniqueID 1000").and_return(true)
expect(provider).to receive(:run_dscl).with("list /Users uid").and_return("")
provider.dscl_set_uid
end
end
describe "when modifying the home directory" do
let(:current_resource) {
new_resource.dup
}
before do
new_resource.supports({ :manage_home => true })
new_resource.home("/Users/toor")
provider.current_resource = current_resource
end
it "deletes the home directory when resource#home is nil" do
new_resource.instance_variable_set(:@home, nil)
expect(provider).to receive(:run_dscl).with("delete /Users/toor NFSHomeDirectory").and_return(true)
provider.dscl_set_home
end
it "raises InvalidHomeDirectory when the resource's home directory doesn't look right" do
new_resource.home("epic-fail")
expect { provider.dscl_set_home }.to raise_error(Chef::Exceptions::InvalidHomeDirectory)
end
it "moves the users home to the new location if it exists and the target location is different" do
new_resource.supports(:manage_home => true)
current_home = CHEF_SPEC_DATA + "/old_home_dir"
current_home_files = [current_home + "/my-dot-emacs", current_home + "/my-dot-vim"]
current_resource.home(current_home)
new_resource.gid(23)
allow(::File).to receive(:exists?).with("/old/home/toor").and_return(true)
allow(::File).to receive(:exists?).with("/Users/toor").and_return(true)
expect(FileUtils).to receive(:mkdir_p).with("/Users/toor").and_return(true)
expect(FileUtils).to receive(:rmdir).with(current_home)
expect(::Dir).to receive(:glob).with("#{CHEF_SPEC_DATA}/old_home_dir/*",::File::FNM_DOTMATCH).and_return(current_home_files)
expect(FileUtils).to receive(:mv).with(current_home_files, "/Users/toor", :force => true)
expect(FileUtils).to receive(:chown_R).with("toor","23","/Users/toor")
expect(provider).to receive(:run_dscl).with("create /Users/toor NFSHomeDirectory '/Users/toor'")
provider.dscl_set_home
end
it "should raise an exception when the systems user template dir (skel) cannot be found" do
allow(::File).to receive(:exists?).and_return(false,false,false)
expect { provider.dscl_set_home }.to raise_error(Chef::Exceptions::User)
end
it "should run ditto to copy any missing files from skel to the new home dir" do
expect(::File).to receive(:exists?).with("/System/Library/User\ Template/English.lproj").and_return(true)
expect(FileUtils).to receive(:chown_R).with("toor", "", "/Users/toor")
expect(provider).to receive(:shell_out!).with("ditto '/System/Library/User Template/English.lproj' '/Users/toor'")
provider.ditto_home
end
it "creates the user's NFSHomeDirectory and home directory" do
expect(provider).to receive(:run_dscl).with("create /Users/toor NFSHomeDirectory '/Users/toor'").and_return(true)
expect(provider).to receive(:ditto_home)
provider.dscl_set_home
end
end
describe "resource_requirements" do
let(:dscl_exists) { true }
let(:plutil_exists) { true }
before do
allow(::File).to receive(:exists?).with("/usr/bin/dscl").and_return(dscl_exists)
allow(::File).to receive(:exists?).with("/usr/bin/plutil").and_return(plutil_exists)
end
def run_requirements
provider.define_resource_requirements
provider.action = :create
provider.process_resource_requirements
end
describe "when dscl doesn't exist" do
let(:dscl_exists) { false }
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
describe "when plutil doesn't exist" do
let(:plutil_exists) { false }
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
describe "when on Mac 10.6" do
let(:mac_version) {
"10.6.5"
}
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
describe "when on Mac 10.7" do
let(:mac_version) {
"10.7.5"
}
describe "when password is SALTED-SHA512" do
let(:password) { salted_sha512_password }
it "should not raise an error" do
expect { run_requirements }.not_to raise_error
end
end
describe "when password is SALTED-SHA512-PBKDF2" do
let(:password) { salted_sha512_pbkdf2_password }
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
end
[ "10.9", "10.10"].each do |version|
describe "when on Mac #{version}" do
let(:mac_version) {
"#{version}.2"
}
describe "when password is SALTED-SHA512" do
let(:password) { salted_sha512_password }
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
describe "when password is SALTED-SHA512-PBKDF2" do
let(:password) { salted_sha512_pbkdf2_password }
describe "when salt and iteration is not set" do
it "should raise an error" do
expect { run_requirements }.to raise_error
end
end
describe "when salt and iteration is set" do
let(:salt) { salted_sha512_pbkdf2_salt }
let(:iterations) { salted_sha512_pbkdf2_iterations }
it "should not raise an error" do
expect { run_requirements }.not_to raise_error
end
end
end
end
end
end
describe "load_current_resource" do
# set this to any of the user plist files under spec/data
let(:user_plist_file) { nil }
before do
expect(provider).to receive(:shell_out).with("dscacheutil '-flushcache'")
expect(provider).to receive(:shell_out).with("plutil -convert xml1 -o - /var/db/dslocal/nodes/Default/users/toor.plist") do
if user_plist_file.nil?
ShellCmdResult.new("Can not find the file", "Sorry!!", 1)
else
ShellCmdResult.new(File.read(File.join(CHEF_SPEC_DATA, "mac_users/#{user_plist_file}.plist.xml")), "", 0)
end
end
if !user_plist_file.nil?
expect(provider).to receive(:convert_binary_plist_to_xml).and_return(File.read(File.join(CHEF_SPEC_DATA, "mac_users/#{user_plist_file}.shadow.xml")))
end
end
describe "when user is not there" do
it "shouldn't raise an error" do
expect { provider.load_current_resource }.not_to raise_error
end
it "should set @user_exists" do
provider.load_current_resource
expect(provider.instance_variable_get(:@user_exists)).to be_falsey
end
it "should set username" do
provider.load_current_resource
expect(provider.current_resource.username).to eq("toor")
end
end
describe "when user is there" do
let(:password) { "something" } # Load password during load_current_resource
describe "on 10.7" do
let(:mac_version) {
"10.7.5"
}
let(:user_plist_file) { "10.7" }
it "collects the user data correctly" do
provider.load_current_resource
expect(provider.current_resource.comment).to eq("vagrant")
expect(provider.current_resource.uid).to eq("501")
expect(provider.current_resource.gid).to eq("80")
expect(provider.current_resource.home).to eq("/Users/vagrant")
expect(provider.current_resource.shell).to eq("/bin/bash")
expect(provider.current_resource.password).to eq(vagrant_sha_512)
end
describe "when a plain password is set that is same" do
let(:password) { "vagrant" }
it "diverged_password? should report false" do
provider.load_current_resource
expect(provider.diverged_password?).to be_falsey
end
end
describe "when a plain password is set that is different" do
let(:password) { "not_vagrant" }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when iterations change" do
let(:password) { vagrant_sha_512 }
let(:iterations) { 12345 }
it "diverged_password? should report false" do
provider.load_current_resource
expect(provider.diverged_password?).to be_falsey
end
end
describe "when shadow hash changes" do
let(:password) { salted_sha512_password }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when salt change" do
let(:password) { vagrant_sha_512 }
let(:salt) { "SOMETHINGRANDOM" }
it "diverged_password? should report false" do
provider.load_current_resource
expect(provider.diverged_password?).to be_falsey
end
end
end
describe "on 10.8" do
let(:mac_version) {
"10.8.3"
}
let(:user_plist_file) { "10.8" }
it "collects the user data correctly" do
provider.load_current_resource
expect(provider.current_resource.comment).to eq("vagrant")
expect(provider.current_resource.uid).to eq("501")
expect(provider.current_resource.gid).to eq("80")
expect(provider.current_resource.home).to eq("/Users/vagrant")
expect(provider.current_resource.shell).to eq("/bin/bash")
expect(provider.current_resource.password).to eq("ea4c2d265d801ba0ec0dfccd\
253dfc1de91cbe0806b4acc1ed7fe22aebcf6beb5344d0f442e590\
ffa04d679075da3afb119e41b72b5eaf08ee4aa54693722646d5\
19ee04843deb8a3e977428d33f625e83887913e5c13b70035961\
5e00ad7bc3e7a0c98afc3e19d1360272454f8d33a9214d2fbe8b\
e68d1f9821b26689312366")
expect(provider.current_resource.salt).to eq("f994ef2f73b7c5594ebd1553300976b20733ce0e24d659783d87f3d81cbbb6a9")
expect(provider.current_resource.iterations).to eq(39840)
end
end
describe "on 10.7 upgraded to 10.8" do
# In this scenario user password is still in 10.7 format
let(:mac_version) {
"10.8.3"
}
let(:user_plist_file) { "10.7-8" }
it "collects the user data correctly" do
provider.load_current_resource
expect(provider.current_resource.comment).to eq("vagrant")
expect(provider.current_resource.uid).to eq("501")
expect(provider.current_resource.gid).to eq("80")
expect(provider.current_resource.home).to eq("/Users/vagrant")
expect(provider.current_resource.shell).to eq("/bin/bash")
expect(provider.current_resource.password).to eq("6f75d7190441facc34291ebbea1fc756b242d4f\
e9bcff141bccb84f1979e27e539539aa31f9f7dcc92c0cea959\
ea18e18b720e358e7fbe3cfbeaa561456f6ba008937a30")
end
describe "when a plain text password is set" do
it "reports password needs to be updated" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when a salted-sha512-pbkdf2 shadow is set" do
let(:password) { salted_sha512_pbkdf2_password }
let(:salt) { salted_sha512_pbkdf2_salt }
let(:iterations) { salted_sha512_pbkdf2_iterations }
it "reports password needs to be updated" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
end
describe "on 10.9" do
let(:mac_version) {
"10.9.1"
}
let(:user_plist_file) { "10.9" }
it "collects the user data correctly" do
provider.load_current_resource
expect(provider.current_resource.comment).to eq("vagrant")
expect(provider.current_resource.uid).to eq("501")
expect(provider.current_resource.gid).to eq("80")
expect(provider.current_resource.home).to eq("/Users/vagrant")
expect(provider.current_resource.shell).to eq("/bin/bash")
expect(provider.current_resource.password).to eq(vagrant_sha_512_pbkdf2)
expect(provider.current_resource.salt).to eq(vagrant_sha_512_pbkdf2_salt)
expect(provider.current_resource.iterations).to eq(vagrant_sha_512_pbkdf2_iterations)
end
describe "when a plain password is set that is same" do
let(:password) { "vagrant" }
it "diverged_password? should report false" do
provider.load_current_resource
expect(provider.diverged_password?).to be_falsey
end
end
describe "when a plain password is set that is different" do
let(:password) { "not_vagrant" }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when iterations change" do
let(:password) { vagrant_sha_512_pbkdf2 }
let(:salt) { vagrant_sha_512_pbkdf2_salt }
let(:iterations) { 12345 }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when shadow hash changes" do
let(:password) { salted_sha512_pbkdf2_password }
let(:salt) { vagrant_sha_512_pbkdf2_salt }
let(:iterations) { vagrant_sha_512_pbkdf2_iterations }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when salt change" do
let(:password) { vagrant_sha_512_pbkdf2 }
let(:salt) { salted_sha512_pbkdf2_salt }
let(:iterations) { vagrant_sha_512_pbkdf2_iterations }
it "diverged_password? should report true" do
provider.load_current_resource
expect(provider.diverged_password?).to be_truthy
end
end
describe "when salt isn't found" do
it "diverged_password? should report true" do
provider.load_current_resource
provider.current_resource.salt(nil)
expect(provider.diverged_password?).to be_truthy
end
end
end
end
end
describe "salted_sha512_pbkdf2?" do
it "should return true when the string is a salted_sha512_pbkdf2 hash" do
expect(provider.salted_sha512_pbkdf2?(salted_sha512_pbkdf2_password)).to be_truthy
end
it "should return false otherwise" do
expect(provider.salted_sha512_pbkdf2?(salted_sha512_password)).to be_falsey
expect(provider.salted_sha512_pbkdf2?("any other string")).to be_falsey
end
end
describe "salted_sha512?" do
it "should return true when the string is a salted_sha512_pbkdf2 hash" do
expect(provider.salted_sha512_pbkdf2?(salted_sha512_pbkdf2_password)).to be_truthy
end
it "should return false otherwise" do
expect(provider.salted_sha512?(salted_sha512_pbkdf2_password)).to be_falsey
expect(provider.salted_sha512?("any other string")).to be_falsey
end
end
describe "prepare_password_shadow_info" do
describe "when on Mac 10.7" do
let(:mac_version) {
"10.7.1"
}
describe "when the password is plain text" do
let(:password) { "vagrant" }
it "password_shadow_info should have salted-sha-512 format" do
shadow_info = provider.prepare_password_shadow_info
expect(shadow_info).to have_key("SALTED-SHA512")
info = shadow_info["SALTED-SHA512"].string.unpack("H*").first
expect(provider.salted_sha512?(info)).to be_truthy
end
end
describe "when the password is salted-sha-512" do
let(:password) { vagrant_sha_512 }
it "password_shadow_info should have salted-sha-512 format" do
shadow_info = provider.prepare_password_shadow_info
expect(shadow_info).to have_key("SALTED-SHA512")
info = shadow_info["SALTED-SHA512"].string.unpack("H*").first
expect(provider.salted_sha512?(info)).to be_truthy
expect(info).to eq(vagrant_sha_512)
end
end
end
["10.8", "10.9", "10.10"].each do |version|
describe "when on Mac #{version}" do
let(:mac_version) {
"#{version}.1"
}
describe "when the password is plain text" do
let(:password) { "vagrant" }
it "password_shadow_info should have salted-sha-512 format" do
shadow_info = provider.prepare_password_shadow_info
expect(shadow_info).to have_key("SALTED-SHA512-PBKDF2")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("entropy")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("salt")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("iterations")
info = shadow_info["SALTED-SHA512-PBKDF2"]["entropy"].string.unpack("H*").first
expect(provider.salted_sha512_pbkdf2?(info)).to be_truthy
end
end
describe "when the password is salted-sha-512" do
let(:password) { vagrant_sha_512_pbkdf2 }
let(:iterations) { vagrant_sha_512_pbkdf2_iterations }
let(:salt) { vagrant_sha_512_pbkdf2_salt }
it "password_shadow_info should have salted-sha-512 format" do
shadow_info = provider.prepare_password_shadow_info
expect(shadow_info).to have_key("SALTED-SHA512-PBKDF2")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("entropy")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("salt")
expect(shadow_info["SALTED-SHA512-PBKDF2"]).to have_key("iterations")
info = shadow_info["SALTED-SHA512-PBKDF2"]["entropy"].string.unpack("H*").first
expect(provider.salted_sha512_pbkdf2?(info)).to be_truthy
expect(info).to eq(vagrant_sha_512_pbkdf2)
end
end
end
end
end
describe "set_password" do
before do
new_resource.password("something")
end
it "should sleep and flush the dscl cache before saving the password" do
expect(provider).to receive(:prepare_password_shadow_info).and_return({ })
mock_shellout = double("Mock::Shellout")
allow(mock_shellout).to receive(:run_command)
expect(Mixlib::ShellOut).to receive(:new).and_return(mock_shellout)
expect(provider).to receive(:read_user_info)
expect(provider).to receive(:dscl_set)
expect(provider).to receive(:sleep).with(3)
expect(provider).to receive(:save_user_info)
provider.set_password
end
end
describe "when the user does not yet exist and chef is creating it" do
context "with a numeric gid" do
before do
new_resource.comment "#mockssuck"
new_resource.gid 1001
end
it "creates the user, comment field, sets uid, gid, configures the home directory, sets the shell, and sets the password" do
expect(provider).to receive :dscl_create_user
expect(provider).to receive :dscl_create_comment
expect(provider).to receive :dscl_set_uid
expect(provider).to receive :dscl_set_gid
expect(provider).to receive :dscl_set_home
expect(provider).to receive :dscl_set_shell
expect(provider).to receive :set_password
provider.create_user
end
it "creates the user and sets the comment field" do
expect(provider).to receive(:run_dscl).with("create /Users/toor").and_return(true)
provider.dscl_create_user
end
it "sets the comment field" do
expect(provider).to receive(:run_dscl).with("create /Users/toor RealName '#mockssuck'").and_return(true)
provider.dscl_create_comment
end
it "sets the comment field to username" do
new_resource.comment nil
expect(provider).to receive(:run_dscl).with("create /Users/toor RealName '#mockssuck'").and_return(true)
provider.dscl_create_comment
expect(new_resource.comment).to eq("#mockssuck")
end
it "should run run_dscl with create /Users/user PrimaryGroupID to set the users primary group" do
expect(provider).to receive(:run_dscl).with("create /Users/toor PrimaryGroupID '1001'").and_return(true)
provider.dscl_set_gid
end
it "should run run_dscl with create /Users/user UserShell to set the users login shell" do
expect(provider).to receive(:run_dscl).with("create /Users/toor UserShell '/usr/bin/false'").and_return(true)
provider.dscl_set_shell
end
end
context "with a non-numeric gid" do
before do
new_resource.comment "#mockssuck"
new_resource.gid "newgroup"
end
it "should map the group name to a numeric ID when the group exists" do
expect(provider).to receive(:run_dscl).with("read /Groups/newgroup PrimaryGroupID").ordered.and_return("PrimaryGroupID: 1001\n")
expect(provider).to receive(:run_dscl).with("create /Users/toor PrimaryGroupID '1001'").ordered.and_return(true)
provider.dscl_set_gid
end
it "should raise an exception when the group does not exist" do
shell_return = ShellCmdResult.new("<dscl_cmd> DS Error: -14136 (eDSRecordNotFound)", "err", -14136)
expect(provider).to receive(:shell_out).with("dscl . -read /Groups/newgroup PrimaryGroupID").and_return(shell_return)
expect { provider.dscl_set_gid }.to raise_error(Chef::Exceptions::GroupIDNotFound)
end
end
it "should set group ID to 20 if it's not specified" do
new_resource.gid nil
expect(provider).to receive(:run_dscl).with("create /Users/toor PrimaryGroupID '20'").ordered.and_return(true)
provider.dscl_set_gid
expect(new_resource.gid).to eq(20)
end
end
describe "when the user exists and chef is managing it" do
before do
current_resource = new_resource.dup
provider.current_resource = current_resource
# These are all different from current_resource
new_resource.username "mud"
new_resource.uid 2342
new_resource.gid 2342
new_resource.home "/Users/death"
new_resource.password "goaway"
end
it "sets the user, comment field, uid, gid, moves the home directory, sets the shell, and sets the password" do
expect(provider).to receive :dscl_create_user
expect(provider).to receive :dscl_create_comment
expect(provider).to receive :dscl_set_uid
expect(provider).to receive :dscl_set_gid
expect(provider).to receive :dscl_set_home
expect(provider).to receive :dscl_set_shell
expect(provider).to receive :set_password
provider.create_user
end
end
describe "when changing the gid" do
before do
current_resource = new_resource.dup
provider.current_resource = current_resource
# This is different from current_resource
new_resource.gid 2342
end
it "sets the gid" do
expect(provider).to receive :dscl_set_gid
provider.manage_user
end
end
describe "when the user exists" do
before do
expect(provider).to receive(:shell_out).with("dscacheutil '-flushcache'")
expect(provider).to receive(:shell_out).with("plutil -convert xml1 -o - /var/db/dslocal/nodes/Default/users/toor.plist") do
ShellCmdResult.new(File.read(File.join(CHEF_SPEC_DATA, "mac_users/10.9.plist.xml")), "", 0)
end
provider.load_current_resource
end
describe "when Chef is removing the user" do
it "removes the user from the groups and deletes home directory when the resource is configured to manage home" do
new_resource.supports({ :manage_home => true })
expect(provider).to receive(:run_dscl).with("list /Groups").and_return("my_group\nyour_group\nreal_group\n")
expect(provider).to receive(:run_dscl).with("read /Groups/my_group").and_raise(Chef::Exceptions::DsclCommandFailed) # Empty group
expect(provider).to receive(:run_dscl).with("read /Groups/your_group").and_return("GroupMembership: not_you")
expect(provider).to receive(:run_dscl).with("read /Groups/real_group").and_return("GroupMembership: toor")
expect(provider).to receive(:run_dscl).with("delete /Groups/real_group GroupMembership 'toor'")
expect(provider).to receive(:run_dscl).with("delete /Users/toor")
expect(FileUtils).to receive(:rm_rf).with("/Users/vagrant")
provider.remove_user
end
end
describe "when user is not locked" do
it "determines the user as not locked" do
expect(provider).not_to be_locked
end
end
describe "when user is locked" do
before do
auth_authority = provider.instance_variable_get(:@authentication_authority)
provider.instance_variable_set(:@authentication_authority, auth_authority + ";DisabledUser;")
end
it "determines the user as not locked" do
expect(provider).to be_locked
end
it "can unlock the user" do
expect(provider).to receive(:run_dscl).with("create /Users/toor AuthenticationAuthority ';ShadowHash;HASHLIST:<SALTED-SHA512-PBKDF2>'")
provider.unlock_user
end
end
end
describe "when locking the user" do
it "should run run_dscl with append /Users/user AuthenticationAuthority ;DisabledUser; to lock the user account" do
expect(provider).to receive(:run_dscl).with("append /Users/toor AuthenticationAuthority ';DisabledUser;'")
provider.lock_user
end
end
end
|