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
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../spec_helper'
require 'puppet/ssl/host'
describe Puppet::SSL::Host do
before do
@class = Puppet::SSL::Host
@host = @class.new("myname")
end
it "should use any provided name as its name" do
@host.name.should == "myname"
end
it "should retrieve its public key from its private key" do
realkey = mock 'realkey'
key = stub 'key', :content => realkey
Puppet::SSL::Key.stubs(:find).returns(key)
pubkey = mock 'public_key'
realkey.expects(:public_key).returns pubkey
@host.public_key.should equal(pubkey)
end
it "should default to being a non-ca host" do
@host.ca?.should be_false
end
it "should be a ca host if its name matches the CA_NAME" do
Puppet::SSL::Host.stubs(:ca_name).returns "yayca"
Puppet::SSL::Host.new("yayca").should be_ca
end
it "should have a method for determining the CA location" do
Puppet::SSL::Host.should respond_to(:ca_location)
end
it "should have a method for specifying the CA location" do
Puppet::SSL::Host.should respond_to(:ca_location=)
end
describe "when specifying the CA location" do
before do
[Puppet::SSL::Key, Puppet::SSL::Certificate, Puppet::SSL::CertificateRequest, Puppet::SSL::CertificateRevocationList].each do |klass|
klass.stubs(:terminus_class=)
klass.stubs(:cache_class=)
end
end
it "should support the location ':local'" do
lambda { Puppet::SSL::Host.ca_location = :local }.should_not raise_error
end
it "should support the location ':remote'" do
lambda { Puppet::SSL::Host.ca_location = :remote }.should_not raise_error
end
it "should support the location ':none'" do
lambda { Puppet::SSL::Host.ca_location = :none }.should_not raise_error
end
it "should not support other modes" do
lambda { Puppet::SSL::Host.ca_location = :whatever }.should raise_error(ArgumentError)
end
describe "as 'local'" do
it "should set the cache class for Certificate, CertificateRevocationList, and CertificateRequest as :file" do
Puppet::SSL::Certificate.expects(:cache_class=).with :file
Puppet::SSL::CertificateRequest.expects(:cache_class=).with :file
Puppet::SSL::CertificateRevocationList.expects(:cache_class=).with :file
Puppet::SSL::Host.ca_location = :local
end
it "should set the terminus class for Key as :file" do
Puppet::SSL::Key.expects(:terminus_class=).with :file
Puppet::SSL::Host.ca_location = :local
end
it "should set the terminus class for Certificate, CertificateRevocationList, and CertificateRequest as :ca" do
Puppet::SSL::Certificate.expects(:terminus_class=).with :ca
Puppet::SSL::CertificateRequest.expects(:terminus_class=).with :ca
Puppet::SSL::CertificateRevocationList.expects(:terminus_class=).with :ca
Puppet::SSL::Host.ca_location = :local
end
end
describe "as 'remote'" do
it "should set the cache class for Certificate, CertificateRevocationList, and CertificateRequest as :file" do
Puppet::SSL::Certificate.expects(:cache_class=).with :file
Puppet::SSL::CertificateRequest.expects(:cache_class=).with :file
Puppet::SSL::CertificateRevocationList.expects(:cache_class=).with :file
Puppet::SSL::Host.ca_location = :remote
end
it "should set the terminus class for Key as :file" do
Puppet::SSL::Key.expects(:terminus_class=).with :file
Puppet::SSL::Host.ca_location = :remote
end
it "should set the terminus class for Certificate, CertificateRevocationList, and CertificateRequest as :rest" do
Puppet::SSL::Certificate.expects(:terminus_class=).with :rest
Puppet::SSL::CertificateRequest.expects(:terminus_class=).with :rest
Puppet::SSL::CertificateRevocationList.expects(:terminus_class=).with :rest
Puppet::SSL::Host.ca_location = :remote
end
end
describe "as 'none'" do
it "should set the terminus class for Key, Certificate, CertificateRevocationList, and CertificateRequest as :file" do
Puppet::SSL::Key.expects(:terminus_class=).with :file
Puppet::SSL::Certificate.expects(:terminus_class=).with :file
Puppet::SSL::CertificateRequest.expects(:terminus_class=).with :file
Puppet::SSL::CertificateRevocationList.expects(:terminus_class=).with :file
Puppet::SSL::Host.ca_location = :none
end
end
end
it "should have a class method for destroying all files related to a given host" do
Puppet::SSL::Host.should respond_to(:destroy)
end
describe "when destroying a host's SSL files" do
before do
Puppet::SSL::Key.stubs(:destroy).returns false
Puppet::SSL::Certificate.stubs(:destroy).returns false
Puppet::SSL::CertificateRequest.stubs(:destroy).returns false
end
it "should destroy its certificate, certificate request, and key" do
Puppet::SSL::Key.expects(:destroy).with("myhost")
Puppet::SSL::Certificate.expects(:destroy).with("myhost")
Puppet::SSL::CertificateRequest.expects(:destroy).with("myhost")
Puppet::SSL::Host.destroy("myhost")
end
it "should return true if any of the classes returned true" do
Puppet::SSL::Certificate.expects(:destroy).with("myhost").returns true
Puppet::SSL::Host.destroy("myhost").should be_true
end
it "should return false if none of the classes returned true" do
Puppet::SSL::Host.destroy("myhost").should be_false
end
end
describe "when initializing" do
it "should default its name to the :certname setting" do
Puppet.settings.expects(:value).with(:certname).returns "myname"
Puppet::SSL::Host.new.name.should == "myname"
end
it "should downcase a passed in name" do
Puppet::SSL::Host.new("Host.Domain.Com").name.should == "host.domain.com"
end
it "should downcase the certname if it's used" do
Puppet.settings.expects(:value).with(:certname).returns "Host.Domain.Com"
Puppet::SSL::Host.new().name.should == "host.domain.com"
end
it "should indicate that it is a CA host if its name matches the ca_name constant" do
Puppet::SSL::Host.stubs(:ca_name).returns "myca"
Puppet::SSL::Host.new("myca").should be_ca
end
end
describe "when managing its private key" do
before do
@realkey = "mykey"
@key = stub 'key', :content => @realkey
end
it "should return nil if the key is not set and cannot be found" do
Puppet::SSL::Key.expects(:find).with("myname").returns(nil)
@host.key.should be_nil
end
it "should find the key in the Key class and return the Puppet instance" do
Puppet::SSL::Key.expects(:find).with("myname").returns(@key)
@host.key.should equal(@key)
end
it "should be able to generate and save a new key" do
Puppet::SSL::Key.expects(:new).with("myname").returns(@key)
@key.expects(:generate)
@key.expects(:save)
@host.generate_key.should be_true
@host.key.should equal(@key)
end
it "should return any previously found key without requerying" do
Puppet::SSL::Key.expects(:find).with("myname").returns(@key).once
@host.key.should equal(@key)
@host.key.should equal(@key)
end
end
describe "when managing its certificate request" do
before do
@realrequest = "real request"
@request = stub 'request', :content => @realrequest
end
it "should return nil if the key is not set and cannot be found" do
Puppet::SSL::CertificateRequest.expects(:find).with("myname").returns(nil)
@host.certificate_request.should be_nil
end
it "should find the request in the Key class and return it and return the Puppet SSL request" do
Puppet::SSL::CertificateRequest.expects(:find).with("myname").returns @request
@host.certificate_request.should equal(@request)
end
it "should generate a new key when generating the cert request if no key exists" do
Puppet::SSL::CertificateRequest.expects(:new).with("myname").returns @request
key = stub 'key', :public_key => mock("public_key"), :content => "mycontent"
@host.expects(:key).times(2).returns(nil).then.returns(key)
@host.expects(:generate_key).returns(key)
@request.stubs(:generate)
@request.stubs(:save)
@host.generate_certificate_request
end
it "should be able to generate and save a new request using the private key" do
Puppet::SSL::CertificateRequest.expects(:new).with("myname").returns @request
key = stub 'key', :public_key => mock("public_key"), :content => "mycontent"
@host.stubs(:key).returns(key)
@request.expects(:generate).with("mycontent")
@request.expects(:save)
@host.generate_certificate_request.should be_true
@host.certificate_request.should equal(@request)
end
it "should return any previously found request without requerying" do
Puppet::SSL::CertificateRequest.expects(:find).with("myname").returns(@request).once
@host.certificate_request.should equal(@request)
@host.certificate_request.should equal(@request)
end
end
describe "when managing its certificate" do
before do
@realcert = mock 'certificate'
@cert = stub 'cert', :content => @realcert
end
it "should find the certificate in the Certificate class and return the Puppet certificate instance" do
Puppet::SSL::Certificate.expects(:find).with("myname").returns @cert
@host.certificate.should equal(@cert)
end
it "should return any previously found certificate" do
Puppet::SSL::Certificate.expects(:find).with("myname").returns(@cert).once
@host.certificate.should equal(@cert)
@host.certificate.should equal(@cert)
end
end
it "should have a method for listing certificate hosts" do
Puppet::SSL::Host.should respond_to(:search)
end
describe "when listing certificate hosts" do
it "should default to listing all clients with any file types" do
Puppet::SSL::Key.expects(:search).returns []
Puppet::SSL::Certificate.expects(:search).returns []
Puppet::SSL::CertificateRequest.expects(:search).returns []
Puppet::SSL::Host.search
end
it "should be able to list only clients with a key" do
Puppet::SSL::Key.expects(:search).returns []
Puppet::SSL::Certificate.expects(:search).never
Puppet::SSL::CertificateRequest.expects(:search).never
Puppet::SSL::Host.search :for => Puppet::SSL::Key
end
it "should be able to list only clients with a certificate" do
Puppet::SSL::Key.expects(:search).never
Puppet::SSL::Certificate.expects(:search).returns []
Puppet::SSL::CertificateRequest.expects(:search).never
Puppet::SSL::Host.search :for => Puppet::SSL::Certificate
end
it "should be able to list only clients with a certificate request" do
Puppet::SSL::Key.expects(:search).never
Puppet::SSL::Certificate.expects(:search).never
Puppet::SSL::CertificateRequest.expects(:search).returns []
Puppet::SSL::Host.search :for => Puppet::SSL::CertificateRequest
end
it "should return a Host instance created with the name of each found instance" do
key = stub 'key', :name => "key"
cert = stub 'cert', :name => "cert"
csr = stub 'csr', :name => "csr"
Puppet::SSL::Key.expects(:search).returns [key]
Puppet::SSL::Certificate.expects(:search).returns [cert]
Puppet::SSL::CertificateRequest.expects(:search).returns [csr]
returned = []
%w{key cert csr}.each do |name|
result = mock(name)
returned << result
Puppet::SSL::Host.expects(:new).with(name).returns result
end
result = Puppet::SSL::Host.search
returned.each do |r|
result.should be_include(r)
end
end
end
it "should have a method for generating all necessary files" do
Puppet::SSL::Host.new("me").should respond_to(:generate)
end
describe "when generating files" do
before do
@host = Puppet::SSL::Host.new("me")
@host.stubs(:generate_key)
@host.stubs(:generate_certificate_request)
end
it "should generate a key if one is not present" do
@host.expects(:key).returns nil
@host.expects(:generate_key)
@host.generate
end
it "should generate a certificate request if one is not present" do
@host.expects(:certificate_request).returns nil
@host.expects(:generate_certificate_request)
@host.generate
end
describe "and it can create a certificate authority" do
before do
@ca = mock 'ca'
Puppet::SSL::CertificateAuthority.stubs(:instance).returns @ca
end
it "should use the CA to sign its certificate request if it does not have a certificate" do
@host.expects(:certificate).returns nil
@ca.expects(:sign).with(@host.name)
@host.generate
end
end
describe "and it cannot create a certificate authority" do
before do
Puppet::SSL::CertificateAuthority.stubs(:instance).returns nil
end
it "should seek its certificate" do
@host.expects(:certificate)
@host.generate
end
end
end
it "should have a method for creating an SSL store" do
Puppet::SSL::Host.new("me").should respond_to(:ssl_store)
end
describe "when creating an SSL store" do
before do
@host = Puppet::SSL::Host.new("me")
@store = mock 'store'
@store.stub_everything
OpenSSL::X509::Store.stubs(:new).returns @store
Puppet.settings.stubs(:value).returns "ssl_host_testing"
end
it "should accept a purpose" do
@store.expects(:purpose=).with "my special purpose"
@host.ssl_store("my special purpose")
end
it "should default to OpenSSL::X509::PURPOSE_ANY as the purpose" do
@store.expects(:purpose=).with OpenSSL::X509::PURPOSE_ANY
@host.ssl_store
end
it "should add the local CA cert file" do
Puppet.settings.stubs(:value).with(:localcacert).returns "/ca/cert/file"
@store.expects(:add_file).with "/ca/cert/file"
@host.ssl_store
end
describe "and a CRL is available" do
before do
@crl = stub 'crl', :content => "real_crl"
Puppet::SSL::CertificateRevocationList.stubs(:find).returns @crl
end
it "should add the CRL" do
@store.expects(:add_crl).with "real_crl"
@host.ssl_store
end
it "should set the flags to OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK" do
@store.expects(:flags=).with OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK
@host.ssl_store
end
end
end
end
|